Skip to content

Instantly share code, notes, and snippets.

@SirRufo
Created August 31, 2018 09:53
Show Gist options
  • Save SirRufo/24f446f25142427274f644d8bdd66781 to your computer and use it in GitHub Desktop.
Save SirRufo/24f446f25142427274f644d8bdd66781 to your computer and use it in GitHub Desktop.
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