AwesomeComputers.HardDrive.RAID.LoadData C# (CSharp) 메소드

LoadData() 공개 메소드

public LoadData ( int address ) : void
address int
리턴 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);
        }