ArcGISCompare.AttributeMappingData.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
    public override string ToString()
    {
      if (this.constant != "") { return this.srcAtt + " ---> " + this.destAtt + " using '" + this.constant + "'"; }
      else { return this.srcAtt + " ---> " + this.destAtt; }
    }
  }