Exemplo n.º 1
0
 int ICorDebugValue2.GetExactType(out ICorDebugType ppType)
 {
     ppType = new CorDebugGenericType(RuntimeValue.CorElementType, m_rtv, m_appDomain);
     return(COM_HResults.S_OK);
 }
Exemplo n.º 2
0
 /*
  *  The function ICorDebugType.GetFirstTypeParameter returns the type
  *  of element in the array.
  *  It control viewing of arrays elements in the watch window of debugger.
  */
 int ICorDebugType.GetFirstTypeParameter(out ICorDebugType value)
 {
     value = new CorDebugGenericType(CorElementType.ELEMENT_TYPE_CLASS, m_ValueArray.RuntimeValue, m_ValueArray.AppDomain);
     return(COM_HResults.S_OK);
 }