FileVersionInfo.ProductMinorPart 属性
获取文件关联产品版本号的次要部分。
**命名空间:**System.Diagnostics
**程序集:**System(在 system.dll 中)
语法
声明
Public ReadOnly Property ProductMinorPart As Integer
用法
Dim instance As FileVersionInfo
Dim value As Integer
value = instance.ProductMinorPart
public int ProductMinorPart { get; }
public:
property int ProductMinorPart {
int get ();
}
/** @property */
public int get_ProductMinorPart ()
public function get ProductMinorPart () : int
属性值
表示产品版本号次要部分的值。
备注
通常,版本号显示为“主版本号.次版本号.内部版本号.专用部件号”。产品版本号是一个 64 位的数字,它按如下形式表示版本号:
前 16 位是 ProductMajorPart 编号。
第二组 16 位是 ProductMinorPart 编号。
第三组 16 位是 ProductBuildPart 编号。
最后 16 位是 ProductPrivatePart 编号。
该属性获取第二组 16 位。
示例
下面的示例调用 GetVersionInfo 来获取“记事本”(Notepad) 的 FileVersionInfo。然后,它在文本框内输出 ProductMinorPart。这段代码假定已经实例化 textBox1
。
Private Sub GetProductMinorPart()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo("%systemroot%\Notepad.exe")
' Print the product minor part number.
textBox1.Text = "Product minor part number: " & myFileVersionInfo.ProductMinorPart
End Sub 'GetProductMinorPart
private void GetProductMinorPart() {
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe");
// Print the product minor part number.
textBox1.Text = "Product minor part number: " + myFileVersionInfo.ProductMinorPart;
}
private:
void GetProductMinorPart()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo = FileVersionInfo::GetVersionInfo( "%systemroot%\\Notepad.exe" );
// Print the product minor part number.
textBox1->Text = String::Concat( "Product minor part number: ", myFileVersionInfo->ProductMinorPart );
}
private void GetProductMinorPart()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe");
// Print the product minor part number.
textBox1.set_Text("Product minor part number: "
+ myFileVersionInfo.get_ProductMinorPart());
} //GetProductMinorPart
private function GetProductMinorPart() {
//Get the file version for the notepad.
var myFileVersionInfo : FileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe");
//Print the product minor part number.
textBox1.Text = "Product minor part number: " + myFileVersionInfo.ProductMinorPart;
}
平台
Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求。
版本信息
.NET Framework
受以下版本支持:2.0、1.1、1.0
请参见
参考
FileVersionInfo 类
FileVersionInfo 成员
System.Diagnostics 命名空间
FileVersionInfo.ProductBuildPart 属性
FileVersionInfo.ProductMajorPart 属性
ProductVersion