C # static Constructors

Source: Internet
Author: User

Static constructors are used to initialize any static data, or to perform specific operations that need to be performed only once. The static constructor is called automatically before the first instance is created or any static members are referenced.

Static constructors have the following characteristics:

  • Static constructors do not have access modifiers or parameters.

  • The static constructor is called automatically to initialize a class before the first instance is created or any static members are referenced.

  • The static constructor cannot be called directly.

  • In a program, users cannot control when static constructors are executed.

  • A typical use of a static constructor is to use this constructor to write entries to the log file when the class uses a log file.

  • Static constructors are also useful when creating wrapper classes for unmanaged code, where the constructor can call the LoadLibrary method.

  •  Public classbus{//Static Constructor:    StaticBus () {System.Console.WriteLine ("The static constructor invoked."); }     Public Static voidDrive () {System.Console.WriteLine ("The drive method invoked."); }}classtestbus{Static voidMain () {bus.drive (); }}

    Output:

The static constructor invoked.

The drive method invoked.

C # static Constructors

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.