Constructors (C# Programming Guide) 

Whenever a class or struct is created, its constructor is called. A class or struct may have multiple constructors that take different arguments. Constructors allow the programmer to set default values, limit instantiation, and write code that is flexible and easy to read.

If you do not provide a constructor for your object, C# will create one by default that instantiates the object and sets any member variables to the default values listed here: Default Values Table (C# Reference). Static classes and structs can also have constructors.

In This Section

Using Constructors (C# Programming Guide)

Instance Constructors (C# Programming Guide)

Private Constructors (C# Programming Guide)

Static Constructors (C# Programming Guide)

How to: Write a Copy Constructor (C# Programming Guide)

C# Programming Guide

Objects, Classes and Structs (C# Programming Guide)

Destructors (C# Programming Guide) | static (C# Reference)