mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 13:21:05 +00:00
22 lines
No EOL
671 B
C#
22 lines
No EOL
671 B
C#
//using System;
|
|
//using System.Collections.Generic;
|
|
//using System.Linq;
|
|
//using System.Text;
|
|
//using Indy.IL2CPU.Plugs;
|
|
//using System.Diagnostics;
|
|
|
|
//namespace Indy.IL2CPU.IL.X86LinqTest.CustomImplementations.System.Diagnostics {
|
|
// //[Plug(Target=typeof(Debug))]
|
|
// public static class DebugImpl {
|
|
// public static void WriteLine(string aMessage) {
|
|
// Console.Write("DEBUG: ");
|
|
// Console.WriteLine(aMessage);
|
|
// }
|
|
|
|
// public static void WriteLineIf(bool aCondition, string aMessage) {
|
|
// if(aCondition) {
|
|
// WriteLine(aMessage);
|
|
// }
|
|
// }
|
|
// }
|
|
//} |