オブジェクトの名前空間を設定するにはどうすればよいですか?
ここで、次の方法でオブジェクトを使用する必要があります。MyFirstTestCase tc = new MyFirstTestCase();
MyFirstTestCase tc = new MyFirstTestCase();
tc.dothis();
tc.dothat();
// ...
このようにオブジェクトを使用したいと思います。MyFirstTestCase tc = new MyFirstTestCase();
MyFirstTestCase tc = new MyFirstTestCase();
using tc;
dothis();
dothat();
// ...
しかし、これはうまくいきません。これどうやってするの?
私が何を意味するかを明確にするために。
// MyFirstTestCase is the class
// tc is the object of MyFirstTestCase
// and instead of:
tc.dothis();
// ... I want to use:
dothis();
// dothis is a method of tc