Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- /*Може да ходиме по индексите и да ги променяме, без проблем*/
- class UsingList
- {
- static void Main()
- {
- List<string> list = new List<string>() { "we", "we", "we" };//"!!", "!!", "Bad Thinks"
- for (int i = 0; i < list.Count; i++)
- {
- list[i] = "!!";
- }
- list[2] = "Bad Thinks";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment