Skip to content

Instantly share code, notes, and snippets.

@idg10
Last active August 26, 2020 15:27
Show Gist options
  • Save idg10/098b7a7881742eb38887e9f47136b5a1 to your computer and use it in GitHub Desktop.
Save idg10/098b7a7881742eb38887e9f47136b5a1 to your computer and use it in GitHub Desktop.
Some reasonable uses of as
var o = JToken.Parse(text) as JObject;
if (o != null)
{
Console.WriteLine("item is " + (o.ContainsKey("item") ? "present" : "absent"));
}
bool hasItem = o != null ? o.ContainsKey("item") : false;
bool? itemPresence = o?.ContainsKey("item");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment