Skip to content

Instantly share code, notes, and snippets.

@rmnblm
Last active December 17, 2016 15:20
Show Gist options
  • Save rmnblm/58faebfd49243f27e80115b116134f03 to your computer and use it in GitHub Desktop.
Save rmnblm/58faebfd49243f27e80115b116134f03 to your computer and use it in GitHub Desktop.
Swift Optionals in C#
// int num = null; -> Error
int? num = null;
if (num.HasValue)
{
System.Console.WriteLine("num = " + num.Value);
}
else
{
System.Console.WriteLine("num = Null");
}
// Output: "num = Null"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment