Created
February 5, 2015 02:59
-
-
Save ufcpp/a571fe1ac185dbc11c36 to your computer and use it in GitHub Desktop.
doc comment めんどくせー
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Point | |
| { | |
| public int X { get; private set; } | |
| public int Y { get; private set; } | |
| /// <summary> | |
| /// | |
| /// </summary> | |
| /// <param name="x"><see cref="X"/></param> | |
| /// <param name="y"><see cref="Y"/></param> | |
| public Point(int x, int y) | |
| { | |
| X = x; | |
| Y = y; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Point | |
| { | |
| public int X { get; private set; } | |
| public int Y { get; private set; } | |
| public Point(int x, int y) | |
| { | |
| X = x; | |
| Y = y; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment