■ RuntimeInformation 클래스의 FrameworkDescription 정적 속성을 사용해 실행 프로그램의 닷넷 설치명을 구하는 방법을 보여준다.
▶ 닷넷 6 버전 (C#)
1 2 3 4 5 6 7 8 9 |
using System.Runtime.InteropServices; Console.WriteLine(RuntimeInformation.FrameworkDescription); /* .NET 6.0.9 */ |
▶ 닷넷 5 버전 (C#)
1 2 3 4 5 6 7 8 9 10 |
using System; using System.Runtime.InteropServices; Console.WriteLine(RuntimeInformation.FrameworkDescription); /* .NET 5.0.17 */ |
▶ 닷넷 프레임워크 4.7.1 ~ 4.8.1 버전 (C#)
1 2 3 4 5 6 7 8 9 10 |
using System; using System.Runtime.InteropServices; Console.WriteLine(RuntimeInformation.FrameworkDescription); /* .NET Framework 4.8.9082.0 */ |
※ 닷넷 4.7.1 미만 버전에서는 상기 코드를 컴파일할 수 없다.