Skip to content

Instantly share code, notes, and snippets.

@ochilab
Last active December 17, 2015 19:29
Show Gist options
  • Save ochilab/5660341 to your computer and use it in GitHub Desktop.
Save ochilab/5660341 to your computer and use it in GitHub Desktop.
C#のプロパティの記述方法。初心者向けのネタです。
class Mark{
private int x;
private int y;
public int X {
set {
this.x = value;
}
get {
return this.x;
}
}
public int Y {
set {
this.y = value;
}
get {
return this.y;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment