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/ApphostFile30.cs

22 lines
467 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 ApphostFile30 : IApphostFile
{
public ApphostFile30(FileStream fs, PEHeaders peheader) : base(fs, peheader) { }
public override void Close()
{
throw new NotImplementedException();
}
}
}