|
|
От: |
fmadness
|
|
| Дата: | 18.10.08 08:30 | ||
| Оценка: | |||
public sealed class SingletonDemo
{
private static readonly SingletonDemo _instance = new SingletonDemo();
private SingletonDemo()
{
}
public static GetInstance
{
get
{
return _instance;
}
}
}