Skip to content

Instantly share code, notes, and snippets.

@abbas-oveissi
Created February 19, 2013 17:55
Show Gist options
  • Save abbas-oveissi/4988219 to your computer and use it in GitHub Desktop.
Save abbas-oveissi/4988219 to your computer and use it in GitHub Desktop.
sample C# code for Value vs Reference Types
Point p1 = new Point(); // Point is a *struct*
Form f1 = new Form(); // Form is a *class*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment