Other plug missed :-(

This commit is contained in:
fanoI 2017-12-02 13:50:43 +01:00
parent 4197d35f3d
commit 5d3d991035

View file

@ -0,0 +1,15 @@
using System;
using System.Text;
using Cosmos.IL2CPU.API.Attribs;
namespace Cosmos.System2_Plugs.System.Text
{
[Plug(Target = typeof(DecoderExceptionFallbackBuffer))]
public static class DecoderExceptionFallbackBufferImpl
{
public static bool Fallback(DecoderExceptionFallbackBuffer aThis, byte[] bytesUnknown, int index)
{
throw new NotImplementedException("DecoderExceptionFallbackBuffer Fallback()");
}
}
}