From 5d3d991035bf2edbfe6692d7ec7ca7c93cb88191 Mon Sep 17 00:00:00 2001 From: fanoI Date: Sat, 2 Dec 2017 13:50:43 +0100 Subject: [PATCH] Other plug missed :-( --- .../Text/DecoderExceptionFallbackBufferImpl.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 source/Cosmos.System2_Plugs/System/Text/DecoderExceptionFallbackBufferImpl.cs diff --git a/source/Cosmos.System2_Plugs/System/Text/DecoderExceptionFallbackBufferImpl.cs b/source/Cosmos.System2_Plugs/System/Text/DecoderExceptionFallbackBufferImpl.cs new file mode 100644 index 000000000..8589f06cf --- /dev/null +++ b/source/Cosmos.System2_Plugs/System/Text/DecoderExceptionFallbackBufferImpl.cs @@ -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()"); + } + } +}