In Java we can implement abstract methods when instantiating a given 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 would like to know if this is possible in C #, implement an abstract method at the last minute, and if possible I would like an example