Options\VisualStudioSettingsOptionPersisterTests.cs (18)
92optionType == typeof(E) ? (E.A, (int)E.A) :
93optionType == typeof(E?) ? (E.A, (int)E.A) :
167typeof(E),
168typeof(E?),
210typeof(E),
211typeof(E?),
281yield return new object?[] { E.B, (int)E.B, typeof(E) };
282yield return new object?[] { null, null, typeof(E?) };
283yield return new object?[] { (E?)E.B, (int?)E.B, typeof(E?) };