Commit ab16c896 张东亮

1

1 个父辈 fc5d3730
...@@ -21,7 +21,7 @@ namespace BLL ...@@ -21,7 +21,7 @@ namespace BLL
public static List<string> extraKey=new List<string>(); public static List<string> extraKey=new List<string>();
//public static Dictionary<string, Dictionary<string, string>> extraData = new Dictionary<string, Dictionary<string, string>>(); //public static Dictionary<string, Dictionary<string, string>> extraData = new Dictionary<string, Dictionary<string, string>>();
public static int mateMaxCodeID; public static int mateMaxCodeID;
public static readonly string[] CODE_SPLIT = new string[] { ",", ";", ":", "@", "#", "$", "%", "&", "-", "_", "+", "|", "!", "^", "*", "?", "/", "\\", "[Space]", "[Tab]","GS","RS"}; public static readonly string[] CODE_SPLIT = new string[] { ",", ";", ":", "@", "#", "$", "%", "&", "-", "_", "+", "|", "!", "^", "*", "?", "/", "\\", "[Space]", "[Tab]","[GS]","[RS]"};
public static List<AutoGenRule> AutoGenRules; public static List<AutoGenRule> AutoGenRules;
} }
......
...@@ -8,7 +8,7 @@ namespace Model ...@@ -8,7 +8,7 @@ namespace Model
{ {
public static class MaterialAsciiCode public static class MaterialAsciiCode
{ {
private static readonly Dictionary<string, string> ASCII_CODE = new() { { "[space]", " " }, { "[tab]", "\t" } }; private static readonly Dictionary<string, string> ASCII_CODE = new() { { "[space]", " " }, { "[tab]", "\t" },{ "[gs]",((char)29).ToString()},{ "[rs]", ((char)30).ToString() } };
public static string GetAsciiCode(string code) public static string GetAsciiCode(string code)
{ {
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!