Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IndentChar

char System.Xml.XmlTextWriter.IndentChar
getset

Definition at line 445 of file XmlTextWriter.cs.

446 {
447 get
448 {
449 return _indentChars[0];
450 }
451 set
452 {
453 if (value == ' ')
454 {
456 return;
457 }
459 {
460 _indentChars = new char[64];
461 }
462 for (int i = 0; i < 64; i++)
463 {
465 }
466 }
467 }
static readonly char[] s_defaultIndentChars