Cosmos/source2/Kernel/System/Cosmos.System.Plugs.System/Text/DecoderFallbackImpl.cs
kudzu_cp 3ab639a234
2011-03-06 16:34:57 +00:00

15 lines
400 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.IL2CPU.Plugs;
namespace Cosmos.System.Plugs.System.System.Text {
[Plug(Target = typeof(DecoderFallback))]
public static class DecoderFallbackImpl {
// See note in EncoderFallbackImpl
public static object get_InternalSyncObject() {
return new object();
}
}
}