Hi,
Yes you can.
In the CommonDetail class, you can overwrite the "ToString()" method to display "nothing" (or any text you want) :
Yes you can.
In the CommonDetail class, you can overwrite the "ToString()" method to display "nothing" (or any text you want) :
public class CommonDetail
{
public override string ToString()
{
return "";
}
}