What is the 'new' keyword used for in C#?
Experience Level:
Junior
Tags:
C#
Answer
In C# the new
keyword is used to create a new instance of a class. We are also saying the new
keyword is used to construct an object.
new
keyword followed by a class name, open and close bracket and a semicolon to your source code. In the following example, the code new Car();
does the magic.
using Cars;
namespace MyApp {
class Program {
static void Main() {
var myCar = new Car();
}
}
}
Related C# job interview questions
-
What is a 'var' keyword in C# good for?
C# Junior -
What is a variable?
C# Junior -
How can you assign a value to a property in C#?
C# Junior -
How can you recognize a property in C#?
C# Junior -
What is a property in C#?
C# Junior