You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
apphost-extract/src/apphost-extract/apphost-extract-v2/Models/ApphostFile5.cs

21 lines
459 B

using apphost_extract_v2.General;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection.PortableExecutable;
using System.Text;
namespace apphost_extract_v2.Models
{
public class ApphostFile5 : IApphostFile
{
public ApphostFile5(FileStream fs, PEHeaders peheader) : base(fs, peheader) { }
public override void Close()
{
throw new NotImplementedException();
}
}
}