internal void AddImplementedInterface(InterfaceImpl iImpl) { Contract.Requires(iImpl != null); interfaces.Add(iImpl); }
internal static void Read(PEReader buff, TableRow[] impls) { Contract.Requires(buff != null); for (int i = 0; i < impls.Length; i++) impls[i] = new InterfaceImpl(buff); }