سؤال

How to implement singleton design pattern in C#?
Can anyone help me?

هل كانت مفيدة؟

المحلول

In singleton pattern, a class can only have one instance and provides access point to it globally.

public sealed class Singleton
{
     private static readonly Singleton _instance = new Singleton();
}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top