Boo.BooLangStudio.BooLangStudioPackage.ProductID C# (CSharp) Method

ProductID() public method

This methods provides the product version, it will be displayed in the help about dialog.
public ProductID ( string &pbstrPID ) : int
pbstrPID string Out parameter to which to assign the version number
return int
        public int ProductID(out string pbstrPID)
        {
            pbstrPID = GetResourceString("111");
            return VSConstants.S_OK;
        }