public static DbgPointerTypeInfo GetPointerTypeInfo(DbgEngDebugger debugger, DbgModuleInfo module, uint typeId) { uint pointeeTypeId; ulong size; bool isReference; DbgHelp.GetPointerTypeInfo(debugger.DebuggerInterface, module.BaseAddress, typeId, out pointeeTypeId, out size, out isReference); return(new DbgPointerTypeInfo(debugger, module, typeId, pointeeTypeId, size, isReference)); } // end GetPointerTypeInfo()