0

私は簡単な質問があります:

クラスから別のクラスライブラリのクラスとそのメソッドにアクセスするにはどうすればよいですか?

4

3 に答える 3

5

You need to add a reference to the library. Then you should be able to access by using

MyLibrary.MyClass.MyMethod();
于 2012-06-15T13:28:44.893 に答える
2

名前空間 MyNamespace のライブラリのパブリック クラスで静的に計算されているとします。

MyNamespace.MyPublicClass.MyStaticMethod();

public メソッドを持つクラスがある場合は、それにアクセスできます

new MyNamespace.MyPublicClass().MyStaticMethod();
于 2012-06-15T13:33:32.070 に答える
1

You need to add the library to your class.

Then you should be able to call the methods.

So for example at the top of your class you would write:

  using mylibrary.library;

Then you should have access to your methods in the same way you would access other methods.

于 2012-06-15T13:29:22.210 に答える