Example #1
0
		static string GetStringForSoftwareArchitecture(SoftwareArchitecture softwareArchitecture)
		{
			switch (softwareArchitecture)
			{
				case SoftwareArchitecture.Bit64: return "64-bit";
				case SoftwareArchitecture.Bit32: return "32-bit";
			}

			return "Unknown";
		}
Example #2
0
        static string GetStringForSoftwareArchitecture(SoftwareArchitecture softwareArchitecture)
        {
            switch (softwareArchitecture)
            {
            case SoftwareArchitecture.Bit64: return("64-bit");

            case SoftwareArchitecture.Bit32: return("32-bit");
            }

            return("Unknown");
        }
Example #3
0
 public OSData(OSType type, OSVersion version, SoftwareArchitecture architecture)
 {
     OSType       = type;
     OSVersion    = version;
     Architecture = architecture;
 }