Created
August 31, 2018 09:53
-
-
Save SirRufo/24f446f25142427274f644d8bdd66781 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 | |
9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
namespace ConsoleApp19 | |
{ | |
static class Program | |
{ | |
static void Main( string[] args ) | |
{ | |
var lst = new List<int> { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; | |
Console.WriteLine( lst.Count ); | |
lst.Remove( 5 ); | |
Console.WriteLine( lst.Count ); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment