谁能告诉我如何使用stack.ofType<>
?我已经尝试了很多次,但无法做到这一点。
private void button2_Click(object sender, EventArgs e)
{
Stack st = new Stack();
st.Push("joginder");
st.Push("singh");
st.Push("banger");
st.Push("Kaithal");
st.OfType<> //how to work this option
}