try
try copied to clipboard
I can close the main pracet and add my custom classes or copy past some other code
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;
}
}