c#怎么定义类的对象,通过对象名调用函数?
2个回答
展开全部
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace demo
{
static class Program
{
static void Main()
{
MyClass myclass = new MyClass();//定义类的对象
myclass.ShowYourName("张三");//通过对象名调用函数
}
}
public class MyClass
{
public MyClass()//构造函数
{
}
public void ShowYourName(string yourName)
{
Console.WriteLine(yourName);
}
}
}}
using System.Collections.Generic;
using System.Windows.Forms;
namespace demo
{
static class Program
{
static void Main()
{
MyClass myclass = new MyClass();//定义类的对象
myclass.ShowYourName("张三");//通过对象名调用函数
}
}
public class MyClass
{
public MyClass()//构造函数
{
}
public void ShowYourName(string yourName)
{
Console.WriteLine(yourName);
}
}
}}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询