mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-13 21:33:38 +00:00
16 lines
437 B
C#
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
|
|
}
|
|
} |