Exemple #1
0
        public static void ClassByRef(ref RDateTime x)
        {
            x = RDateTime.Now;
            var foo = x.Ticks - RDateTime.Now.Ticks;
            var bar = x.IsDaylightSavingTime();

            ClassByRefAux(x);
        }
Exemple #2
0
 public static void ClassByRefAux(RDateTime x)
 {
     ClassByRef(ref x);
 }