1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-21 17:28:00 +02:00

Stream buffering

This commit is contained in:
Brian Fiete 2021-04-11 07:04:17 -04:00
parent 2345d5d349
commit 4bf12e121c
11 changed files with 482 additions and 28 deletions

View file

@ -71,9 +71,9 @@ namespace System.IO
return .Ok(count);
}
public override void Close()
public override Result<void> Close()
{
return .Ok;
}
}
}