本文介绍了我如何将类文件转换为dll的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,我是新创建.net的dll的人.我的问题是我想将类文件转换为dll,以便将此类文件转换为另一个项目.我该怎么做.请任何人尽快回复.
hello everybody i am new for creating dlls in .net.what my problem is i want to convert class file to dll,for the shake of use this class file into another project. how can i do it. plz can any one give reply soon.
Thanks in advanced!
推荐答案
public class Class1
{
public long Add(long val1)//don’t give the static method
{
return val1;
}
}
这篇关于我如何将类文件转换为dll的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!