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

LoadData() public method

public LoadData ( int address ) : void
address int
return void
        public void LoadData(int address)
        { 
            //  Invode LoadDataMethod from the first hard drive in the Raid Array
            if (HardDrivesList.Count <= 0)
            {
                throw new ArgumentException("No hard drive in the RAID array!");
            }
            HardDrivesList[0].LoadData(address);
        }