Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/src/System/Diagnostics/Debugger.cs')
-rw-r--r--src/System.Private.CoreLib/src/System/Diagnostics/Debugger.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/src/System/Diagnostics/Debugger.cs b/src/System.Private.CoreLib/src/System/Diagnostics/Debugger.cs
index 10298ebd5..4c47bd66b 100644
--- a/src/System.Private.CoreLib/src/System/Diagnostics/Debugger.cs
+++ b/src/System.Private.CoreLib/src/System/Diagnostics/Debugger.cs
@@ -49,14 +49,14 @@ namespace System.Diagnostics
/// desired events are actually reported to the debugger.
/// Constant representing the default category
/// </summary>
- public static readonly String DefaultCategory = null;
+ public static readonly string DefaultCategory = null;
/// <summary>
/// Posts a message for the attached debugger. If there is no
/// debugger attached, has no effect. The debugger may or may not
/// report the message depending on its settings.
/// </summary>
- public static void Log(int level, String category, String message)
+ public static void Log(int level, string category, string message)
{
if (IsLogging())
{