Skip to content

Commit

Permalink
Merge pull request #2845 from CosmosOS/plug/OSFileStreamStrategy
Browse files Browse the repository at this point in the history
✨ Plug OSFileStreamStrategy
  • Loading branch information
MishaProductions authored Dec 11, 2023
2 parents d587747 + 9c9d15b commit 3cddfe7
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions source/Cosmos.System2_Plugs/System/IO/OSFileStreamStrategyImpl.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using IL2CPU.API.Attribs;

namespace Cosmos.System_Plugs.System.IO
{
[Plug("System.IO.Strategies.OSFileStreamStrategy, System.Private.CoreLib")]
public class OSFileStreamStrategyImpl
{
public static void CCtor()
{
}

public static void SetLength(object aThis, long len)
{
throw new NotImplementedException();
}

public static long Seek(object aThis, long offset, object origin)
{
throw new NotImplementedException();
}

public static long get_Length(object aThis)
{
throw new NotImplementedException();
}

public static bool get_CanSeek(object aThis)
{
throw new NotImplementedException();
}
}
}

0 comments on commit 3cddfe7

Please sign in to comment.