From Rockford Lhotka's Expert C# 2008 and VB 2008 Business Objects books
Luc Morin, T.P. http://www.stlm.ca
The Set/Get/Load/ReadProperty() method signatures did change a little bit, so type inference works.
The big change is that the LoadProperty<P,F>() overloads are now renamed to LoadPropertyConvert<P,F>() to eliminate ambiguity.
This means you can do:
LoadProperty(NameProperty, "Fred")
and the compiler will resolve the type parameters for you. But you still need to provide the type parameters for LoadPropertyConvert().
Rocky