diff --git a/snippets/csharp/System/String/Replace/string.replace1.cs b/snippets/csharp/System/String/Replace/string.replace1.cs index 5164f6da247..c70171c917e 100644 --- a/snippets/csharp/System/String/Replace/string.replace1.cs +++ b/snippets/csharp/System/String/Replace/string.replace1.cs @@ -3,7 +3,7 @@ class stringReplace1 { public static void Main() { // - String str = "1 2 3 4 5 6 7 8 9"; + string str = "1 2 3 4 5 6 7 8 9"; Console.WriteLine("Original string: \"{0}\"", str); Console.WriteLine("CSV string: \"{0}\"", str.Replace(' ', ','));