C\#프로그램 집합 버 전,파일 버 전 가 져 오기

1.프로그램 집합 버 전 프로그램 코드 가 져 오기
 
label .Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
2.파일 버 전 프로그램 코드 가 져 오기
 
using System.Diagnostics;
FileVersionInfo myFileVersion = FileVersionInfo.GetVersionInfo (System.Windows.Forms.Application.ExecutablePath);
label .Text = myFileVersion.FileVersion;

좋은 웹페이지 즐겨찾기