Exemplo n.º 1
0
        public RuntimeValue GetArrayElement(uint index)
        {
            if (!IsArray)
            {
                throw new InvalidOperationException("Value is not an array.");
            }

            ICorDebugValue value;

            ComArrayValue.GetElementAtPosition(index, out value);
            return(new RuntimeValue(Session, value));
        }