mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
370 B
C#
15 lines
370 B
C#
using System.Text;
|
|
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System.Text
|
|
{
|
|
[Plug("System.Text.InternalEncoderBestFitFallback, System.Private.CoreLib")]
|
|
public static class InternalEncoderBestFitFallbackImpl
|
|
{
|
|
public static EncoderFallbackBuffer CreateFallbackBuffer(object aThis)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|