01class Person
02
{
03
public readonly uint nowtime = (uint)DateTime.Now.Ticks;
04
}
05
class Program
06
{
07
static void Main(string[] args)
08
{
09
Person p = new Person();
10
Console.WriteLine(p.nowtime);
11
Console.ReadKey();
12
}
13
}