mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
16 lines
341 B
C#
16 lines
341 B
C#
using System.Text;
|
|
|
|
using Cosmos.IL2CPU.API;
|
|
|
|
namespace Cosmos.Core_Plugs.System.Text
|
|
{
|
|
[Plug(Target = typeof(DecoderFallback))]
|
|
public static class DecoderFallbackImpl
|
|
{
|
|
// See note in EncoderFallbackImpl
|
|
public static object get_InternalSyncObject()
|
|
{
|
|
return new object();
|
|
}
|
|
}
|
|
}
|