mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
14 lines
358 B
C#
14 lines
358 B
C#
using 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;
|
|
}
|
|
}
|
|
}
|