×
Log in
Twitter
Gmail
Facebook
.NET Fiddle
and
.NET Academy
shared account
Remember me
Log in
Sign up
or
Reset password
Search Tutorials
Log in
Sign up
About
Twitter
.NET Fiddle
Support
Contact Us
Collections
Exercise: Remove an item from the list another way
< Previous
Next >
Goal
Please remove the third item from the list using its index.
using System; using System.Collections.Generic; public class Program { public static void Main() { List<string> characters = new List<string>() { "Luke Skywalker", "Han Solo", "Chewbacca" }; // Your code goes here. } }
Reset
Verify
Page 10 of 31
< Previous
Next >
Loading packages and dependencies