Languages
[Edit]
EN

C#/.NET - static constructor

11 points
Created by:
Elleanor-Williamson
320

In C#/.NET static constructor can be created with static keyword.

using System;

namespace Test
{
	public class Utils
	{
		public static string Name { get; private set; }

		static Utils()
		{
			Name = "Example utils";
		}
	}

	public class Program
	{
		static void Main(string[] args)
		{
			Console.WriteLine(Utils.Name);
		}
	}
}

Output:

Example utils
Note: static constructor is called only once during first class usage.

References:

  1. Static Constructor - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join