Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetTypeInfoName()

static string System.Runtime.InteropServices.Marshal.GetTypeInfoName ( ITypeInfo typeInfo)
inlinestatic

Definition at line 206 of file Marshal.cs.

207 {
208 if (typeInfo == null)
209 {
210 throw new ArgumentNullException("typeInfo");
211 }
212 typeInfo.GetDocumentation(-1, out string strName, out string _, out int _, out string _);
213 return strName;
214 }
void GetDocumentation(int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile)

References System.Runtime.InteropServices.ComTypes.ITypeInfo.GetDocumentation().