Cosmos/source/Compiler/Indy.IL2CPU.X86.Plugs/Diagnostics/DebuggerImpl.cs
mterwoord_cp b493bf136c
2009-09-12 16:49:12 +00:00

14 lines
No EOL
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.Plugs;
namespace Indy.IL2CPU.X86.PlugsLinqTest.CustomImplementations.System.Diagnostics {
[Plug(Target = typeof(global::System.Diagnostics.Debugger))]
public static class DebuggerImpl {
public static void Break() {
// leave empty, this is handled by a special case..
}
}
}