AcManager.Tools.Miscellaneous.AppReporter.GetWindowsName C# (CSharp) Méthode

GetWindowsName() private static méthode

private static GetWindowsName ( ) : string
Résultat string
        private static string GetWindowsName() {
            return Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion")?.GetValue("ProductName") as string ??
                    WindowsVersionHelper.GetVersion();
        }