Skip to content

tallesl/net-Dictionary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);