本文整理汇总了C#中System.OperatingSystem.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# OperatingSystem.ToString方法的具体用法?C# OperatingSystem.ToString怎么用?C# OperatingSystem.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.OperatingSystem
的用法示例。
在下文中一共展示了OperatingSystem.ToString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: BuildOSObj
// Example for the OperatingSystem constructor and the
// OperatingSystem.ToString( ) method.
using System;
class OpSysConstructDemo
{
// Create and display an OperatingSystem object.
static void BuildOSObj( PlatformID pID, Version ver )
{
OperatingSystem os = new OperatingSystem( pID, ver );
Console.WriteLine( " {0}", os.ToString( ) );
}
static void BuildOperatingSystemObjects( )
{
// The Version object does not need to correspond to an
// actual OS version.
Version verNull = new Version( );
Version verMajMin = new Version( 3, 11 );
Version verMMBld = new Version( 5, 25, 625 );
Version verMMBVer = new Version( 5, 6, 7, 8 );
Version verString = new Version( "3.5.8.13" );
// All PlatformID members are shown here.
BuildOSObj( PlatformID.Win32NT, verNull );
BuildOSObj( PlatformID.Win32S, verMajMin );
BuildOSObj( PlatformID.Win32Windows, verMMBld );
BuildOSObj( PlatformID.WinCE, verMMBVer );
BuildOSObj( PlatformID.Win32NT, verString );
}
public static void Main( )
{
Console.WriteLine(
"This example of the OperatingSystem constructor " +
"and \nOperatingSystem.ToString( ) " +
"generates the following output.\n" );
Console.WriteLine(
"Create and display several different " +
"OperatingSystem objects:\n" );
BuildOperatingSystemObjects( );
Console.WriteLine(
"\nThe OS version of the host computer is:\n\n {0}",
Environment.OSVersion.ToString( ) );
}
}
输出:
Create and display several different OperatingSystem objects: Microsoft Windows NT 0.0 Microsoft Win32S 3.11 Microsoft Windows 98 5.25.625 Microsoft Windows CE 5.6.7.8 Microsoft Windows NT 3.5.8.13 The OS version of the host computer is: Microsoft Windows NT 5.1.2600.0