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);

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!