1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DiskAccessLibrary
- {
- public partial class VirtualMachineDisk
- {
- public override void ExtendFast(long additionalNumberOfBytes)
- {
- throw new NotImplementedException("The method or operation is not implemented.");
- }
- }
- }
|