public void ToArray_None() { FSharpOption <int> a = null; int[] b = a.ToArray(); Assert.AreEqual(0, b.Length); }