2
In java we can implement abstract methods by instantiating a certain class
Thread threadA = new Thread(new Runnable(){
public void run(){
for(int i =0; i<2; i++){
System.out.println("This is thread : " + Thread.currentThread().getName());
}
}
}, "Thread A");
I wonder if this is possible in C#, implementing an abstract method at the last minute, and if possible would like an example