类库,就是我们所说的动态链接库(DLL)。在C#中,我们可以把我们做的一些类封装成一个类库,然后把类库模糊化处理,就可以共享给别人用了。
我们首先新建一个类 比如叫Test类,我们添加一个函数hello函数,返回字符串“test”。
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Test
- {
- public class main
- {
- public string hello()
- {
- return "test";
- }
- }
- }
那么怎么用呢?就象这样:
-
- Test.main mytest=new Test.main();
- MessageBox.show(mytest.hello());