you can also use linq and anonymous types to achieve the same result with much less code as described here.
UPDATE: blog is down, here's the content:
(..) The values shown in the table represent the length of strings instead of string values (!)
It may seem strange, but that’s how binding mechanism works by default – given an object it will try to bind to the first property of that object (the first property it can find).
When passed an instance the String class the property it binds to is String.Length since there’s no other property that would provide the actual string itself.
That means that to get our binding right we need a wrapper object that will expose the actual value of a string as a property:
public class StringWrapper
{
string stringValue;
public string StringValue { get { return stringValue; } set { stringValue = value; } }
public StringWrapper(string s)
{
StringValue = s;
}
}
List<StringWrapper> testData = new List<StringWrapper>();
// add data to the list / convert list of strings to list of string wrappers
Table1.SetDataBinding(testdata);
While this solution works as expected it requires quite a few lines of code (mostly to convert list of strings to the list of string wrappers).
We can improve this solution by using LINQ and anonymous types- we’ll use LINQ query to create a new list of string wrappers (string wrapper will be an anonymous type in our case).
var values = from data in testData select new { Value = data };
Table1.SetDataBinding(values.ToList());
The last change we’re going to make is to move the LINQ code to an extension method:
public static class StringExtensions
{
public static IEnumerable CreateStringWrapperForBinding(this IEnumerable<string> strings)
{
var values = from data in strings
select new { Value = data };
return values.ToList();
}
This way we can reuse the code by calling single method on any collection of strings:
Table1.SetDataBinding(testData.CreateStringWrapperForBinding());