VCCodeModel::CodeTypeFromFullName2 Method (String^)
Visual Studio 2015
Returns a code element based on a fully qualified name. It is identical to CodeTypeFromFullName except that it will attempt typedef resolution.
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
Parameters
- Name
-
Type:
System::String^
Required. A fully qualified symbol name, such as Namespace1.Namespace2.Class1.Member1.
Given the following code:
class X {};
typedef X TD;
a call to VCCodeModel.CodeTypeFromFullName2("TD") yields class X.
Show: