示例#1
0
 /// <summary>
 /// Writes a structure that is identified by a header
 /// </summary>
 /// <param name="header">The string that will identify the following structure</param>
 /// <param name="obj">The <see cref="IParadoxWrite"/> that dictates how the structure will be written</param>
 public override void Write(string header, IParadoxWrite obj)
 {
     this.Write(header, ValueWrite.LeadingTabs);
     this.WriteLine("=");
     this.WriteLine("{", ValueWrite.LeadingTabs);
     obj.Write(this);
     this.WriteLine("}", ValueWrite.LeadingTabs);
 }
 /// <summary>
 /// Writes a structure that is identified by a header
 /// </summary>
 /// <param name="header">The string that will identify the following structure</param>
 /// <param name="obj">The <see cref="IParadoxWrite"/> that dictates how the structure will be written</param>
 public override void Write(string header, IParadoxWrite obj)
 {
     this.Write(header, ValueWrite.LeadingTabs);
     this.WriteLine("=");
     this.WriteLine("{", ValueWrite.LeadingTabs);
     obj.Write(this);
     this.WriteLine("}", ValueWrite.LeadingTabs);
 }
 public override void Write(string header, IParadoxWrite obj)
 {
     this.Write(header);
     this.Write("=");
     this.Write("{");
     obj.Write(this);
     this.Write("}");
 }
 public override void Write(string header, IParadoxWrite obj)
 {
     this.Write(header);
     this.Write("=");
     this.Write("{");
     obj.Write(this);
     this.Write("}");
 }
 /// <summary>
 /// Writes a structure that is identified by a header
 /// </summary>
 /// <param name="header">The string that will identify the following structure</param>
 /// <param name="obj">The <see cref="IParadoxWrite"/> that dictates how the structure will be written</param>
 public void Write(string header, IParadoxWrite obj)
 {
     this.Write(header, obj.Write);
 }
 /// <summary>
 /// Writes a structure that is identified by a header
 /// </summary>
 /// <param name="header">The string that will identify the following structure</param>
 /// <param name="obj">The <see cref="IParadoxWrite"/> that dictates how the structure will be written</param>
 public void Write(string header, IParadoxWrite obj)
 {
     Write(header, obj.Write);
 }
 public abstract void Write(string header, IParadoxWrite obj);
 public abstract void Write(string header, IParadoxWrite obj);