Skip to content

Instantly share code, notes, and snippets.

@jessejjohnson
Created September 30, 2021 18:16
Show Gist options
  • Save jessejjohnson/885fa9170db39f1a5482c9cff25fe739 to your computer and use it in GitHub Desktop.
Save jessejjohnson/885fa9170db39f1a5482c9cff25fe739 to your computer and use it in GitHub Desktop.
Notable code snippets discovered in real-world solutions
try
{
throw new Exception("test");
}
catch (Exception ex)
{
Assert.Equal("test", ex.Message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment