私は簡単な質問があります:
クラスから別のクラスライブラリのクラスとそのメソッドにアクセスするにはどうすればよいですか?
You need to add a reference to the library. Then you should be able to access by using
MyLibrary.MyClass.MyMethod();
名前空間 MyNamespace のライブラリのパブリック クラスで静的に計算されているとします。
MyNamespace.MyPublicClass.MyStaticMethod();
public メソッドを持つクラスがある場合は、それにアクセスできます
new MyNamespace.MyPublicClass().MyStaticMethod();
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.