FileVersionInfo.ProductVersion Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Bu dosyanın dağıtıldığı ürünün sürümünü alır.
public:
property System::String ^ ProductVersion { System::String ^ get(); };
public string? ProductVersion { get; }
public string ProductVersion { get; }
member this.ProductVersion : string
Public ReadOnly Property ProductVersion As String
Özellik Değeri
Bu dosyanın dağıtıldığı ürünün sürümü veya null
dosya sürüm bilgisi içermiyorsa.
Örnekler
Aşağıdaki örnek, Not Defteri için öğesini FileVersionInfo almak için çağrısı GetVersionInfo yapar. Ardından metin kutusuna ProductVersion yazdırır. Bu kod örneği başlatıldığını varsayar textBox1
.
private:
void GetProductVersion()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print the product version number.
textBox1->Text = String::Concat( "Product version number: ", myFileVersionInfo->ProductVersion );
}
private void GetProductVersion()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the product version number.
textBox1.Text = "Product version number: " + myFileVersionInfo.ProductVersion;
}
Private Sub GetProductVersion()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the product version number.
textBox1.Text = "Product version number: " & myFileVersionInfo.ProductVersion
End Sub
Açıklamalar
Genellikle, bir sürüm numarası "ana sayı.ikincil sayı.derleme numarası.özel parça numarası" olarak görüntülenir. Ürün sürüm numarası, sürüm numarasını aşağıdaki gibi tutan 64 bitlik bir sayıdır:
İlk 16 bit sayıdır ProductMajorPart .
Sonraki 16 bit sayıdır ProductMinorPart .
16 bitlik üçüncü küme sayıdır ProductBuildPart .
Son 16 bit sayıdır ProductPrivatePart .