
Signature
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
> Modules have the custom attribute
> Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute applied
> to them, you can check if it's there with Type.GetCustomAttributes.
Many thanks. Now how can I tell if a type is a Structure? And is there any
one place I could look to find this information for myself? (Besides this
group, of course....)
Mattias Sj?gren - 12 May 2004 23:47 GMT
Jeff,
>Now how can I tell if a type is a Structure?
Type.IsValueType
>And is there any
>one place I could look to find this information for myself? (Besides this
>group, of course....)
I'm sure there must be some decent articles on Reflection out there,
but unfortunately I don't know any I can point you to. But pretty much
everything you'd want to know about a type is available from
System.Type.
Mattias

Signature
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.