From b9728dbee5c0dc755130d144d94741ad032c7ab9 Mon Sep 17 00:00:00 2001 From: Sean Killeen Date: Thu, 9 Jun 2022 12:38:41 -0400 Subject: [PATCH] Update langauge: created --> instantiated --- .../programming-guide/classes-and-structs/using-constructors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/programming-guide/classes-and-structs/using-constructors.md b/docs/csharp/programming-guide/classes-and-structs/using-constructors.md index 8247fc66625f3..706a834ae3be1 100644 --- a/docs/csharp/programming-guide/classes-and-structs/using-constructors.md +++ b/docs/csharp/programming-guide/classes-and-structs/using-constructors.md @@ -8,7 +8,7 @@ ms.assetid: 464253b2-fd5d-469a-836d-df0fdf2a43f7 --- # Using Constructors (C# Programming Guide) -When a [class](../../language-reference/keywords/class.md) or [struct](../../language-reference/builtin-types/struct.md) is created, its constructor is called. Constructors have the same name as the class or struct, and they usually initialize the data members of the new object. +When a [class](../../language-reference/keywords/class.md) or [struct](../../language-reference/builtin-types/struct.md) is instantiated, its constructor is called. Constructors have the same name as the class or struct, and they usually initialize the data members of the new object. In the following example, a class named `Taxi` is defined by using a simple constructor. This class is then instantiated with the [new](../../language-reference/operators/new-operator.md) operator. The `Taxi` constructor is invoked by the `new` operator immediately after memory is allocated for the new object.