mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
14 lines
365 B
C#
14 lines
365 B
C#
using Cosmos.IL2CPU.API.Attribs;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Core_Plugs.System.Text
|
|
{
|
|
[Plug(TargetName = "System.Text.InternalEncoderBestFitFallback")]
|
|
public static class InternalEncoderBestFitFallbackImpl
|
|
{
|
|
public static EncoderFallbackBuffer CreateFallbackBuffer(object aThis)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|