File tree 1 file changed +2
-0
lines changed
source/nanoFramework.CoreLibrary/System
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ public static class Console
22
22
/// Writes the specified string value to the standard output stream.
23
23
/// </summary>
24
24
/// <param name="value">The value to write.</param>
25
+ [ Obsolete ( "This method is going to be removed in a future version. Call Debug.Write instead." ) ]
25
26
public static void Write ( string value )
26
27
#pragma warning restore S4200 // Native methods should be wrapped
27
28
{
@@ -33,6 +34,7 @@ public static void Write(string value)
33
34
/// Writes the specified string value, followed by the current line terminator, to the standard output stream.
34
35
/// </summary>
35
36
/// <param name="value">The value to write.</param>
37
+ [ Obsolete ( "This method is going to be removed in a future version. Call Debug.Write instead." ) ]
36
38
public static void WriteLine ( string value )
37
39
#pragma warning restore S4200 // Native methods should be wrapped
38
40
{
You can’t perform that action at this time.
0 commit comments