I have a C# program, how can I check at runtime if a namespace, class, or method exists? Also, how to instantiate a class by using it’s name in the form of string?
Pseudocode:
string @namespace = "MyNameSpace";
string @class = "MyClass";
string method= "MyMEthod";
var y = IsNamespaceExists(namespace);
var x = IsClassExists(@class)? new @class : null; //Check if exists, instantiate if so.
var z = x.IsMethodExists(method);
You can use Type.GetType(string) to reflect a type.
GetTypewill return null if the type could not be found. If the type exists, you can then useGetMethod,GetField,GetProperty, etc. from the returnedTypeto check if the member you’re interested in exists.Update to your example:
This is the most efficient and preferred method, assuming the type is in the currently executing assembly, in mscorlib (not sure how .NET Core affects this, perhaps
System.Runtimeinstead?), or you have an assembly-qualified name for the type. If the string argument you pass toGetTypedoes not satisfy those three requirements,GetTypewill return null (assuming there isn’t some other type that accidentally does overlap those requirements, oops).If you don’t have the assembly qualified name, you’ll either need to fix your approach so you do or perform a search, the latter being potentially much slower.
If we assume you do want to search for the type in all loaded assemblies, you can do something like this (using LINQ):
Of course, there may be more to it than that, where you’ll want to reflect over referenced assemblies that may not be loaded yet, etc.
As for determining the namespaces, reflection doesn’t export those distinctly. Instead, you’d have to do something like:
Putting it all together, you’d have something like: