I have a string and I want to check if it represents a proper namespace, eg. System.IO is ok, but System.Lol is not.
I guess some reflection should be used, but I can't figure this out.
Any thoughts?
|
I have a string and I want to check if it represents a proper namespace, eg. I guess some reflection should be used, but I can't figure this out. Any thoughts?
| ||||
|
feedback
|
|
Your question "How to check if string is a namespace" is only valid when you consider where you are checking for namespaces. Namespaces are prefixes to class names, and classes are scoped to an assembly. To check whether a namespace exists, you need to decide which assemblies you are prepared to look through to find the existence of the namespace. Once you have decided which assemblies you are prepared to look through, you can iterate through them for the existence of a particular namespace like so:
| |||||||||||||
feedback
|
|
Try this approach:
where
Custom references adding:
Usage:
| ||||
|
feedback
|
|
Could you do this?
Then just check to see if the string is in the list? (Be warned, this isn't tested code!) | |||
|
feedback
|
|
The CLR doesn't really have a concept of "namespaces": they're really little more than a naming convention. So there is no API to "list namespaces" or "get namespaces" or even "get all types in this namespace". The best you could do is loop through all loaded assemblies, then loop through all exported types in each of those assemblies and check whether the given string is a "prefix" on any of those type names. I imagine this solution wouldn't be the fastest in the world, but it wouldn't be totally unworkable, either. | |||
|
feedback
|
|
There is no reflection on namespaces. The namespaces define full type name. So what you need to do is:
What you need to use: | |||
|
feedback
|