引用添加向导程序将向当前工程文件中增加对相关库的引用:
③ 调用mcmath名称空间,创建 mcmathcomp 的对象,并调用其方法和属性。
现在距离调用组件的方法和属性只有一步之遥了。请按照以下步骤进行:
●引用名称空间:using mcmath
●创建一个 mcmathcomp的对象:mcmathcomp cls = new mcmathcomp();
●调用方法和属性
mcmathcomp cls = new mcmathcomp();
long lres = cls.add( 23, 40 );
cls.extra = false;
以下是完整的工程文件代码:
namespace mcclient
{
using system;
using mcmath;
/// <summary>
/// summary description for class1.
/// </summary>
public class class1
{
public class1()
{
//
// todo: add constructor logic here
//
}
public static int main(string[] args)
{
mcmathcomp cls = new mcmathcomp();
long lres = cls.add( 23, 40 );
cls.extra = false;
return 0;
}
}
}
请下载工程文件: mcmath.zip
新闻热点
疑难解答