Home » C# Programming » Collection Classes

Which of the following statements are correct about the C#.NET code snippet given below? Stack st = new Stack(); st.Push("hello"); st.Push(8.2); st.Push(5); st.Push('b'); st.Push(true);

Correct Answer: This is a perfectly workable code.

← Previous Question Next Question→

More Questions from Collection Classes

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion