第 12 章 crifanLib.cs之Runtime

目录

12.1. 获得当前软件的版本:getCurVerStr

12.1. 获得当前软件的版本:getCurVerStr


    public string getCurVerStr()
    {
        string curVerStr = "";
        Assembly asm = Assembly.GetExecutingAssembly();
        FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(asm.Location);
        curVerStr = String.Format("{0}.{1}", fvi.ProductMajorPart, fvi.ProductMinorPart);
        return curVerStr;
    }

    

例 12.1. getCurVerStr 的使用范例


            //update version string
            this.Text += " v" + getCurVerStr();