first commit

This commit is contained in:
2026-01-07 11:33:05 +08:00
commit fc54ffd43b
215 changed files with 31856 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <author name="Daniel Grunwald"/>
// <version>$Revision$</version>
// </file>
using System;
namespace ICSharpCode.TextEditor.Util
{
/// <summary>
/// Central location for logging calls in the text editor.
/// </summary>
static class LoggingService
{
public static void Debug(string text)
{
#if DEBUG
Console.WriteLine(text);
#endif
}
}
}