Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/X86/ELF/Extensions.cs
2009-09-06 16:59:43 +00:00

12 lines
No EOL
355 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU.X86.ELF {
public static class Extensions {
public static void AppendLine(this StringBuilder aThis, string aFormat, params object[] aArgs) {
aThis.AppendLine(String.Format(aFormat, aArgs));
}
}
}