using System; using System.IO; using SabreTools.Models.PortableExecutable; namespace SabreTools.Serialization.Streams { public partial class PortableExecutable : IStreamSerializer { /// #if NET48 public Stream Serialize(Executable obj) => throw new NotImplementedException(); #else public Stream? Serialize(Executable? obj) => throw new NotImplementedException(); #endif } }