×
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: Add items to the stack
< Previous
Next >
Goal
Please add the original 3 Star Wars film names to the stack.
using System; using System.Collections.Generic; public class Program { public static void Main() { Stack<string> films = new Stack<string>(); // Your code here } }
Reset
Verify
Page 23 of 31
< Previous
Next >
Loading packages and dependencies