Environment.Version プロパティ
アセンブリ: mscorlib (mscorlib.dll 内)


共通言語ランタイムのバージョンを表示するコード例を次に示します。(コード例の出力結果は、セキュリティ上の理由により、バージョンを省略して記載しています。)
' Sample for the Environment.Version property Imports System Class Sample Public Shared Sub Main() Console.WriteLine() Console.WriteLine("Version: {0}", Environment.Version.ToString()) End Sub 'Main End Class 'Sample ' 'This example produces the following results: '(Any result that is lengthy, specific to the machine on which this sample was tested, 'or reveals information that should remain secure, has been omitted 'and marked "!---OMITTED---!".) ' 'Version: !---OMITTED---! '
// Sample for the Environment.Version property using System; class Sample { public static void Main() { Console.WriteLine(); Console.WriteLine("Version: {0}", Environment.Version.ToString()); } } /* This example produces the following results: (Any result that is lengthy, specific to the machine on which this sample was tested, or reveals information that should remain secure, has been omitted and marked "!---OMITTED---!".) Version: !---OMITTED---! */
// Sample for the Environment::Version property using namespace System; int main() { Console::WriteLine(); Console::WriteLine( "Version: {0}", Environment::Version ); } /* This example produces the following results: (Any result that is lengthy, specific to the machine on which this sample was tested, or reveals information that should remain secure, has been omitted and marked S"!---OMITTED---!".) Version: !---OMITTED---! */
// Sample for the Environment.Version property import System.*; class Sample { public static void main(String[] args) { Console.WriteLine(); Console.WriteLine("Version: {0}", System.Convert.ToString(Environment.get_Version())); } //main } //Sample /* This example produces the following results: (Any result that is lengthy, specific to the machine on which this sample was tested, or reveals information that should remain secure, has been omitted and marked "!---OMITTED---!".) Version: !---OMITTED---! */

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- Environment.Version プロパティのページへのリンク