So this below was not working because the compiler could not find the ToLower() method....
object myvalue;
// do other stuff here
myvalue = (string) value.ToLower();
But wrapping it up a little more exposes those methods.....
((string) value).ToLower();
Monday, October 20, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment