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
// Value is requiredvarintValue=Prompt.Input<int>("Integer value");varstrValue=Prompt.Input<string>("String value");// Value is optionalvaroptionalIntValue=Prompt.Input<int?>("Optional integer value");varoptionalStrValue=Prompt.Input<string?>("Optional string value");
The text was updated successfully, but these errors were encountered:
Adopt NRT as a required condition for the value. I need to use
NullabilityInfoContext
which will probably be added in NET 6.https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-7/#getting-top-level-nullability-information
Proposal
The text was updated successfully, but these errors were encountered: