using System;
using System.Threading;
public class Program
{
public class Test
public long[] TestProperty
get
return new long[] { DateTime.Now.Ticks };
}
public static void Main()
Test test = new Test();
Console.WriteLine(test.TestProperty == test.TestProperty);