Added missing code tag as pointed out in #2371

See #2371
This commit is contained in:
Unknown6656 2019-03-28 10:38:38 +01:00 committed by GitHub
parent 20cefd89b1
commit 379747044f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -581,7 +581,7 @@ public class Point
```
Instances of classes are created using the `new` operator, which allocates memory for a new instance, invokes a constructor to initialize the instance, and returns a reference to the instance. The following statements create two `Point` objects and store references to those objects in two variables:
```
```csharp
Point p1 = new Point(0, 0);
Point p2 = new Point(10, 20);
```