add ISafeSerializationData
[mcs.git] / tests / gtest-140.cs
blob1b8b5549ad6204ec32e6c5348269736e4c433f25
1 using System;
3 class X
5 static void Main ()
7 int?[] bvals = new int?[] { null, 3, 4 };
8 foreach (long? x in bvals)
9 Console.WriteLine (x);