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

◆ IsNullable

override bool System.Xml.Schema.ChoiceNode.IsNullable
get

Definition at line 5 of file ChoiceNode.cs.

6 {
7 get
8 {
9 ChoiceNode choiceNode = this;
10 SyntaxTreeNode leftChild;
11 do
12 {
13 if (choiceNode.RightChild.IsNullable)
14 {
15 return true;
16 }
17 leftChild = choiceNode.LeftChild;
18 choiceNode = leftChild as ChoiceNode;
19 }
20 while (choiceNode != null);
21 return leftChild.IsNullable;
22 }
23 }