Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 590 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 590 Bytes

Dictionary

Makes a dictionary out of the given object properties.

Usage

using DictionaryLibrary;

// dict.Keys are the property names and dict.Values are their corresponding values
IDictionary<string, object> dict = DictionaryMaker.Make(someObject);