Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class lazy-хуйлейзи
- {
- private IList<Int32> list;
- public IList<Int32> lazy-хуйлейзи_List
- {
- get
- {
- if (list == null)
- {
- list = new List<Int32> {
- 1, 2, 3, 4, 5
- };
- }
- return list;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment