List of disks
Namespace:
VMInfoFace.Data
Assembly:
VMInfoFace.Data (in VMInfoFace.Data.dll) Version: 21.5.28.1 (21.5.28.1171)
Syntaxpublic List<string> Disks { get; set; }
Public Property Disks As List(Of String)
Get
Set
Property Value
Type:
ListString
Examples
This example read all disks
StringBuilder Text = new StringBuilder();
Text.AppendLine("Disks:");
foreach (string DiskName in Machine.Disks)
{
Text.AppendLine(DiskName);
}
See Also