We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb27394 commit bc1e58dCopy full SHA for bc1e58d
snippets/csharp/System.Windows/Rect/Overview/RectExample.cs
@@ -23,7 +23,7 @@ public RectExample()
23
// 150 wide. The left side of the rectangle is 10 pixels from the left of the
24
// Canvas and the top side of the rectangle is 100 pixels from the top of the Canvas.
25
// Note: You could alternatively use the Rect Constructor to create this:
26
- // Rect myRect1 = new Rect(10,100,150,100");
+ // Rect myRect1 = new Rect(10, 100, 150, 100);
27
Rect myRect1 = new Rect();
28
myRect1.X = 10;
29
myRect1.Y = 100;
0 commit comments