Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tallesl/net-dictionary

Makes a dictionary out of a given object.
https://github.com/tallesl/net-dictionary

conversion csharp dictionary dot-net nuget object properties

Last synced: 3 months ago
JSON representation

Makes a dictionary out of a given object.

Awesome Lists containing this project

README

        

# Dictionary

[![][build-img]][build]
[![][nuget-img]][nuget]

Makes a dictionary out of the given object properties.

[build]: https://ci.appveyor.com/project/TallesL/net-dictionary
[build-img]: https://ci.appveyor.com/api/projects/status/github/tallesl/net-dictionary?svg=true
[nuget]: https://www.nuget.org/packages/Dictionary
[nuget-img]: https://badge.fury.io/nu/Dictionary.svg

## Usage

```cs
using DictionaryLibrary;

// dict.Keys are the property names and dict.Values are their corresponding values
IDictionary dict = DictionaryMaker.Make(someObject);
```