123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Collections.Specialized;
- using System.Data;
- using System.Drawing;
- using System.IO;
- using System.Runtime.Serialization.Formatters.Binary;
- using System.Text;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Converters;
- using Newtonsoft.Json.Linq;
- using Newtonsoft.Json.Serialization;
- namespace Tede.Data.Tests.Utils
- {
- public static class TranslateUtils
- {
- public static T Get<T>(IDictionary<string, object> dict, string name, T defaultValue = default(T))
- {
- return Cast(Get(dict, name), defaultValue);
- }
- public static object Get(IDictionary<string, object> dict, string name)
- {
- if (string.IsNullOrEmpty(name)) return null;
- return dict.TryGetValue(name, out var extendValue) ? extendValue : null;
- }
- public static T Cast<T>(object value, T defaultValue = default(T))
- {
- switch (value)
- {
- case null:
- return defaultValue;
- case T variable:
- return variable;
- default:
- try
- {
- return (T)Convert.ChangeType(value, typeof(T));
- }
- catch (InvalidCastException)
- {
- return defaultValue;
- }
- }
- }
- //添加枚举:(fileAttributes | FileAttributes.ReadOnly) 判断枚举:((fileAttributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) 去除枚举:(fileAttributes ^ FileAttributes.ReadOnly)
- /// <summary>
- /// 将字符串类型转换为对应的枚举类型
- /// </summary>
- public static object ToEnum(Type enumType, string value, object defaultType)
- {
- object retval;
- try
- {
- retval = Enum.Parse(enumType, value, true);
- }
- catch
- {
- retval = defaultType;
- }
- return retval;
- }
- public static List<int> ToIntList(int intValue)
- {
- return new List<int> { intValue };
- }
- public static int ToInt(string intStr, int defaultValue = 0)
- {
- if (!int.TryParse(intStr?.Trim().TrimStart('0'), out var i))
- {
- i = defaultValue;
- }
- if (i < 0)
- {
- i = defaultValue;
- }
- return i;
- }
- public static int ToIntWithNegative(string intStr, int defaultValue = 0)
- {
- if (!int.TryParse(intStr?.Trim(), out var i))
- {
- i = defaultValue;
- }
- return i;
- }
- public static decimal ToDecimal(string intStr, decimal defaultValue = 0)
- {
- if (!decimal.TryParse(intStr?.Trim(), out var i))
- {
- i = defaultValue;
- }
- if (i < 0)
- {
- i = defaultValue;
- }
- return i;
- }
- public static decimal ToDecimalWithNegative(string intStr, decimal defaultValue = 0)
- {
- if (!decimal.TryParse(intStr?.Trim(), out var i))
- {
- i = defaultValue;
- }
- return i;
- }
- public static long ToLong(string intStr, long defaultValue = 0)
- {
- if (!long.TryParse(intStr?.Trim(), out var l))
- {
- l = defaultValue;
- }
- if (l < 0)
- {
- l = defaultValue;
- }
- return l;
- }
- public static bool ToBool(string boolStr)
- {
- if (!bool.TryParse(boolStr?.Trim(), out var boolean))
- {
- boolean = false;
- }
- return boolean;
- }
- public static bool ToBool(string boolStr, bool defaultValue)
- {
- if (!bool.TryParse(boolStr?.Trim(), out var boolean))
- {
- boolean = defaultValue;
- }
- return boolean;
- }
- public static DateTimeOffset ToDateTimeOffset(DateTime dateTime)
- {
- return new DateTimeOffset(dateTime, TimeZoneInfo.Local.GetUtcOffset(dateTime));
- }
- public static DateTime ToDateTime(DateTimeOffset? dateTimeOffset)
- {
- if (!dateTimeOffset.HasValue)
- {
- return DateTime.MinValue;
- }
- return dateTimeOffset.Value.UtcDateTime;
- }
- public static DateTime ToDateTime(string dateTimeStr, DateTime defaultValue)
- {
- var datetime = defaultValue;
- if (!string.IsNullOrEmpty(dateTimeStr))
- {
- if (!DateTime.TryParse(dateTimeStr.Trim(), out datetime))
- {
- datetime = defaultValue;
- }
- return datetime;
- }
- return datetime;
- }
- public static Color ToColor(string colorStr)
- {
- var color = Color.Empty;
- try
- {
- color = Color.FromName(colorStr.Trim());
- }
- catch
- {
- // ignored
- }
- return color;
- }
- public static string ToTwoCharString(int i)
- {
- return i >= 0 && i <= 9 ? $"0{i}" : i.ToString();
- }
- public static List<int> StringCollectionToIntList(string collection)
- {
- var list = new List<int>();
- if (!string.IsNullOrEmpty(collection))
- {
- var array = collection.Split(',');
- foreach (var s in array)
- {
- int.TryParse(s.Trim(), out var i);
- list.Add(i);
- }
- }
- return list;
- }
- public static List<string> StringCollectionToStringList(string collection, char split = ',')
- {
- var list = new List<string>();
- if (!string.IsNullOrEmpty(collection))
- {
- var array = collection.Split(split);
- foreach (var s in array)
- {
- list.Add(s);
- }
- }
- return list;
- }
- public static IDictionary<string, object> ToDictionary<T>(T o)
- {
- IDictionary<string, object> res = new Dictionary<string, object>();
- var props = typeof(T).GetProperties();
- foreach (var prop in props)
- {
- if (prop.CanRead)
- {
- res.Add(prop.Name, prop.GetValue(o, null));
- }
- }
- return res;
- }
- public static Dictionary<string, object> ToDictionary(string json)
- {
- var dict = new Dictionary<string, object>();
- if (string.IsNullOrEmpty(json)) return dict;
- json = json.Trim();
- if (json.StartsWith("{") && json.EndsWith("}"))
- {
- dict = JsonDeserialize<Dictionary<string, object>>(json);
- return dict;
- }
- json = json.Replace("/u0026", "&");
- var pairs = json.Split('&');
- foreach (var pair in pairs)
- {
- if (pair.IndexOf("=", StringComparison.Ordinal) == -1) continue;
- var name = pair.Split('=')[0];
- if (string.IsNullOrEmpty(name)) continue;
- name = name.Replace("_equals_", "=").Replace("_and_", "&").Replace("_question_", "?").Replace("_quote_", "'").Replace("_add_", "+").Replace("_return_", "\r").Replace("_newline_", "\n");
- var value = pair.Split('=')[1];
- if (!string.IsNullOrEmpty(value))
- {
- value = value.Replace("_equals_", "=").Replace("_and_", "&").Replace("_question_", "?").Replace("_quote_", "'").Replace("_add_", "+").Replace("_return_", "\r").Replace("_newline_", "\n");
- }
- dict[name] = value;
- }
- return dict;
- }
- public static IDictionary<string, object> ToDictionary(NameValueCollection collection)
- {
- var dict = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase);
- if (collection == null) return dict;
- foreach (var key in collection.AllKeys)
- {
- dict[key] = collection[key];
- }
- return dict;
- }
- public static StringCollection StringCollectionToStringCollection(string collection, char separator = ',')
- {
- var arraylist = new StringCollection();
- if (!string.IsNullOrEmpty(collection))
- {
- var array = collection.Split(separator);
- foreach (var s in array)
- {
- arraylist.Add(s.Trim());
- }
- }
- return arraylist;
- }
- public static string ObjectCollectionToString(ICollection collection)
- {
- var builder = new StringBuilder();
- if (collection != null)
- {
- foreach (var obj in collection)
- {
- builder.Append(obj.ToString().Trim()).Append(",");
- }
- if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
- }
- return builder.ToString();
- }
- public static string ObjectCollectionToString(ICollection collection, string separatorStr)
- {
- var builder = new StringBuilder();
- if (collection != null)
- {
- foreach (var obj in collection)
- {
- builder.Append(obj.ToString().Trim()).Append(separatorStr);
- }
- if (builder.Length != 0) builder.Remove(builder.Length - separatorStr.Length, separatorStr.Length);
- }
- return builder.ToString();
- }
- /// <summary>
- /// 将对象集合转化为可供Sql语句查询的In()条件,如将集合{'ss','xx','ww'}转化为字符串"'ss','xx','ww'"。
- /// </summary>
- /// <param name="collection">非数字的集合</param>
- /// <returns>可供Sql语句查询的In()条件字符串,各元素用单引号包围</returns>
- public static string ToSqlInStringWithQuote(ICollection collection)
- {
- var builder = new StringBuilder();
- if (collection != null)
- {
- foreach (var obj in collection)
- {
- builder.Append("'").Append(obj).Append("'").Append(",");
- }
- if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
- }
- return builder.Length == 0 ? "null" : builder.ToString();
- }
- /// <summary>
- /// 将数字集合转化为可供Sql语句查询的In()条件,如将集合{2,3,4}转化为字符串"2,3,4"。
- /// </summary>
- /// <param name="collection">非数字的集合</param>
- /// <returns>可供Sql语句查询的In()条件字符串,各元素不使用单引号包围</returns>
- public static string ToSqlInStringWithoutQuote(ICollection collection)
- {
- var builder = new StringBuilder();
- if (collection != null)
- {
- foreach (var obj in collection)
- {
- builder.Append(obj).Append(",");
- }
- if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
- }
- return builder.Length == 0 ? "null" : builder.ToString();
- }
- public static NameValueCollection DictionaryToNameValueCollection(IDictionary<string, object> attributes)
- {
- var nvc = new NameValueCollection(StringComparer.OrdinalIgnoreCase);
- if (attributes != null && attributes.Count > 0)
- {
- foreach (var key in attributes.Keys)
- {
- var value = attributes[key];
- if (value != null)
- {
- nvc[key] = attributes[key].ToString();
- }
- }
- }
- return nvc;
- }
- public static bool DictGetValue(IDictionary<int, bool> dict, int key)
- {
- if (dict.TryGetValue(key, out var retval))
- {
- return retval;
- }
- return false;
- }
- public static string ToAttributesString(NameValueCollection attributes)
- {
- var builder = new StringBuilder();
- if (attributes != null && attributes.Count > 0)
- {
- foreach (string key in attributes.Keys)
- {
- var value = attributes[key];
- if (!string.IsNullOrEmpty(value))
- {
- value = value.Replace("\"", "'");
- }
- builder.Append($@"{key}=""{value}"" ");
- }
- builder.Length--;
- }
- return builder.ToString();
- }
- public static string ToAttributesString(Dictionary<string, string> attributes)
- {
- var builder = new StringBuilder();
- if (attributes != null && attributes.Count > 0)
- {
- foreach (var key in attributes.Keys)
- {
- var value = attributes[key];
- builder.Append(value == null ? $"{key} " : $@"{key}=""{value.Replace("\"", "'")}"" ");
- }
- builder.Length--;
- }
- return builder.ToString();
- }
- public static string NameValueCollectionToJsonString(NameValueCollection attributes)
- {
- var jsonString = new StringBuilder("{");
- if (attributes != null && attributes.Count > 0)
- {
- foreach (string key in attributes.Keys)
- {
- var value = attributes[key];
- value = value?.Replace("\\", "\\\\").Replace("\"", "\\\\\\\"").Replace("\r\n", string.Empty);
- jsonString.AppendFormat(@"""{0}"": ""{1}"",", key, value);
- }
- jsonString.Length--;
- }
- jsonString.Append("}");
- return jsonString.ToString();
- }
- public static long GetKbSize(long byteSize)
- {
- long fileKbSize = Convert.ToUInt32(Math.Ceiling((double)byteSize / 1024));
- if (fileKbSize == 0)
- {
- fileKbSize = 1;
- }
- return fileKbSize;
- }
- #region 汉字转拼音
- private static readonly int[] PyValue =
- {
- -20319, -20317, -20304, -20295, -20292, -20283, -20265, -20257, -20242, -20230, -20051, -20036, -20032,
- -20026, -20002, -19990, -19986, -19982, -19976, -19805, -19784, -19775, -19774, -19763, -19756, -19751,
- -19746, -19741, -19739, -19728,
- -19725, -19715, -19540, -19531, -19525, -19515, -19500, -19484, -19479, -19467, -19289, -19288, -19281,
- -19275, -19270, -19263,
- -19261, -19249, -19243, -19242, -19238, -19235, -19227, -19224, -19218, -19212, -19038, -19023, -19018,
- -19006, -19003, -18996,
- -18977, -18961, -18952, -18783, -18774, -18773, -18763, -18756, -18741, -18735, -18731, -18722, -18710,
- -18697, -18696, -18526,
- -18518, -18501, -18490, -18478, -18463, -18448, -18447, -18446, -18239, -18237, -18231, -18220, -18211,
- -18201, -18184, -18183,
- -18181, -18012, -17997, -17988, -17970, -17964, -17961, -17950, -17947, -17931, -17928, -17922, -17759,
- -17752, -17733, -17730,
- -17721, -17703, -17701, -17697, -17692, -17683, -17676, -17496, -17487, -17482, -17468, -17454, -17433,
- -17427, -17417, -17202,
- -17185, -16983, -16970, -16942, -16915, -16733, -16708, -16706, -16689, -16664, -16657, -16647, -16474,
- -16470, -16465, -16459,
- -16452, -16448, -16433, -16429, -16427, -16423, -16419, -16412, -16407, -16403, -16401, -16393, -16220,
- -16216, -16212, -16205,
- -16202, -16187, -16180, -16171, -16169, -16158, -16155, -15959, -15958, -15944, -15933, -15920, -15915,
- -15903, -15889, -15878,
- -15707, -15701, -15681, -15667, -15661, -15659, -15652, -15640, -15631, -15625, -15454, -15448, -15436,
- -15435, -15419, -15416,
- -15408, -15394, -15385, -15377, -15375, -15369, -15363, -15362, -15183, -15180, -15165, -15158, -15153,
- -15150, -15149, -15144,
- -15143, -15141, -15140, -15139, -15128, -15121, -15119, -15117, -15110, -15109, -14941, -14937, -14933,
- -14930, -14929, -14928,
- -14926, -14922, -14921, -14914, -14908, -14902, -14894, -14889, -14882, -14873, -14871, -14857, -14678,
- -14674, -14670, -14668,
- -14663, -14654, -14645, -14630, -14594, -14429, -14407, -14399, -14384, -14379, -14368, -14355, -14353,
- -14345, -14170, -14159,
- -14151, -14149, -14145, -14140, -14137, -14135, -14125, -14123, -14122, -14112, -14109, -14099, -14097,
- -14094, -14092, -14090,
- -14087, -14083, -13917, -13914, -13910, -13907, -13906, -13905, -13896, -13894, -13878, -13870, -13859,
- -13847, -13831, -13658,
- -13611, -13601, -13406, -13404, -13400, -13398, -13395, -13391, -13387, -13383, -13367, -13359, -13356,
- -13343, -13340, -13329,
- -13326, -13318, -13147, -13138, -13120, -13107, -13096, -13095, -13091, -13076, -13068, -13063, -13060,
- -12888, -12875, -12871,
- -12860, -12858, -12852, -12849, -12838, -12831, -12829, -12812, -12802, -12607, -12597, -12594, -12585,
- -12556, -12359, -12346,
- -12320, -12300, -12120, -12099, -12089, -12074, -12067, -12058, -12039, -11867, -11861, -11847, -11831,
- -11798, -11781, -11604,
- -11589, -11536, -11358, -11340, -11339, -11324, -11303, -11097, -11077, -11067, -11055, -11052, -11045,
- -11041, -11038, -11024,
- -11020, -11019, -11018, -11014, -10838, -10832, -10815, -10800, -10790, -10780, -10764, -10587, -10544,
- -10533, -10519, -10331,
- -10329, -10328, -10322, -10315, -10309, -10307, -10296, -10281, -10274, -10270, -10262, -10260, -10256,
- -10254
- };
- private static readonly string[] PyStr =
- {
- "a", "ai", "an", "ang", "ao", "ba", "bai", "ban", "bang", "bao", "bei", "ben", "beng", "bi", "bian", "biao",
- "bie", "bin", "bing", "bo", "bu", "ca", "cai", "can", "cang", "cao", "ce", "ceng", "cha", "chai", "chan",
- "chang", "chao", "che", "chen",
- "cheng", "chi", "chong", "chou", "chu", "chuai", "chuan", "chuang", "chui", "chun", "chuo", "ci", "cong",
- "cou", "cu", "cuan", "cui",
- "cun", "cuo", "da", "dai", "dan", "dang", "dao", "de", "deng", "di", "dian", "diao", "die", "ding", "diu",
- "dong", "dou", "du", "duan",
- "dui", "dun", "duo", "e", "en", "er", "fa", "fan", "fang", "fei", "fen", "feng", "fo", "fou", "fu", "ga",
- "gai", "gan", "gang", "gao",
- "ge", "gei", "gen", "geng", "gong", "gou", "gu", "gua", "guai", "guan", "guang", "gui", "gun", "guo", "ha",
- "hai", "han", "hang",
- "hao", "he", "hei", "hen", "heng", "hong", "hou", "hu", "hua", "huai", "huan", "huang", "hui", "hun", "huo",
- "ji", "jia", "jian",
- "jiang", "jiao", "jie", "jin", "jing", "jiong", "jiu", "ju", "juan", "jue", "jun", "ka", "kai", "kan",
- "kang", "kao", "ke", "ken",
- "keng", "kong", "kou", "ku", "kua", "kuai", "kuan", "kuang", "kui", "kun", "kuo", "la", "lai", "lan", "lang",
- "lao", "le", "lei",
- "leng", "li", "lia", "lian", "liang", "liao", "lie", "lin", "ling", "liu", "long", "lou", "lu", "lv", "luan",
- "lue", "lun", "luo",
- "ma", "mai", "man", "mang", "mao", "me", "mei", "men", "meng", "mi", "mian", "miao", "mie", "min", "ming",
- "miu", "mo", "mou", "mu",
- "na", "nai", "nan", "nang", "nao", "ne", "nei", "nen", "neng", "ni", "nian", "niang", "niao", "nie", "nin",
- "ning", "niu", "nong",
- "nu", "nv", "nuan", "nue", "nuo", "o", "ou", "pa", "pai", "pan", "pang", "pao", "pei", "pen", "peng", "pi",
- "pian", "piao", "pie",
- "pin", "ping", "po", "pu", "qi", "qia", "qian", "qiang", "qiao", "qie", "qin", "qing", "qiong", "qiu", "qu",
- "quan", "que", "qun",
- "ran", "rang", "rao", "re", "ren", "reng", "ri", "rong", "rou", "ru", "ruan", "rui", "run", "ruo", "sa",
- "sai", "san", "sang",
- "sao", "se", "sen", "seng", "sha", "shai", "shan", "shang", "shao", "she", "shen", "sheng", "shi", "shou",
- "shu", "shua",
- "shuai", "shuan", "shuang", "shui", "shun", "shuo", "si", "song", "sou", "su", "suan", "sui", "sun", "suo",
- "ta", "tai",
- "tan", "tang", "tao", "te", "teng", "ti", "tian", "tiao", "tie", "ting", "tong", "tou", "tu", "tuan", "tui",
- "tun", "tuo",
- "wa", "wai", "wan", "wang", "wei", "wen", "weng", "wo", "wu", "xi", "xia", "xian", "xiang", "xiao", "xie",
- "xin", "xing",
- "xiong", "xiu", "xu", "xuan", "xue", "xun", "ya", "yan", "yang", "yao", "ye", "yi", "yin", "ying", "yo",
- "yong", "you",
- "yu", "yuan", "yue", "yun", "za", "zai", "zan", "zang", "zao", "ze", "zei", "zen", "zeng", "zha", "zhai",
- "zhan", "zhang",
- "zhao", "zhe", "zhen", "zheng", "zhi", "zhong", "zhou", "zhu", "zhua", "zhuai", "zhuan", "zhuang", "zhui",
- "zhun", "zhuo",
- "zi", "zong", "zou", "zu", "zuan", "zui", "zun", "zuo"
- };
- public static string ToPinYin(string chrstr)
- {
- var returnstr = string.Empty;
- var nowchar = chrstr.ToCharArray();
- foreach (var t in nowchar)
- {
- var array = Encoding.Default.GetBytes(t.ToString());
- int i1 = array[0];
- int i2 = array[1];
- var chrasc = i1 * 256 + i2 - 65536;
- if (chrasc > 0 && chrasc < 160)
- {
- returnstr += t;
- }
- else
- {
- for (var i = (PyValue.Length - 1); i >= 0; i--)
- {
- if (PyValue[i] <= chrasc)
- {
- returnstr += PyStr[i];
- break;
- }
- }
- }
- }
- return returnstr;
- }
- #endregion
- public static readonly JsonSerializerSettings JsonSettings = new JsonSerializerSettings
- {
- ContractResolver = new CamelCasePropertyNamesContractResolver(),
- Converters = new List<JsonConverter>
- {
- new IsoDateTimeConverter {DateTimeFormat = "yyyy-MM-dd HH:mm:ss"}
- }
- };
- public static string JsonSerialize(object obj)
- {
- try
- {
- //var settings = new JsonSerializerSettings
- //{
- // ContractResolver = new CamelCasePropertyNamesContractResolver()
- //};
- //var timeFormat = new IsoDateTimeConverter {DateTimeFormat = "yyyy-MM-dd HH:mm:ss"};
- //settings.Converters.Add(timeFormat);
- return JsonConvert.SerializeObject(obj, JsonSettings);
- }
- catch
- {
- return string.Empty;
- }
- }
- public static T JsonDeserialize<T>(string json, T defaultValue = default(T))
- {
- try
- {
- //var settings = new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() };
- //var timeFormat = new IsoDateTimeConverter { DateTimeFormat = "yyyy-MM-dd HH:mm:ss" };
- //settings.Converters.Add(timeFormat);
- return JsonConvert.DeserializeObject<T>(json, JsonSettings);
- }
- catch
- {
- return defaultValue;
- }
- }
- public static Dictionary<string, object> JsonGetDictionaryIgnorecase(JObject json)
- {
- return new Dictionary<string, object>(json.ToObject<IDictionary<string, object>>(), StringComparer.CurrentCultureIgnoreCase);
- }
- public static Dictionary<string, object> JsonGetDictionaryIgnorecase(Dictionary<string, object> dict)
- {
- return new Dictionary<string, object>(dict, StringComparer.CurrentCultureIgnoreCase);
- }
- public static List<Dictionary<string, object>> DataTableToDictionaryList(DataTable dataTable)
- {
- var rows = new List<Dictionary<string, object>>();
- foreach (DataRow dataRow in dataTable.Rows)
- {
- var row = new Dictionary<string, object>();
- foreach (DataColumn col in dataTable.Columns)
- {
- row.Add(col.ColumnName, dataRow[col]);
- }
- rows.Add(row);
- }
- return rows;
- }
- public static NameValueCollection NewIgnoreCaseNameValueCollection()
- {
- var comparer = StringComparer.OrdinalIgnoreCase;
- var caseInsensitiveDictionary = new NameValueCollection(comparer);
- return caseInsensitiveDictionary;
- }
- public static void AddAttributesIfNotExists(NameValueCollection target, NameValueCollection attributes)
- {
- if (target == null || attributes == null) return;
- foreach (var attributeName in attributes.AllKeys)
- {
- if (string.IsNullOrEmpty(target[attributeName]))
- {
- target[attributeName] = attributes[attributeName];
- }
- }
- }
- public static void AddAttributeIfNotExists(NameValueCollection target, string attributeName, string attributeValue)
- {
- if (target == null || attributeName == null) return;
- if (string.IsNullOrEmpty(target[attributeName]))
- {
- target[attributeName] = attributeValue;
- }
- }
- public static byte[] BinarySerialize(object obj)
- {
- using (var stream = new MemoryStream())
- {
- new BinaryFormatter().Serialize(stream, obj);
- var bytes = stream.ToArray();
- return bytes;
- }
- }
- public static T BinaryDeserialize<T>(byte[] bytes, T defaultValue = default(T)) where T : class
- {
- using (var stream = new MemoryStream(bytes))
- {
- return new BinaryFormatter().Deserialize(stream) as T;
- }
- }
- public static byte[] BinarySerialize(string str)
- {
- if (str != null)
- {
- return Encoding.UTF8.GetBytes(str);
- }
- return null;
- }
- public static string BinaryDeserialize(byte[] bytes)
- {
- if (bytes != null)
- {
- return Encoding.UTF8.GetString(bytes);
- }
- return null;
- }
- }
- }
|