AwesomeComputers.HardDrive.RAID.SaveData C# (CSharp) Method

SaveData() public method

public SaveData ( int adress, string data ) : void
adress int
data string
return void
        public void SaveData(int adress, string data)
        { 
            // Invoke the SaveDataMethod of all hard drives in the Raid Array
            for (int i = 0; i < HardDrivesList.Count; i++)
            {
                HardDrivesList[i].SaveData(adress, data);
            }
        }