Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Какой шаблон реализует этот класс? Какие в нем проблемы и как их исправить?
- public class A
- {
- static A a;
- public static A Instance
- {
- get
- {
- if (a == null)
- a = new A();
- return a;
- }
- }
- public void DoSomething()
- {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment