CSLE.CLType.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            if (type != null) return type.ToString();
            return stype.ToString();
        }
        Type type;

Usage Example

Exemplo n.º 1
0
 public override string ToString()
 {
     if (type == null)
     {
         return("<null>" + value);
     }
     return("<" + type.ToString() + ">" + value);
 }
All Usage Examples Of CSLE.CLType::ToString