FileVersionInfo.ProductMinorPart 属性
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取文件关联产品版本号的次要部分。
public:
property int ProductMinorPart { int get(); };
C#
public int ProductMinorPart { get; }
member this.ProductMinorPart : int
Public ReadOnly Property ProductMinorPart As Integer
表示产品版本号次要部分的值,当文件不包含版本信息时则为 null
。
以下示例调用 GetVersionInfo 以获取 FileVersionInfo 记事本的 。 然后,它会在文本框中打印 ProductMinorPart 。 此代码假定 textBox1
已实例化。
private:
void GetProductMinorPart()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print the product minor part number.
textBox1->Text = String::Concat( "Product minor part number: ", myFileVersionInfo->ProductMinorPart );
}
C#
private void GetProductMinorPart()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the product minor part number.
textBox1.Text = "Product minor part number: " + myFileVersionInfo.ProductMinorPart;
}
Private Sub GetProductMinorPart()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the product minor part number.
textBox1.Text = "Product minor part number: " & myFileVersionInfo.ProductMinorPart
End Sub
通常,版本号显示为“major number.minor number.build number.private part number”。 产品版本号是保存版本号的 64 位数字,如下所示:
前 16 位是 ProductMajorPart 数字。
接下来的 16 位是 ProductMinorPart 数字。
第三组 16 位是 ProductBuildPart 数字。
最后 16 位是 ProductPrivatePart 数字。
此属性获取第二组 16 位。
产品 | 版本 |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |