From 4e81ba90d9336bee1a5754cfe709371d7129c31e Mon Sep 17 00:00:00 2001 From: wryl Date: Tue, 26 Mar 2019 08:48:00 +0800 Subject: [PATCH] Update JsonWriter.cs (#124) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 乱码修复 --- Unity/Assets/ThirdParty/ILRuntime/LitJson/JsonWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Unity/Assets/ThirdParty/ILRuntime/LitJson/JsonWriter.cs b/Unity/Assets/ThirdParty/ILRuntime/LitJson/JsonWriter.cs index d1126c67..23296590 100644 --- a/Unity/Assets/ThirdParty/ILRuntime/LitJson/JsonWriter.cs +++ b/Unity/Assets/ThirdParty/ILRuntime/LitJson/JsonWriter.cs @@ -225,7 +225,7 @@ namespace LitJson writer.Write ('"'); - //ֱ�Ӵ洢ԭʼ�ַ������������κ�ת���ַ��Ľ��� + //直接存储原始字符串,不再做任何转义字符的解析 writer.Write(str); writer.Write('"'); return; -- GitLab