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

◆ CheckIfPlatformHasUdpIssue()

static bool System.Net.Sockets.CompletionPortHelper.CheckIfPlatformHasUdpIssue ( )
inlinestaticprivate

Definition at line 14 of file CompletionPortHelper.cs.

15 {
16 Version version = Environment.OSVersion.Version;
17 if (version.Major >= 6)
18 {
19 if (version.Major == 6)
20 {
21 return version.Minor <= 1;
22 }
23 return false;
24 }
25 return true;
26 }

References System.Version.Major, and System.Environment.OSVersion.