C# 函数

2021-05-01 09:27

阅读:618

标签:int   函数   out   表示   c#   ref   style   return   public   

public/private/protectd  -三种修饰符号

public static void a()

{

    console.writeline("");

}                                                  --无参数,无返回值

public static string a()

{

  return "b"

}                                                  --无参数,有返回值

public static void a(int x,int y)

{

  console.writeline(x+y);

}                                                   --有参数     参数内 可以填 ref ,表示可进可出;也可填 out,只进不出

 

C# 函数

标签:int   函数   out   表示   c#   ref   style   return   public   

原文地址:http://www.cnblogs.com/m110/p/7787714.html

上一篇:C#实现工作日的计算

下一篇:c#代码技巧


评论


亲,登录后才可以留言!