small fix for NetFramework

This commit is contained in:
Timerix22 2022-10-30 14:35:54 +06:00
parent 82f3a47f48
commit f6d045ae2d

View File

@ -0,0 +1,9 @@
using System.IO;
namespace DTLib.Extensions;
public static class OtherStuff
{
public static void Write(this Stream stream, byte[] buff)
=> stream.Write(buff, 0, buff.Length);
}