6 lines
152 B
C#
6 lines
152 B
C#
|
// See https://aka.ms/new-console-template for more information
|
|||
|
|
|||
|
using SingletonPattern;
|
|||
|
|
|||
|
var singleton = Singleton.Instance;
|
|||
|
singleton.SomeMethod();
|