复制代码 代码如下:

//定义静态方法
class SQLHelper  
    {
        public static string aaa()
        {
            return “你好"      
        }
    }

调用:
SQLHelper.aaa(); // 类名.方法名

//定义动态方法
class SQLHelper  
    {
        public string aaa()
        {
            return “你好"      
        }
    }
调用:
SQLHelper  s =new SQLHelper ();
s.aaa();


点赞(0)

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部