try icon indicating copy to clipboard operation
try copied to clipboard

I can close the main pracet and add my custom classes or copy past some other code

Open FarooqAlhaboub opened this issue 3 years ago • 0 comments

var someClassObject = new SomeClass("Value");
Console.WriteLine(someClassObject.ToString());

}

class SomeClass{
public string SomeProp;
public SomeClass(string someValue){
SomeProp = someValue;
}

public override string ToString(){
    return "OutPut : "+ SomeProp;
}
}
Capture

FarooqAlhaboub avatar Nov 08 '22 08:11 FarooqAlhaboub