ASCII 艺术导致无法识别的转义 C#
ASCII art causing unrecognized escape C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Diagnostics;
namespace ScriptingIProject02JordanOleksiuk
{
class Program
{
static void Main( string[] args )
{
int QuizPoints = 0;
Console.WriteLine(" __ _______ __ ___ _ _ _____ _ ");
Console.WriteLine(" \ \___ / / /\ \ \/ \ || |/ _ /___ /\ /\__ _| | ___ ");
Console.WriteLine(" \ \|_ \ \/ \/ / /\ / || |\// // __| / /_/ / _` | |/ _ \ ");
Console.WriteLine("/\_/ /__) \ /\ / /_//|__ _/ //\__ \ / __ / (_| | | (_) |");
Console.WriteLine("\___/____/ \/ \/___,' |_|/____/___/ \/ /_/ \__,_|_|\___/ ");
Console.WriteLine(" ");
Console.WriteLine(" __ _ ");
Console.WriteLine(" /__\_ _| |_ _ __ __ ___ ____ _ __ _ __ _ _ __ ______ _ ");
Console.WriteLine(" /_\ \ \/ / __| '__/ _` \ \ / / _` |/ _` |/ _` | '_ \|_ / _` |");
Console.WriteLine("//__ > <| |_| | | (_| |\ V / (_| | (_| | (_| | | | |/ / (_| |");
Console.WriteLine("\__/ /_/\_\__|_| \__,_| \_/ \__,_|\__, |\__,_|_| |_/___\__,_|");
}
}
}
我正在尝试 运行 测试此程序以使 ASCII 艺术正常工作,但我一直在 Visual studio 中收到 "Unrecognized escape sequence" 表示它在许多随机字符下方。似乎没有我无法识别的模式。他们中的一些人认为 'class system.string represents text as a series of Unicode characters' 我是一年级视频游戏设计专业的学生。所以我的知识和理解非常有限。如有任何帮助,我们将不胜感激。
在每个引用的字符串前加上 @
前缀,告诉编译器完全按原样获取字符串。
反斜杠用于转义字符。您在反斜杠后面有一个序列,该序列不是可识别的转义序列。像 \n
是一个换行符。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Diagnostics;
namespace ScriptingIProject02JordanOleksiuk
{
class Program
{
static void Main( string[] args )
{
int QuizPoints = 0;
Console.WriteLine(" __ _______ __ ___ _ _ _____ _ ");
Console.WriteLine(" \ \___ / / /\ \ \/ \ || |/ _ /___ /\ /\__ _| | ___ ");
Console.WriteLine(" \ \|_ \ \/ \/ / /\ / || |\// // __| / /_/ / _` | |/ _ \ ");
Console.WriteLine("/\_/ /__) \ /\ / /_//|__ _/ //\__ \ / __ / (_| | | (_) |");
Console.WriteLine("\___/____/ \/ \/___,' |_|/____/___/ \/ /_/ \__,_|_|\___/ ");
Console.WriteLine(" ");
Console.WriteLine(" __ _ ");
Console.WriteLine(" /__\_ _| |_ _ __ __ ___ ____ _ __ _ __ _ _ __ ______ _ ");
Console.WriteLine(" /_\ \ \/ / __| '__/ _` \ \ / / _` |/ _` |/ _` | '_ \|_ / _` |");
Console.WriteLine("//__ > <| |_| | | (_| |\ V / (_| | (_| | (_| | | | |/ / (_| |");
Console.WriteLine("\__/ /_/\_\__|_| \__,_| \_/ \__,_|\__, |\__,_|_| |_/___\__,_|");
}
}
}
我正在尝试 运行 测试此程序以使 ASCII 艺术正常工作,但我一直在 Visual studio 中收到 "Unrecognized escape sequence" 表示它在许多随机字符下方。似乎没有我无法识别的模式。他们中的一些人认为 'class system.string represents text as a series of Unicode characters' 我是一年级视频游戏设计专业的学生。所以我的知识和理解非常有限。如有任何帮助,我们将不胜感激。
在每个引用的字符串前加上 @
前缀,告诉编译器完全按原样获取字符串。
反斜杠用于转义字符。您在反斜杠后面有一个序列,该序列不是可识别的转义序列。像 \n
是一个换行符。