OpenMetaverse.Parcel.ToString C# (CSharp) Method

ToString() public method

Displays a parcel object in string format
public ToString ( ) : string
return string
        public override string ToString()
        {
            string result = "";
            Type parcelType = this.GetType();
            FieldInfo[] fields = parcelType.GetFields();
            foreach (FieldInfo field in fields)
            {
                result += (field.Name + " = " + field.GetValue(this) + " ");
            }
            return result;
        }
        /// <summary>