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

◆ OSPlatform()

System.Runtime.InteropServices.OSPlatform.OSPlatform ( string osPlatform)
inlineprivate

Definition at line 21 of file OSPlatform.cs.

22 {
23 if (osPlatform == null)
24 {
25 throw new ArgumentNullException("osPlatform");
26 }
27 if (osPlatform.Length == 0)
28 {
29 throw new ArgumentException(System.SR.Argument_EmptyValue, "osPlatform");
30 }
31 Name = osPlatform;
32 }
static string Argument_EmptyValue
Definition SR.cs:14
Definition SR.cs:7

References System.SR.Argument_EmptyValue, and System.Runtime.InteropServices.OSPlatform.Name.

Referenced by System.Runtime.InteropServices.OSPlatform.Create().