mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-25 19:18:01 +02:00
Implement FileStream SetLength
This commit is contained in:
parent
4bd3cc641d
commit
06fe5a98c6
8 changed files with 83 additions and 10 deletions
|
@ -203,6 +203,11 @@ namespace System.IO
|
|||
return .Ok;
|
||||
}
|
||||
|
||||
public virtual Result<void> SetLength(int64 length)
|
||||
{
|
||||
return .Err;
|
||||
}
|
||||
|
||||
public void Align(int alignSize)
|
||||
{
|
||||
int64 pos = Length;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue