×
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 dictionary
< Previous
Next >
Goal
Please remove the item with the key 'Han' from the dictionary.
using System; using System.Collections.Generic; public class Program { public static void Main() { Dictionary<string, bool> characters = new Dictionary<string, bool>() { { "Luke", true }, { "Han", false }, { "Chewbacca", false } }; // Your code here. } }
Reset
Verify
Page 15 of 31
< Previous
Next >
Loading packages and dependencies