O
O.B.
I'm trying to design a tool to reverse-engineer C# class files (not
compiled) and I am having difficulty identify which namespace a class
belongs. For example, the top of the class has "using
System.Threading" and later in the class there is a "Thread myThread =
null". There is no way to determine by looking at solely the cs file
that Thread belongs in the System.Threading namespace.
Are there other files within the .NET installation to aid in
determining a solution for this problem?
compiled) and I am having difficulty identify which namespace a class
belongs. For example, the top of the class has "using
System.Threading" and later in the class there is a "Thread myThread =
null". There is no way to determine by looking at solely the cs file
that Thread belongs in the System.Threading namespace.
Are there other files within the .NET installation to aid in
determining a solution for this problem?