Skip to content

Instantly share code, notes, and snippets.

@xplicit
Last active April 21, 2016 12:47
Show Gist options
  • Save xplicit/cce30aa237ca7f3b51a97f0fa84b37e0 to your computer and use it in GitHub Desktop.
Save xplicit/cce30aa237ca7f3b51a97f0fa84b37e0 to your computer and use it in GitHub Desktop.
GistlynTest
var test = new TestClass();
test.X = 10;
var y = test.X;
var test2 = new TestClass2();
test2.Name = "Var" + test.X.ToString();
var z = test2.Name;
public class TestClass
{
public int X { get; set; }
}
public class TestClass2
{
public string Name { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment