You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a value returned from method which works with generic, so we want to check the returned type and seems that DateTime doesn't work in the same way of other types.
(assign null is only for example)
// This worksstring?a=null;awaitAssert.That(a).IsTypeOf<DateTime>();// This not compileDateTime?b=null;awaitAssert.That(b).IsTypeOf<DateTime>();
We have a value returned from method which works with generic, so we want to check the returned type and seems that
DateTimedoesn't work in the same way of other types.(assign
nullis only for example)