Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
IndentChar
char System.Xml.XmlTextWriter.IndentChar
get
set
Definition at line
445
of file
XmlTextWriter.cs
.
446
{
447
get
448
{
449
return
_indentChars
[0];
450
}
451
set
452
{
453
if
(
value
==
' '
)
454
{
455
_indentChars
=
s_defaultIndentChars
;
456
return
;
457
}
458
if
(
_indentChars
==
s_defaultIndentChars
)
459
{
460
_indentChars
=
new
char
[64];
461
}
462
for
(
int
i = 0;
i
< 64;
i
++)
463
{
464
_indentChars
[
i
] =
value
;
465
}
466
}
467
}
System.Xml.XmlTextWriter.s_defaultIndentChars
static readonly char[] s_defaultIndentChars
Definition
XmlTextWriter.cs:126
System.Xml.XmlTextWriter._indentChars
char[] _indentChars
Definition
XmlTextWriter.cs:124
System.Text.RegularExpressions.ExceptionArgument.i
@ i
System.ExceptionArgument.value
@ value
System
Xml
XmlTextWriter
Generated by
1.10.0