C# Class AwesomeComputers.HardDrive.RAID

The idea is to have sepparate class that can hold a list of HardDrives.
Show file Open project: nzhul/TelerikAcademy Class Usage Examples

Public Methods

Method Description
AddHardDrive ( HardDrive newDrive ) : void
LoadData ( int address ) : void
RAID ( ) : System
RAID ( List hardDriveList ) : System
RemoveHardDrive ( HardDrive driveToRemove ) : void
SaveData ( int adress, string data ) : void

Method Details

AddHardDrive() public method

public AddHardDrive ( HardDrive newDrive ) : void
newDrive HardDrive
return void

LoadData() public method

public LoadData ( int address ) : void
address int
return void

RAID() public method

public RAID ( ) : System
return System

RAID() public method

public RAID ( List hardDriveList ) : System
hardDriveList List
return System

RemoveHardDrive() public method

public RemoveHardDrive ( HardDrive driveToRemove ) : void
driveToRemove HardDrive
return void

SaveData() public method

public SaveData ( int adress, string data ) : void
adress int
data string
return void