Veikedo

[C# interview] patterns

Dec 7th, 2020
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. // Какой шаблон реализует этот класс? Какие в нем проблемы и как их исправить?
  2. public class A
  3. {
  4.     static A a;
  5.     public static A Instance
  6.     {
  7.         get
  8.         {
  9.             if (a == null)
  10.                 a = new A();
  11.             return a;
  12.         }
  13.     }
  14.  
  15.     public void DoSomething()
  16.     {
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment