Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tallesl/net-dictionary
- Owner: tallesl
- Created: 2015-08-14T17:54:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-02T20:29:08.000Z (about 7 years ago)
- Last Synced: 2024-10-06T12:18:38.292Z (4 months ago)
- Topics: conversion, csharp, dictionary, dot-net, nuget, object, properties
- Language: C#
- Homepage:
- Size: 14.6 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```