摘要:
key-value方式,key不可以重复,value可以。 namespace WindowsFormsApp1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private stati 阅读全文
摘要:
1.条件语句 public void Test3() { int a = 1; int b = 2; int c = a + b; if (c > 0) { MessageBox.Show(c.ToString()); } else if (c == 0) { MessageBox.Show("c= 阅读全文