Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created June 22, 2019 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/31bfee52d3437703674e46c234a82222 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/31bfee52d3437703674e46c234a82222 to your computer and use it in GitHub Desktop.
public void ValueTypes()
{
int num1 = 10;
var type = num1.GetType(); // Get the System.Type type of the value type
System.Console.WriteLine(type);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment