what does the following mean in each part of the type
The type looks like "exampl开发者_开发知识库e.exampletype1, example", what does each part mean?
example
is the namespace, exampletype1
is the type name and example
(the one after the ,
) is the assembly name where this type is hosted. You can take a look at the following article on MSDN about the grammar of fully qualified type names.
精彩评论