Move to file scoped namespaces.

This commit is contained in:
2022-03-06 13:29:37 +00:00
parent 7098c95929
commit 5f5b96fffc

View File

@@ -30,8 +30,8 @@
// Copyright © 2011-2022 Natalia Portillo // Copyright © 2011-2022 Natalia Portillo
// ****************************************************************************/ // ****************************************************************************/
namespace Aaru.Console namespace Aaru.Console;
{
/// <summary> /// <summary>
/// Writes the text representation of the specified array of objects, followed by the current line terminator, to /// Writes the text representation of the specified array of objects, followed by the current line terminator, to
/// the standard output console using the specified format information. /// the standard output console using the specified format information.
@@ -233,4 +233,3 @@ namespace Aaru.Console
public static void DebugWriteLine(string module, string value) => public static void DebugWriteLine(string module, string value) =>
DebugWriteLineEvent?.Invoke("{0}", "DEBUG (" + module + "): " + value); DebugWriteLineEvent?.Invoke("{0}", "DEBUG (" + module + "): " + value);
} }
}