Click here to Skip to main content
15,867,453 members
Articles / Desktop Programming / Windows Forms

Anonymous Types - Dynamic Programming With C#

Rate me:
Please Sign up or sign in to vote.
4.20/5 (5 votes)
28 Jul 2009CC (ASA 2.5)2 min read 37.6K   195   32   6
Anonymous Types are a powerful feature in the .NET language, but are limited when you need to pass that information around. In this post, I discuss a class that I wrote to allow you to work with Anonymous Types easily, even after they leave their initial scope.

Introduction

Have you ever tried passing around an Anonymous Type in C#? It doesn't work all that well since once your type loses scope, you can't cast it again (not easily at least). In this post, I discuss a class that I wrote to allow you to work with Anonymous Types easily, even after they leave their initial scope.

An Easier Way

In a previous post, I discussed trying to work with Anonymous Types in .NET. I had included some code for working with those types to try and make it easier to pass your information around inside your projects.

Essentially, it was a wrapper for Reflection that allowed you to access properties by providing the correct type and property name. It would keep the instance of the Anonymous Type in memory so it could work directly with the object.

You may have noticed that there were .Get() functions, but no .Set() function. Why is that?

You may have never noticed this before, but all of the properties in an Anonymous Type are read-only. Most of the time, you aren't going to make changes to those values anyways, but if you can't assign the value of a property in one pass, then it's a bummer.

Extending It A Bit Further

For fun, I took a little time to write another version of AnonymousType. This one is a lot more flexible than the one before, but you aren't really using C# the way it is intended to be. Instead of using Reflection, you're using a Dictionary, specifically with strings (for the property names) and objects (for the values).

You create objects the same way as before, but now you have access to a few more features and functions. Below are some examples of how you can use this class.

C#
//Creating Instances of AnonymousType
//==============================
//Create a using an Anonymous type
AnonymousType type = AnonymousType.Create(new {
  name = "Jim",
  age = 40
  //method = ()=> { Console.WriteLine(); } // still doesn't work here
});

//or an empty AnonymousType
AnonymousType empty = new AnonymousType();

//or even an existing object
var something = new {
  name = "Mark",
  age = 50
};
AnonymousType another = new AnonymousType(something);


//Creating And Using Methods
//==============================
//append methods and call them
another.SetMethod("print", (string name, int age, bool admin) => {
  Console.WriteLine("{0} :: {1} :: {2}", name, age, admin);
});
another.Call("print", "Mark", 40, false);

//append a method with a return value
another.SetMethod("add", (int a, int b) => {
  return a + b;
});
int result = another.Call<int>("add", 5, 10);


//Working With Multiple Properties
//==============================
//add properties and work with them
//(NOTE: a better way is shown below)
another.Set("list", new List<string>());
another.Get<List<string>>("list").Add("String 1");
another.Get<List<string>>("list").Add("String 2");
another.Get<List<string>>("list").Add("String 3");

//or use it an easier way
another.With((List<string> list) => {
  list.Add("String 4");
  list.Add("String 5");
  list.Add("String 6");
});

//you can work with more than one type
another.With((string name, int age) => {
  Console.Write("{0} :: {1}", name, age);
});

Again, this is breaking away from the way C# was intended to be used, so be careful how much you make use of it. For the most part, you're going to want to create your own classes to hold this information, but while working with Anonymous Types, this is a quick and easy way to pass your information around.

Stay tuned for version three (something really cool!).

Source Code

License

This article, along with any associated source code and files, is licensed under The Creative Commons Attribution-ShareAlike 2.5 License


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralSorry everyone... Pin
webdev_hb27-Jul-09 2:11
webdev_hb27-Jul-09 2:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.