■ Assembly 클래스의 GetName 메소드를 사용해 어셈블리 버전을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System; using System.Reflection; Assembly assembly = Assembly.GetExecutingAssembly(); Version version = assembly.GetName().Version; Console.WriteLine($"어셈블리 버전 : {version}"); Console.WriteLine($" 메이저 : {version.Major }"); Console.WriteLine($" 마이너 : {version.Minor }"); Console.WriteLine($" 빌드 : {version.Build }"); Console.WriteLine($" 리비전 : {version.Revision}"); |