Giter Site home page Giter Site logo

bagger's Introduction

Bagger

This is just a quick project I threw together while learning how Reflection.Emit works. It is not really meant for actual use; it's just something I made for learning purposes.

What can it do?

Bagger facilitates the runtime construction of semi-dynamic, kinda-type-safe property bag types, using Reflection.Emit. These can then be used for data binding, etc.

Dynamically creating a type:

PropertyBagBuilder builder = new PropertyBagBuilder();
builder.AddProperty("Name", typeof(string));
builder.AddProperty("Value1", typeof(int));
builder.AddProperty("Value2", typeof(int));
Type type = builder.Build();

Instantiating the type:

These types can be instantiated as usual...

object instance = Activator.CreateInstance(type);

Accessing properties:

All types created by PropertyBagBuilder also implement the IPropertyBag interface, so you can easily access the properties by name.

IPropertyBag bag = Activator.CreateInstance(type) as IPropertyBag;
string name = (string)bag.GetValue("Name");
bag.SetValue("Value1", 1);

Copyright

Copyright Matthew King 2012.

License

Bagger is licensed under the Boost Software License. Refer to license.txt for more information.

bagger's People

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.