Hello all,
I am writing a visual tool that would create custom classes, currently
it uses CodeDOM.
I am stuck a point where I need to parse the code for getting the type
of the custom classes (if they are to be used in another custom class)
For eg:
class A {
public int foo;
}
class B {
public A instance_A;
}
For this I would have to build the solution and get the Type of A from
the assembly ?
or
Should I use codeModel, but then I would have to generate code using
FileCodeModel as well.
Any thoughts ?
Thanks.