在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
C#中当参数超过5个时,建议用结构来传递多个参数。 示例代码如下: 1 public struct MyStruct 2 { 3 public string str; 4 public int number; 5 } 6 7 class Program 8 { 9 static void Main(string[] args) 10 { 11 MyStruct myStruct = new MyStruct(); 12 myStruct.str = "Number :"; 13 myStruct.number = 100; 14 MyClass mc = new MyClass(); 15 mc.output(myStruct); 16 Console.ReadKey(); 17 } 18 } 19 20 class MyClass 21 { 22 public void output(MyStruct ms) 23 { 24 Console.WriteLine(ms.str + ms.number.ToString()); 25 } 26 }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论