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

◆ ContentType

AssemblyContentType System.Reflection.AssemblyName.ContentType
getset

Definition at line 141 of file AssemblyName.cs.

142 {
143 get
144 {
145 int num = (int)(_flags & (AssemblyNameFlags)3584) >> 9;
146 if (num > 1)
147 {
148 num = 0;
149 }
150 return (AssemblyContentType)num;
151 }
152 set
153 {
154 int num = (int)(value & (AssemblyContentType)7);
155 if (num <= 1)
156 {
157 _flags = (AssemblyNameFlags)((long)_flags & 0xFFFFF1FFL);
158 _flags |= (AssemblyNameFlags)(num << 9);
159 }
160 }
161 }