Retrieves the drive names of all logical drives
Example:
DriveInfo[] allDrives = DriveInfo.GetDrives();
foreach (DriveInfo d in allDrives)
{
tvLeft.Nodes.Add(d.Name);
}
Telerik > RadGridView > Rows > Clear
Clear is a efficient solution to remove all rows since the grid's events will be suspended.
Example
this.radGridView1.Rows.Clear();