Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LocalSymInfo.cs
Go to the documentation of this file.
2
3internal sealed class LocalSymInfo
4{
5 internal int m_iLocalSymCount;
6
7 internal string[] m_namespace;
8
9 internal int m_iNameSpaceCount;
10
11 internal LocalSymInfo()
12 {
15 }
16
18 {
19 if (m_iNameSpaceCount == 0)
20 {
21 m_namespace = new string[16];
22 }
23 else if (m_iNameSpaceCount == m_namespace.Length)
24 {
25 string[] array = new string[checked(m_iNameSpaceCount * 2)];
28 }
29 }
30
31 internal void AddUsingNamespace(string strNamespace)
32 {
34 m_namespace[m_iNameSpaceCount] = strNamespace;
35 checked
36 {
38 }
39 }
40}
static unsafe void Copy(Array sourceArray, Array destinationArray, int length)
Definition Array.cs:624
void AddUsingNamespace(string strNamespace)