Skip to content

Commit

Permalink
🐛 Stream read plug does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinbreiz committed Nov 7, 2023
1 parent 87a11ec commit 3a35ed9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions source/Cosmos.System2_Plugs/System/IO/StreamImpl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ namespace Cosmos.System_Plugs.System.IO
[Plug(Target = typeof(Stream))]
public static class StreamImpl
{
public static int Read(Stream aThis, Span<byte> buffer)
{
throw new NotImplementedException();
}

public static void Dispose(Stream aThis)
{
throw new NotImplementedException();
Expand Down

0 comments on commit 3a35ed9

Please sign in to comment.