IBinaryWriteable
interface IBinaryWriteable
Expresses that the object can be written with a BinaryWriter
using System.IO;
using System.Runtime.CompilerServices;
namespace System.Private.Windows.BinaryFormat.Serializer
{
[NullableContext(1)]
internal interface IBinaryWriteable
{
void Write(BinaryWriter writer);
}
}