public override string ToString()

in csharp/src/Drivers/Apache/Thrift/Service/Rpc/Thrift/TColumn.cs [439:493]


    public override string ToString()
    {
      var tmp177 = new StringBuilder("TColumn(");
      int tmp178 = 0;
      if((BoolVal != null) && __isset.boolVal)
      {
        if(0 < tmp178++) { tmp177.Append(", "); }
        tmp177.Append("BoolVal: ");
        BoolVal.ToString(tmp177);
      }
      if((ByteVal != null) && __isset.byteVal)
      {
        if(0 < tmp178++) { tmp177.Append(", "); }
        tmp177.Append("ByteVal: ");
        ByteVal.ToString(tmp177);
      }
      if((I16Val != null) && __isset.i16Val)
      {
        if(0 < tmp178++) { tmp177.Append(", "); }
        tmp177.Append("I16Val: ");
        I16Val.ToString(tmp177);
      }
      if((I32Val != null) && __isset.i32Val)
      {
        if(0 < tmp178++) { tmp177.Append(", "); }
        tmp177.Append("I32Val: ");
        I32Val.ToString(tmp177);
      }
      if((I64Val != null) && __isset.i64Val)
      {
        if(0 < tmp178++) { tmp177.Append(", "); }
        tmp177.Append("I64Val: ");
        I64Val.ToString(tmp177);
      }
      if((DoubleVal != null) && __isset.doubleVal)
      {
        if(0 < tmp178++) { tmp177.Append(", "); }
        tmp177.Append("DoubleVal: ");
        DoubleVal.ToString(tmp177);
      }
      if((StringVal != null) && __isset.stringVal)
      {
        if(0 < tmp178++) { tmp177.Append(", "); }
        tmp177.Append("StringVal: ");
        StringVal.ToString(tmp177);
      }
      if((BinaryVal != null) && __isset.binaryVal)
      {
        if(0 < tmp178++) { tmp177.Append(", "); }
        tmp177.Append("BinaryVal: ");
        BinaryVal.ToString(tmp177);
      }
      tmp177.Append(')');
      return tmp177.ToString();
    }