Files
SabreTools.Serialization/Streams/PortableExecutable.Serializer.cs
2023-09-09 00:10:17 -04:00

16 lines
437 B
C#

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