Cosmos/source/Cosmos.System.Plugs/System/Text/StringBuilderImpl.cs
2015-12-18 08:08:49 -06:00

19 lines
587 B
C#

namespace Cosmos.System.Plugs.System.Text
{
// no need for plug, after 64 bit support
//[Plug(Target = typeof(StringBuilder))]
//public static class StringBuilderImpl
//{
// public static string ToString(StringBuilder aThis)
// {
// var xResult = new char[aThis.Length];
// int xLength = aThis.Length;
// for (int i = 0; i < xLength; i++)
// {
// xResult[i] = aThis[i];
// }
// var xResultStr = new String(xResult);
// return xResultStr;
// }
//}
}