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

◆ ProcessArchitecture

Architecture System.Runtime.InteropServices.RuntimeInformation.ProcessArchitecture
staticget

Definition at line 116 of file RuntimeInformation.cs.

117 {
118 get
119 {
120 int num = s_processArch;
121 if (num == -1)
122 {
123 global::Interop.Kernel32.GetSystemInfo(out var lpSystemInfo);
124 num = (s_processArch = (int)Map((global::Interop.Kernel32.ProcessorArchitecture)lpSystemInfo.wProcessorArchitecture));
125 }
126 return (Architecture)num;
127 }
128 }
static Architecture Map(global::Interop.Kernel32.ProcessorArchitecture processorArchitecture)