我正在手动将Android Studio项目移植到Visual Studio / Xamarin。我有这个Java代码:
throw new IllegalStateException(MyClass.class.getSimpleName() + " is not initialized.");
我试图找到.getSimpleName()
的等价物。
我在网上发现了一些尝试:
throw new IllegalStateException(MyClass.ShortClassName +" is not initialized.);
throw new IllegalStateException(nameOf(MyClass) + " is not initialized.");
但这些都没有编译 你能告诉我等价物是什么吗?