Skip to content

Instantly share code, notes, and snippets.

@idg10
Last active August 26, 2020 15:28
Show Gist options
  • Save idg10/8935bbb076166a668203bd010fd2817b to your computer and use it in GitHub Desktop.
Save idg10/8935bbb076166a668203bd010fd2817b to your computer and use it in GitHub Desktop.
Using patterns instead of as
if (JToken.Parse(text) is JObject o)
{
bool hasItem = o.ContainsKey("item");
Console.WriteLine(hasItem);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment