PropertyInformation.Source Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan file sumber yang sesuai dengan atribut konfigurasi.
public:
property System::String ^ Source { System::String ^ get(); };
public string Source { get; }
member this.Source : string
Public ReadOnly Property Source As String
Nilai Properti
File PropertyInformation sumber objek.
Contoh
Contoh kode berikut menunjukkan cara menggunakan Source properti . Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk PropertyInformation kelas .
// Display the Source property.
Console.WriteLine("Source: {0}", propertyItem.Source);
' Display the Source property.
Console.WriteLine("Source: {0}", propertyItem.Source)