@@ -1031,8 +1031,8 @@ namespace Graphics
1031
1031
/// This constructor initializes the new Point to
1032
1032
/// (<paramref name =" xPosition" />,<paramref name =" yPosition" />).
1033
1033
/// </summary >
1034
- /// <param ><c >xPosition</c > is the new Point's x-coordinate.</param >
1035
- /// <param ><c >yPosition</c > is the new Point's y-coordinate.</param >
1034
+ /// <param name = " xPosition " ><c >xPosition</c > is the new Point's x-coordinate.</param >
1035
+ /// <param name = " yPosition " ><c >yPosition</c > is the new Point's y-coordinate.</param >
1036
1036
public Point (int xPosition , int yPosition )
1037
1037
{
1038
1038
X = xPosition ;
@@ -1043,8 +1043,8 @@ namespace Graphics
1043
1043
/// This method changes the point's location to
1044
1044
/// the given coordinates. <see cref =" Translate" />
1045
1045
/// </summary >
1046
- /// <param ><c >xPosition</c > is the new x-coordinate.</param >
1047
- /// <param ><c >yPosition</c > is the new y-coordinate.</param >
1046
+ /// <param name = " xPosition " ><c >xPosition</c > is the new x-coordinate.</param >
1047
+ /// <param name = " yPosition " ><c >yPosition</c > is the new y-coordinate.</param >
1048
1048
public void Move (int xPosition , int yPosition )
1049
1049
{
1050
1050
X = xPosition ;
@@ -1063,8 +1063,8 @@ namespace Graphics
1063
1063
/// <see cref =" Move" />
1064
1064
/// </example >
1065
1065
/// </summary >
1066
- /// <param ><c >dx</c > is the relative x-offset.</param >
1067
- /// <param ><c >dy</c > is the relative y-offset.</param >
1066
+ /// <param name = " dx " ><c >dx</c > is the relative x-offset.</param >
1067
+ /// <param name = " dy " ><c >dy</c > is the relative y-offset.</param >
1068
1068
public void Translate (int dx , int dy )
1069
1069
{
1070
1070
X += dx ;
@@ -1074,7 +1074,7 @@ namespace Graphics
1074
1074
/// <summary >
1075
1075
/// This method determines whether two Points have the same location.
1076
1076
/// </summary >
1077
- /// <param >
1077
+ /// <param name = " o " >
1078
1078
/// <c >o</c > is the object to be compared to the current object.
1079
1079
/// </param >
1080
1080
/// <returns >
@@ -1122,8 +1122,8 @@ namespace Graphics
1122
1122
/// <summary >
1123
1123
/// This operator determines whether two Points have the same location.
1124
1124
/// </summary >
1125
- /// <param ><c >p1</c > is the first Point to be compared.</param >
1126
- /// <param ><c >p2</c > is the second Point to be compared.</param >
1125
+ /// <param name = " p1 " ><c >p1</c > is the first Point to be compared.</param >
1126
+ /// <param name = " p2 " ><c >p2</c > is the second Point to be compared.</param >
1127
1127
/// <returns >
1128
1128
/// True if the Points have the same location and they have
1129
1129
/// the exact same type; otherwise, false.
@@ -1146,8 +1146,8 @@ namespace Graphics
1146
1146
/// <summary >
1147
1147
/// This operator determines whether two Points have the same location.
1148
1148
/// </summary >
1149
- /// <param ><c >p1</c > is the first Point to be compared.</param >
1150
- /// <param ><c >p2</c > is the second Point to be compared.</param >
1149
+ /// <param name = " p1 " ><c >p1</c > is the first Point to be compared.</param >
1150
+ /// <param name = " p2 " ><c >p2</c > is the second Point to be compared.</param >
1151
1151
/// <returns >
1152
1152
/// True if the Points do not have the same location and the
1153
1153
/// exact same type; otherwise, false.
@@ -1183,17 +1183,17 @@ Here is the output produced by one documentation generator when given the source
1183
1183
This constructor initializes the new Point to
1184
1184
(<paramref name =" xPosition" />,<paramref name =" yPosition" />).
1185
1185
</summary >
1186
- <param ><c >xPosition</c > is the new Point's x-coordinate.</param >
1187
- <param ><c >yPosition</c > is the new Point's y-coordinate.</param >
1186
+ <param name = " xPosition " ><c >xPosition</c > is the new Point's x-coordinate.</param >
1187
+ <param name = " yPosition " ><c >yPosition</c > is the new Point's y-coordinate.</param >
1188
1188
</member >
1189
1189
<member name =" M:Graphics.Point.Move(System.Int32,System.Int32)" >
1190
1190
<summary >
1191
1191
This method changes the point's location to
1192
1192
the given coordinates.
1193
1193
<see cref =" M:Graphics.Point.Translate(System.Int32,System.Int32)" />
1194
1194
</summary >
1195
- <param ><c >xPosition</c > is the new x-coordinate.</param >
1196
- <param ><c >yPosition</c > is the new y-coordinate.</param >
1195
+ <param name = " xPosition " ><c >xPosition</c > is the new x-coordinate.</param >
1196
+ <param name = " yPosition " ><c >yPosition</c > is the new y-coordinate.</param >
1197
1197
</member >
1198
1198
<member name =" M:Graphics.Point.Translate(System.Int32,System.Int32)" >
1199
1199
<summary >
@@ -1208,14 +1208,14 @@ Here is the output produced by one documentation generator when given the source
1208
1208
</example >
1209
1209
<see cref =" M:Graphics.Point.Move(System.Int32,System.Int32)" />
1210
1210
</summary >
1211
- <param ><c >dx</c > is the relative x-offset.</param >
1212
- <param ><c >dy</c > is the relative y-offset.</param >
1211
+ <param name = " dx " ><c >dx</c > is the relative x-offset.</param >
1212
+ <param name = " dy " ><c >dy</c > is the relative y-offset.</param >
1213
1213
</member >
1214
1214
<member name =" M:Graphics.Point.Equals(System.Object)" >
1215
1215
<summary >
1216
1216
This method determines whether two Points have the same location.
1217
1217
</summary >
1218
- <param >
1218
+ <param name = " o " >
1219
1219
<c >o</c > is the object to be compared to the current object.
1220
1220
</param >
1221
1221
<returns >
@@ -1240,8 +1240,8 @@ Here is the output produced by one documentation generator when given the source
1240
1240
<summary >
1241
1241
This operator determines whether two Points have the same location.
1242
1242
</summary >
1243
- <param ><c >p1</c > is the first Point to be compared.</param >
1244
- <param ><c >p2</c > is the second Point to be compared.</param >
1243
+ <param name = " p1 " ><c >p1</c > is the first Point to be compared.</param >
1244
+ <param name = " p2 " ><c >p2</c > is the second Point to be compared.</param >
1245
1245
<returns >
1246
1246
True if the Points have the same location and they have
1247
1247
the exact same type; otherwise, false.
@@ -1255,8 +1255,8 @@ Here is the output produced by one documentation generator when given the source
1255
1255
<summary >
1256
1256
This operator determines whether two Points have the same location.
1257
1257
</summary >
1258
- <param ><c >p1</c > is the first Point to be compared.</param >
1259
- <param ><c >p2</c > is the second Point to be compared.</param >
1258
+ <param name = " p1 " ><c >p1</c > is the first Point to be compared.</param >
1259
+ <param name = " p2 " ><c >p2</c > is the second Point to be compared.</param >
1260
1260
<returns >
1261
1261
True if the Points do not have the same location and the
1262
1262
exact same type; otherwise, false.
0 commit comments