Possible Duplicate:
When should you use the singleton pattern instead of a static class?
From last question that I asked came another question.
Why people prefer Singleton instead of using static class normally?
Normal static class
public static class Storage
{
public static string filePath { get; set; }
}
This is the Singleton version I am using
public sealed class Singleton
{
private static readonly Singleton SingleInstance = new Singleton();
private Singleton() { }
public static Singleton Instance
{
get
{
return SingleInstance;
}
}
public string filePath { get; set; }
}
Both of them can be use anywhere in the program but singleton seem to be a lot more work.
