Does a typed dataset use reflection on runtime?
+3
A:
No. It is just a code generated wrapper that completely compiled and does no reflection in runtime.
alex
2009-03-25 15:18:43
A:
A typed dataset normally consists of and XML Schema and a corresponding class file in your project language.
On of the main draws of typed datasets is that the class makes the schema information available at design and compile time, allowing your code to catch invalid casts and data inputs prior to runtime. There is no reason for reflection to be in use on a typed dataset since you have the object definition in your project namespace.
Gary.Ray
2009-03-25 15:53:34