Hi, 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?
Hi, 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?
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.
There is no reflection on namespaces. The namespaces define full type name. So what you need to do is:
What you need to use:
Could you do this?
Assembly asm = Assembly.GetExecutingAssembly();
List<string> namespaceList = new List<string>();
foreach (Type type in asm.GetTypes())
{
namespaceList.Add(type.Namespace);
}
Then just check to see if the string is in the list?
(Be warned, this isn't tested code!)
Try this approach:
using System.CodeDom.Compiler;
using System.Linq;
class NamespaceTester : IDisposable
{
private CodeDomProvider provider = CodeDomProvider.CreateProvider("c#");
private CompilerParameters settings = new CompilerParameters();
private CompilerResults results;
public bool Test(string[] namespaces)
{
results = provider.CompileAssemblyFromSource(
settings,
namespaces.Select(n => String.Format("using {0};", n)).ToArray());
return results.Errors
.OfType<CompilerError>()
.Any(e => String.Equals(
e.ErrorText,
"CS0234",
StringComparison.Ordinal));
}
public void Dispose()
{
if (results != null)
{
System.IO.File.Delete(results.CompiledAssembly.Location);
}
}
}
where CS0234
is:
The type or namespace name 'name' does not exist in the class or namespace 'scope' (are you missing an assembly reference?)
Custom references adding:
settings.ReferencedAssemblies.Add("Foobar.dll")
Usage:
public static void Main(string[] args)
{
using (var tester = new NamespaceTester())
{
var success = tester.Test(new[] {
"System.IO",
"System.LOL"
});
}
}
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:
public bool NamespaceExists(IEnumerable<Assembly> assemblies, string ns)
{
foreach(Assembly assembly in assemblies)
{
if(assembly.GetTypes().Any(type => type.Namespace == ns))
return true;
}
return false;
}