c#接收方法的两种类型的值,传递两种类型的参数

 

c#传递两种类型的参数

private void test222(string a, int b)

{

}

c#接收方法的两种类型的值,

  private (string, int) GetValue()
        {
            return ("aa",1);
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            (string, int) b = GetValue();
            string aa = b.Item1;
            int bb = b.Item2;
           MessageBox.Show(b.Item1);
            MessageBox.Show(b.Item2.ToString());

        }

 

posted @ 2024-01-31 17:05  txwtech  阅读(39)  评论(0编辑  收藏  举报