我正在從調試器中評估用戶表達式。我想在方法上下文中編譯表達式,然後用調試器注入IL代碼。 是否有可能編譯表達式,該表達式包含從外部程序集到包含Roslyn的IL代碼的非公共類/類字段? 我已經有'MyNamespace.dll'與公共類'Test'和私有方法'PrivateMethod',我想從Roslyn編譯調用它。 我想用下面的代碼來做到這一點: public class TestCompil
public class MainClass {
public static void main(String[] args) {
anotherTest();
test();
}
public static void test() {
System.out.println("Printed from the test metho
其關於編譯這種方法,其中T是通用的。有沒有辦法用javac編譯器(Java 1.8)編譯而不會出現任何錯誤? public class MyGenericClass<T>{
public void someGenericAction(T value){
int key = (int) value;
}
}
來自德國的問候!