×
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
< Previous
Next >
Goal
Please remove the item "Luke Skywalker" from the list using the value itself.
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 9 of 31
< Previous
Next >
Loading packages and dependencies