/// <summary> /// Converts an object into its XML representation. /// </summary> /// <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> stream to which the object is serialized. </param> public void WriteXml(XmlWriter writer) { writer.WriteElementString("BottomLeft", BottomLeft.ToString()); writer.WriteElementString("BottomRight", BottomRight.ToString()); writer.WriteElementString("TopLeft", TopLeft.ToString()); writer.WriteElementString("TopRight", TopRight.ToString()); }
public override string ToString() { return (TopLeft.ToString() + "," + TopRight.ToString() + "," + BottomLeft.ToString() + "," + BottomRight.ToString()); }
public override string ToString() { return(string.Format("Bottom Left at {0}, Top Right at {1}", BottomLeft.ToString(), TopRight.ToString())); }