Skip to content

Instantly share code, notes, and snippets.

@ufcpp
Created February 5, 2015 02:59
Show Gist options
  • Select an option

  • Save ufcpp/a571fe1ac185dbc11c36 to your computer and use it in GitHub Desktop.

Select an option

Save ufcpp/a571fe1ac185dbc11c36 to your computer and use it in GitHub Desktop.
doc comment めんどくせー
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;
}
}
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