using System.Collections.Generic; namespace DownKyi.Core.FileName { /// /// 文件名的分隔符 /// public static class HyphenSeparated { public static Dictionary Hyphen = new Dictionary() { { 101, "/" }, { 101, "_" }, { 102, "-" }, { 103, "+" }, { 104, "," }, { 105, "." }, { 106, "&" }, { 107, "#" }, { 108, "(" }, { 109, ")" }, { 110, "[" }, { 111, "]" }, { 112, "{" }, { 113, "}" }, { 114, " " }, }; } }