Click here to Skip to main content
15,868,016 members

Comments by lampiclobe (Top 7 by date)

lampiclobe 9-Dec-14 0:21am View    
Years has passed! Oh my goodness..You'Re right balajitk. You should add references to the dlls you underlined
lampiclobe 20-Jun-11 14:51pm View    
I updated solution. Thanks indeed.
lampiclobe 20-Jun-11 4:54am View    
Deleted
You're welcome sanjeewabdissa. I added AddProperty(string, string, object) method to my solution. You can now use : p.AddProperty("System.String", "Weight", "70 kg."); string w = p.Weight;
lampiclobe 17-Jun-11 11:50am View    
you'd better look at this link:
http://msdn.microsoft.com/en-us/magazine/cc163816.aspx
lampiclobe 14-Jun-11 8:20am View    
Hi sanjeewabdissa
Now i see.
You want to add new properties as text based. Rereferencing the DynamicDictionaty Class here is your solution:
Add these lines to the end of the Person Class i gave above:
public void AddProperty(string propertyName, object anyValue=null)
{
dictionary[propertyName.ToLower()] = anyValue;
}

Hope have been helpful.