Guest User

Untitled

a guest
Jun 8th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. public class lazy-хуйлейзи
  2. {
  3.     private IList<Int32> list;
  4.    
  5.     public IList<Int32> lazy-хуйлейзи_List
  6.     {
  7.         get
  8.         {
  9.             if (list == null)
  10.             {
  11.                 list = new List<Int32> {
  12.                     1, 2, 3, 4, 5
  13.                 };
  14.             }
  15.             return list;
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment