直接上代碼:把一個類轉換成object,然后在轉換成字典
1 internal static IDictionary<string, string> GetDictionary(this object source) 2 { 3 if (source == null) 4 { 5 return new Dictionary<string, string>(); 6 } 7 PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(source); 8 Dictionary<string, string> dictionary = new Dictionary<string, string>(); 9 for (int i = 0; i < properties.Count; i++) 10 { 11 dictionary.Add(properties[i].Name, properties[i].GetValue(source).ToString()); 12 } 13 return dictionary; 14 }
htmlAttributes是一個objuect類型(一個匿名類new {name="張三"})
調用: IDictionary<string, string> dictionary = this.htmlAttributes.GetDictionary();