/// <summary> /// Read the given class from the given stream /// </summary> public ClassFile(Stream stream, IClassLoader loader) { this.loader = loader; if (stream != null) { var cfReader = new ClassFileReader(stream); cfReader.ReadHeader(this); } }