IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
ImportArgLevel.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2
4{
5
7 {
8
9 public int Depth;
10 public List<string> Args;
11 public List<ImportArgLevel> Nested;
12
17 public ImportArgLevel(int depth)
18 {
19 Depth = depth;
20 Args = new List<string>();
21 Nested = new List<ImportArgLevel>();
22 }
23
24 }
25
26}
ImportArgLevel(int depth)
Initializes a new instance.