diff --git a/src/AddIns/Debugger/Debugger.Core/MetaData/DebugMethodInfo.cs b/src/AddIns/Debugger/Debugger.Core/MetaData/DebugMethodInfo.cs index ac61bdf34b..95140a490e 100644 --- a/src/AddIns/Debugger/Debugger.Core/MetaData/DebugMethodInfo.cs +++ b/src/AddIns/Debugger/Debugger.Core/MetaData/DebugMethodInfo.cs @@ -60,10 +60,21 @@ namespace Debugger.MetaData get { throw new NotSupportedException(); } } - /// Name including the declaring type and parameters + /// Name including the declaring type, return type and parameters public string FullName { get { StringBuilder sb = new StringBuilder(); + + if (this.IsStatic) { + sb.Append("static "); + } + if (this.ReturnType != null) { + sb.Append(this.ReturnType.Name); + sb.Append(" "); + } else { + sb.Append("void "); + } + sb.Append(this.DeclaringType.FullName); sb.Append("."); sb.Append(this.Name); @@ -628,16 +639,7 @@ namespace Debugger.MetaData /// public override string ToString() { - string txt = string.Empty; - if (this.IsStatic) - txt += "static "; - if (this.ReturnType != null) { - txt += this.ReturnType.FullName + " "; - } else { - txt += "void "; - } - txt += this.FullName; - return txt; + return this.FullName; } IntPtr IOverloadable.GetSignarture() diff --git a/src/AddIns/Debugger/Debugger.Core/MetaData/DebugPropertyInfo.cs b/src/AddIns/Debugger/Debugger.Core/MetaData/DebugPropertyInfo.cs index 18b823f35e..5cf09eef64 100644 --- a/src/AddIns/Debugger/Debugger.Core/MetaData/DebugPropertyInfo.cs +++ b/src/AddIns/Debugger/Debugger.Core/MetaData/DebugPropertyInfo.cs @@ -65,6 +65,38 @@ namespace Debugger.MetaData } } + /// Name including the declaring type, return type and parameters + public string FullName { + get { + StringBuilder sb = new StringBuilder(); + + if (this.IsStatic) { + sb.Append("static "); + } + sb.Append(this.PropertyType.Name); + sb.Append(" "); + + sb.Append(this.DeclaringType.FullName); + sb.Append("."); + sb.Append(this.Name); + + if (GetIndexParameters().Length > 0) { + sb.Append("["); + bool first = true; + foreach(DebugParameterInfo p in GetIndexParameters()) { + if (!first) + sb.Append(", "); + first = false; + sb.Append(p.ParameterType.Name); + sb.Append(" "); + sb.Append(p.Name); + } + sb.Append("]"); + } + return sb.ToString(); + } + } + /// public override Type ReflectedType { get { throw new NotSupportedException(); } @@ -210,24 +242,7 @@ namespace Debugger.MetaData /// public override string ToString() { - StringBuilder sb = new StringBuilder(); - sb.Append(this.PropertyType); - sb.Append(" "); - sb.Append(this.Name); - if (GetIndexParameters().Length > 0) { - sb.Append("["); - bool first = true; - foreach(DebugParameterInfo p in GetIndexParameters()) { - if (!first) - sb.Append(", "); - first = false; - sb.Append(p.ParameterType.Name); - sb.Append(" "); - sb.Append(p.Name); - } - sb.Append("]"); - } - return sb.ToString(); + return this.FullName; } } } diff --git a/src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_MainThreadExit.cs b/src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_MainThreadExit.cs index d0e5bb47f2..adb33c0e3a 100644 --- a/src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_MainThreadExit.cs +++ b/src/AddIns/Debugger/Debugger.Tests/Tests/ControlFlow_MainThreadExit.cs @@ -78,11 +78,11 @@ namespace Debugger.Tests { @@ -101,11 +101,11 @@ namespace Debugger.Tests { null @@ -271,9 +271,9 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, NestedPublic, Sealed" BaseType="System.MulticastDelegate" FullName="Debugger.Tests.DebugType_Tests+AddDelegate" - GetMembers="{void Debugger.Tests.DebugType_Tests+AddDelegate..ctor(Object object, IntPtr method), System.Int32 Debugger.Tests.DebugType_Tests+AddDelegate.Invoke(Byte b1, Byte b2), System.IAsyncResult Debugger.Tests.DebugType_Tests+AddDelegate.BeginInvoke(Byte b1, Byte b2, AsyncCallback callback, Object object), System.Int32 Debugger.Tests.DebugType_Tests+AddDelegate.EndInvoke(IAsyncResult result), void System.MulticastDelegate.GetObjectData(SerializationInfo info, StreamingContext context), System.Boolean System.MulticastDelegate.Equals(Object obj), System.Delegate[] System.MulticastDelegate.GetInvocationList(), System.Int32 System.MulticastDelegate.GetHashCode(), System.Object System.Delegate.DynamicInvoke(Object[] args), System.Boolean System.Delegate.Equals(Object obj), System.Int32 System.Delegate.GetHashCode(), System.Delegate[] System.Delegate.GetInvocationList(), System.Reflection.MethodInfo System.Delegate.get_Method(), System.Object System.Delegate.get_Target(), System.Object System.Delegate.Clone(), void System.Delegate.GetObjectData(SerializationInfo info, StreamingContext context), System.Reflection.MethodInfo Method, System.Object Target, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+AddDelegate..ctor(Object object, IntPtr method), System.Int32 Debugger.Tests.DebugType_Tests+AddDelegate.Invoke(Byte b1, Byte b2), System.IAsyncResult Debugger.Tests.DebugType_Tests+AddDelegate.BeginInvoke(Byte b1, Byte b2, AsyncCallback callback, Object object), System.Int32 Debugger.Tests.DebugType_Tests+AddDelegate.EndInvoke(IAsyncResult result), void System.MulticastDelegate.GetObjectData(SerializationInfo info, StreamingContext context), System.Boolean System.MulticastDelegate.Equals(Object obj), System.Delegate[] System.MulticastDelegate.GetInvocationList(), System.Int32 System.MulticastDelegate.GetHashCode(), System.Object System.Delegate.DynamicInvoke(Object[] args), System.Boolean System.Delegate.Equals(Object obj), System.Int32 System.Delegate.GetHashCode(), System.Delegate[] System.Delegate.GetInvocationList(), System.Reflection.MethodInfo System.Delegate.get_Method(), System.Object System.Delegate.get_Target(), System.Object System.Delegate.Clone(), void System.Delegate.GetObjectData(SerializationInfo info, StreamingContext context), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Reflection.MethodInfo Method, System.Object Target}" + GetMembers="{void Debugger.Tests.DebugType_Tests+AddDelegate..ctor(Object object, IntPtr method), Int32 Debugger.Tests.DebugType_Tests+AddDelegate.Invoke(Byte b1, Byte b2), IAsyncResult Debugger.Tests.DebugType_Tests+AddDelegate.BeginInvoke(Byte b1, Byte b2, AsyncCallback callback, Object object), Int32 Debugger.Tests.DebugType_Tests+AddDelegate.EndInvoke(IAsyncResult result), void System.MulticastDelegate.GetObjectData(SerializationInfo info, StreamingContext context), Boolean System.MulticastDelegate.Equals(Object obj), Delegate[] System.MulticastDelegate.GetInvocationList(), Int32 System.MulticastDelegate.GetHashCode(), Object System.Delegate.DynamicInvoke(Object[] args), Boolean System.Delegate.Equals(Object obj), Int32 System.Delegate.GetHashCode(), Delegate[] System.Delegate.GetInvocationList(), MethodInfo System.Delegate.get_Method(), Object System.Delegate.get_Target(), Object System.Delegate.Clone(), void System.Delegate.GetObjectData(SerializationInfo info, StreamingContext context), MethodInfo System.Delegate.Method, Object System.Delegate.Target, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+AddDelegate..ctor(Object object, IntPtr method), Int32 Debugger.Tests.DebugType_Tests+AddDelegate.Invoke(Byte b1, Byte b2), IAsyncResult Debugger.Tests.DebugType_Tests+AddDelegate.BeginInvoke(Byte b1, Byte b2, AsyncCallback callback, Object object), Int32 Debugger.Tests.DebugType_Tests+AddDelegate.EndInvoke(IAsyncResult result), void System.MulticastDelegate.GetObjectData(SerializationInfo info, StreamingContext context), Boolean System.MulticastDelegate.Equals(Object obj), Delegate[] System.MulticastDelegate.GetInvocationList(), Int32 System.MulticastDelegate.GetHashCode(), Object System.Delegate.DynamicInvoke(Object[] args), Boolean System.Delegate.Equals(Object obj), Int32 System.Delegate.GetHashCode(), Delegate[] System.Delegate.GetInvocationList(), MethodInfo System.Delegate.get_Method(), Object System.Delegate.get_Target(), Object System.Delegate.Clone(), void System.Delegate.GetObjectData(SerializationInfo info, StreamingContext context), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{MethodInfo System.Delegate.Method, Object System.Delegate.Target}" IsClass="True" IsNested="True"> null @@ -286,8 +286,8 @@ namespace Debugger.Tests { FullName="Debugger.Tests.DebugType_Tests+MyEnum" GetEnumUnderlyingType="System.Byte" GetFields="{System.Byte value__, Debugger.Tests.DebugType_Tests+MyEnum A, Debugger.Tests.DebugType_Tests+MyEnum B}" - GetMembers="{System.Byte value__, Debugger.Tests.DebugType_Tests+MyEnum A, Debugger.Tests.DebugType_Tests+MyEnum B, System.Boolean System.Enum.Equals(Object obj), System.Int32 System.Enum.GetHashCode(), System.String System.Enum.ToString(), System.String System.Enum.ToString(String format, IFormatProvider provider), System.String System.Enum.ToString(String format), System.String System.Enum.ToString(IFormatProvider provider), System.Int32 System.Enum.CompareTo(Object target), System.Boolean System.Enum.HasFlag(Enum flag), System.TypeCode System.Enum.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Boolean System.Enum.Equals(Object obj), System.Int32 System.Enum.GetHashCode(), System.String System.Enum.ToString(), System.String System.Enum.ToString(String format, IFormatProvider provider), System.String System.Enum.ToString(String format), System.String System.Enum.ToString(IFormatProvider provider), System.Int32 System.Enum.CompareTo(Object target), System.Boolean System.Enum.HasFlag(Enum flag), System.TypeCode System.Enum.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.Byte value__, Debugger.Tests.DebugType_Tests+MyEnum A, Debugger.Tests.DebugType_Tests+MyEnum B, Boolean System.Enum.Equals(Object obj), Int32 System.Enum.GetHashCode(), String System.Enum.ToString(), String System.Enum.ToString(String format, IFormatProvider provider), String System.Enum.ToString(String format), String System.Enum.ToString(IFormatProvider provider), Int32 System.Enum.CompareTo(Object target), Boolean System.Enum.HasFlag(Enum flag), TypeCode System.Enum.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Boolean System.Enum.Equals(Object obj), Int32 System.Enum.GetHashCode(), String System.Enum.ToString(), String System.Enum.ToString(String format, IFormatProvider provider), String System.Enum.ToString(String format), String System.Enum.ToString(IFormatProvider provider), Int32 System.Enum.CompareTo(Object target), Boolean System.Enum.HasFlag(Enum flag), TypeCode System.Enum.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsEnum="True" IsNested="True" IsValueType="True"> @@ -299,8 +299,8 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, NestedPublic, BeforeFieldInit" BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+MyClass" - GetMembers="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsClass="True" IsNested="True"> null @@ -311,8 +311,8 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, NestedPublic, SequentialLayout, Sealed, BeforeFieldInit" BaseType="System.ValueType" FullName="Debugger.Tests.DebugType_Tests+MyStruct" - GetMembers="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsNested="True" IsValueType="True"> null @@ -324,9 +324,9 @@ namespace Debugger.Tests { BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+Members" GetFields="{System.Int32 IntLiteral, System.Int32 instanceInt, System.Int32 staticInt, System.Void* voidPtr}" - GetMembers="{System.Int32 IntLiteral, System.Int32 instanceInt, System.Int32 staticInt, System.Void* voidPtr, void Debugger.Tests.DebugType_Tests+Members.set_SetterOnlyProp(Char value), System.Int32 Debugger.Tests.DebugType_Tests+Members.get_InstanceInt(), static System.Int32 Debugger.Tests.DebugType_Tests+Members.get_StaticInt(), System.Int32 Debugger.Tests.DebugType_Tests+Members.get_AutoProperty(), void Debugger.Tests.DebugType_Tests+Members.set_AutoProperty(Int32 value), System.Char Debugger.Tests.DebugType_Tests+Members.get_Item(Int32 i), System.Char Debugger.Tests.DebugType_Tests+Members.get_Item(String s), void Debugger.Tests.DebugType_Tests+Members.set_Item(Int32 i, Char value), void Debugger.Tests.DebugType_Tests+Members..ctor(), System.Char SetterOnlyProp, System.Int32 InstanceInt, System.Int32 StaticInt, System.Int32 AutoProperty, System.Char Item[Int32 i], System.Char Item[String s], void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+Members.set_SetterOnlyProp(Char value), System.Int32 Debugger.Tests.DebugType_Tests+Members.get_InstanceInt(), static System.Int32 Debugger.Tests.DebugType_Tests+Members.get_StaticInt(), System.Int32 Debugger.Tests.DebugType_Tests+Members.get_AutoProperty(), void Debugger.Tests.DebugType_Tests+Members.set_AutoProperty(Int32 value), System.Char Debugger.Tests.DebugType_Tests+Members.get_Item(Int32 i), System.Char Debugger.Tests.DebugType_Tests+Members.get_Item(String s), void Debugger.Tests.DebugType_Tests+Members.set_Item(Int32 i, Char value), void Debugger.Tests.DebugType_Tests+Members..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Char SetterOnlyProp, System.Int32 InstanceInt, System.Int32 StaticInt, System.Int32 AutoProperty, System.Char Item[Int32 i], System.Char Item[String s]}" + GetMembers="{System.Int32 IntLiteral, System.Int32 instanceInt, System.Int32 staticInt, System.Void* voidPtr, void Debugger.Tests.DebugType_Tests+Members.set_SetterOnlyProp(Char value), Int32 Debugger.Tests.DebugType_Tests+Members.get_InstanceInt(), static Int32 Debugger.Tests.DebugType_Tests+Members.get_StaticInt(), Int32 Debugger.Tests.DebugType_Tests+Members.get_AutoProperty(), void Debugger.Tests.DebugType_Tests+Members.set_AutoProperty(Int32 value), Char Debugger.Tests.DebugType_Tests+Members.get_Item(Int32 i), Char Debugger.Tests.DebugType_Tests+Members.get_Item(String s), void Debugger.Tests.DebugType_Tests+Members.set_Item(Int32 i, Char value), void Debugger.Tests.DebugType_Tests+Members..ctor(), Char Debugger.Tests.DebugType_Tests+Members.SetterOnlyProp, Int32 Debugger.Tests.DebugType_Tests+Members.InstanceInt, static Int32 Debugger.Tests.DebugType_Tests+Members.StaticInt, Int32 Debugger.Tests.DebugType_Tests+Members.AutoProperty, Char Debugger.Tests.DebugType_Tests+Members.Item[Int32 i], Char Debugger.Tests.DebugType_Tests+Members.Item[String s], void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+Members.set_SetterOnlyProp(Char value), Int32 Debugger.Tests.DebugType_Tests+Members.get_InstanceInt(), static Int32 Debugger.Tests.DebugType_Tests+Members.get_StaticInt(), Int32 Debugger.Tests.DebugType_Tests+Members.get_AutoProperty(), void Debugger.Tests.DebugType_Tests+Members.set_AutoProperty(Int32 value), Char Debugger.Tests.DebugType_Tests+Members.get_Item(Int32 i), Char Debugger.Tests.DebugType_Tests+Members.get_Item(String s), void Debugger.Tests.DebugType_Tests+Members.set_Item(Int32 i, Char value), void Debugger.Tests.DebugType_Tests+Members..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Char Debugger.Tests.DebugType_Tests+Members.SetterOnlyProp, Int32 Debugger.Tests.DebugType_Tests+Members.InstanceInt, static Int32 Debugger.Tests.DebugType_Tests+Members.StaticInt, Int32 Debugger.Tests.DebugType_Tests+Members.AutoProperty, Char Debugger.Tests.DebugType_Tests+Members.Item[Int32 i], Char Debugger.Tests.DebugType_Tests+Members.Item[String s]}" IsClass="True" IsNested="True"> null @@ -338,9 +338,9 @@ namespace Debugger.Tests { BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+Access" GetFields="{System.Int32 publicField}" - GetMembers="{System.Int32 publicField, System.Int32 Debugger.Tests.DebugType_Tests+Access.get_publicProperty(), void Debugger.Tests.DebugType_Tests+Access.publicMethod(), void Debugger.Tests.DebugType_Tests+Access..ctor(), System.Int32 publicProperty, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 Debugger.Tests.DebugType_Tests+Access.get_publicProperty(), void Debugger.Tests.DebugType_Tests+Access.publicMethod(), void Debugger.Tests.DebugType_Tests+Access..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 publicProperty}" + GetMembers="{System.Int32 publicField, Int32 Debugger.Tests.DebugType_Tests+Access.get_publicProperty(), void Debugger.Tests.DebugType_Tests+Access.publicMethod(), void Debugger.Tests.DebugType_Tests+Access..ctor(), Int32 Debugger.Tests.DebugType_Tests+Access.publicProperty, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 Debugger.Tests.DebugType_Tests+Access.get_publicProperty(), void Debugger.Tests.DebugType_Tests+Access.publicMethod(), void Debugger.Tests.DebugType_Tests+Access..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Int32 Debugger.Tests.DebugType_Tests+Access.publicProperty}" IsClass="True" IsNested="True"> null @@ -388,7 +388,7 @@ namespace Debugger.Tests { @@ -397,7 +397,7 @@ namespace Debugger.Tests { Attributes="PrivateScope, Public, HideBySig, SpecialName" BackingField="System.Int32 instanceInt" DeclaringType="Debugger.Tests.DebugType_Tests+Members" - FullName="Debugger.Tests.DebugType_Tests+Members.get_InstanceInt()" + FullName="Int32 Debugger.Tests.DebugType_Tests+Members.get_InstanceInt()" GetLocalVariables="{Debugger.Tests.DebugType_Tests+Members this}" Name="get_InstanceInt" ReturnType="System.Int32" @@ -408,7 +408,7 @@ namespace Debugger.Tests { Attributes="PrivateScope, Public, Static, HideBySig, SpecialName" BackingField="System.Int32 staticInt" DeclaringType="Debugger.Tests.DebugType_Tests+Members" - FullName="Debugger.Tests.DebugType_Tests+Members.get_StaticInt()" + FullName="static Int32 Debugger.Tests.DebugType_Tests+Members.get_StaticInt()" Name="get_StaticInt" ReturnType="System.Int32" StepOver="True" /> @@ -418,7 +418,7 @@ namespace Debugger.Tests { Attributes="PrivateScope, Public, HideBySig, SpecialName" BackingField="System.Int32 <AutoProperty>k__BackingField" DeclaringType="Debugger.Tests.DebugType_Tests+Members" - FullName="Debugger.Tests.DebugType_Tests+Members.get_AutoProperty()" + FullName="Int32 Debugger.Tests.DebugType_Tests+Members.get_AutoProperty()" Name="get_AutoProperty" ReturnType="System.Int32" StepOver="True" /> @@ -427,7 +427,7 @@ namespace Debugger.Tests { @@ -435,7 +435,7 @@ namespace Debugger.Tests { @@ -444,7 +444,7 @@ namespace Debugger.Tests { @@ -453,7 +453,7 @@ namespace Debugger.Tests { @@ -461,37 +461,42 @@ namespace Debugger.Tests { @@ -499,6 +504,7 @@ namespace Debugger.Tests { @@ -516,7 +522,7 @@ namespace Debugger.Tests { @@ -525,7 +531,7 @@ namespace Debugger.Tests { @@ -533,13 +539,14 @@ namespace Debugger.Tests { @@ -547,7 +554,7 @@ namespace Debugger.Tests { @@ -555,7 +562,7 @@ namespace Debugger.Tests { @@ -564,7 +571,7 @@ namespace Debugger.Tests { @@ -573,7 +580,7 @@ namespace Debugger.Tests { @@ -582,7 +589,7 @@ namespace Debugger.Tests { @@ -593,7 +600,7 @@ namespace Debugger.Tests { @@ -602,7 +609,7 @@ namespace Debugger.Tests { @@ -611,7 +618,7 @@ namespace Debugger.Tests { @@ -620,13 +627,14 @@ namespace Debugger.Tests { @@ -634,7 +642,7 @@ namespace Debugger.Tests { @@ -642,7 +650,7 @@ namespace Debugger.Tests { @@ -651,7 +659,7 @@ namespace Debugger.Tests { @@ -660,7 +668,7 @@ namespace Debugger.Tests { @@ -669,7 +677,7 @@ namespace Debugger.Tests { @@ -685,8 +693,8 @@ namespace Debugger.Tests { null @@ -705,9 +713,9 @@ namespace Debugger.Tests { FullName="System.String" GetFields="{System.String Empty}" GetInterfaces="{System.IComparable, System.ICloneable, System.IConvertible, System.IComparable`1[System.String], System.Collections.Generic.IEnumerable`1[System.Char], System.Collections.IEnumerable, System.IEquatable`1[System.String]}" - GetMembers="{System.String Empty, static System.String System.String.Join(String separator, String[] value), static System.String System.String.Join(String separator, Object[] values), static System.String System.String.Join(String separator, IEnumerable`1 values), static System.String System.String.Join(String separator, IEnumerable`1 values), static System.String System.String.Join(String separator, String[] value, Int32 startIndex, Int32 count), System.Boolean System.String.Equals(Object obj), System.Boolean System.String.Equals(String value), System.Boolean System.String.Equals(String value, StringComparison comparisonType), static System.Boolean System.String.Equals(String a, String b), static System.Boolean System.String.Equals(String a, String b, StringComparison comparisonType), static System.Boolean System.String.op_Equality(String a, String b), static System.Boolean System.String.op_Inequality(String a, String b), System.Char System.String.get_Chars(Int32 index), void System.String.CopyTo(Int32 sourceIndex, Char[] destination, Int32 destinationIndex, Int32 count), System.Char[] System.String.ToCharArray(), System.Char[] System.String.ToCharArray(Int32 startIndex, Int32 length), static System.Boolean System.String.IsNullOrEmpty(String value), static System.Boolean System.String.IsNullOrWhiteSpace(String value), System.Int32 System.String.GetHashCode(), System.Int32 System.String.get_Length(), System.String[] System.String.Split(Char[] separator), System.String[] System.String.Split(Char[] separator, Int32 count), System.String[] System.String.Split(Char[] separator, StringSplitOptions options), System.String[] System.String.Split(Char[] separator, Int32 count, StringSplitOptions options), System.String[] System.String.Split(String[] separator, StringSplitOptions options), System.String[] System.String.Split(String[] separator, Int32 count, StringSplitOptions options), System.String System.String.Substring(Int32 startIndex), System.String System.String.Substring(Int32 startIndex, Int32 length), System.String System.String.Trim(Char[] trimChars), System.String System.String.Trim(), System.String System.String.TrimStart(Char[] trimChars), System.String System.String.TrimEnd(Char[] trimChars), void System.String..ctor(Char* value), void System.String..ctor(Char* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length, Encoding enc), void System.String..ctor(Char[] value, Int32 startIndex, Int32 length), void System.String..ctor(Char[] value), void System.String..ctor(Char c, Int32 count), System.Boolean System.String.IsNormalized(), System.Boolean System.String.IsNormalized(NormalizationForm normalizationForm), System.String System.String.Normalize(), System.String System.String.Normalize(NormalizationForm normalizationForm), static System.Int32 System.String.Compare(String strA, String strB), static System.Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase), static System.Int32 System.String.Compare(String strA, String strB, StringComparison comparisonType), static System.Int32 System.String.Compare(String strA, String strB, CultureInfo culture, CompareOptions options), static System.Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase, CultureInfo culture), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase, CultureInfo culture), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, CultureInfo culture, CompareOptions options), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, StringComparison comparisonType), System.Int32 System.String.CompareTo(Object value), System.Int32 System.String.CompareTo(String strB), static System.Int32 System.String.CompareOrdinal(String strA, String strB), static System.Int32 System.String.CompareOrdinal(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), System.Boolean System.String.Contains(String value), System.Boolean System.String.EndsWith(String value), System.Boolean System.String.EndsWith(String value, StringComparison comparisonType), System.Boolean System.String.EndsWith(String value, Boolean ignoreCase, CultureInfo culture), System.Int32 System.String.IndexOf(Char value), System.Int32 System.String.IndexOf(Char value, Int32 startIndex), System.Int32 System.String.IndexOf(Char value, Int32 startIndex, Int32 count), System.Int32 System.String.IndexOf(String value), System.Int32 System.String.IndexOf(String value, Int32 startIndex), System.Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count), System.Int32 System.String.IndexOf(String value, StringComparison comparisonType), System.Int32 System.String.IndexOf(String value, Int32 startIndex, StringComparison comparisonType), System.Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), System.Int32 System.String.IndexOfAny(Char[] anyOf), System.Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex), System.Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(Char value), System.Int32 System.String.LastIndexOf(Char value, Int32 startIndex), System.Int32 System.String.LastIndexOf(Char value, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(String value), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(String value, StringComparison comparisonType), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, StringComparison comparisonType), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), System.Int32 System.String.LastIndexOfAny(Char[] anyOf), System.Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex), System.Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), System.String System.String.PadLeft(Int32 totalWidth), System.String System.String.PadLeft(Int32 totalWidth, Char paddingChar), System.String System.String.PadRight(Int32 totalWidth), System.String System.String.PadRight(Int32 totalWidth, Char paddingChar), System.Boolean System.String.StartsWith(String value), System.Boolean System.String.StartsWith(String value, StringComparison comparisonType), System.Boolean System.String.StartsWith(String value, Boolean ignoreCase, CultureInfo culture), System.String System.String.ToLower(), System.String System.String.ToLower(CultureInfo culture), System.String System.String.ToLowerInvariant(), System.String System.String.ToUpper(), System.String System.String.ToUpper(CultureInfo culture), System.String System.String.ToUpperInvariant(), System.String System.String.ToString(), System.String System.String.ToString(IFormatProvider provider), System.Object System.String.Clone(), System.String System.String.Insert(Int32 startIndex, String value), System.String System.String.Replace(Char oldChar, Char newChar), System.String System.String.Replace(String oldValue, String newValue), System.String System.String.Remove(Int32 startIndex, Int32 count), System.String System.String.Remove(Int32 startIndex), static System.String System.String.Format(String format, Object arg0), static System.String System.String.Format(String format, Object arg0, Object arg1), static System.String System.String.Format(String format, Object arg0, Object arg1, Object arg2), static System.String System.String.Format(String format, Object[] args), static System.String System.String.Format(IFormatProvider provider, String format, Object[] args), static System.String System.String.Copy(String str), static System.String System.String.Concat(Object arg0), static System.String System.String.Concat(Object arg0, Object arg1), static System.String System.String.Concat(Object arg0, Object arg1, Object arg2), static System.String System.String.Concat(Object arg0, Object arg1, Object arg2, Object arg3), static System.String System.String.Concat(Object[] args), static System.String System.String.Concat(IEnumerable`1 values), static System.String System.String.Concat(IEnumerable`1 values), static System.String System.String.Concat(String str0, String str1), static System.String System.String.Concat(String str0, String str1, String str2), static System.String System.String.Concat(String str0, String str1, String str2, String str3), static System.String System.String.Concat(String[] values), static System.String System.String.Intern(String str), static System.String System.String.IsInterned(String str), System.TypeCode System.String.GetTypeCode(), System.CharEnumerator System.String.GetEnumerator(), System.Char Chars[Int32 index], System.Int32 Length, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{static System.String System.String.Join(String separator, String[] value), static System.String System.String.Join(String separator, Object[] values), static System.String System.String.Join(String separator, IEnumerable`1 values), static System.String System.String.Join(String separator, IEnumerable`1 values), static System.String System.String.Join(String separator, String[] value, Int32 startIndex, Int32 count), System.Boolean System.String.Equals(Object obj), System.Boolean System.String.Equals(String value), System.Boolean System.String.Equals(String value, StringComparison comparisonType), static System.Boolean System.String.Equals(String a, String b), static System.Boolean System.String.Equals(String a, String b, StringComparison comparisonType), static System.Boolean System.String.op_Equality(String a, String b), static System.Boolean System.String.op_Inequality(String a, String b), System.Char System.String.get_Chars(Int32 index), void System.String.CopyTo(Int32 sourceIndex, Char[] destination, Int32 destinationIndex, Int32 count), System.Char[] System.String.ToCharArray(), System.Char[] System.String.ToCharArray(Int32 startIndex, Int32 length), static System.Boolean System.String.IsNullOrEmpty(String value), static System.Boolean System.String.IsNullOrWhiteSpace(String value), System.Int32 System.String.GetHashCode(), System.Int32 System.String.get_Length(), System.String[] System.String.Split(Char[] separator), System.String[] System.String.Split(Char[] separator, Int32 count), System.String[] System.String.Split(Char[] separator, StringSplitOptions options), System.String[] System.String.Split(Char[] separator, Int32 count, StringSplitOptions options), System.String[] System.String.Split(String[] separator, StringSplitOptions options), System.String[] System.String.Split(String[] separator, Int32 count, StringSplitOptions options), System.String System.String.Substring(Int32 startIndex), System.String System.String.Substring(Int32 startIndex, Int32 length), System.String System.String.Trim(Char[] trimChars), System.String System.String.Trim(), System.String System.String.TrimStart(Char[] trimChars), System.String System.String.TrimEnd(Char[] trimChars), void System.String..ctor(Char* value), void System.String..ctor(Char* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length, Encoding enc), void System.String..ctor(Char[] value, Int32 startIndex, Int32 length), void System.String..ctor(Char[] value), void System.String..ctor(Char c, Int32 count), System.Boolean System.String.IsNormalized(), System.Boolean System.String.IsNormalized(NormalizationForm normalizationForm), System.String System.String.Normalize(), System.String System.String.Normalize(NormalizationForm normalizationForm), static System.Int32 System.String.Compare(String strA, String strB), static System.Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase), static System.Int32 System.String.Compare(String strA, String strB, StringComparison comparisonType), static System.Int32 System.String.Compare(String strA, String strB, CultureInfo culture, CompareOptions options), static System.Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase, CultureInfo culture), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase, CultureInfo culture), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, CultureInfo culture, CompareOptions options), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, StringComparison comparisonType), System.Int32 System.String.CompareTo(Object value), System.Int32 System.String.CompareTo(String strB), static System.Int32 System.String.CompareOrdinal(String strA, String strB), static System.Int32 System.String.CompareOrdinal(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), System.Boolean System.String.Contains(String value), System.Boolean System.String.EndsWith(String value), System.Boolean System.String.EndsWith(String value, StringComparison comparisonType), System.Boolean System.String.EndsWith(String value, Boolean ignoreCase, CultureInfo culture), System.Int32 System.String.IndexOf(Char value), System.Int32 System.String.IndexOf(Char value, Int32 startIndex), System.Int32 System.String.IndexOf(Char value, Int32 startIndex, Int32 count), System.Int32 System.String.IndexOf(String value), System.Int32 System.String.IndexOf(String value, Int32 startIndex), System.Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count), System.Int32 System.String.IndexOf(String value, StringComparison comparisonType), System.Int32 System.String.IndexOf(String value, Int32 startIndex, StringComparison comparisonType), System.Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), System.Int32 System.String.IndexOfAny(Char[] anyOf), System.Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex), System.Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(Char value), System.Int32 System.String.LastIndexOf(Char value, Int32 startIndex), System.Int32 System.String.LastIndexOf(Char value, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(String value), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(String value, StringComparison comparisonType), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, StringComparison comparisonType), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), System.Int32 System.String.LastIndexOfAny(Char[] anyOf), System.Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex), System.Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), System.String System.String.PadLeft(Int32 totalWidth), System.String System.String.PadLeft(Int32 totalWidth, Char paddingChar), System.String System.String.PadRight(Int32 totalWidth), System.String System.String.PadRight(Int32 totalWidth, Char paddingChar), System.Boolean System.String.StartsWith(String value), System.Boolean System.String.StartsWith(String value, StringComparison comparisonType), System.Boolean System.String.StartsWith(String value, Boolean ignoreCase, CultureInfo culture), System.String System.String.ToLower(), System.String System.String.ToLower(CultureInfo culture), System.String System.String.ToLowerInvariant(), System.String System.String.ToUpper(), System.String System.String.ToUpper(CultureInfo culture), System.String System.String.ToUpperInvariant(), System.String System.String.ToString(), System.String System.String.ToString(IFormatProvider provider), System.Object System.String.Clone(), System.String System.String.Insert(Int32 startIndex, String value), System.String System.String.Replace(Char oldChar, Char newChar), System.String System.String.Replace(String oldValue, String newValue), System.String System.String.Remove(Int32 startIndex, Int32 count), System.String System.String.Remove(Int32 startIndex), static System.String System.String.Format(String format, Object arg0), static System.String System.String.Format(String format, Object arg0, Object arg1), static System.String System.String.Format(String format, Object arg0, Object arg1, Object arg2), static System.String System.String.Format(String format, Object[] args), static System.String System.String.Format(IFormatProvider provider, String format, Object[] args), static System.String System.String.Copy(String str), static System.String System.String.Concat(Object arg0), static System.String System.String.Concat(Object arg0, Object arg1), static System.String System.String.Concat(Object arg0, Object arg1, Object arg2), static System.String System.String.Concat(Object arg0, Object arg1, Object arg2, Object arg3), static System.String System.String.Concat(Object[] args), static System.String System.String.Concat(IEnumerable`1 values), static System.String System.String.Concat(IEnumerable`1 values), static System.String System.String.Concat(String str0, String str1), static System.String System.String.Concat(String str0, String str1, String str2), static System.String System.String.Concat(String str0, String str1, String str2, String str3), static System.String System.String.Concat(String[] values), static System.String System.String.Intern(String str), static System.String System.String.IsInterned(String str), System.TypeCode System.String.GetTypeCode(), System.CharEnumerator System.String.GetEnumerator(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Char Chars[Int32 index], System.Int32 Length}" + GetMembers="{System.String Empty, static String System.String.Join(String separator, String[] value), static String System.String.Join(String separator, Object[] values), static String System.String.Join(String separator, IEnumerable`1 values), static String System.String.Join(String separator, IEnumerable`1 values), static String System.String.Join(String separator, String[] value, Int32 startIndex, Int32 count), Boolean System.String.Equals(Object obj), Boolean System.String.Equals(String value), Boolean System.String.Equals(String value, StringComparison comparisonType), static Boolean System.String.Equals(String a, String b), static Boolean System.String.Equals(String a, String b, StringComparison comparisonType), static Boolean System.String.op_Equality(String a, String b), static Boolean System.String.op_Inequality(String a, String b), Char System.String.get_Chars(Int32 index), void System.String.CopyTo(Int32 sourceIndex, Char[] destination, Int32 destinationIndex, Int32 count), Char[] System.String.ToCharArray(), Char[] System.String.ToCharArray(Int32 startIndex, Int32 length), static Boolean System.String.IsNullOrEmpty(String value), static Boolean System.String.IsNullOrWhiteSpace(String value), Int32 System.String.GetHashCode(), Int32 System.String.get_Length(), String[] System.String.Split(Char[] separator), String[] System.String.Split(Char[] separator, Int32 count), String[] System.String.Split(Char[] separator, StringSplitOptions options), String[] System.String.Split(Char[] separator, Int32 count, StringSplitOptions options), String[] System.String.Split(String[] separator, StringSplitOptions options), String[] System.String.Split(String[] separator, Int32 count, StringSplitOptions options), String System.String.Substring(Int32 startIndex), String System.String.Substring(Int32 startIndex, Int32 length), String System.String.Trim(Char[] trimChars), String System.String.Trim(), String System.String.TrimStart(Char[] trimChars), String System.String.TrimEnd(Char[] trimChars), void System.String..ctor(Char* value), void System.String..ctor(Char* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length, Encoding enc), void System.String..ctor(Char[] value, Int32 startIndex, Int32 length), void System.String..ctor(Char[] value), void System.String..ctor(Char c, Int32 count), Boolean System.String.IsNormalized(), Boolean System.String.IsNormalized(NormalizationForm normalizationForm), String System.String.Normalize(), String System.String.Normalize(NormalizationForm normalizationForm), static Int32 System.String.Compare(String strA, String strB), static Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase), static Int32 System.String.Compare(String strA, String strB, StringComparison comparisonType), static Int32 System.String.Compare(String strA, String strB, CultureInfo culture, CompareOptions options), static Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase, CultureInfo culture), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase, CultureInfo culture), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, CultureInfo culture, CompareOptions options), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, StringComparison comparisonType), Int32 System.String.CompareTo(Object value), Int32 System.String.CompareTo(String strB), static Int32 System.String.CompareOrdinal(String strA, String strB), static Int32 System.String.CompareOrdinal(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), Boolean System.String.Contains(String value), Boolean System.String.EndsWith(String value), Boolean System.String.EndsWith(String value, StringComparison comparisonType), Boolean System.String.EndsWith(String value, Boolean ignoreCase, CultureInfo culture), Int32 System.String.IndexOf(Char value), Int32 System.String.IndexOf(Char value, Int32 startIndex), Int32 System.String.IndexOf(Char value, Int32 startIndex, Int32 count), Int32 System.String.IndexOf(String value), Int32 System.String.IndexOf(String value, Int32 startIndex), Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count), Int32 System.String.IndexOf(String value, StringComparison comparisonType), Int32 System.String.IndexOf(String value, Int32 startIndex, StringComparison comparisonType), Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), Int32 System.String.IndexOfAny(Char[] anyOf), Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex), Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(Char value), Int32 System.String.LastIndexOf(Char value, Int32 startIndex), Int32 System.String.LastIndexOf(Char value, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(String value), Int32 System.String.LastIndexOf(String value, Int32 startIndex), Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(String value, StringComparison comparisonType), Int32 System.String.LastIndexOf(String value, Int32 startIndex, StringComparison comparisonType), Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), Int32 System.String.LastIndexOfAny(Char[] anyOf), Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex), Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), String System.String.PadLeft(Int32 totalWidth), String System.String.PadLeft(Int32 totalWidth, Char paddingChar), String System.String.PadRight(Int32 totalWidth), String System.String.PadRight(Int32 totalWidth, Char paddingChar), Boolean System.String.StartsWith(String value), Boolean System.String.StartsWith(String value, StringComparison comparisonType), Boolean System.String.StartsWith(String value, Boolean ignoreCase, CultureInfo culture), String System.String.ToLower(), String System.String.ToLower(CultureInfo culture), String System.String.ToLowerInvariant(), String System.String.ToUpper(), String System.String.ToUpper(CultureInfo culture), String System.String.ToUpperInvariant(), String System.String.ToString(), String System.String.ToString(IFormatProvider provider), Object System.String.Clone(), String System.String.Insert(Int32 startIndex, String value), String System.String.Replace(Char oldChar, Char newChar), String System.String.Replace(String oldValue, String newValue), String System.String.Remove(Int32 startIndex, Int32 count), String System.String.Remove(Int32 startIndex), static String System.String.Format(String format, Object arg0), static String System.String.Format(String format, Object arg0, Object arg1), static String System.String.Format(String format, Object arg0, Object arg1, Object arg2), static String System.String.Format(String format, Object[] args), static String System.String.Format(IFormatProvider provider, String format, Object[] args), static String System.String.Copy(String str), static String System.String.Concat(Object arg0), static String System.String.Concat(Object arg0, Object arg1), static String System.String.Concat(Object arg0, Object arg1, Object arg2), static String System.String.Concat(Object arg0, Object arg1, Object arg2, Object arg3), static String System.String.Concat(Object[] args), static String System.String.Concat(IEnumerable`1 values), static String System.String.Concat(IEnumerable`1 values), static String System.String.Concat(String str0, String str1), static String System.String.Concat(String str0, String str1, String str2), static String System.String.Concat(String str0, String str1, String str2, String str3), static String System.String.Concat(String[] values), static String System.String.Intern(String str), static String System.String.IsInterned(String str), TypeCode System.String.GetTypeCode(), CharEnumerator System.String.GetEnumerator(), Char System.String.Chars[Int32 index], Int32 System.String.Length, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{static String System.String.Join(String separator, String[] value), static String System.String.Join(String separator, Object[] values), static String System.String.Join(String separator, IEnumerable`1 values), static String System.String.Join(String separator, IEnumerable`1 values), static String System.String.Join(String separator, String[] value, Int32 startIndex, Int32 count), Boolean System.String.Equals(Object obj), Boolean System.String.Equals(String value), Boolean System.String.Equals(String value, StringComparison comparisonType), static Boolean System.String.Equals(String a, String b), static Boolean System.String.Equals(String a, String b, StringComparison comparisonType), static Boolean System.String.op_Equality(String a, String b), static Boolean System.String.op_Inequality(String a, String b), Char System.String.get_Chars(Int32 index), void System.String.CopyTo(Int32 sourceIndex, Char[] destination, Int32 destinationIndex, Int32 count), Char[] System.String.ToCharArray(), Char[] System.String.ToCharArray(Int32 startIndex, Int32 length), static Boolean System.String.IsNullOrEmpty(String value), static Boolean System.String.IsNullOrWhiteSpace(String value), Int32 System.String.GetHashCode(), Int32 System.String.get_Length(), String[] System.String.Split(Char[] separator), String[] System.String.Split(Char[] separator, Int32 count), String[] System.String.Split(Char[] separator, StringSplitOptions options), String[] System.String.Split(Char[] separator, Int32 count, StringSplitOptions options), String[] System.String.Split(String[] separator, StringSplitOptions options), String[] System.String.Split(String[] separator, Int32 count, StringSplitOptions options), String System.String.Substring(Int32 startIndex), String System.String.Substring(Int32 startIndex, Int32 length), String System.String.Trim(Char[] trimChars), String System.String.Trim(), String System.String.TrimStart(Char[] trimChars), String System.String.TrimEnd(Char[] trimChars), void System.String..ctor(Char* value), void System.String..ctor(Char* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length, Encoding enc), void System.String..ctor(Char[] value, Int32 startIndex, Int32 length), void System.String..ctor(Char[] value), void System.String..ctor(Char c, Int32 count), Boolean System.String.IsNormalized(), Boolean System.String.IsNormalized(NormalizationForm normalizationForm), String System.String.Normalize(), String System.String.Normalize(NormalizationForm normalizationForm), static Int32 System.String.Compare(String strA, String strB), static Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase), static Int32 System.String.Compare(String strA, String strB, StringComparison comparisonType), static Int32 System.String.Compare(String strA, String strB, CultureInfo culture, CompareOptions options), static Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase, CultureInfo culture), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase, CultureInfo culture), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, CultureInfo culture, CompareOptions options), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, StringComparison comparisonType), Int32 System.String.CompareTo(Object value), Int32 System.String.CompareTo(String strB), static Int32 System.String.CompareOrdinal(String strA, String strB), static Int32 System.String.CompareOrdinal(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), Boolean System.String.Contains(String value), Boolean System.String.EndsWith(String value), Boolean System.String.EndsWith(String value, StringComparison comparisonType), Boolean System.String.EndsWith(String value, Boolean ignoreCase, CultureInfo culture), Int32 System.String.IndexOf(Char value), Int32 System.String.IndexOf(Char value, Int32 startIndex), Int32 System.String.IndexOf(Char value, Int32 startIndex, Int32 count), Int32 System.String.IndexOf(String value), Int32 System.String.IndexOf(String value, Int32 startIndex), Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count), Int32 System.String.IndexOf(String value, StringComparison comparisonType), Int32 System.String.IndexOf(String value, Int32 startIndex, StringComparison comparisonType), Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), Int32 System.String.IndexOfAny(Char[] anyOf), Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex), Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(Char value), Int32 System.String.LastIndexOf(Char value, Int32 startIndex), Int32 System.String.LastIndexOf(Char value, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(String value), Int32 System.String.LastIndexOf(String value, Int32 startIndex), Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(String value, StringComparison comparisonType), Int32 System.String.LastIndexOf(String value, Int32 startIndex, StringComparison comparisonType), Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), Int32 System.String.LastIndexOfAny(Char[] anyOf), Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex), Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), String System.String.PadLeft(Int32 totalWidth), String System.String.PadLeft(Int32 totalWidth, Char paddingChar), String System.String.PadRight(Int32 totalWidth), String System.String.PadRight(Int32 totalWidth, Char paddingChar), Boolean System.String.StartsWith(String value), Boolean System.String.StartsWith(String value, StringComparison comparisonType), Boolean System.String.StartsWith(String value, Boolean ignoreCase, CultureInfo culture), String System.String.ToLower(), String System.String.ToLower(CultureInfo culture), String System.String.ToLowerInvariant(), String System.String.ToUpper(), String System.String.ToUpper(CultureInfo culture), String System.String.ToUpperInvariant(), String System.String.ToString(), String System.String.ToString(IFormatProvider provider), Object System.String.Clone(), String System.String.Insert(Int32 startIndex, String value), String System.String.Replace(Char oldChar, Char newChar), String System.String.Replace(String oldValue, String newValue), String System.String.Remove(Int32 startIndex, Int32 count), String System.String.Remove(Int32 startIndex), static String System.String.Format(String format, Object arg0), static String System.String.Format(String format, Object arg0, Object arg1), static String System.String.Format(String format, Object arg0, Object arg1, Object arg2), static String System.String.Format(String format, Object[] args), static String System.String.Format(IFormatProvider provider, String format, Object[] args), static String System.String.Copy(String str), static String System.String.Concat(Object arg0), static String System.String.Concat(Object arg0, Object arg1), static String System.String.Concat(Object arg0, Object arg1, Object arg2), static String System.String.Concat(Object arg0, Object arg1, Object arg2, Object arg3), static String System.String.Concat(Object[] args), static String System.String.Concat(IEnumerable`1 values), static String System.String.Concat(IEnumerable`1 values), static String System.String.Concat(String str0, String str1), static String System.String.Concat(String str0, String str1, String str2), static String System.String.Concat(String str0, String str1, String str2, String str3), static String System.String.Concat(String[] values), static String System.String.Intern(String str), static String System.String.IsInterned(String str), TypeCode System.String.GetTypeCode(), CharEnumerator System.String.GetEnumerator(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Char System.String.Chars[Int32 index], Int32 System.String.Length}" IsClass="True"> null @@ -724,8 +732,8 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, NestedPublic, BeforeFieldInit" BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+MyClass" - GetMembers="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsClass="True" IsNested="True"> null @@ -745,8 +753,8 @@ namespace Debugger.Tests { FullName="System.Int32" GetFields="{System.Int32 MaxValue, System.Int32 MinValue}" GetInterfaces="{System.IComparable, System.IFormattable, System.IConvertible, System.IComparable`1[System.Int32], System.IEquatable`1[System.Int32]}" - GetMembers="{System.Int32 MaxValue, System.Int32 MinValue, System.Int32 System.Int32.CompareTo(Object value), System.Int32 System.Int32.CompareTo(Int32 value), System.Boolean System.Int32.Equals(Object obj), System.Boolean System.Int32.Equals(Int32 obj), System.Int32 System.Int32.GetHashCode(), System.String System.Int32.ToString(), System.String System.Int32.ToString(String format), System.String System.Int32.ToString(IFormatProvider provider), System.String System.Int32.ToString(String format, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s), static System.Int32 System.Int32.Parse(String s, NumberStyles style), static System.Int32 System.Int32.Parse(String s, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static System.Boolean System.Int32.TryParse(String s, Int32 result), static System.Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), System.TypeCode System.Int32.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 System.Int32.CompareTo(Object value), System.Int32 System.Int32.CompareTo(Int32 value), System.Boolean System.Int32.Equals(Object obj), System.Boolean System.Int32.Equals(Int32 obj), System.Int32 System.Int32.GetHashCode(), System.String System.Int32.ToString(), System.String System.Int32.ToString(String format), System.String System.Int32.ToString(IFormatProvider provider), System.String System.Int32.ToString(String format, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s), static System.Int32 System.Int32.Parse(String s, NumberStyles style), static System.Int32 System.Int32.Parse(String s, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static System.Boolean System.Int32.TryParse(String s, Int32 result), static System.Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), System.TypeCode System.Int32.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.Int32 MaxValue, System.Int32 MinValue, Int32 System.Int32.CompareTo(Object value), Int32 System.Int32.CompareTo(Int32 value), Boolean System.Int32.Equals(Object obj), Boolean System.Int32.Equals(Int32 obj), Int32 System.Int32.GetHashCode(), String System.Int32.ToString(), String System.Int32.ToString(String format), String System.Int32.ToString(IFormatProvider provider), String System.Int32.ToString(String format, IFormatProvider provider), static Int32 System.Int32.Parse(String s), static Int32 System.Int32.Parse(String s, NumberStyles style), static Int32 System.Int32.Parse(String s, IFormatProvider provider), static Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static Boolean System.Int32.TryParse(String s, Int32 result), static Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), TypeCode System.Int32.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 System.Int32.CompareTo(Object value), Int32 System.Int32.CompareTo(Int32 value), Boolean System.Int32.Equals(Object obj), Boolean System.Int32.Equals(Int32 obj), Int32 System.Int32.GetHashCode(), String System.Int32.ToString(), String System.Int32.ToString(String format), String System.Int32.ToString(IFormatProvider provider), String System.Int32.ToString(String format, IFormatProvider provider), static Int32 System.Int32.Parse(String s), static Int32 System.Int32.Parse(String s, NumberStyles style), static Int32 System.Int32.Parse(String s, IFormatProvider provider), static Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static Boolean System.Int32.TryParse(String s, Int32 result), static Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), TypeCode System.Int32.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsInteger="True" IsPrimitive="True" IsValueType="True"> @@ -767,8 +775,8 @@ namespace Debugger.Tests { FullName="System.Boolean" GetFields="{System.String TrueString, System.String FalseString}" GetInterfaces="{System.IComparable, System.IConvertible, System.IComparable`1[System.Boolean], System.IEquatable`1[System.Boolean]}" - GetMembers="{System.String TrueString, System.String FalseString, System.Int32 System.Boolean.GetHashCode(), System.String System.Boolean.ToString(), System.String System.Boolean.ToString(IFormatProvider provider), System.Boolean System.Boolean.Equals(Object obj), System.Boolean System.Boolean.Equals(Boolean obj), System.Int32 System.Boolean.CompareTo(Object obj), System.Int32 System.Boolean.CompareTo(Boolean value), static System.Boolean System.Boolean.Parse(String value), static System.Boolean System.Boolean.TryParse(String value, Boolean result), System.TypeCode System.Boolean.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 System.Boolean.GetHashCode(), System.String System.Boolean.ToString(), System.String System.Boolean.ToString(IFormatProvider provider), System.Boolean System.Boolean.Equals(Object obj), System.Boolean System.Boolean.Equals(Boolean obj), System.Int32 System.Boolean.CompareTo(Object obj), System.Int32 System.Boolean.CompareTo(Boolean value), static System.Boolean System.Boolean.Parse(String value), static System.Boolean System.Boolean.TryParse(String value, Boolean result), System.TypeCode System.Boolean.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.String TrueString, System.String FalseString, Int32 System.Boolean.GetHashCode(), String System.Boolean.ToString(), String System.Boolean.ToString(IFormatProvider provider), Boolean System.Boolean.Equals(Object obj), Boolean System.Boolean.Equals(Boolean obj), Int32 System.Boolean.CompareTo(Object obj), Int32 System.Boolean.CompareTo(Boolean value), static Boolean System.Boolean.Parse(String value), static Boolean System.Boolean.TryParse(String value, Boolean result), TypeCode System.Boolean.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 System.Boolean.GetHashCode(), String System.Boolean.ToString(), String System.Boolean.ToString(IFormatProvider provider), Boolean System.Boolean.Equals(Object obj), Boolean System.Boolean.Equals(Boolean obj), Int32 System.Boolean.CompareTo(Object obj), Int32 System.Boolean.CompareTo(Boolean value), static Boolean System.Boolean.Parse(String value), static Boolean System.Boolean.TryParse(String value, Boolean result), TypeCode System.Boolean.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsPrimitive="True" IsValueType="True"> null @@ -788,8 +796,8 @@ namespace Debugger.Tests { FullName="System.Char" GetFields="{System.Char MaxValue, System.Char MinValue}" GetInterfaces="{System.IComparable, System.IConvertible, System.IComparable`1[System.Char], System.IEquatable`1[System.Char]}" - GetMembers="{System.Char MaxValue, System.Char MinValue, System.Int32 System.Char.GetHashCode(), System.Boolean System.Char.Equals(Object obj), System.Boolean System.Char.Equals(Char obj), System.Int32 System.Char.CompareTo(Object value), System.Int32 System.Char.CompareTo(Char value), System.String System.Char.ToString(), System.String System.Char.ToString(IFormatProvider provider), static System.String System.Char.ToString(Char c), static System.Char System.Char.Parse(String s), static System.Boolean System.Char.TryParse(String s, Char result), static System.Boolean System.Char.IsDigit(Char c), static System.Boolean System.Char.IsDigit(String s, Int32 index), static System.Boolean System.Char.IsLetter(Char c), static System.Boolean System.Char.IsLetter(String s, Int32 index), static System.Boolean System.Char.IsWhiteSpace(Char c), static System.Boolean System.Char.IsWhiteSpace(String s, Int32 index), static System.Boolean System.Char.IsUpper(Char c), static System.Boolean System.Char.IsUpper(String s, Int32 index), static System.Boolean System.Char.IsLower(Char c), static System.Boolean System.Char.IsLower(String s, Int32 index), static System.Boolean System.Char.IsPunctuation(Char c), static System.Boolean System.Char.IsPunctuation(String s, Int32 index), static System.Boolean System.Char.IsLetterOrDigit(Char c), static System.Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static System.Char System.Char.ToUpper(Char c, CultureInfo culture), static System.Char System.Char.ToUpper(Char c), static System.Char System.Char.ToUpperInvariant(Char c), static System.Char System.Char.ToLower(Char c, CultureInfo culture), static System.Char System.Char.ToLower(Char c), static System.Char System.Char.ToLowerInvariant(Char c), System.TypeCode System.Char.GetTypeCode(), static System.Boolean System.Char.IsControl(Char c), static System.Boolean System.Char.IsControl(String s, Int32 index), static System.Boolean System.Char.IsNumber(Char c), static System.Boolean System.Char.IsNumber(String s, Int32 index), static System.Boolean System.Char.IsSeparator(Char c), static System.Boolean System.Char.IsSeparator(String s, Int32 index), static System.Boolean System.Char.IsSurrogate(Char c), static System.Boolean System.Char.IsSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSymbol(Char c), static System.Boolean System.Char.IsSymbol(String s, Int32 index), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(Char c), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static System.Double System.Char.GetNumericValue(Char c), static System.Double System.Char.GetNumericValue(String s, Int32 index), static System.Boolean System.Char.IsHighSurrogate(Char c), static System.Boolean System.Char.IsHighSurrogate(String s, Int32 index), static System.Boolean System.Char.IsLowSurrogate(Char c), static System.Boolean System.Char.IsLowSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static System.String System.Char.ConvertFromUtf32(Int32 utf32), static System.Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static System.Int32 System.Char.ConvertToUtf32(String s, Int32 index), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 System.Char.GetHashCode(), System.Boolean System.Char.Equals(Object obj), System.Boolean System.Char.Equals(Char obj), System.Int32 System.Char.CompareTo(Object value), System.Int32 System.Char.CompareTo(Char value), System.String System.Char.ToString(), System.String System.Char.ToString(IFormatProvider provider), static System.String System.Char.ToString(Char c), static System.Char System.Char.Parse(String s), static System.Boolean System.Char.TryParse(String s, Char result), static System.Boolean System.Char.IsDigit(Char c), static System.Boolean System.Char.IsDigit(String s, Int32 index), static System.Boolean System.Char.IsLetter(Char c), static System.Boolean System.Char.IsLetter(String s, Int32 index), static System.Boolean System.Char.IsWhiteSpace(Char c), static System.Boolean System.Char.IsWhiteSpace(String s, Int32 index), static System.Boolean System.Char.IsUpper(Char c), static System.Boolean System.Char.IsUpper(String s, Int32 index), static System.Boolean System.Char.IsLower(Char c), static System.Boolean System.Char.IsLower(String s, Int32 index), static System.Boolean System.Char.IsPunctuation(Char c), static System.Boolean System.Char.IsPunctuation(String s, Int32 index), static System.Boolean System.Char.IsLetterOrDigit(Char c), static System.Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static System.Char System.Char.ToUpper(Char c, CultureInfo culture), static System.Char System.Char.ToUpper(Char c), static System.Char System.Char.ToUpperInvariant(Char c), static System.Char System.Char.ToLower(Char c, CultureInfo culture), static System.Char System.Char.ToLower(Char c), static System.Char System.Char.ToLowerInvariant(Char c), System.TypeCode System.Char.GetTypeCode(), static System.Boolean System.Char.IsControl(Char c), static System.Boolean System.Char.IsControl(String s, Int32 index), static System.Boolean System.Char.IsNumber(Char c), static System.Boolean System.Char.IsNumber(String s, Int32 index), static System.Boolean System.Char.IsSeparator(Char c), static System.Boolean System.Char.IsSeparator(String s, Int32 index), static System.Boolean System.Char.IsSurrogate(Char c), static System.Boolean System.Char.IsSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSymbol(Char c), static System.Boolean System.Char.IsSymbol(String s, Int32 index), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(Char c), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static System.Double System.Char.GetNumericValue(Char c), static System.Double System.Char.GetNumericValue(String s, Int32 index), static System.Boolean System.Char.IsHighSurrogate(Char c), static System.Boolean System.Char.IsHighSurrogate(String s, Int32 index), static System.Boolean System.Char.IsLowSurrogate(Char c), static System.Boolean System.Char.IsLowSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static System.String System.Char.ConvertFromUtf32(Int32 utf32), static System.Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static System.Int32 System.Char.ConvertToUtf32(String s, Int32 index), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.Char MaxValue, System.Char MinValue, Int32 System.Char.GetHashCode(), Boolean System.Char.Equals(Object obj), Boolean System.Char.Equals(Char obj), Int32 System.Char.CompareTo(Object value), Int32 System.Char.CompareTo(Char value), String System.Char.ToString(), String System.Char.ToString(IFormatProvider provider), static String System.Char.ToString(Char c), static Char System.Char.Parse(String s), static Boolean System.Char.TryParse(String s, Char result), static Boolean System.Char.IsDigit(Char c), static Boolean System.Char.IsDigit(String s, Int32 index), static Boolean System.Char.IsLetter(Char c), static Boolean System.Char.IsLetter(String s, Int32 index), static Boolean System.Char.IsWhiteSpace(Char c), static Boolean System.Char.IsWhiteSpace(String s, Int32 index), static Boolean System.Char.IsUpper(Char c), static Boolean System.Char.IsUpper(String s, Int32 index), static Boolean System.Char.IsLower(Char c), static Boolean System.Char.IsLower(String s, Int32 index), static Boolean System.Char.IsPunctuation(Char c), static Boolean System.Char.IsPunctuation(String s, Int32 index), static Boolean System.Char.IsLetterOrDigit(Char c), static Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static Char System.Char.ToUpper(Char c, CultureInfo culture), static Char System.Char.ToUpper(Char c), static Char System.Char.ToUpperInvariant(Char c), static Char System.Char.ToLower(Char c, CultureInfo culture), static Char System.Char.ToLower(Char c), static Char System.Char.ToLowerInvariant(Char c), TypeCode System.Char.GetTypeCode(), static Boolean System.Char.IsControl(Char c), static Boolean System.Char.IsControl(String s, Int32 index), static Boolean System.Char.IsNumber(Char c), static Boolean System.Char.IsNumber(String s, Int32 index), static Boolean System.Char.IsSeparator(Char c), static Boolean System.Char.IsSeparator(String s, Int32 index), static Boolean System.Char.IsSurrogate(Char c), static Boolean System.Char.IsSurrogate(String s, Int32 index), static Boolean System.Char.IsSymbol(Char c), static Boolean System.Char.IsSymbol(String s, Int32 index), static UnicodeCategory System.Char.GetUnicodeCategory(Char c), static UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static Double System.Char.GetNumericValue(Char c), static Double System.Char.GetNumericValue(String s, Int32 index), static Boolean System.Char.IsHighSurrogate(Char c), static Boolean System.Char.IsHighSurrogate(String s, Int32 index), static Boolean System.Char.IsLowSurrogate(Char c), static Boolean System.Char.IsLowSurrogate(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static String System.Char.ConvertFromUtf32(Int32 utf32), static Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static Int32 System.Char.ConvertToUtf32(String s, Int32 index), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 System.Char.GetHashCode(), Boolean System.Char.Equals(Object obj), Boolean System.Char.Equals(Char obj), Int32 System.Char.CompareTo(Object value), Int32 System.Char.CompareTo(Char value), String System.Char.ToString(), String System.Char.ToString(IFormatProvider provider), static String System.Char.ToString(Char c), static Char System.Char.Parse(String s), static Boolean System.Char.TryParse(String s, Char result), static Boolean System.Char.IsDigit(Char c), static Boolean System.Char.IsDigit(String s, Int32 index), static Boolean System.Char.IsLetter(Char c), static Boolean System.Char.IsLetter(String s, Int32 index), static Boolean System.Char.IsWhiteSpace(Char c), static Boolean System.Char.IsWhiteSpace(String s, Int32 index), static Boolean System.Char.IsUpper(Char c), static Boolean System.Char.IsUpper(String s, Int32 index), static Boolean System.Char.IsLower(Char c), static Boolean System.Char.IsLower(String s, Int32 index), static Boolean System.Char.IsPunctuation(Char c), static Boolean System.Char.IsPunctuation(String s, Int32 index), static Boolean System.Char.IsLetterOrDigit(Char c), static Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static Char System.Char.ToUpper(Char c, CultureInfo culture), static Char System.Char.ToUpper(Char c), static Char System.Char.ToUpperInvariant(Char c), static Char System.Char.ToLower(Char c, CultureInfo culture), static Char System.Char.ToLower(Char c), static Char System.Char.ToLowerInvariant(Char c), TypeCode System.Char.GetTypeCode(), static Boolean System.Char.IsControl(Char c), static Boolean System.Char.IsControl(String s, Int32 index), static Boolean System.Char.IsNumber(Char c), static Boolean System.Char.IsNumber(String s, Int32 index), static Boolean System.Char.IsSeparator(Char c), static Boolean System.Char.IsSeparator(String s, Int32 index), static Boolean System.Char.IsSurrogate(Char c), static Boolean System.Char.IsSurrogate(String s, Int32 index), static Boolean System.Char.IsSymbol(Char c), static Boolean System.Char.IsSymbol(String s, Int32 index), static UnicodeCategory System.Char.GetUnicodeCategory(Char c), static UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static Double System.Char.GetNumericValue(Char c), static Double System.Char.GetNumericValue(String s, Int32 index), static Boolean System.Char.IsHighSurrogate(Char c), static Boolean System.Char.IsHighSurrogate(String s, Int32 index), static Boolean System.Char.IsLowSurrogate(Char c), static Boolean System.Char.IsLowSurrogate(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static String System.Char.ConvertFromUtf32(Int32 utf32), static Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static Int32 System.Char.ConvertToUtf32(String s, Int32 index), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsPrimitive="True" IsValueType="True"> null @@ -809,9 +817,9 @@ namespace Debugger.Tests { FullName="System.String" GetFields="{System.String Empty}" GetInterfaces="{System.IComparable, System.ICloneable, System.IConvertible, System.IComparable`1[System.String], System.Collections.Generic.IEnumerable`1[System.Char], System.Collections.IEnumerable, System.IEquatable`1[System.String]}" - GetMembers="{System.String Empty, static System.String System.String.Join(String separator, String[] value), static System.String System.String.Join(String separator, Object[] values), static System.String System.String.Join(String separator, IEnumerable`1 values), static System.String System.String.Join(String separator, IEnumerable`1 values), static System.String System.String.Join(String separator, String[] value, Int32 startIndex, Int32 count), System.Boolean System.String.Equals(Object obj), System.Boolean System.String.Equals(String value), System.Boolean System.String.Equals(String value, StringComparison comparisonType), static System.Boolean System.String.Equals(String a, String b), static System.Boolean System.String.Equals(String a, String b, StringComparison comparisonType), static System.Boolean System.String.op_Equality(String a, String b), static System.Boolean System.String.op_Inequality(String a, String b), System.Char System.String.get_Chars(Int32 index), void System.String.CopyTo(Int32 sourceIndex, Char[] destination, Int32 destinationIndex, Int32 count), System.Char[] System.String.ToCharArray(), System.Char[] System.String.ToCharArray(Int32 startIndex, Int32 length), static System.Boolean System.String.IsNullOrEmpty(String value), static System.Boolean System.String.IsNullOrWhiteSpace(String value), System.Int32 System.String.GetHashCode(), System.Int32 System.String.get_Length(), System.String[] System.String.Split(Char[] separator), System.String[] System.String.Split(Char[] separator, Int32 count), System.String[] System.String.Split(Char[] separator, StringSplitOptions options), System.String[] System.String.Split(Char[] separator, Int32 count, StringSplitOptions options), System.String[] System.String.Split(String[] separator, StringSplitOptions options), System.String[] System.String.Split(String[] separator, Int32 count, StringSplitOptions options), System.String System.String.Substring(Int32 startIndex), System.String System.String.Substring(Int32 startIndex, Int32 length), System.String System.String.Trim(Char[] trimChars), System.String System.String.Trim(), System.String System.String.TrimStart(Char[] trimChars), System.String System.String.TrimEnd(Char[] trimChars), void System.String..ctor(Char* value), void System.String..ctor(Char* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length, Encoding enc), void System.String..ctor(Char[] value, Int32 startIndex, Int32 length), void System.String..ctor(Char[] value), void System.String..ctor(Char c, Int32 count), System.Boolean System.String.IsNormalized(), System.Boolean System.String.IsNormalized(NormalizationForm normalizationForm), System.String System.String.Normalize(), System.String System.String.Normalize(NormalizationForm normalizationForm), static System.Int32 System.String.Compare(String strA, String strB), static System.Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase), static System.Int32 System.String.Compare(String strA, String strB, StringComparison comparisonType), static System.Int32 System.String.Compare(String strA, String strB, CultureInfo culture, CompareOptions options), static System.Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase, CultureInfo culture), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase, CultureInfo culture), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, CultureInfo culture, CompareOptions options), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, StringComparison comparisonType), System.Int32 System.String.CompareTo(Object value), System.Int32 System.String.CompareTo(String strB), static System.Int32 System.String.CompareOrdinal(String strA, String strB), static System.Int32 System.String.CompareOrdinal(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), System.Boolean System.String.Contains(String value), System.Boolean System.String.EndsWith(String value), System.Boolean System.String.EndsWith(String value, StringComparison comparisonType), System.Boolean System.String.EndsWith(String value, Boolean ignoreCase, CultureInfo culture), System.Int32 System.String.IndexOf(Char value), System.Int32 System.String.IndexOf(Char value, Int32 startIndex), System.Int32 System.String.IndexOf(Char value, Int32 startIndex, Int32 count), System.Int32 System.String.IndexOf(String value), System.Int32 System.String.IndexOf(String value, Int32 startIndex), System.Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count), System.Int32 System.String.IndexOf(String value, StringComparison comparisonType), System.Int32 System.String.IndexOf(String value, Int32 startIndex, StringComparison comparisonType), System.Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), System.Int32 System.String.IndexOfAny(Char[] anyOf), System.Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex), System.Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(Char value), System.Int32 System.String.LastIndexOf(Char value, Int32 startIndex), System.Int32 System.String.LastIndexOf(Char value, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(String value), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(String value, StringComparison comparisonType), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, StringComparison comparisonType), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), System.Int32 System.String.LastIndexOfAny(Char[] anyOf), System.Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex), System.Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), System.String System.String.PadLeft(Int32 totalWidth), System.String System.String.PadLeft(Int32 totalWidth, Char paddingChar), System.String System.String.PadRight(Int32 totalWidth), System.String System.String.PadRight(Int32 totalWidth, Char paddingChar), System.Boolean System.String.StartsWith(String value), System.Boolean System.String.StartsWith(String value, StringComparison comparisonType), System.Boolean System.String.StartsWith(String value, Boolean ignoreCase, CultureInfo culture), System.String System.String.ToLower(), System.String System.String.ToLower(CultureInfo culture), System.String System.String.ToLowerInvariant(), System.String System.String.ToUpper(), System.String System.String.ToUpper(CultureInfo culture), System.String System.String.ToUpperInvariant(), System.String System.String.ToString(), System.String System.String.ToString(IFormatProvider provider), System.Object System.String.Clone(), System.String System.String.Insert(Int32 startIndex, String value), System.String System.String.Replace(Char oldChar, Char newChar), System.String System.String.Replace(String oldValue, String newValue), System.String System.String.Remove(Int32 startIndex, Int32 count), System.String System.String.Remove(Int32 startIndex), static System.String System.String.Format(String format, Object arg0), static System.String System.String.Format(String format, Object arg0, Object arg1), static System.String System.String.Format(String format, Object arg0, Object arg1, Object arg2), static System.String System.String.Format(String format, Object[] args), static System.String System.String.Format(IFormatProvider provider, String format, Object[] args), static System.String System.String.Copy(String str), static System.String System.String.Concat(Object arg0), static System.String System.String.Concat(Object arg0, Object arg1), static System.String System.String.Concat(Object arg0, Object arg1, Object arg2), static System.String System.String.Concat(Object arg0, Object arg1, Object arg2, Object arg3), static System.String System.String.Concat(Object[] args), static System.String System.String.Concat(IEnumerable`1 values), static System.String System.String.Concat(IEnumerable`1 values), static System.String System.String.Concat(String str0, String str1), static System.String System.String.Concat(String str0, String str1, String str2), static System.String System.String.Concat(String str0, String str1, String str2, String str3), static System.String System.String.Concat(String[] values), static System.String System.String.Intern(String str), static System.String System.String.IsInterned(String str), System.TypeCode System.String.GetTypeCode(), System.CharEnumerator System.String.GetEnumerator(), System.Char Chars[Int32 index], System.Int32 Length, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{static System.String System.String.Join(String separator, String[] value), static System.String System.String.Join(String separator, Object[] values), static System.String System.String.Join(String separator, IEnumerable`1 values), static System.String System.String.Join(String separator, IEnumerable`1 values), static System.String System.String.Join(String separator, String[] value, Int32 startIndex, Int32 count), System.Boolean System.String.Equals(Object obj), System.Boolean System.String.Equals(String value), System.Boolean System.String.Equals(String value, StringComparison comparisonType), static System.Boolean System.String.Equals(String a, String b), static System.Boolean System.String.Equals(String a, String b, StringComparison comparisonType), static System.Boolean System.String.op_Equality(String a, String b), static System.Boolean System.String.op_Inequality(String a, String b), System.Char System.String.get_Chars(Int32 index), void System.String.CopyTo(Int32 sourceIndex, Char[] destination, Int32 destinationIndex, Int32 count), System.Char[] System.String.ToCharArray(), System.Char[] System.String.ToCharArray(Int32 startIndex, Int32 length), static System.Boolean System.String.IsNullOrEmpty(String value), static System.Boolean System.String.IsNullOrWhiteSpace(String value), System.Int32 System.String.GetHashCode(), System.Int32 System.String.get_Length(), System.String[] System.String.Split(Char[] separator), System.String[] System.String.Split(Char[] separator, Int32 count), System.String[] System.String.Split(Char[] separator, StringSplitOptions options), System.String[] System.String.Split(Char[] separator, Int32 count, StringSplitOptions options), System.String[] System.String.Split(String[] separator, StringSplitOptions options), System.String[] System.String.Split(String[] separator, Int32 count, StringSplitOptions options), System.String System.String.Substring(Int32 startIndex), System.String System.String.Substring(Int32 startIndex, Int32 length), System.String System.String.Trim(Char[] trimChars), System.String System.String.Trim(), System.String System.String.TrimStart(Char[] trimChars), System.String System.String.TrimEnd(Char[] trimChars), void System.String..ctor(Char* value), void System.String..ctor(Char* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length, Encoding enc), void System.String..ctor(Char[] value, Int32 startIndex, Int32 length), void System.String..ctor(Char[] value), void System.String..ctor(Char c, Int32 count), System.Boolean System.String.IsNormalized(), System.Boolean System.String.IsNormalized(NormalizationForm normalizationForm), System.String System.String.Normalize(), System.String System.String.Normalize(NormalizationForm normalizationForm), static System.Int32 System.String.Compare(String strA, String strB), static System.Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase), static System.Int32 System.String.Compare(String strA, String strB, StringComparison comparisonType), static System.Int32 System.String.Compare(String strA, String strB, CultureInfo culture, CompareOptions options), static System.Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase, CultureInfo culture), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase, CultureInfo culture), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, CultureInfo culture, CompareOptions options), static System.Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, StringComparison comparisonType), System.Int32 System.String.CompareTo(Object value), System.Int32 System.String.CompareTo(String strB), static System.Int32 System.String.CompareOrdinal(String strA, String strB), static System.Int32 System.String.CompareOrdinal(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), System.Boolean System.String.Contains(String value), System.Boolean System.String.EndsWith(String value), System.Boolean System.String.EndsWith(String value, StringComparison comparisonType), System.Boolean System.String.EndsWith(String value, Boolean ignoreCase, CultureInfo culture), System.Int32 System.String.IndexOf(Char value), System.Int32 System.String.IndexOf(Char value, Int32 startIndex), System.Int32 System.String.IndexOf(Char value, Int32 startIndex, Int32 count), System.Int32 System.String.IndexOf(String value), System.Int32 System.String.IndexOf(String value, Int32 startIndex), System.Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count), System.Int32 System.String.IndexOf(String value, StringComparison comparisonType), System.Int32 System.String.IndexOf(String value, Int32 startIndex, StringComparison comparisonType), System.Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), System.Int32 System.String.IndexOfAny(Char[] anyOf), System.Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex), System.Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(Char value), System.Int32 System.String.LastIndexOf(Char value, Int32 startIndex), System.Int32 System.String.LastIndexOf(Char value, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(String value), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count), System.Int32 System.String.LastIndexOf(String value, StringComparison comparisonType), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, StringComparison comparisonType), System.Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), System.Int32 System.String.LastIndexOfAny(Char[] anyOf), System.Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex), System.Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), System.String System.String.PadLeft(Int32 totalWidth), System.String System.String.PadLeft(Int32 totalWidth, Char paddingChar), System.String System.String.PadRight(Int32 totalWidth), System.String System.String.PadRight(Int32 totalWidth, Char paddingChar), System.Boolean System.String.StartsWith(String value), System.Boolean System.String.StartsWith(String value, StringComparison comparisonType), System.Boolean System.String.StartsWith(String value, Boolean ignoreCase, CultureInfo culture), System.String System.String.ToLower(), System.String System.String.ToLower(CultureInfo culture), System.String System.String.ToLowerInvariant(), System.String System.String.ToUpper(), System.String System.String.ToUpper(CultureInfo culture), System.String System.String.ToUpperInvariant(), System.String System.String.ToString(), System.String System.String.ToString(IFormatProvider provider), System.Object System.String.Clone(), System.String System.String.Insert(Int32 startIndex, String value), System.String System.String.Replace(Char oldChar, Char newChar), System.String System.String.Replace(String oldValue, String newValue), System.String System.String.Remove(Int32 startIndex, Int32 count), System.String System.String.Remove(Int32 startIndex), static System.String System.String.Format(String format, Object arg0), static System.String System.String.Format(String format, Object arg0, Object arg1), static System.String System.String.Format(String format, Object arg0, Object arg1, Object arg2), static System.String System.String.Format(String format, Object[] args), static System.String System.String.Format(IFormatProvider provider, String format, Object[] args), static System.String System.String.Copy(String str), static System.String System.String.Concat(Object arg0), static System.String System.String.Concat(Object arg0, Object arg1), static System.String System.String.Concat(Object arg0, Object arg1, Object arg2), static System.String System.String.Concat(Object arg0, Object arg1, Object arg2, Object arg3), static System.String System.String.Concat(Object[] args), static System.String System.String.Concat(IEnumerable`1 values), static System.String System.String.Concat(IEnumerable`1 values), static System.String System.String.Concat(String str0, String str1), static System.String System.String.Concat(String str0, String str1, String str2), static System.String System.String.Concat(String str0, String str1, String str2, String str3), static System.String System.String.Concat(String[] values), static System.String System.String.Intern(String str), static System.String System.String.IsInterned(String str), System.TypeCode System.String.GetTypeCode(), System.CharEnumerator System.String.GetEnumerator(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Char Chars[Int32 index], System.Int32 Length}" + GetMembers="{System.String Empty, static String System.String.Join(String separator, String[] value), static String System.String.Join(String separator, Object[] values), static String System.String.Join(String separator, IEnumerable`1 values), static String System.String.Join(String separator, IEnumerable`1 values), static String System.String.Join(String separator, String[] value, Int32 startIndex, Int32 count), Boolean System.String.Equals(Object obj), Boolean System.String.Equals(String value), Boolean System.String.Equals(String value, StringComparison comparisonType), static Boolean System.String.Equals(String a, String b), static Boolean System.String.Equals(String a, String b, StringComparison comparisonType), static Boolean System.String.op_Equality(String a, String b), static Boolean System.String.op_Inequality(String a, String b), Char System.String.get_Chars(Int32 index), void System.String.CopyTo(Int32 sourceIndex, Char[] destination, Int32 destinationIndex, Int32 count), Char[] System.String.ToCharArray(), Char[] System.String.ToCharArray(Int32 startIndex, Int32 length), static Boolean System.String.IsNullOrEmpty(String value), static Boolean System.String.IsNullOrWhiteSpace(String value), Int32 System.String.GetHashCode(), Int32 System.String.get_Length(), String[] System.String.Split(Char[] separator), String[] System.String.Split(Char[] separator, Int32 count), String[] System.String.Split(Char[] separator, StringSplitOptions options), String[] System.String.Split(Char[] separator, Int32 count, StringSplitOptions options), String[] System.String.Split(String[] separator, StringSplitOptions options), String[] System.String.Split(String[] separator, Int32 count, StringSplitOptions options), String System.String.Substring(Int32 startIndex), String System.String.Substring(Int32 startIndex, Int32 length), String System.String.Trim(Char[] trimChars), String System.String.Trim(), String System.String.TrimStart(Char[] trimChars), String System.String.TrimEnd(Char[] trimChars), void System.String..ctor(Char* value), void System.String..ctor(Char* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length, Encoding enc), void System.String..ctor(Char[] value, Int32 startIndex, Int32 length), void System.String..ctor(Char[] value), void System.String..ctor(Char c, Int32 count), Boolean System.String.IsNormalized(), Boolean System.String.IsNormalized(NormalizationForm normalizationForm), String System.String.Normalize(), String System.String.Normalize(NormalizationForm normalizationForm), static Int32 System.String.Compare(String strA, String strB), static Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase), static Int32 System.String.Compare(String strA, String strB, StringComparison comparisonType), static Int32 System.String.Compare(String strA, String strB, CultureInfo culture, CompareOptions options), static Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase, CultureInfo culture), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase, CultureInfo culture), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, CultureInfo culture, CompareOptions options), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, StringComparison comparisonType), Int32 System.String.CompareTo(Object value), Int32 System.String.CompareTo(String strB), static Int32 System.String.CompareOrdinal(String strA, String strB), static Int32 System.String.CompareOrdinal(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), Boolean System.String.Contains(String value), Boolean System.String.EndsWith(String value), Boolean System.String.EndsWith(String value, StringComparison comparisonType), Boolean System.String.EndsWith(String value, Boolean ignoreCase, CultureInfo culture), Int32 System.String.IndexOf(Char value), Int32 System.String.IndexOf(Char value, Int32 startIndex), Int32 System.String.IndexOf(Char value, Int32 startIndex, Int32 count), Int32 System.String.IndexOf(String value), Int32 System.String.IndexOf(String value, Int32 startIndex), Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count), Int32 System.String.IndexOf(String value, StringComparison comparisonType), Int32 System.String.IndexOf(String value, Int32 startIndex, StringComparison comparisonType), Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), Int32 System.String.IndexOfAny(Char[] anyOf), Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex), Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(Char value), Int32 System.String.LastIndexOf(Char value, Int32 startIndex), Int32 System.String.LastIndexOf(Char value, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(String value), Int32 System.String.LastIndexOf(String value, Int32 startIndex), Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(String value, StringComparison comparisonType), Int32 System.String.LastIndexOf(String value, Int32 startIndex, StringComparison comparisonType), Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), Int32 System.String.LastIndexOfAny(Char[] anyOf), Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex), Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), String System.String.PadLeft(Int32 totalWidth), String System.String.PadLeft(Int32 totalWidth, Char paddingChar), String System.String.PadRight(Int32 totalWidth), String System.String.PadRight(Int32 totalWidth, Char paddingChar), Boolean System.String.StartsWith(String value), Boolean System.String.StartsWith(String value, StringComparison comparisonType), Boolean System.String.StartsWith(String value, Boolean ignoreCase, CultureInfo culture), String System.String.ToLower(), String System.String.ToLower(CultureInfo culture), String System.String.ToLowerInvariant(), String System.String.ToUpper(), String System.String.ToUpper(CultureInfo culture), String System.String.ToUpperInvariant(), String System.String.ToString(), String System.String.ToString(IFormatProvider provider), Object System.String.Clone(), String System.String.Insert(Int32 startIndex, String value), String System.String.Replace(Char oldChar, Char newChar), String System.String.Replace(String oldValue, String newValue), String System.String.Remove(Int32 startIndex, Int32 count), String System.String.Remove(Int32 startIndex), static String System.String.Format(String format, Object arg0), static String System.String.Format(String format, Object arg0, Object arg1), static String System.String.Format(String format, Object arg0, Object arg1, Object arg2), static String System.String.Format(String format, Object[] args), static String System.String.Format(IFormatProvider provider, String format, Object[] args), static String System.String.Copy(String str), static String System.String.Concat(Object arg0), static String System.String.Concat(Object arg0, Object arg1), static String System.String.Concat(Object arg0, Object arg1, Object arg2), static String System.String.Concat(Object arg0, Object arg1, Object arg2, Object arg3), static String System.String.Concat(Object[] args), static String System.String.Concat(IEnumerable`1 values), static String System.String.Concat(IEnumerable`1 values), static String System.String.Concat(String str0, String str1), static String System.String.Concat(String str0, String str1, String str2), static String System.String.Concat(String str0, String str1, String str2, String str3), static String System.String.Concat(String[] values), static String System.String.Intern(String str), static String System.String.IsInterned(String str), TypeCode System.String.GetTypeCode(), CharEnumerator System.String.GetEnumerator(), Char System.String.Chars[Int32 index], Int32 System.String.Length, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{static String System.String.Join(String separator, String[] value), static String System.String.Join(String separator, Object[] values), static String System.String.Join(String separator, IEnumerable`1 values), static String System.String.Join(String separator, IEnumerable`1 values), static String System.String.Join(String separator, String[] value, Int32 startIndex, Int32 count), Boolean System.String.Equals(Object obj), Boolean System.String.Equals(String value), Boolean System.String.Equals(String value, StringComparison comparisonType), static Boolean System.String.Equals(String a, String b), static Boolean System.String.Equals(String a, String b, StringComparison comparisonType), static Boolean System.String.op_Equality(String a, String b), static Boolean System.String.op_Inequality(String a, String b), Char System.String.get_Chars(Int32 index), void System.String.CopyTo(Int32 sourceIndex, Char[] destination, Int32 destinationIndex, Int32 count), Char[] System.String.ToCharArray(), Char[] System.String.ToCharArray(Int32 startIndex, Int32 length), static Boolean System.String.IsNullOrEmpty(String value), static Boolean System.String.IsNullOrWhiteSpace(String value), Int32 System.String.GetHashCode(), Int32 System.String.get_Length(), String[] System.String.Split(Char[] separator), String[] System.String.Split(Char[] separator, Int32 count), String[] System.String.Split(Char[] separator, StringSplitOptions options), String[] System.String.Split(Char[] separator, Int32 count, StringSplitOptions options), String[] System.String.Split(String[] separator, StringSplitOptions options), String[] System.String.Split(String[] separator, Int32 count, StringSplitOptions options), String System.String.Substring(Int32 startIndex), String System.String.Substring(Int32 startIndex, Int32 length), String System.String.Trim(Char[] trimChars), String System.String.Trim(), String System.String.TrimStart(Char[] trimChars), String System.String.TrimEnd(Char[] trimChars), void System.String..ctor(Char* value), void System.String..ctor(Char* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length), void System.String..ctor(SByte* value, Int32 startIndex, Int32 length, Encoding enc), void System.String..ctor(Char[] value, Int32 startIndex, Int32 length), void System.String..ctor(Char[] value), void System.String..ctor(Char c, Int32 count), Boolean System.String.IsNormalized(), Boolean System.String.IsNormalized(NormalizationForm normalizationForm), String System.String.Normalize(), String System.String.Normalize(NormalizationForm normalizationForm), static Int32 System.String.Compare(String strA, String strB), static Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase), static Int32 System.String.Compare(String strA, String strB, StringComparison comparisonType), static Int32 System.String.Compare(String strA, String strB, CultureInfo culture, CompareOptions options), static Int32 System.String.Compare(String strA, String strB, Boolean ignoreCase, CultureInfo culture), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, Boolean ignoreCase, CultureInfo culture), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, CultureInfo culture, CompareOptions options), static Int32 System.String.Compare(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length, StringComparison comparisonType), Int32 System.String.CompareTo(Object value), Int32 System.String.CompareTo(String strB), static Int32 System.String.CompareOrdinal(String strA, String strB), static Int32 System.String.CompareOrdinal(String strA, Int32 indexA, String strB, Int32 indexB, Int32 length), Boolean System.String.Contains(String value), Boolean System.String.EndsWith(String value), Boolean System.String.EndsWith(String value, StringComparison comparisonType), Boolean System.String.EndsWith(String value, Boolean ignoreCase, CultureInfo culture), Int32 System.String.IndexOf(Char value), Int32 System.String.IndexOf(Char value, Int32 startIndex), Int32 System.String.IndexOf(Char value, Int32 startIndex, Int32 count), Int32 System.String.IndexOf(String value), Int32 System.String.IndexOf(String value, Int32 startIndex), Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count), Int32 System.String.IndexOf(String value, StringComparison comparisonType), Int32 System.String.IndexOf(String value, Int32 startIndex, StringComparison comparisonType), Int32 System.String.IndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), Int32 System.String.IndexOfAny(Char[] anyOf), Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex), Int32 System.String.IndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(Char value), Int32 System.String.LastIndexOf(Char value, Int32 startIndex), Int32 System.String.LastIndexOf(Char value, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(String value), Int32 System.String.LastIndexOf(String value, Int32 startIndex), Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count), Int32 System.String.LastIndexOf(String value, StringComparison comparisonType), Int32 System.String.LastIndexOf(String value, Int32 startIndex, StringComparison comparisonType), Int32 System.String.LastIndexOf(String value, Int32 startIndex, Int32 count, StringComparison comparisonType), Int32 System.String.LastIndexOfAny(Char[] anyOf), Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex), Int32 System.String.LastIndexOfAny(Char[] anyOf, Int32 startIndex, Int32 count), String System.String.PadLeft(Int32 totalWidth), String System.String.PadLeft(Int32 totalWidth, Char paddingChar), String System.String.PadRight(Int32 totalWidth), String System.String.PadRight(Int32 totalWidth, Char paddingChar), Boolean System.String.StartsWith(String value), Boolean System.String.StartsWith(String value, StringComparison comparisonType), Boolean System.String.StartsWith(String value, Boolean ignoreCase, CultureInfo culture), String System.String.ToLower(), String System.String.ToLower(CultureInfo culture), String System.String.ToLowerInvariant(), String System.String.ToUpper(), String System.String.ToUpper(CultureInfo culture), String System.String.ToUpperInvariant(), String System.String.ToString(), String System.String.ToString(IFormatProvider provider), Object System.String.Clone(), String System.String.Insert(Int32 startIndex, String value), String System.String.Replace(Char oldChar, Char newChar), String System.String.Replace(String oldValue, String newValue), String System.String.Remove(Int32 startIndex, Int32 count), String System.String.Remove(Int32 startIndex), static String System.String.Format(String format, Object arg0), static String System.String.Format(String format, Object arg0, Object arg1), static String System.String.Format(String format, Object arg0, Object arg1, Object arg2), static String System.String.Format(String format, Object[] args), static String System.String.Format(IFormatProvider provider, String format, Object[] args), static String System.String.Copy(String str), static String System.String.Concat(Object arg0), static String System.String.Concat(Object arg0, Object arg1), static String System.String.Concat(Object arg0, Object arg1, Object arg2), static String System.String.Concat(Object arg0, Object arg1, Object arg2, Object arg3), static String System.String.Concat(Object[] args), static String System.String.Concat(IEnumerable`1 values), static String System.String.Concat(IEnumerable`1 values), static String System.String.Concat(String str0, String str1), static String System.String.Concat(String str0, String str1, String str2), static String System.String.Concat(String str0, String str1, String str2, String str3), static String System.String.Concat(String[] values), static String System.String.Intern(String str), static String System.String.IsInterned(String str), TypeCode System.String.GetTypeCode(), CharEnumerator System.String.GetEnumerator(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Char System.String.Chars[Int32 index], Int32 System.String.Length}" IsClass="True"> null @@ -827,8 +835,8 @@ namespace Debugger.Tests { null @@ -845,8 +853,8 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, NestedPublic, BeforeFieldInit" BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+MyClass" - GetMembers="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+MyClass..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsClass="True" IsNested="True"> null @@ -864,8 +872,8 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, NestedPublic, SequentialLayout, Sealed, BeforeFieldInit" BaseType="System.ValueType" FullName="Debugger.Tests.DebugType_Tests+MyStruct" - GetMembers="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsNested="True" IsValueType="True"> null @@ -882,8 +890,8 @@ namespace Debugger.Tests { null @@ -911,8 +919,8 @@ namespace Debugger.Tests { FullName="System.Int32" GetFields="{System.Int32 MaxValue, System.Int32 MinValue}" GetInterfaces="{System.IComparable, System.IFormattable, System.IConvertible, System.IComparable`1[System.Int32], System.IEquatable`1[System.Int32]}" - GetMembers="{System.Int32 MaxValue, System.Int32 MinValue, System.Int32 System.Int32.CompareTo(Object value), System.Int32 System.Int32.CompareTo(Int32 value), System.Boolean System.Int32.Equals(Object obj), System.Boolean System.Int32.Equals(Int32 obj), System.Int32 System.Int32.GetHashCode(), System.String System.Int32.ToString(), System.String System.Int32.ToString(String format), System.String System.Int32.ToString(IFormatProvider provider), System.String System.Int32.ToString(String format, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s), static System.Int32 System.Int32.Parse(String s, NumberStyles style), static System.Int32 System.Int32.Parse(String s, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static System.Boolean System.Int32.TryParse(String s, Int32 result), static System.Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), System.TypeCode System.Int32.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 System.Int32.CompareTo(Object value), System.Int32 System.Int32.CompareTo(Int32 value), System.Boolean System.Int32.Equals(Object obj), System.Boolean System.Int32.Equals(Int32 obj), System.Int32 System.Int32.GetHashCode(), System.String System.Int32.ToString(), System.String System.Int32.ToString(String format), System.String System.Int32.ToString(IFormatProvider provider), System.String System.Int32.ToString(String format, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s), static System.Int32 System.Int32.Parse(String s, NumberStyles style), static System.Int32 System.Int32.Parse(String s, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static System.Boolean System.Int32.TryParse(String s, Int32 result), static System.Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), System.TypeCode System.Int32.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.Int32 MaxValue, System.Int32 MinValue, Int32 System.Int32.CompareTo(Object value), Int32 System.Int32.CompareTo(Int32 value), Boolean System.Int32.Equals(Object obj), Boolean System.Int32.Equals(Int32 obj), Int32 System.Int32.GetHashCode(), String System.Int32.ToString(), String System.Int32.ToString(String format), String System.Int32.ToString(IFormatProvider provider), String System.Int32.ToString(String format, IFormatProvider provider), static Int32 System.Int32.Parse(String s), static Int32 System.Int32.Parse(String s, NumberStyles style), static Int32 System.Int32.Parse(String s, IFormatProvider provider), static Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static Boolean System.Int32.TryParse(String s, Int32 result), static Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), TypeCode System.Int32.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 System.Int32.CompareTo(Object value), Int32 System.Int32.CompareTo(Int32 value), Boolean System.Int32.Equals(Object obj), Boolean System.Int32.Equals(Int32 obj), Int32 System.Int32.GetHashCode(), String System.Int32.ToString(), String System.Int32.ToString(String format), String System.Int32.ToString(IFormatProvider provider), String System.Int32.ToString(String format, IFormatProvider provider), static Int32 System.Int32.Parse(String s), static Int32 System.Int32.Parse(String s, NumberStyles style), static Int32 System.Int32.Parse(String s, IFormatProvider provider), static Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static Boolean System.Int32.TryParse(String s, Int32 result), static Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), TypeCode System.Int32.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsInteger="True" IsPrimitive="True" IsValueType="True"> @@ -953,8 +961,8 @@ namespace Debugger.Tests { FullName="System.Int32" GetFields="{System.Int32 MaxValue, System.Int32 MinValue}" GetInterfaces="{System.IComparable, System.IFormattable, System.IConvertible, System.IComparable`1[System.Int32], System.IEquatable`1[System.Int32]}" - GetMembers="{System.Int32 MaxValue, System.Int32 MinValue, System.Int32 System.Int32.CompareTo(Object value), System.Int32 System.Int32.CompareTo(Int32 value), System.Boolean System.Int32.Equals(Object obj), System.Boolean System.Int32.Equals(Int32 obj), System.Int32 System.Int32.GetHashCode(), System.String System.Int32.ToString(), System.String System.Int32.ToString(String format), System.String System.Int32.ToString(IFormatProvider provider), System.String System.Int32.ToString(String format, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s), static System.Int32 System.Int32.Parse(String s, NumberStyles style), static System.Int32 System.Int32.Parse(String s, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static System.Boolean System.Int32.TryParse(String s, Int32 result), static System.Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), System.TypeCode System.Int32.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 System.Int32.CompareTo(Object value), System.Int32 System.Int32.CompareTo(Int32 value), System.Boolean System.Int32.Equals(Object obj), System.Boolean System.Int32.Equals(Int32 obj), System.Int32 System.Int32.GetHashCode(), System.String System.Int32.ToString(), System.String System.Int32.ToString(String format), System.String System.Int32.ToString(IFormatProvider provider), System.String System.Int32.ToString(String format, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s), static System.Int32 System.Int32.Parse(String s, NumberStyles style), static System.Int32 System.Int32.Parse(String s, IFormatProvider provider), static System.Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static System.Boolean System.Int32.TryParse(String s, Int32 result), static System.Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), System.TypeCode System.Int32.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.Int32 MaxValue, System.Int32 MinValue, Int32 System.Int32.CompareTo(Object value), Int32 System.Int32.CompareTo(Int32 value), Boolean System.Int32.Equals(Object obj), Boolean System.Int32.Equals(Int32 obj), Int32 System.Int32.GetHashCode(), String System.Int32.ToString(), String System.Int32.ToString(String format), String System.Int32.ToString(IFormatProvider provider), String System.Int32.ToString(String format, IFormatProvider provider), static Int32 System.Int32.Parse(String s), static Int32 System.Int32.Parse(String s, NumberStyles style), static Int32 System.Int32.Parse(String s, IFormatProvider provider), static Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static Boolean System.Int32.TryParse(String s, Int32 result), static Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), TypeCode System.Int32.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 System.Int32.CompareTo(Object value), Int32 System.Int32.CompareTo(Int32 value), Boolean System.Int32.Equals(Object obj), Boolean System.Int32.Equals(Int32 obj), Int32 System.Int32.GetHashCode(), String System.Int32.ToString(), String System.Int32.ToString(String format), String System.Int32.ToString(IFormatProvider provider), String System.Int32.ToString(String format, IFormatProvider provider), static Int32 System.Int32.Parse(String s), static Int32 System.Int32.Parse(String s, NumberStyles style), static Int32 System.Int32.Parse(String s, IFormatProvider provider), static Int32 System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider), static Boolean System.Int32.TryParse(String s, Int32 result), static Boolean System.Int32.TryParse(String s, NumberStyles style, IFormatProvider provider, Int32 result), TypeCode System.Int32.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsInteger="True" IsPrimitive="True" IsValueType="True"> @@ -988,8 +996,8 @@ namespace Debugger.Tests { FullName="System.Boolean" GetFields="{System.String TrueString, System.String FalseString}" GetInterfaces="{System.IComparable, System.IConvertible, System.IComparable`1[System.Boolean], System.IEquatable`1[System.Boolean]}" - GetMembers="{System.String TrueString, System.String FalseString, System.Int32 System.Boolean.GetHashCode(), System.String System.Boolean.ToString(), System.String System.Boolean.ToString(IFormatProvider provider), System.Boolean System.Boolean.Equals(Object obj), System.Boolean System.Boolean.Equals(Boolean obj), System.Int32 System.Boolean.CompareTo(Object obj), System.Int32 System.Boolean.CompareTo(Boolean value), static System.Boolean System.Boolean.Parse(String value), static System.Boolean System.Boolean.TryParse(String value, Boolean result), System.TypeCode System.Boolean.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 System.Boolean.GetHashCode(), System.String System.Boolean.ToString(), System.String System.Boolean.ToString(IFormatProvider provider), System.Boolean System.Boolean.Equals(Object obj), System.Boolean System.Boolean.Equals(Boolean obj), System.Int32 System.Boolean.CompareTo(Object obj), System.Int32 System.Boolean.CompareTo(Boolean value), static System.Boolean System.Boolean.Parse(String value), static System.Boolean System.Boolean.TryParse(String value, Boolean result), System.TypeCode System.Boolean.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.String TrueString, System.String FalseString, Int32 System.Boolean.GetHashCode(), String System.Boolean.ToString(), String System.Boolean.ToString(IFormatProvider provider), Boolean System.Boolean.Equals(Object obj), Boolean System.Boolean.Equals(Boolean obj), Int32 System.Boolean.CompareTo(Object obj), Int32 System.Boolean.CompareTo(Boolean value), static Boolean System.Boolean.Parse(String value), static Boolean System.Boolean.TryParse(String value, Boolean result), TypeCode System.Boolean.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 System.Boolean.GetHashCode(), String System.Boolean.ToString(), String System.Boolean.ToString(IFormatProvider provider), Boolean System.Boolean.Equals(Object obj), Boolean System.Boolean.Equals(Boolean obj), Int32 System.Boolean.CompareTo(Object obj), Int32 System.Boolean.CompareTo(Boolean value), static Boolean System.Boolean.Parse(String value), static Boolean System.Boolean.TryParse(String value, Boolean result), TypeCode System.Boolean.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsPrimitive="True" IsValueType="True"> null @@ -1018,8 +1026,8 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, Public, SequentialLayout, Sealed, Serializable, BeforeFieldInit" BaseType="System.ValueType" FullName="System.Void" - GetMembers="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsValueType="True"> null @@ -1047,8 +1055,8 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, NestedPublic, SequentialLayout, Sealed, BeforeFieldInit" BaseType="System.ValueType" FullName="Debugger.Tests.DebugType_Tests+MyStruct" - GetMembers="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsNested="True" IsValueType="True"> null @@ -1070,9 +1078,9 @@ namespace Debugger.Tests { FullName="System.IntPtr" GetFields="{System.IntPtr Zero}" GetInterfaces="{System.Runtime.Serialization.ISerializable}" - GetMembers="{System.IntPtr Zero, void System.IntPtr..ctor(Int32 value), void System.IntPtr..ctor(Int64 value), void System.IntPtr..ctor(Void* value), System.Boolean System.IntPtr.Equals(Object obj), System.Int32 System.IntPtr.GetHashCode(), System.Int32 System.IntPtr.ToInt32(), System.Int64 System.IntPtr.ToInt64(), System.String System.IntPtr.ToString(), System.String System.IntPtr.ToString(String format), static System.IntPtr System.IntPtr.op_Explicit(Int32 value), static System.IntPtr System.IntPtr.op_Explicit(Int64 value), static System.IntPtr System.IntPtr.op_Explicit(Void* value), static System.Void* System.IntPtr.op_Explicit(IntPtr value), static System.Int32 System.IntPtr.op_Explicit(IntPtr value), static System.Int64 System.IntPtr.op_Explicit(IntPtr value), static System.Boolean System.IntPtr.op_Equality(IntPtr value1, IntPtr value2), static System.Boolean System.IntPtr.op_Inequality(IntPtr value1, IntPtr value2), static System.IntPtr System.IntPtr.Add(IntPtr pointer, Int32 offset), static System.IntPtr System.IntPtr.op_Addition(IntPtr pointer, Int32 offset), static System.IntPtr System.IntPtr.Subtract(IntPtr pointer, Int32 offset), static System.IntPtr System.IntPtr.op_Subtraction(IntPtr pointer, Int32 offset), static System.Int32 System.IntPtr.get_Size(), System.Void* System.IntPtr.ToPointer(), System.Int32 Size, System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void System.IntPtr..ctor(Int32 value), void System.IntPtr..ctor(Int64 value), void System.IntPtr..ctor(Void* value), System.Boolean System.IntPtr.Equals(Object obj), System.Int32 System.IntPtr.GetHashCode(), System.Int32 System.IntPtr.ToInt32(), System.Int64 System.IntPtr.ToInt64(), System.String System.IntPtr.ToString(), System.String System.IntPtr.ToString(String format), static System.IntPtr System.IntPtr.op_Explicit(Int32 value), static System.IntPtr System.IntPtr.op_Explicit(Int64 value), static System.IntPtr System.IntPtr.op_Explicit(Void* value), static System.Void* System.IntPtr.op_Explicit(IntPtr value), static System.Int32 System.IntPtr.op_Explicit(IntPtr value), static System.Int64 System.IntPtr.op_Explicit(IntPtr value), static System.Boolean System.IntPtr.op_Equality(IntPtr value1, IntPtr value2), static System.Boolean System.IntPtr.op_Inequality(IntPtr value1, IntPtr value2), static System.IntPtr System.IntPtr.Add(IntPtr pointer, Int32 offset), static System.IntPtr System.IntPtr.op_Addition(IntPtr pointer, Int32 offset), static System.IntPtr System.IntPtr.Subtract(IntPtr pointer, Int32 offset), static System.IntPtr System.IntPtr.op_Subtraction(IntPtr pointer, Int32 offset), static System.Int32 System.IntPtr.get_Size(), System.Void* System.IntPtr.ToPointer(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 Size}" + GetMembers="{System.IntPtr Zero, void System.IntPtr..ctor(Int32 value), void System.IntPtr..ctor(Int64 value), void System.IntPtr..ctor(Void* value), Boolean System.IntPtr.Equals(Object obj), Int32 System.IntPtr.GetHashCode(), Int32 System.IntPtr.ToInt32(), Int64 System.IntPtr.ToInt64(), String System.IntPtr.ToString(), String System.IntPtr.ToString(String format), static IntPtr System.IntPtr.op_Explicit(Int32 value), static IntPtr System.IntPtr.op_Explicit(Int64 value), static IntPtr System.IntPtr.op_Explicit(Void* value), static Void* System.IntPtr.op_Explicit(IntPtr value), static Int32 System.IntPtr.op_Explicit(IntPtr value), static Int64 System.IntPtr.op_Explicit(IntPtr value), static Boolean System.IntPtr.op_Equality(IntPtr value1, IntPtr value2), static Boolean System.IntPtr.op_Inequality(IntPtr value1, IntPtr value2), static IntPtr System.IntPtr.Add(IntPtr pointer, Int32 offset), static IntPtr System.IntPtr.op_Addition(IntPtr pointer, Int32 offset), static IntPtr System.IntPtr.Subtract(IntPtr pointer, Int32 offset), static IntPtr System.IntPtr.op_Subtraction(IntPtr pointer, Int32 offset), static Int32 System.IntPtr.get_Size(), Void* System.IntPtr.ToPointer(), static Int32 System.IntPtr.Size, Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void System.IntPtr..ctor(Int32 value), void System.IntPtr..ctor(Int64 value), void System.IntPtr..ctor(Void* value), Boolean System.IntPtr.Equals(Object obj), Int32 System.IntPtr.GetHashCode(), Int32 System.IntPtr.ToInt32(), Int64 System.IntPtr.ToInt64(), String System.IntPtr.ToString(), String System.IntPtr.ToString(String format), static IntPtr System.IntPtr.op_Explicit(Int32 value), static IntPtr System.IntPtr.op_Explicit(Int64 value), static IntPtr System.IntPtr.op_Explicit(Void* value), static Void* System.IntPtr.op_Explicit(IntPtr value), static Int32 System.IntPtr.op_Explicit(IntPtr value), static Int64 System.IntPtr.op_Explicit(IntPtr value), static Boolean System.IntPtr.op_Equality(IntPtr value1, IntPtr value2), static Boolean System.IntPtr.op_Inequality(IntPtr value1, IntPtr value2), static IntPtr System.IntPtr.Add(IntPtr pointer, Int32 offset), static IntPtr System.IntPtr.op_Addition(IntPtr pointer, Int32 offset), static IntPtr System.IntPtr.Subtract(IntPtr pointer, Int32 offset), static IntPtr System.IntPtr.op_Subtraction(IntPtr pointer, Int32 offset), static Int32 System.IntPtr.get_Size(), Void* System.IntPtr.ToPointer(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{static Int32 System.IntPtr.Size}" IsValueType="True"> null @@ -1092,9 +1100,9 @@ namespace Debugger.Tests { GetArrayRank="1" GetElementType="System.Char" GetInterfaces="{System.Collections.Generic.IList`1[System.Char], System.Collections.Generic.ICollection`1[System.Char], System.Collections.Generic.IEnumerable`1[System.Char], System.Collections.IEnumerable}" - GetMembers="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized}" + GetMembers="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized}" HasElementType="True" IsArray="True" IsClass="True" @@ -1106,8 +1114,8 @@ namespace Debugger.Tests { FullName="System.Char" GetFields="{System.Char MaxValue, System.Char MinValue}" GetInterfaces="{System.IComparable, System.IConvertible, System.IComparable`1[System.Char], System.IEquatable`1[System.Char]}" - GetMembers="{System.Char MaxValue, System.Char MinValue, System.Int32 System.Char.GetHashCode(), System.Boolean System.Char.Equals(Object obj), System.Boolean System.Char.Equals(Char obj), System.Int32 System.Char.CompareTo(Object value), System.Int32 System.Char.CompareTo(Char value), System.String System.Char.ToString(), System.String System.Char.ToString(IFormatProvider provider), static System.String System.Char.ToString(Char c), static System.Char System.Char.Parse(String s), static System.Boolean System.Char.TryParse(String s, Char result), static System.Boolean System.Char.IsDigit(Char c), static System.Boolean System.Char.IsDigit(String s, Int32 index), static System.Boolean System.Char.IsLetter(Char c), static System.Boolean System.Char.IsLetter(String s, Int32 index), static System.Boolean System.Char.IsWhiteSpace(Char c), static System.Boolean System.Char.IsWhiteSpace(String s, Int32 index), static System.Boolean System.Char.IsUpper(Char c), static System.Boolean System.Char.IsUpper(String s, Int32 index), static System.Boolean System.Char.IsLower(Char c), static System.Boolean System.Char.IsLower(String s, Int32 index), static System.Boolean System.Char.IsPunctuation(Char c), static System.Boolean System.Char.IsPunctuation(String s, Int32 index), static System.Boolean System.Char.IsLetterOrDigit(Char c), static System.Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static System.Char System.Char.ToUpper(Char c, CultureInfo culture), static System.Char System.Char.ToUpper(Char c), static System.Char System.Char.ToUpperInvariant(Char c), static System.Char System.Char.ToLower(Char c, CultureInfo culture), static System.Char System.Char.ToLower(Char c), static System.Char System.Char.ToLowerInvariant(Char c), System.TypeCode System.Char.GetTypeCode(), static System.Boolean System.Char.IsControl(Char c), static System.Boolean System.Char.IsControl(String s, Int32 index), static System.Boolean System.Char.IsNumber(Char c), static System.Boolean System.Char.IsNumber(String s, Int32 index), static System.Boolean System.Char.IsSeparator(Char c), static System.Boolean System.Char.IsSeparator(String s, Int32 index), static System.Boolean System.Char.IsSurrogate(Char c), static System.Boolean System.Char.IsSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSymbol(Char c), static System.Boolean System.Char.IsSymbol(String s, Int32 index), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(Char c), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static System.Double System.Char.GetNumericValue(Char c), static System.Double System.Char.GetNumericValue(String s, Int32 index), static System.Boolean System.Char.IsHighSurrogate(Char c), static System.Boolean System.Char.IsHighSurrogate(String s, Int32 index), static System.Boolean System.Char.IsLowSurrogate(Char c), static System.Boolean System.Char.IsLowSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static System.String System.Char.ConvertFromUtf32(Int32 utf32), static System.Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static System.Int32 System.Char.ConvertToUtf32(String s, Int32 index), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 System.Char.GetHashCode(), System.Boolean System.Char.Equals(Object obj), System.Boolean System.Char.Equals(Char obj), System.Int32 System.Char.CompareTo(Object value), System.Int32 System.Char.CompareTo(Char value), System.String System.Char.ToString(), System.String System.Char.ToString(IFormatProvider provider), static System.String System.Char.ToString(Char c), static System.Char System.Char.Parse(String s), static System.Boolean System.Char.TryParse(String s, Char result), static System.Boolean System.Char.IsDigit(Char c), static System.Boolean System.Char.IsDigit(String s, Int32 index), static System.Boolean System.Char.IsLetter(Char c), static System.Boolean System.Char.IsLetter(String s, Int32 index), static System.Boolean System.Char.IsWhiteSpace(Char c), static System.Boolean System.Char.IsWhiteSpace(String s, Int32 index), static System.Boolean System.Char.IsUpper(Char c), static System.Boolean System.Char.IsUpper(String s, Int32 index), static System.Boolean System.Char.IsLower(Char c), static System.Boolean System.Char.IsLower(String s, Int32 index), static System.Boolean System.Char.IsPunctuation(Char c), static System.Boolean System.Char.IsPunctuation(String s, Int32 index), static System.Boolean System.Char.IsLetterOrDigit(Char c), static System.Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static System.Char System.Char.ToUpper(Char c, CultureInfo culture), static System.Char System.Char.ToUpper(Char c), static System.Char System.Char.ToUpperInvariant(Char c), static System.Char System.Char.ToLower(Char c, CultureInfo culture), static System.Char System.Char.ToLower(Char c), static System.Char System.Char.ToLowerInvariant(Char c), System.TypeCode System.Char.GetTypeCode(), static System.Boolean System.Char.IsControl(Char c), static System.Boolean System.Char.IsControl(String s, Int32 index), static System.Boolean System.Char.IsNumber(Char c), static System.Boolean System.Char.IsNumber(String s, Int32 index), static System.Boolean System.Char.IsSeparator(Char c), static System.Boolean System.Char.IsSeparator(String s, Int32 index), static System.Boolean System.Char.IsSurrogate(Char c), static System.Boolean System.Char.IsSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSymbol(Char c), static System.Boolean System.Char.IsSymbol(String s, Int32 index), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(Char c), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static System.Double System.Char.GetNumericValue(Char c), static System.Double System.Char.GetNumericValue(String s, Int32 index), static System.Boolean System.Char.IsHighSurrogate(Char c), static System.Boolean System.Char.IsHighSurrogate(String s, Int32 index), static System.Boolean System.Char.IsLowSurrogate(Char c), static System.Boolean System.Char.IsLowSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static System.String System.Char.ConvertFromUtf32(Int32 utf32), static System.Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static System.Int32 System.Char.ConvertToUtf32(String s, Int32 index), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.Char MaxValue, System.Char MinValue, Int32 System.Char.GetHashCode(), Boolean System.Char.Equals(Object obj), Boolean System.Char.Equals(Char obj), Int32 System.Char.CompareTo(Object value), Int32 System.Char.CompareTo(Char value), String System.Char.ToString(), String System.Char.ToString(IFormatProvider provider), static String System.Char.ToString(Char c), static Char System.Char.Parse(String s), static Boolean System.Char.TryParse(String s, Char result), static Boolean System.Char.IsDigit(Char c), static Boolean System.Char.IsDigit(String s, Int32 index), static Boolean System.Char.IsLetter(Char c), static Boolean System.Char.IsLetter(String s, Int32 index), static Boolean System.Char.IsWhiteSpace(Char c), static Boolean System.Char.IsWhiteSpace(String s, Int32 index), static Boolean System.Char.IsUpper(Char c), static Boolean System.Char.IsUpper(String s, Int32 index), static Boolean System.Char.IsLower(Char c), static Boolean System.Char.IsLower(String s, Int32 index), static Boolean System.Char.IsPunctuation(Char c), static Boolean System.Char.IsPunctuation(String s, Int32 index), static Boolean System.Char.IsLetterOrDigit(Char c), static Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static Char System.Char.ToUpper(Char c, CultureInfo culture), static Char System.Char.ToUpper(Char c), static Char System.Char.ToUpperInvariant(Char c), static Char System.Char.ToLower(Char c, CultureInfo culture), static Char System.Char.ToLower(Char c), static Char System.Char.ToLowerInvariant(Char c), TypeCode System.Char.GetTypeCode(), static Boolean System.Char.IsControl(Char c), static Boolean System.Char.IsControl(String s, Int32 index), static Boolean System.Char.IsNumber(Char c), static Boolean System.Char.IsNumber(String s, Int32 index), static Boolean System.Char.IsSeparator(Char c), static Boolean System.Char.IsSeparator(String s, Int32 index), static Boolean System.Char.IsSurrogate(Char c), static Boolean System.Char.IsSurrogate(String s, Int32 index), static Boolean System.Char.IsSymbol(Char c), static Boolean System.Char.IsSymbol(String s, Int32 index), static UnicodeCategory System.Char.GetUnicodeCategory(Char c), static UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static Double System.Char.GetNumericValue(Char c), static Double System.Char.GetNumericValue(String s, Int32 index), static Boolean System.Char.IsHighSurrogate(Char c), static Boolean System.Char.IsHighSurrogate(String s, Int32 index), static Boolean System.Char.IsLowSurrogate(Char c), static Boolean System.Char.IsLowSurrogate(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static String System.Char.ConvertFromUtf32(Int32 utf32), static Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static Int32 System.Char.ConvertToUtf32(String s, Int32 index), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 System.Char.GetHashCode(), Boolean System.Char.Equals(Object obj), Boolean System.Char.Equals(Char obj), Int32 System.Char.CompareTo(Object value), Int32 System.Char.CompareTo(Char value), String System.Char.ToString(), String System.Char.ToString(IFormatProvider provider), static String System.Char.ToString(Char c), static Char System.Char.Parse(String s), static Boolean System.Char.TryParse(String s, Char result), static Boolean System.Char.IsDigit(Char c), static Boolean System.Char.IsDigit(String s, Int32 index), static Boolean System.Char.IsLetter(Char c), static Boolean System.Char.IsLetter(String s, Int32 index), static Boolean System.Char.IsWhiteSpace(Char c), static Boolean System.Char.IsWhiteSpace(String s, Int32 index), static Boolean System.Char.IsUpper(Char c), static Boolean System.Char.IsUpper(String s, Int32 index), static Boolean System.Char.IsLower(Char c), static Boolean System.Char.IsLower(String s, Int32 index), static Boolean System.Char.IsPunctuation(Char c), static Boolean System.Char.IsPunctuation(String s, Int32 index), static Boolean System.Char.IsLetterOrDigit(Char c), static Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static Char System.Char.ToUpper(Char c, CultureInfo culture), static Char System.Char.ToUpper(Char c), static Char System.Char.ToUpperInvariant(Char c), static Char System.Char.ToLower(Char c, CultureInfo culture), static Char System.Char.ToLower(Char c), static Char System.Char.ToLowerInvariant(Char c), TypeCode System.Char.GetTypeCode(), static Boolean System.Char.IsControl(Char c), static Boolean System.Char.IsControl(String s, Int32 index), static Boolean System.Char.IsNumber(Char c), static Boolean System.Char.IsNumber(String s, Int32 index), static Boolean System.Char.IsSeparator(Char c), static Boolean System.Char.IsSeparator(String s, Int32 index), static Boolean System.Char.IsSurrogate(Char c), static Boolean System.Char.IsSurrogate(String s, Int32 index), static Boolean System.Char.IsSymbol(Char c), static Boolean System.Char.IsSymbol(String s, Int32 index), static UnicodeCategory System.Char.GetUnicodeCategory(Char c), static UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static Double System.Char.GetNumericValue(Char c), static Double System.Char.GetNumericValue(String s, Int32 index), static Boolean System.Char.IsHighSurrogate(Char c), static Boolean System.Char.IsHighSurrogate(String s, Int32 index), static Boolean System.Char.IsLowSurrogate(Char c), static Boolean System.Char.IsLowSurrogate(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static String System.Char.ConvertFromUtf32(Int32 utf32), static Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static Int32 System.Char.ConvertToUtf32(String s, Int32 index), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsPrimitive="True" IsValueType="True"> null @@ -1130,9 +1138,9 @@ namespace Debugger.Tests { GetArrayRank="2" GetElementType="System.Char" GetInterfaces="{System.Collections.Generic.IList`1[System.Char], System.Collections.Generic.ICollection`1[System.Char], System.Collections.Generic.IEnumerable`1[System.Char], System.Collections.IEnumerable}" - GetMembers="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized}" + GetMembers="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized}" HasElementType="True" IsArray="True" IsClass="True" @@ -1144,8 +1152,8 @@ namespace Debugger.Tests { FullName="System.Char" GetFields="{System.Char MaxValue, System.Char MinValue}" GetInterfaces="{System.IComparable, System.IConvertible, System.IComparable`1[System.Char], System.IEquatable`1[System.Char]}" - GetMembers="{System.Char MaxValue, System.Char MinValue, System.Int32 System.Char.GetHashCode(), System.Boolean System.Char.Equals(Object obj), System.Boolean System.Char.Equals(Char obj), System.Int32 System.Char.CompareTo(Object value), System.Int32 System.Char.CompareTo(Char value), System.String System.Char.ToString(), System.String System.Char.ToString(IFormatProvider provider), static System.String System.Char.ToString(Char c), static System.Char System.Char.Parse(String s), static System.Boolean System.Char.TryParse(String s, Char result), static System.Boolean System.Char.IsDigit(Char c), static System.Boolean System.Char.IsDigit(String s, Int32 index), static System.Boolean System.Char.IsLetter(Char c), static System.Boolean System.Char.IsLetter(String s, Int32 index), static System.Boolean System.Char.IsWhiteSpace(Char c), static System.Boolean System.Char.IsWhiteSpace(String s, Int32 index), static System.Boolean System.Char.IsUpper(Char c), static System.Boolean System.Char.IsUpper(String s, Int32 index), static System.Boolean System.Char.IsLower(Char c), static System.Boolean System.Char.IsLower(String s, Int32 index), static System.Boolean System.Char.IsPunctuation(Char c), static System.Boolean System.Char.IsPunctuation(String s, Int32 index), static System.Boolean System.Char.IsLetterOrDigit(Char c), static System.Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static System.Char System.Char.ToUpper(Char c, CultureInfo culture), static System.Char System.Char.ToUpper(Char c), static System.Char System.Char.ToUpperInvariant(Char c), static System.Char System.Char.ToLower(Char c, CultureInfo culture), static System.Char System.Char.ToLower(Char c), static System.Char System.Char.ToLowerInvariant(Char c), System.TypeCode System.Char.GetTypeCode(), static System.Boolean System.Char.IsControl(Char c), static System.Boolean System.Char.IsControl(String s, Int32 index), static System.Boolean System.Char.IsNumber(Char c), static System.Boolean System.Char.IsNumber(String s, Int32 index), static System.Boolean System.Char.IsSeparator(Char c), static System.Boolean System.Char.IsSeparator(String s, Int32 index), static System.Boolean System.Char.IsSurrogate(Char c), static System.Boolean System.Char.IsSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSymbol(Char c), static System.Boolean System.Char.IsSymbol(String s, Int32 index), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(Char c), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static System.Double System.Char.GetNumericValue(Char c), static System.Double System.Char.GetNumericValue(String s, Int32 index), static System.Boolean System.Char.IsHighSurrogate(Char c), static System.Boolean System.Char.IsHighSurrogate(String s, Int32 index), static System.Boolean System.Char.IsLowSurrogate(Char c), static System.Boolean System.Char.IsLowSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static System.String System.Char.ConvertFromUtf32(Int32 utf32), static System.Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static System.Int32 System.Char.ConvertToUtf32(String s, Int32 index), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 System.Char.GetHashCode(), System.Boolean System.Char.Equals(Object obj), System.Boolean System.Char.Equals(Char obj), System.Int32 System.Char.CompareTo(Object value), System.Int32 System.Char.CompareTo(Char value), System.String System.Char.ToString(), System.String System.Char.ToString(IFormatProvider provider), static System.String System.Char.ToString(Char c), static System.Char System.Char.Parse(String s), static System.Boolean System.Char.TryParse(String s, Char result), static System.Boolean System.Char.IsDigit(Char c), static System.Boolean System.Char.IsDigit(String s, Int32 index), static System.Boolean System.Char.IsLetter(Char c), static System.Boolean System.Char.IsLetter(String s, Int32 index), static System.Boolean System.Char.IsWhiteSpace(Char c), static System.Boolean System.Char.IsWhiteSpace(String s, Int32 index), static System.Boolean System.Char.IsUpper(Char c), static System.Boolean System.Char.IsUpper(String s, Int32 index), static System.Boolean System.Char.IsLower(Char c), static System.Boolean System.Char.IsLower(String s, Int32 index), static System.Boolean System.Char.IsPunctuation(Char c), static System.Boolean System.Char.IsPunctuation(String s, Int32 index), static System.Boolean System.Char.IsLetterOrDigit(Char c), static System.Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static System.Char System.Char.ToUpper(Char c, CultureInfo culture), static System.Char System.Char.ToUpper(Char c), static System.Char System.Char.ToUpperInvariant(Char c), static System.Char System.Char.ToLower(Char c, CultureInfo culture), static System.Char System.Char.ToLower(Char c), static System.Char System.Char.ToLowerInvariant(Char c), System.TypeCode System.Char.GetTypeCode(), static System.Boolean System.Char.IsControl(Char c), static System.Boolean System.Char.IsControl(String s, Int32 index), static System.Boolean System.Char.IsNumber(Char c), static System.Boolean System.Char.IsNumber(String s, Int32 index), static System.Boolean System.Char.IsSeparator(Char c), static System.Boolean System.Char.IsSeparator(String s, Int32 index), static System.Boolean System.Char.IsSurrogate(Char c), static System.Boolean System.Char.IsSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSymbol(Char c), static System.Boolean System.Char.IsSymbol(String s, Int32 index), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(Char c), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static System.Double System.Char.GetNumericValue(Char c), static System.Double System.Char.GetNumericValue(String s, Int32 index), static System.Boolean System.Char.IsHighSurrogate(Char c), static System.Boolean System.Char.IsHighSurrogate(String s, Int32 index), static System.Boolean System.Char.IsLowSurrogate(Char c), static System.Boolean System.Char.IsLowSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static System.String System.Char.ConvertFromUtf32(Int32 utf32), static System.Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static System.Int32 System.Char.ConvertToUtf32(String s, Int32 index), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.Char MaxValue, System.Char MinValue, Int32 System.Char.GetHashCode(), Boolean System.Char.Equals(Object obj), Boolean System.Char.Equals(Char obj), Int32 System.Char.CompareTo(Object value), Int32 System.Char.CompareTo(Char value), String System.Char.ToString(), String System.Char.ToString(IFormatProvider provider), static String System.Char.ToString(Char c), static Char System.Char.Parse(String s), static Boolean System.Char.TryParse(String s, Char result), static Boolean System.Char.IsDigit(Char c), static Boolean System.Char.IsDigit(String s, Int32 index), static Boolean System.Char.IsLetter(Char c), static Boolean System.Char.IsLetter(String s, Int32 index), static Boolean System.Char.IsWhiteSpace(Char c), static Boolean System.Char.IsWhiteSpace(String s, Int32 index), static Boolean System.Char.IsUpper(Char c), static Boolean System.Char.IsUpper(String s, Int32 index), static Boolean System.Char.IsLower(Char c), static Boolean System.Char.IsLower(String s, Int32 index), static Boolean System.Char.IsPunctuation(Char c), static Boolean System.Char.IsPunctuation(String s, Int32 index), static Boolean System.Char.IsLetterOrDigit(Char c), static Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static Char System.Char.ToUpper(Char c, CultureInfo culture), static Char System.Char.ToUpper(Char c), static Char System.Char.ToUpperInvariant(Char c), static Char System.Char.ToLower(Char c, CultureInfo culture), static Char System.Char.ToLower(Char c), static Char System.Char.ToLowerInvariant(Char c), TypeCode System.Char.GetTypeCode(), static Boolean System.Char.IsControl(Char c), static Boolean System.Char.IsControl(String s, Int32 index), static Boolean System.Char.IsNumber(Char c), static Boolean System.Char.IsNumber(String s, Int32 index), static Boolean System.Char.IsSeparator(Char c), static Boolean System.Char.IsSeparator(String s, Int32 index), static Boolean System.Char.IsSurrogate(Char c), static Boolean System.Char.IsSurrogate(String s, Int32 index), static Boolean System.Char.IsSymbol(Char c), static Boolean System.Char.IsSymbol(String s, Int32 index), static UnicodeCategory System.Char.GetUnicodeCategory(Char c), static UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static Double System.Char.GetNumericValue(Char c), static Double System.Char.GetNumericValue(String s, Int32 index), static Boolean System.Char.IsHighSurrogate(Char c), static Boolean System.Char.IsHighSurrogate(String s, Int32 index), static Boolean System.Char.IsLowSurrogate(Char c), static Boolean System.Char.IsLowSurrogate(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static String System.Char.ConvertFromUtf32(Int32 utf32), static Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static Int32 System.Char.ConvertToUtf32(String s, Int32 index), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 System.Char.GetHashCode(), Boolean System.Char.Equals(Object obj), Boolean System.Char.Equals(Char obj), Int32 System.Char.CompareTo(Object value), Int32 System.Char.CompareTo(Char value), String System.Char.ToString(), String System.Char.ToString(IFormatProvider provider), static String System.Char.ToString(Char c), static Char System.Char.Parse(String s), static Boolean System.Char.TryParse(String s, Char result), static Boolean System.Char.IsDigit(Char c), static Boolean System.Char.IsDigit(String s, Int32 index), static Boolean System.Char.IsLetter(Char c), static Boolean System.Char.IsLetter(String s, Int32 index), static Boolean System.Char.IsWhiteSpace(Char c), static Boolean System.Char.IsWhiteSpace(String s, Int32 index), static Boolean System.Char.IsUpper(Char c), static Boolean System.Char.IsUpper(String s, Int32 index), static Boolean System.Char.IsLower(Char c), static Boolean System.Char.IsLower(String s, Int32 index), static Boolean System.Char.IsPunctuation(Char c), static Boolean System.Char.IsPunctuation(String s, Int32 index), static Boolean System.Char.IsLetterOrDigit(Char c), static Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static Char System.Char.ToUpper(Char c, CultureInfo culture), static Char System.Char.ToUpper(Char c), static Char System.Char.ToUpperInvariant(Char c), static Char System.Char.ToLower(Char c, CultureInfo culture), static Char System.Char.ToLower(Char c), static Char System.Char.ToLowerInvariant(Char c), TypeCode System.Char.GetTypeCode(), static Boolean System.Char.IsControl(Char c), static Boolean System.Char.IsControl(String s, Int32 index), static Boolean System.Char.IsNumber(Char c), static Boolean System.Char.IsNumber(String s, Int32 index), static Boolean System.Char.IsSeparator(Char c), static Boolean System.Char.IsSeparator(String s, Int32 index), static Boolean System.Char.IsSurrogate(Char c), static Boolean System.Char.IsSurrogate(String s, Int32 index), static Boolean System.Char.IsSymbol(Char c), static Boolean System.Char.IsSymbol(String s, Int32 index), static UnicodeCategory System.Char.GetUnicodeCategory(Char c), static UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static Double System.Char.GetNumericValue(Char c), static Double System.Char.GetNumericValue(String s, Int32 index), static Boolean System.Char.IsHighSurrogate(Char c), static Boolean System.Char.IsHighSurrogate(String s, Int32 index), static Boolean System.Char.IsLowSurrogate(Char c), static Boolean System.Char.IsLowSurrogate(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static String System.Char.ConvertFromUtf32(Int32 utf32), static Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static Int32 System.Char.ConvertToUtf32(String s, Int32 index), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsPrimitive="True" IsValueType="True"> null @@ -1168,9 +1176,9 @@ namespace Debugger.Tests { GetArrayRank="1" GetElementType="System.Char[,]" GetInterfaces="{System.Collections.Generic.IList`1[System.Char[,]], System.Collections.Generic.ICollection`1[System.Char[,]], System.Collections.Generic.IEnumerable`1[System.Char[,]], System.Collections.IEnumerable}" - GetMembers="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized}" + GetMembers="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized}" HasElementType="True" IsArray="True" IsClass="True" @@ -1183,9 +1191,9 @@ namespace Debugger.Tests { GetArrayRank="2" GetElementType="System.Char" GetInterfaces="{System.Collections.Generic.IList`1[System.Char], System.Collections.Generic.ICollection`1[System.Char], System.Collections.Generic.IEnumerable`1[System.Char], System.Collections.IEnumerable}" - GetMembers="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized}" + GetMembers="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized}" HasElementType="True" IsArray="True" IsClass="True" @@ -1197,8 +1205,8 @@ namespace Debugger.Tests { FullName="System.Char" GetFields="{System.Char MaxValue, System.Char MinValue}" GetInterfaces="{System.IComparable, System.IConvertible, System.IComparable`1[System.Char], System.IEquatable`1[System.Char]}" - GetMembers="{System.Char MaxValue, System.Char MinValue, System.Int32 System.Char.GetHashCode(), System.Boolean System.Char.Equals(Object obj), System.Boolean System.Char.Equals(Char obj), System.Int32 System.Char.CompareTo(Object value), System.Int32 System.Char.CompareTo(Char value), System.String System.Char.ToString(), System.String System.Char.ToString(IFormatProvider provider), static System.String System.Char.ToString(Char c), static System.Char System.Char.Parse(String s), static System.Boolean System.Char.TryParse(String s, Char result), static System.Boolean System.Char.IsDigit(Char c), static System.Boolean System.Char.IsDigit(String s, Int32 index), static System.Boolean System.Char.IsLetter(Char c), static System.Boolean System.Char.IsLetter(String s, Int32 index), static System.Boolean System.Char.IsWhiteSpace(Char c), static System.Boolean System.Char.IsWhiteSpace(String s, Int32 index), static System.Boolean System.Char.IsUpper(Char c), static System.Boolean System.Char.IsUpper(String s, Int32 index), static System.Boolean System.Char.IsLower(Char c), static System.Boolean System.Char.IsLower(String s, Int32 index), static System.Boolean System.Char.IsPunctuation(Char c), static System.Boolean System.Char.IsPunctuation(String s, Int32 index), static System.Boolean System.Char.IsLetterOrDigit(Char c), static System.Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static System.Char System.Char.ToUpper(Char c, CultureInfo culture), static System.Char System.Char.ToUpper(Char c), static System.Char System.Char.ToUpperInvariant(Char c), static System.Char System.Char.ToLower(Char c, CultureInfo culture), static System.Char System.Char.ToLower(Char c), static System.Char System.Char.ToLowerInvariant(Char c), System.TypeCode System.Char.GetTypeCode(), static System.Boolean System.Char.IsControl(Char c), static System.Boolean System.Char.IsControl(String s, Int32 index), static System.Boolean System.Char.IsNumber(Char c), static System.Boolean System.Char.IsNumber(String s, Int32 index), static System.Boolean System.Char.IsSeparator(Char c), static System.Boolean System.Char.IsSeparator(String s, Int32 index), static System.Boolean System.Char.IsSurrogate(Char c), static System.Boolean System.Char.IsSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSymbol(Char c), static System.Boolean System.Char.IsSymbol(String s, Int32 index), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(Char c), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static System.Double System.Char.GetNumericValue(Char c), static System.Double System.Char.GetNumericValue(String s, Int32 index), static System.Boolean System.Char.IsHighSurrogate(Char c), static System.Boolean System.Char.IsHighSurrogate(String s, Int32 index), static System.Boolean System.Char.IsLowSurrogate(Char c), static System.Boolean System.Char.IsLowSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static System.String System.Char.ConvertFromUtf32(Int32 utf32), static System.Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static System.Int32 System.Char.ConvertToUtf32(String s, Int32 index), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 System.Char.GetHashCode(), System.Boolean System.Char.Equals(Object obj), System.Boolean System.Char.Equals(Char obj), System.Int32 System.Char.CompareTo(Object value), System.Int32 System.Char.CompareTo(Char value), System.String System.Char.ToString(), System.String System.Char.ToString(IFormatProvider provider), static System.String System.Char.ToString(Char c), static System.Char System.Char.Parse(String s), static System.Boolean System.Char.TryParse(String s, Char result), static System.Boolean System.Char.IsDigit(Char c), static System.Boolean System.Char.IsDigit(String s, Int32 index), static System.Boolean System.Char.IsLetter(Char c), static System.Boolean System.Char.IsLetter(String s, Int32 index), static System.Boolean System.Char.IsWhiteSpace(Char c), static System.Boolean System.Char.IsWhiteSpace(String s, Int32 index), static System.Boolean System.Char.IsUpper(Char c), static System.Boolean System.Char.IsUpper(String s, Int32 index), static System.Boolean System.Char.IsLower(Char c), static System.Boolean System.Char.IsLower(String s, Int32 index), static System.Boolean System.Char.IsPunctuation(Char c), static System.Boolean System.Char.IsPunctuation(String s, Int32 index), static System.Boolean System.Char.IsLetterOrDigit(Char c), static System.Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static System.Char System.Char.ToUpper(Char c, CultureInfo culture), static System.Char System.Char.ToUpper(Char c), static System.Char System.Char.ToUpperInvariant(Char c), static System.Char System.Char.ToLower(Char c, CultureInfo culture), static System.Char System.Char.ToLower(Char c), static System.Char System.Char.ToLowerInvariant(Char c), System.TypeCode System.Char.GetTypeCode(), static System.Boolean System.Char.IsControl(Char c), static System.Boolean System.Char.IsControl(String s, Int32 index), static System.Boolean System.Char.IsNumber(Char c), static System.Boolean System.Char.IsNumber(String s, Int32 index), static System.Boolean System.Char.IsSeparator(Char c), static System.Boolean System.Char.IsSeparator(String s, Int32 index), static System.Boolean System.Char.IsSurrogate(Char c), static System.Boolean System.Char.IsSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSymbol(Char c), static System.Boolean System.Char.IsSymbol(String s, Int32 index), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(Char c), static System.Globalization.UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static System.Double System.Char.GetNumericValue(Char c), static System.Double System.Char.GetNumericValue(String s, Int32 index), static System.Boolean System.Char.IsHighSurrogate(Char c), static System.Boolean System.Char.IsHighSurrogate(String s, Int32 index), static System.Boolean System.Char.IsLowSurrogate(Char c), static System.Boolean System.Char.IsLowSurrogate(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(String s, Int32 index), static System.Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static System.String System.Char.ConvertFromUtf32(Int32 utf32), static System.Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static System.Int32 System.Char.ConvertToUtf32(String s, Int32 index), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.Char MaxValue, System.Char MinValue, Int32 System.Char.GetHashCode(), Boolean System.Char.Equals(Object obj), Boolean System.Char.Equals(Char obj), Int32 System.Char.CompareTo(Object value), Int32 System.Char.CompareTo(Char value), String System.Char.ToString(), String System.Char.ToString(IFormatProvider provider), static String System.Char.ToString(Char c), static Char System.Char.Parse(String s), static Boolean System.Char.TryParse(String s, Char result), static Boolean System.Char.IsDigit(Char c), static Boolean System.Char.IsDigit(String s, Int32 index), static Boolean System.Char.IsLetter(Char c), static Boolean System.Char.IsLetter(String s, Int32 index), static Boolean System.Char.IsWhiteSpace(Char c), static Boolean System.Char.IsWhiteSpace(String s, Int32 index), static Boolean System.Char.IsUpper(Char c), static Boolean System.Char.IsUpper(String s, Int32 index), static Boolean System.Char.IsLower(Char c), static Boolean System.Char.IsLower(String s, Int32 index), static Boolean System.Char.IsPunctuation(Char c), static Boolean System.Char.IsPunctuation(String s, Int32 index), static Boolean System.Char.IsLetterOrDigit(Char c), static Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static Char System.Char.ToUpper(Char c, CultureInfo culture), static Char System.Char.ToUpper(Char c), static Char System.Char.ToUpperInvariant(Char c), static Char System.Char.ToLower(Char c, CultureInfo culture), static Char System.Char.ToLower(Char c), static Char System.Char.ToLowerInvariant(Char c), TypeCode System.Char.GetTypeCode(), static Boolean System.Char.IsControl(Char c), static Boolean System.Char.IsControl(String s, Int32 index), static Boolean System.Char.IsNumber(Char c), static Boolean System.Char.IsNumber(String s, Int32 index), static Boolean System.Char.IsSeparator(Char c), static Boolean System.Char.IsSeparator(String s, Int32 index), static Boolean System.Char.IsSurrogate(Char c), static Boolean System.Char.IsSurrogate(String s, Int32 index), static Boolean System.Char.IsSymbol(Char c), static Boolean System.Char.IsSymbol(String s, Int32 index), static UnicodeCategory System.Char.GetUnicodeCategory(Char c), static UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static Double System.Char.GetNumericValue(Char c), static Double System.Char.GetNumericValue(String s, Int32 index), static Boolean System.Char.IsHighSurrogate(Char c), static Boolean System.Char.IsHighSurrogate(String s, Int32 index), static Boolean System.Char.IsLowSurrogate(Char c), static Boolean System.Char.IsLowSurrogate(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static String System.Char.ConvertFromUtf32(Int32 utf32), static Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static Int32 System.Char.ConvertToUtf32(String s, Int32 index), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 System.Char.GetHashCode(), Boolean System.Char.Equals(Object obj), Boolean System.Char.Equals(Char obj), Int32 System.Char.CompareTo(Object value), Int32 System.Char.CompareTo(Char value), String System.Char.ToString(), String System.Char.ToString(IFormatProvider provider), static String System.Char.ToString(Char c), static Char System.Char.Parse(String s), static Boolean System.Char.TryParse(String s, Char result), static Boolean System.Char.IsDigit(Char c), static Boolean System.Char.IsDigit(String s, Int32 index), static Boolean System.Char.IsLetter(Char c), static Boolean System.Char.IsLetter(String s, Int32 index), static Boolean System.Char.IsWhiteSpace(Char c), static Boolean System.Char.IsWhiteSpace(String s, Int32 index), static Boolean System.Char.IsUpper(Char c), static Boolean System.Char.IsUpper(String s, Int32 index), static Boolean System.Char.IsLower(Char c), static Boolean System.Char.IsLower(String s, Int32 index), static Boolean System.Char.IsPunctuation(Char c), static Boolean System.Char.IsPunctuation(String s, Int32 index), static Boolean System.Char.IsLetterOrDigit(Char c), static Boolean System.Char.IsLetterOrDigit(String s, Int32 index), static Char System.Char.ToUpper(Char c, CultureInfo culture), static Char System.Char.ToUpper(Char c), static Char System.Char.ToUpperInvariant(Char c), static Char System.Char.ToLower(Char c, CultureInfo culture), static Char System.Char.ToLower(Char c), static Char System.Char.ToLowerInvariant(Char c), TypeCode System.Char.GetTypeCode(), static Boolean System.Char.IsControl(Char c), static Boolean System.Char.IsControl(String s, Int32 index), static Boolean System.Char.IsNumber(Char c), static Boolean System.Char.IsNumber(String s, Int32 index), static Boolean System.Char.IsSeparator(Char c), static Boolean System.Char.IsSeparator(String s, Int32 index), static Boolean System.Char.IsSurrogate(Char c), static Boolean System.Char.IsSurrogate(String s, Int32 index), static Boolean System.Char.IsSymbol(Char c), static Boolean System.Char.IsSymbol(String s, Int32 index), static UnicodeCategory System.Char.GetUnicodeCategory(Char c), static UnicodeCategory System.Char.GetUnicodeCategory(String s, Int32 index), static Double System.Char.GetNumericValue(Char c), static Double System.Char.GetNumericValue(String s, Int32 index), static Boolean System.Char.IsHighSurrogate(Char c), static Boolean System.Char.IsHighSurrogate(String s, Int32 index), static Boolean System.Char.IsLowSurrogate(Char c), static Boolean System.Char.IsLowSurrogate(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(String s, Int32 index), static Boolean System.Char.IsSurrogatePair(Char highSurrogate, Char lowSurrogate), static String System.Char.ConvertFromUtf32(Int32 utf32), static Int32 System.Char.ConvertToUtf32(Char highSurrogate, Char lowSurrogate), static Int32 System.Char.ConvertToUtf32(String s, Int32 index), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsPrimitive="True" IsValueType="True"> null @@ -1221,9 +1229,9 @@ namespace Debugger.Tests { BaseType="System.ValueType" FullName="System.Nullable`1[System.Int32]" GetGenericArguments="{System.Int32}" - GetMembers="{void System.Nullable`1[System.Int32]..ctor(Int32 value), System.Boolean System.Nullable`1[System.Int32].get_HasValue(), System.Int32 System.Nullable`1[System.Int32].get_Value(), System.Int32 System.Nullable`1[System.Int32].GetValueOrDefault(), System.Int32 System.Nullable`1[System.Int32].GetValueOrDefault(Int32 defaultValue), System.Boolean System.Nullable`1[System.Int32].Equals(Object other), System.Int32 System.Nullable`1[System.Int32].GetHashCode(), System.String System.Nullable`1[System.Int32].ToString(), static System.Nullable`1[System.Int32] System.Nullable`1[System.Int32].op_Implicit(Int32 value), static System.Int32 System.Nullable`1[System.Int32].op_Explicit(Nullable`1 value), System.Boolean HasValue, System.Int32 Value, System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void System.Nullable`1[System.Int32]..ctor(Int32 value), System.Boolean System.Nullable`1[System.Int32].get_HasValue(), System.Int32 System.Nullable`1[System.Int32].get_Value(), System.Int32 System.Nullable`1[System.Int32].GetValueOrDefault(), System.Int32 System.Nullable`1[System.Int32].GetValueOrDefault(Int32 defaultValue), System.Boolean System.Nullable`1[System.Int32].Equals(Object other), System.Int32 System.Nullable`1[System.Int32].GetHashCode(), System.String System.Nullable`1[System.Int32].ToString(), static System.Nullable`1[System.Int32] System.Nullable`1[System.Int32].op_Implicit(Int32 value), static System.Int32 System.Nullable`1[System.Int32].op_Explicit(Nullable`1 value), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Boolean HasValue, System.Int32 Value}" + GetMembers="{void System.Nullable`1[System.Int32]..ctor(Int32 value), Boolean System.Nullable`1[System.Int32].get_HasValue(), Int32 System.Nullable`1[System.Int32].get_Value(), Int32 System.Nullable`1[System.Int32].GetValueOrDefault(), Int32 System.Nullable`1[System.Int32].GetValueOrDefault(Int32 defaultValue), Boolean System.Nullable`1[System.Int32].Equals(Object other), Int32 System.Nullable`1[System.Int32].GetHashCode(), String System.Nullable`1[System.Int32].ToString(), static Nullable`1 System.Nullable`1[System.Int32].op_Implicit(Int32 value), static Int32 System.Nullable`1[System.Int32].op_Explicit(Nullable`1 value), Boolean System.Nullable`1[System.Int32].HasValue, Int32 System.Nullable`1[System.Int32].Value, Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void System.Nullable`1[System.Int32]..ctor(Int32 value), Boolean System.Nullable`1[System.Int32].get_HasValue(), Int32 System.Nullable`1[System.Int32].get_Value(), Int32 System.Nullable`1[System.Int32].GetValueOrDefault(), Int32 System.Nullable`1[System.Int32].GetValueOrDefault(Int32 defaultValue), Boolean System.Nullable`1[System.Int32].Equals(Object other), Int32 System.Nullable`1[System.Int32].GetHashCode(), String System.Nullable`1[System.Int32].ToString(), static Nullable`1 System.Nullable`1[System.Int32].op_Implicit(Int32 value), static Int32 System.Nullable`1[System.Int32].op_Explicit(Nullable`1 value), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Boolean System.Nullable`1[System.Int32].HasValue, Int32 System.Nullable`1[System.Int32].Value}" IsGenericType="True" IsValueType="True"> null @@ -1242,9 +1250,9 @@ namespace Debugger.Tests { BaseType="System.ValueType" FullName="System.Nullable`1[System.Int32]" GetGenericArguments="{System.Int32}" - GetMembers="{void System.Nullable`1[System.Int32]..ctor(Int32 value), System.Boolean System.Nullable`1[System.Int32].get_HasValue(), System.Int32 System.Nullable`1[System.Int32].get_Value(), System.Int32 System.Nullable`1[System.Int32].GetValueOrDefault(), System.Int32 System.Nullable`1[System.Int32].GetValueOrDefault(Int32 defaultValue), System.Boolean System.Nullable`1[System.Int32].Equals(Object other), System.Int32 System.Nullable`1[System.Int32].GetHashCode(), System.String System.Nullable`1[System.Int32].ToString(), static System.Nullable`1[System.Int32] System.Nullable`1[System.Int32].op_Implicit(Int32 value), static System.Int32 System.Nullable`1[System.Int32].op_Explicit(Nullable`1 value), System.Boolean HasValue, System.Int32 Value, System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void System.Nullable`1[System.Int32]..ctor(Int32 value), System.Boolean System.Nullable`1[System.Int32].get_HasValue(), System.Int32 System.Nullable`1[System.Int32].get_Value(), System.Int32 System.Nullable`1[System.Int32].GetValueOrDefault(), System.Int32 System.Nullable`1[System.Int32].GetValueOrDefault(Int32 defaultValue), System.Boolean System.Nullable`1[System.Int32].Equals(Object other), System.Int32 System.Nullable`1[System.Int32].GetHashCode(), System.String System.Nullable`1[System.Int32].ToString(), static System.Nullable`1[System.Int32] System.Nullable`1[System.Int32].op_Implicit(Int32 value), static System.Int32 System.Nullable`1[System.Int32].op_Explicit(Nullable`1 value), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Boolean HasValue, System.Int32 Value}" + GetMembers="{void System.Nullable`1[System.Int32]..ctor(Int32 value), Boolean System.Nullable`1[System.Int32].get_HasValue(), Int32 System.Nullable`1[System.Int32].get_Value(), Int32 System.Nullable`1[System.Int32].GetValueOrDefault(), Int32 System.Nullable`1[System.Int32].GetValueOrDefault(Int32 defaultValue), Boolean System.Nullable`1[System.Int32].Equals(Object other), Int32 System.Nullable`1[System.Int32].GetHashCode(), String System.Nullable`1[System.Int32].ToString(), static Nullable`1 System.Nullable`1[System.Int32].op_Implicit(Int32 value), static Int32 System.Nullable`1[System.Int32].op_Explicit(Nullable`1 value), Boolean System.Nullable`1[System.Int32].HasValue, Int32 System.Nullable`1[System.Int32].Value, Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void System.Nullable`1[System.Int32]..ctor(Int32 value), Boolean System.Nullable`1[System.Int32].get_HasValue(), Int32 System.Nullable`1[System.Int32].get_Value(), Int32 System.Nullable`1[System.Int32].GetValueOrDefault(), Int32 System.Nullable`1[System.Int32].GetValueOrDefault(Int32 defaultValue), Boolean System.Nullable`1[System.Int32].Equals(Object other), Int32 System.Nullable`1[System.Int32].GetHashCode(), String System.Nullable`1[System.Int32].ToString(), static Nullable`1 System.Nullable`1[System.Int32].op_Implicit(Int32 value), static Int32 System.Nullable`1[System.Int32].op_Explicit(Nullable`1 value), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Boolean System.Nullable`1[System.Int32].HasValue, Int32 System.Nullable`1[System.Int32].Value}" IsGenericType="True" IsValueType="True"> null @@ -1263,8 +1271,8 @@ namespace Debugger.Tests { BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]" GetGenericArguments="{System.Int32}" - GetMembers="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsClass="True" IsGenericType="True" IsNested="True"> @@ -1286,9 +1294,9 @@ namespace Debugger.Tests { GetArrayRank="1" GetElementType="Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]" GetInterfaces="{System.Collections.Generic.IList`1[Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]], System.Collections.Generic.ICollection`1[Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]], System.Collections.Generic.IEnumerable`1[Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]], System.Collections.IEnumerable}" - GetMembers="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Object System.Array.GetValue(Int32[] indices), System.Object System.Array.GetValue(Int32 index), System.Object System.Array.GetValue(Int32 index1, Int32 index2), System.Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), System.Object System.Array.GetValue(Int64 index), System.Object System.Array.GetValue(Int64 index1, Int64 index2), System.Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), System.Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), System.Int32 System.Array.get_Length(), System.Int64 System.Array.get_LongLength(), System.Int32 System.Array.GetLength(Int32 dimension), System.Int64 System.Array.GetLongLength(Int32 dimension), System.Int32 System.Array.get_Rank(), System.Int32 System.Array.GetUpperBound(Int32 dimension), System.Int32 System.Array.GetLowerBound(Int32 dimension), System.Object System.Array.get_SyncRoot(), System.Boolean System.Array.get_IsReadOnly(), System.Boolean System.Array.get_IsFixedSize(), System.Boolean System.Array.get_IsSynchronized(), System.Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), System.Collections.IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 Length, System.Int64 LongLength, System.Int32 Rank, System.Object SyncRoot, System.Boolean IsReadOnly, System.Boolean IsFixedSize, System.Boolean IsSynchronized}" + GetMembers="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Object System.Array.GetValue(Int32[] indices), Object System.Array.GetValue(Int32 index), Object System.Array.GetValue(Int32 index1, Int32 index2), Object System.Array.GetValue(Int32 index1, Int32 index2, Int32 index3), Object System.Array.GetValue(Int64 index), Object System.Array.GetValue(Int64 index1, Int64 index2), Object System.Array.GetValue(Int64 index1, Int64 index2, Int64 index3), Object System.Array.GetValue(Int64[] indices), void System.Array.SetValue(Object value, Int32 index), void System.Array.SetValue(Object value, Int32 index1, Int32 index2), void System.Array.SetValue(Object value, Int32 index1, Int32 index2, Int32 index3), void System.Array.SetValue(Object value, Int32[] indices), void System.Array.SetValue(Object value, Int64 index), void System.Array.SetValue(Object value, Int64 index1, Int64 index2), void System.Array.SetValue(Object value, Int64 index1, Int64 index2, Int64 index3), void System.Array.SetValue(Object value, Int64[] indices), Int32 System.Array.get_Length(), Int64 System.Array.get_LongLength(), Int32 System.Array.GetLength(Int32 dimension), Int64 System.Array.GetLongLength(Int32 dimension), Int32 System.Array.get_Rank(), Int32 System.Array.GetUpperBound(Int32 dimension), Int32 System.Array.GetLowerBound(Int32 dimension), Object System.Array.get_SyncRoot(), Boolean System.Array.get_IsReadOnly(), Boolean System.Array.get_IsFixedSize(), Boolean System.Array.get_IsSynchronized(), Object System.Array.Clone(), void System.Array.CopyTo(Array array, Int32 index), void System.Array.CopyTo(Array array, Int64 index), IEnumerator System.Array.GetEnumerator(), void System.Array.Initialize(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Int32 System.Array.Length, Int64 System.Array.LongLength, Int32 System.Array.Rank, Object System.Array.SyncRoot, Boolean System.Array.IsReadOnly, Boolean System.Array.IsFixedSize, Boolean System.Array.IsSynchronized}" HasElementType="True" IsArray="True" IsClass="True" @@ -1299,8 +1307,8 @@ namespace Debugger.Tests { BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]" GetGenericArguments="{System.Int32}" - GetMembers="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Int32]..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsClass="True" IsGenericType="True" IsNested="True"> @@ -1322,8 +1330,8 @@ namespace Debugger.Tests { BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Nullable`1[System.Int32]]" GetGenericArguments="{System.Nullable`1[System.Int32]}" - GetMembers="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Nullable`1[System.Int32]]..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Nullable`1[System.Int32]]..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Nullable`1[System.Int32]]..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+MyGenClass`1[System.Nullable`1[System.Int32]]..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsClass="True" IsGenericType="True" IsNested="True"> @@ -1343,8 +1351,8 @@ namespace Debugger.Tests { BaseType="System.ValueType" FullName="Debugger.Tests.DebugType_Tests+MyGenClass`1+MyNestedStruct[System.Int32]" GetGenericArguments="{System.Int32}" - GetMembers="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsGenericType="True" IsNested="True" IsValueType="True"> @@ -1364,8 +1372,8 @@ namespace Debugger.Tests { BaseType="System.ValueType" FullName="Debugger.Tests.DebugType_Tests+MyGenClass`1+MyGenNestedStruct`1[System.Int32,System.Char]" GetGenericArguments="{System.Int32, System.Char}" - GetMembers="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsGenericType="True" IsNested="True" IsValueType="True"> @@ -1386,9 +1394,9 @@ namespace Debugger.Tests { FullName="Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32]" GetGenericArguments="{System.Int32}" GetInterfaces="{Debugger.Tests.DebugType_Tests+MyInterface`3[System.Int32,Debugger.Tests.DebugType_Tests+MyClass,Debugger.Tests.DebugType_Tests+MyStruct]}" - GetMembers="{System.Collections.Generic.List`1[System.Int32] Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].get_Prop(), System.Int32 Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Fun(MyClass a, MyStruct b, Object m), System.Object[] Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Fun2(Int32** iPtrPtr, Object[,] mdArray, Enumerator listEnum), void Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32]..ctor(), System.Collections.Generic.List`1[System.Int32] Prop, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Collections.Generic.List`1[System.Int32] Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].get_Prop(), System.Int32 Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Fun(MyClass a, MyStruct b, Object m), System.Object[] Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Fun2(Int32** iPtrPtr, Object[,] mdArray, Enumerator listEnum), void Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32]..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Collections.Generic.List`1[System.Int32] Prop}" + GetMembers="{List`1 Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].get_Prop(), Int32 Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Fun(MyClass a, MyStruct b, Object m), Object[] Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Fun2(Int32** iPtrPtr, Object[,] mdArray, Enumerator listEnum), void Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32]..ctor(), List`1 Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Prop, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{List`1 Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].get_Prop(), Int32 Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Fun(MyClass a, MyStruct b, Object m), Object[] Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Fun2(Int32** iPtrPtr, Object[,] mdArray, Enumerator listEnum), void Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32]..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{List`1 Debugger.Tests.DebugType_Tests+MyInterfaceImpl`1[System.Int32].Prop}" IsClass="True" IsGenericType="True" IsNested="True"> @@ -1407,8 +1415,8 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, NestedPublic, ClassSemanticsMask, Abstract" FullName="Debugger.Tests.DebugType_Tests+MyInterface`3[System.Int32,Debugger.Tests.DebugType_Tests+MyClass,Debugger.Tests.DebugType_Tests+MyStruct]" GetGenericArguments="{System.Int32, Debugger.Tests.DebugType_Tests+MyClass, Debugger.Tests.DebugType_Tests+MyStruct}" - GetMembers="{System.Int32 Debugger.Tests.DebugType_Tests+MyInterface`3[System.Int32,Debugger.Tests.DebugType_Tests+MyClass,Debugger.Tests.DebugType_Tests+MyStruct].Fun(MyClass a, MyStruct b, Object m)}" - GetMethods="{System.Int32 Debugger.Tests.DebugType_Tests+MyInterface`3[System.Int32,Debugger.Tests.DebugType_Tests+MyClass,Debugger.Tests.DebugType_Tests+MyStruct].Fun(MyClass a, MyStruct b, Object m)}" + GetMembers="{Int32 Debugger.Tests.DebugType_Tests+MyInterface`3[System.Int32,Debugger.Tests.DebugType_Tests+MyClass,Debugger.Tests.DebugType_Tests+MyStruct].Fun(MyClass a, MyStruct b, Object m)}" + GetMethods="{Int32 Debugger.Tests.DebugType_Tests+MyInterface`3[System.Int32,Debugger.Tests.DebugType_Tests+MyClass,Debugger.Tests.DebugType_Tests+MyStruct].Fun(MyClass a, MyStruct b, Object m)}" IsGenericType="True" IsInterface="True" IsNested="True"> @@ -1429,9 +1437,9 @@ namespace Debugger.Tests { FullName="System.Collections.Generic.List`1[System.Int32]" GetGenericArguments="{System.Int32}" GetInterfaces="{System.Collections.Generic.IList`1[System.Int32], System.Collections.Generic.ICollection`1[System.Int32], System.Collections.Generic.IEnumerable`1[System.Int32], System.Collections.IList, System.Collections.ICollection, System.Collections.IEnumerable}" - GetMembers="{void System.Collections.Generic.List`1[System.Int32]..ctor(), void System.Collections.Generic.List`1[System.Int32]..ctor(Int32 capacity), void System.Collections.Generic.List`1[System.Int32]..ctor(IEnumerable`1 collection), System.Int32 System.Collections.Generic.List`1[System.Int32].get_Capacity(), void System.Collections.Generic.List`1[System.Int32].set_Capacity(Int32 value), System.Int32 System.Collections.Generic.List`1[System.Int32].get_Count(), System.Int32 System.Collections.Generic.List`1[System.Int32].get_Item(Int32 index), void System.Collections.Generic.List`1[System.Int32].set_Item(Int32 index, Int32 value), void System.Collections.Generic.List`1[System.Int32].Add(Int32 item), void System.Collections.Generic.List`1[System.Int32].AddRange(IEnumerable`1 collection), System.Collections.ObjectModel.ReadOnlyCollection`1[System.Int32] System.Collections.Generic.List`1[System.Int32].AsReadOnly(), System.Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 index, Int32 count, Int32 item, IComparer`1 comparer), System.Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 item), System.Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 item, IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Clear(), System.Boolean System.Collections.Generic.List`1[System.Int32].Contains(Int32 item), System.Collections.Generic.List`1[System.Object] System.Collections.Generic.List`1[System.Int32].ConvertAll(Converter`2 converter), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32[] array), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32 index, Int32[] array, Int32 arrayIndex, Int32 count), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32[] array, Int32 arrayIndex), System.Boolean System.Collections.Generic.List`1[System.Int32].Exists(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].Find(Predicate`1 match), System.Collections.Generic.List`1[System.Int32] System.Collections.Generic.List`1[System.Int32].FindAll(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Int32 startIndex, Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Int32 startIndex, Int32 count, Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindLast(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Int32 startIndex, Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Int32 startIndex, Int32 count, Predicate`1 match), void System.Collections.Generic.List`1[System.Int32].ForEach(Action`1 action), System.Collections.Generic.List`1+Enumerator[System.Int32] System.Collections.Generic.List`1[System.Int32].GetEnumerator(), System.Collections.Generic.List`1[System.Int32] System.Collections.Generic.List`1[System.Int32].GetRange(Int32 index, Int32 count), System.Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item), System.Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item, Int32 index), System.Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item, Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Insert(Int32 index, Int32 item), void System.Collections.Generic.List`1[System.Int32].InsertRange(Int32 index, IEnumerable`1 collection), System.Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item), System.Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item, Int32 index), System.Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item, Int32 index, Int32 count), System.Boolean System.Collections.Generic.List`1[System.Int32].Remove(Int32 item), System.Int32 System.Collections.Generic.List`1[System.Int32].RemoveAll(Predicate`1 match), void System.Collections.Generic.List`1[System.Int32].RemoveAt(Int32 index), void System.Collections.Generic.List`1[System.Int32].RemoveRange(Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Reverse(), void System.Collections.Generic.List`1[System.Int32].Reverse(Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Sort(), void System.Collections.Generic.List`1[System.Int32].Sort(IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Sort(Int32 index, Int32 count, IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Sort(Comparison`1 comparison), System.Int32[] System.Collections.Generic.List`1[System.Int32].ToArray(), void System.Collections.Generic.List`1[System.Int32].TrimExcess(), System.Boolean System.Collections.Generic.List`1[System.Int32].TrueForAll(Predicate`1 match), System.Int32 Capacity, System.Int32 Count, System.Int32 Item[Int32 index], void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void System.Collections.Generic.List`1[System.Int32]..ctor(), void System.Collections.Generic.List`1[System.Int32]..ctor(Int32 capacity), void System.Collections.Generic.List`1[System.Int32]..ctor(IEnumerable`1 collection), System.Int32 System.Collections.Generic.List`1[System.Int32].get_Capacity(), void System.Collections.Generic.List`1[System.Int32].set_Capacity(Int32 value), System.Int32 System.Collections.Generic.List`1[System.Int32].get_Count(), System.Int32 System.Collections.Generic.List`1[System.Int32].get_Item(Int32 index), void System.Collections.Generic.List`1[System.Int32].set_Item(Int32 index, Int32 value), void System.Collections.Generic.List`1[System.Int32].Add(Int32 item), void System.Collections.Generic.List`1[System.Int32].AddRange(IEnumerable`1 collection), System.Collections.ObjectModel.ReadOnlyCollection`1[System.Int32] System.Collections.Generic.List`1[System.Int32].AsReadOnly(), System.Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 index, Int32 count, Int32 item, IComparer`1 comparer), System.Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 item), System.Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 item, IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Clear(), System.Boolean System.Collections.Generic.List`1[System.Int32].Contains(Int32 item), System.Collections.Generic.List`1[System.Object] System.Collections.Generic.List`1[System.Int32].ConvertAll(Converter`2 converter), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32[] array), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32 index, Int32[] array, Int32 arrayIndex, Int32 count), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32[] array, Int32 arrayIndex), System.Boolean System.Collections.Generic.List`1[System.Int32].Exists(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].Find(Predicate`1 match), System.Collections.Generic.List`1[System.Int32] System.Collections.Generic.List`1[System.Int32].FindAll(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Int32 startIndex, Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Int32 startIndex, Int32 count, Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindLast(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Int32 startIndex, Predicate`1 match), System.Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Int32 startIndex, Int32 count, Predicate`1 match), void System.Collections.Generic.List`1[System.Int32].ForEach(Action`1 action), System.Collections.Generic.List`1+Enumerator[System.Int32] System.Collections.Generic.List`1[System.Int32].GetEnumerator(), System.Collections.Generic.List`1[System.Int32] System.Collections.Generic.List`1[System.Int32].GetRange(Int32 index, Int32 count), System.Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item), System.Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item, Int32 index), System.Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item, Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Insert(Int32 index, Int32 item), void System.Collections.Generic.List`1[System.Int32].InsertRange(Int32 index, IEnumerable`1 collection), System.Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item), System.Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item, Int32 index), System.Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item, Int32 index, Int32 count), System.Boolean System.Collections.Generic.List`1[System.Int32].Remove(Int32 item), System.Int32 System.Collections.Generic.List`1[System.Int32].RemoveAll(Predicate`1 match), void System.Collections.Generic.List`1[System.Int32].RemoveAt(Int32 index), void System.Collections.Generic.List`1[System.Int32].RemoveRange(Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Reverse(), void System.Collections.Generic.List`1[System.Int32].Reverse(Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Sort(), void System.Collections.Generic.List`1[System.Int32].Sort(IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Sort(Int32 index, Int32 count, IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Sort(Comparison`1 comparison), System.Int32[] System.Collections.Generic.List`1[System.Int32].ToArray(), void System.Collections.Generic.List`1[System.Int32].TrimExcess(), System.Boolean System.Collections.Generic.List`1[System.Int32].TrueForAll(Predicate`1 match), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 Capacity, System.Int32 Count, System.Int32 Item[Int32 index]}" + GetMembers="{void System.Collections.Generic.List`1[System.Int32]..ctor(), void System.Collections.Generic.List`1[System.Int32]..ctor(Int32 capacity), void System.Collections.Generic.List`1[System.Int32]..ctor(IEnumerable`1 collection), Int32 System.Collections.Generic.List`1[System.Int32].get_Capacity(), void System.Collections.Generic.List`1[System.Int32].set_Capacity(Int32 value), Int32 System.Collections.Generic.List`1[System.Int32].get_Count(), Int32 System.Collections.Generic.List`1[System.Int32].get_Item(Int32 index), void System.Collections.Generic.List`1[System.Int32].set_Item(Int32 index, Int32 value), void System.Collections.Generic.List`1[System.Int32].Add(Int32 item), void System.Collections.Generic.List`1[System.Int32].AddRange(IEnumerable`1 collection), ReadOnlyCollection`1 System.Collections.Generic.List`1[System.Int32].AsReadOnly(), Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 index, Int32 count, Int32 item, IComparer`1 comparer), Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 item), Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 item, IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Clear(), Boolean System.Collections.Generic.List`1[System.Int32].Contains(Int32 item), List`1 System.Collections.Generic.List`1[System.Int32].ConvertAll(Converter`2 converter), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32[] array), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32 index, Int32[] array, Int32 arrayIndex, Int32 count), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32[] array, Int32 arrayIndex), Boolean System.Collections.Generic.List`1[System.Int32].Exists(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].Find(Predicate`1 match), List`1 System.Collections.Generic.List`1[System.Int32].FindAll(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Int32 startIndex, Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Int32 startIndex, Int32 count, Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindLast(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Int32 startIndex, Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Int32 startIndex, Int32 count, Predicate`1 match), void System.Collections.Generic.List`1[System.Int32].ForEach(Action`1 action), Enumerator System.Collections.Generic.List`1[System.Int32].GetEnumerator(), List`1 System.Collections.Generic.List`1[System.Int32].GetRange(Int32 index, Int32 count), Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item), Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item, Int32 index), Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item, Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Insert(Int32 index, Int32 item), void System.Collections.Generic.List`1[System.Int32].InsertRange(Int32 index, IEnumerable`1 collection), Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item), Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item, Int32 index), Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item, Int32 index, Int32 count), Boolean System.Collections.Generic.List`1[System.Int32].Remove(Int32 item), Int32 System.Collections.Generic.List`1[System.Int32].RemoveAll(Predicate`1 match), void System.Collections.Generic.List`1[System.Int32].RemoveAt(Int32 index), void System.Collections.Generic.List`1[System.Int32].RemoveRange(Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Reverse(), void System.Collections.Generic.List`1[System.Int32].Reverse(Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Sort(), void System.Collections.Generic.List`1[System.Int32].Sort(IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Sort(Int32 index, Int32 count, IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Sort(Comparison`1 comparison), Int32[] System.Collections.Generic.List`1[System.Int32].ToArray(), void System.Collections.Generic.List`1[System.Int32].TrimExcess(), Boolean System.Collections.Generic.List`1[System.Int32].TrueForAll(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].Capacity, Int32 System.Collections.Generic.List`1[System.Int32].Count, Int32 System.Collections.Generic.List`1[System.Int32].Item[Int32 index], void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void System.Collections.Generic.List`1[System.Int32]..ctor(), void System.Collections.Generic.List`1[System.Int32]..ctor(Int32 capacity), void System.Collections.Generic.List`1[System.Int32]..ctor(IEnumerable`1 collection), Int32 System.Collections.Generic.List`1[System.Int32].get_Capacity(), void System.Collections.Generic.List`1[System.Int32].set_Capacity(Int32 value), Int32 System.Collections.Generic.List`1[System.Int32].get_Count(), Int32 System.Collections.Generic.List`1[System.Int32].get_Item(Int32 index), void System.Collections.Generic.List`1[System.Int32].set_Item(Int32 index, Int32 value), void System.Collections.Generic.List`1[System.Int32].Add(Int32 item), void System.Collections.Generic.List`1[System.Int32].AddRange(IEnumerable`1 collection), ReadOnlyCollection`1 System.Collections.Generic.List`1[System.Int32].AsReadOnly(), Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 index, Int32 count, Int32 item, IComparer`1 comparer), Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 item), Int32 System.Collections.Generic.List`1[System.Int32].BinarySearch(Int32 item, IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Clear(), Boolean System.Collections.Generic.List`1[System.Int32].Contains(Int32 item), List`1 System.Collections.Generic.List`1[System.Int32].ConvertAll(Converter`2 converter), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32[] array), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32 index, Int32[] array, Int32 arrayIndex, Int32 count), void System.Collections.Generic.List`1[System.Int32].CopyTo(Int32[] array, Int32 arrayIndex), Boolean System.Collections.Generic.List`1[System.Int32].Exists(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].Find(Predicate`1 match), List`1 System.Collections.Generic.List`1[System.Int32].FindAll(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Int32 startIndex, Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindIndex(Int32 startIndex, Int32 count, Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindLast(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Int32 startIndex, Predicate`1 match), Int32 System.Collections.Generic.List`1[System.Int32].FindLastIndex(Int32 startIndex, Int32 count, Predicate`1 match), void System.Collections.Generic.List`1[System.Int32].ForEach(Action`1 action), Enumerator System.Collections.Generic.List`1[System.Int32].GetEnumerator(), List`1 System.Collections.Generic.List`1[System.Int32].GetRange(Int32 index, Int32 count), Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item), Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item, Int32 index), Int32 System.Collections.Generic.List`1[System.Int32].IndexOf(Int32 item, Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Insert(Int32 index, Int32 item), void System.Collections.Generic.List`1[System.Int32].InsertRange(Int32 index, IEnumerable`1 collection), Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item), Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item, Int32 index), Int32 System.Collections.Generic.List`1[System.Int32].LastIndexOf(Int32 item, Int32 index, Int32 count), Boolean System.Collections.Generic.List`1[System.Int32].Remove(Int32 item), Int32 System.Collections.Generic.List`1[System.Int32].RemoveAll(Predicate`1 match), void System.Collections.Generic.List`1[System.Int32].RemoveAt(Int32 index), void System.Collections.Generic.List`1[System.Int32].RemoveRange(Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Reverse(), void System.Collections.Generic.List`1[System.Int32].Reverse(Int32 index, Int32 count), void System.Collections.Generic.List`1[System.Int32].Sort(), void System.Collections.Generic.List`1[System.Int32].Sort(IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Sort(Int32 index, Int32 count, IComparer`1 comparer), void System.Collections.Generic.List`1[System.Int32].Sort(Comparison`1 comparison), Int32[] System.Collections.Generic.List`1[System.Int32].ToArray(), void System.Collections.Generic.List`1[System.Int32].TrimExcess(), Boolean System.Collections.Generic.List`1[System.Int32].TrueForAll(Predicate`1 match), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Int32 System.Collections.Generic.List`1[System.Int32].Capacity, Int32 System.Collections.Generic.List`1[System.Int32].Count, Int32 System.Collections.Generic.List`1[System.Int32].Item[Int32 index]}" IsClass="True" IsGenericType="True"> null @@ -1451,9 +1459,9 @@ namespace Debugger.Tests { FullName="System.Collections.Generic.List`1+Enumerator[System.Int32]" GetGenericArguments="{System.Int32}" GetInterfaces="{System.Collections.Generic.IEnumerator`1[System.Int32], System.IDisposable, System.Collections.IEnumerator}" - GetMembers="{void System.Collections.Generic.List`1+Enumerator[System.Int32].Dispose(), System.Boolean System.Collections.Generic.List`1+Enumerator[System.Int32].MoveNext(), System.Int32 System.Collections.Generic.List`1+Enumerator[System.Int32].get_Current(), System.Int32 Current, System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void System.Collections.Generic.List`1+Enumerator[System.Int32].Dispose(), System.Boolean System.Collections.Generic.List`1+Enumerator[System.Int32].MoveNext(), System.Int32 System.Collections.Generic.List`1+Enumerator[System.Int32].get_Current(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 Current}" + GetMembers="{void System.Collections.Generic.List`1+Enumerator[System.Int32].Dispose(), Boolean System.Collections.Generic.List`1+Enumerator[System.Int32].MoveNext(), Int32 System.Collections.Generic.List`1+Enumerator[System.Int32].get_Current(), Int32 System.Collections.Generic.List`1+Enumerator[System.Int32].Current, Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void System.Collections.Generic.List`1+Enumerator[System.Int32].Dispose(), Boolean System.Collections.Generic.List`1+Enumerator[System.Int32].MoveNext(), Int32 System.Collections.Generic.List`1+Enumerator[System.Int32].get_Current(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Int32 System.Collections.Generic.List`1+Enumerator[System.Int32].Current}" IsGenericType="True" IsNested="True" IsValueType="True"> @@ -1472,9 +1480,9 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, NestedPublic, Sealed" BaseType="System.MulticastDelegate" FullName="Debugger.Tests.DebugType_Tests+AddDelegate" - GetMembers="{void Debugger.Tests.DebugType_Tests+AddDelegate..ctor(Object object, IntPtr method), System.Int32 Debugger.Tests.DebugType_Tests+AddDelegate.Invoke(Byte b1, Byte b2), System.IAsyncResult Debugger.Tests.DebugType_Tests+AddDelegate.BeginInvoke(Byte b1, Byte b2, AsyncCallback callback, Object object), System.Int32 Debugger.Tests.DebugType_Tests+AddDelegate.EndInvoke(IAsyncResult result), void System.MulticastDelegate.GetObjectData(SerializationInfo info, StreamingContext context), System.Boolean System.MulticastDelegate.Equals(Object obj), System.Delegate[] System.MulticastDelegate.GetInvocationList(), System.Int32 System.MulticastDelegate.GetHashCode(), System.Object System.Delegate.DynamicInvoke(Object[] args), System.Boolean System.Delegate.Equals(Object obj), System.Int32 System.Delegate.GetHashCode(), System.Delegate[] System.Delegate.GetInvocationList(), System.Reflection.MethodInfo System.Delegate.get_Method(), System.Object System.Delegate.get_Target(), System.Object System.Delegate.Clone(), void System.Delegate.GetObjectData(SerializationInfo info, StreamingContext context), System.Reflection.MethodInfo Method, System.Object Target, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+AddDelegate..ctor(Object object, IntPtr method), System.Int32 Debugger.Tests.DebugType_Tests+AddDelegate.Invoke(Byte b1, Byte b2), System.IAsyncResult Debugger.Tests.DebugType_Tests+AddDelegate.BeginInvoke(Byte b1, Byte b2, AsyncCallback callback, Object object), System.Int32 Debugger.Tests.DebugType_Tests+AddDelegate.EndInvoke(IAsyncResult result), void System.MulticastDelegate.GetObjectData(SerializationInfo info, StreamingContext context), System.Boolean System.MulticastDelegate.Equals(Object obj), System.Delegate[] System.MulticastDelegate.GetInvocationList(), System.Int32 System.MulticastDelegate.GetHashCode(), System.Object System.Delegate.DynamicInvoke(Object[] args), System.Boolean System.Delegate.Equals(Object obj), System.Int32 System.Delegate.GetHashCode(), System.Delegate[] System.Delegate.GetInvocationList(), System.Reflection.MethodInfo System.Delegate.get_Method(), System.Object System.Delegate.get_Target(), System.Object System.Delegate.Clone(), void System.Delegate.GetObjectData(SerializationInfo info, StreamingContext context), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Reflection.MethodInfo Method, System.Object Target}" + GetMembers="{void Debugger.Tests.DebugType_Tests+AddDelegate..ctor(Object object, IntPtr method), Int32 Debugger.Tests.DebugType_Tests+AddDelegate.Invoke(Byte b1, Byte b2), IAsyncResult Debugger.Tests.DebugType_Tests+AddDelegate.BeginInvoke(Byte b1, Byte b2, AsyncCallback callback, Object object), Int32 Debugger.Tests.DebugType_Tests+AddDelegate.EndInvoke(IAsyncResult result), void System.MulticastDelegate.GetObjectData(SerializationInfo info, StreamingContext context), Boolean System.MulticastDelegate.Equals(Object obj), Delegate[] System.MulticastDelegate.GetInvocationList(), Int32 System.MulticastDelegate.GetHashCode(), Object System.Delegate.DynamicInvoke(Object[] args), Boolean System.Delegate.Equals(Object obj), Int32 System.Delegate.GetHashCode(), Delegate[] System.Delegate.GetInvocationList(), MethodInfo System.Delegate.get_Method(), Object System.Delegate.get_Target(), Object System.Delegate.Clone(), void System.Delegate.GetObjectData(SerializationInfo info, StreamingContext context), MethodInfo System.Delegate.Method, Object System.Delegate.Target, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+AddDelegate..ctor(Object object, IntPtr method), Int32 Debugger.Tests.DebugType_Tests+AddDelegate.Invoke(Byte b1, Byte b2), IAsyncResult Debugger.Tests.DebugType_Tests+AddDelegate.BeginInvoke(Byte b1, Byte b2, AsyncCallback callback, Object object), Int32 Debugger.Tests.DebugType_Tests+AddDelegate.EndInvoke(IAsyncResult result), void System.MulticastDelegate.GetObjectData(SerializationInfo info, StreamingContext context), Boolean System.MulticastDelegate.Equals(Object obj), Delegate[] System.MulticastDelegate.GetInvocationList(), Int32 System.MulticastDelegate.GetHashCode(), Object System.Delegate.DynamicInvoke(Object[] args), Boolean System.Delegate.Equals(Object obj), Int32 System.Delegate.GetHashCode(), Delegate[] System.Delegate.GetInvocationList(), MethodInfo System.Delegate.get_Method(), Object System.Delegate.get_Target(), Object System.Delegate.Clone(), void System.Delegate.GetObjectData(SerializationInfo info, StreamingContext context), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{MethodInfo System.Delegate.Method, Object System.Delegate.Target}" IsClass="True" IsNested="True"> null @@ -1492,8 +1500,8 @@ namespace Debugger.Tests { Attributes="AutoLayout, AnsiClass, Class, Public, Abstract, Serializable, BeforeFieldInit" BaseType="System.Object" FullName="System.ValueType" - GetMembers="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsClass="True"> null @@ -1511,8 +1519,8 @@ namespace Debugger.Tests { BaseType="System.ValueType" FullName="System.Enum" GetInterfaces="{System.IComparable, System.IFormattable, System.IConvertible}" - GetMembers="{static System.Boolean System.Enum.TryParse(String value, Object result), static System.Boolean System.Enum.TryParse(String value, Boolean ignoreCase, Object result), static System.Object System.Enum.Parse(Type enumType, String value), static System.Object System.Enum.Parse(Type enumType, String value, Boolean ignoreCase), static System.Type System.Enum.GetUnderlyingType(Type enumType), static System.Array System.Enum.GetValues(Type enumType), static System.String System.Enum.GetName(Type enumType, Object value), static System.String[] System.Enum.GetNames(Type enumType), static System.Object System.Enum.ToObject(Type enumType, Object value), static System.Object System.Enum.ToObject(Type enumType, SByte value), static System.Object System.Enum.ToObject(Type enumType, Int16 value), static System.Object System.Enum.ToObject(Type enumType, Int32 value), static System.Object System.Enum.ToObject(Type enumType, Byte value), static System.Object System.Enum.ToObject(Type enumType, UInt16 value), static System.Object System.Enum.ToObject(Type enumType, UInt32 value), static System.Object System.Enum.ToObject(Type enumType, Int64 value), static System.Object System.Enum.ToObject(Type enumType, UInt64 value), static System.Boolean System.Enum.IsDefined(Type enumType, Object value), static System.String System.Enum.Format(Type enumType, Object value, String format), System.Boolean System.Enum.Equals(Object obj), System.Int32 System.Enum.GetHashCode(), System.String System.Enum.ToString(), System.String System.Enum.ToString(String format, IFormatProvider provider), System.String System.Enum.ToString(String format), System.String System.Enum.ToString(IFormatProvider provider), System.Int32 System.Enum.CompareTo(Object target), System.Boolean System.Enum.HasFlag(Enum flag), System.TypeCode System.Enum.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{static System.Boolean System.Enum.TryParse(String value, Object result), static System.Boolean System.Enum.TryParse(String value, Boolean ignoreCase, Object result), static System.Object System.Enum.Parse(Type enumType, String value), static System.Object System.Enum.Parse(Type enumType, String value, Boolean ignoreCase), static System.Type System.Enum.GetUnderlyingType(Type enumType), static System.Array System.Enum.GetValues(Type enumType), static System.String System.Enum.GetName(Type enumType, Object value), static System.String[] System.Enum.GetNames(Type enumType), static System.Object System.Enum.ToObject(Type enumType, Object value), static System.Object System.Enum.ToObject(Type enumType, SByte value), static System.Object System.Enum.ToObject(Type enumType, Int16 value), static System.Object System.Enum.ToObject(Type enumType, Int32 value), static System.Object System.Enum.ToObject(Type enumType, Byte value), static System.Object System.Enum.ToObject(Type enumType, UInt16 value), static System.Object System.Enum.ToObject(Type enumType, UInt32 value), static System.Object System.Enum.ToObject(Type enumType, Int64 value), static System.Object System.Enum.ToObject(Type enumType, UInt64 value), static System.Boolean System.Enum.IsDefined(Type enumType, Object value), static System.String System.Enum.Format(Type enumType, Object value, String format), System.Boolean System.Enum.Equals(Object obj), System.Int32 System.Enum.GetHashCode(), System.String System.Enum.ToString(), System.String System.Enum.ToString(String format, IFormatProvider provider), System.String System.Enum.ToString(String format), System.String System.Enum.ToString(IFormatProvider provider), System.Int32 System.Enum.CompareTo(Object target), System.Boolean System.Enum.HasFlag(Enum flag), System.TypeCode System.Enum.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{static Boolean System.Enum.TryParse(String value, Object result), static Boolean System.Enum.TryParse(String value, Boolean ignoreCase, Object result), static Object System.Enum.Parse(Type enumType, String value), static Object System.Enum.Parse(Type enumType, String value, Boolean ignoreCase), static Type System.Enum.GetUnderlyingType(Type enumType), static Array System.Enum.GetValues(Type enumType), static String System.Enum.GetName(Type enumType, Object value), static String[] System.Enum.GetNames(Type enumType), static Object System.Enum.ToObject(Type enumType, Object value), static Object System.Enum.ToObject(Type enumType, SByte value), static Object System.Enum.ToObject(Type enumType, Int16 value), static Object System.Enum.ToObject(Type enumType, Int32 value), static Object System.Enum.ToObject(Type enumType, Byte value), static Object System.Enum.ToObject(Type enumType, UInt16 value), static Object System.Enum.ToObject(Type enumType, UInt32 value), static Object System.Enum.ToObject(Type enumType, Int64 value), static Object System.Enum.ToObject(Type enumType, UInt64 value), static Boolean System.Enum.IsDefined(Type enumType, Object value), static String System.Enum.Format(Type enumType, Object value, String format), Boolean System.Enum.Equals(Object obj), Int32 System.Enum.GetHashCode(), String System.Enum.ToString(), String System.Enum.ToString(String format, IFormatProvider provider), String System.Enum.ToString(String format), String System.Enum.ToString(IFormatProvider provider), Int32 System.Enum.CompareTo(Object target), Boolean System.Enum.HasFlag(Enum flag), TypeCode System.Enum.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{static Boolean System.Enum.TryParse(String value, Object result), static Boolean System.Enum.TryParse(String value, Boolean ignoreCase, Object result), static Object System.Enum.Parse(Type enumType, String value), static Object System.Enum.Parse(Type enumType, String value, Boolean ignoreCase), static Type System.Enum.GetUnderlyingType(Type enumType), static Array System.Enum.GetValues(Type enumType), static String System.Enum.GetName(Type enumType, Object value), static String[] System.Enum.GetNames(Type enumType), static Object System.Enum.ToObject(Type enumType, Object value), static Object System.Enum.ToObject(Type enumType, SByte value), static Object System.Enum.ToObject(Type enumType, Int16 value), static Object System.Enum.ToObject(Type enumType, Int32 value), static Object System.Enum.ToObject(Type enumType, Byte value), static Object System.Enum.ToObject(Type enumType, UInt16 value), static Object System.Enum.ToObject(Type enumType, UInt32 value), static Object System.Enum.ToObject(Type enumType, Int64 value), static Object System.Enum.ToObject(Type enumType, UInt64 value), static Boolean System.Enum.IsDefined(Type enumType, Object value), static String System.Enum.Format(Type enumType, Object value, String format), Boolean System.Enum.Equals(Object obj), Int32 System.Enum.GetHashCode(), String System.Enum.ToString(), String System.Enum.ToString(String format, IFormatProvider provider), String System.Enum.ToString(String format), String System.Enum.ToString(IFormatProvider provider), Int32 System.Enum.CompareTo(Object target), Boolean System.Enum.HasFlag(Enum flag), TypeCode System.Enum.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsClass="True"> null @@ -1531,8 +1539,8 @@ namespace Debugger.Tests { FullName="Debugger.Tests.DebugType_Tests+MyEnum" GetEnumUnderlyingType="System.Byte" GetFields="{System.Byte value__, Debugger.Tests.DebugType_Tests+MyEnum A, Debugger.Tests.DebugType_Tests+MyEnum B}" - GetMembers="{System.Byte value__, Debugger.Tests.DebugType_Tests+MyEnum A, Debugger.Tests.DebugType_Tests+MyEnum B, System.Boolean System.Enum.Equals(Object obj), System.Int32 System.Enum.GetHashCode(), System.String System.Enum.ToString(), System.String System.Enum.ToString(String format, IFormatProvider provider), System.String System.Enum.ToString(String format), System.String System.Enum.ToString(IFormatProvider provider), System.Int32 System.Enum.CompareTo(Object target), System.Boolean System.Enum.HasFlag(Enum flag), System.TypeCode System.Enum.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Boolean System.Enum.Equals(Object obj), System.Int32 System.Enum.GetHashCode(), System.String System.Enum.ToString(), System.String System.Enum.ToString(String format, IFormatProvider provider), System.String System.Enum.ToString(String format), System.String System.Enum.ToString(IFormatProvider provider), System.Int32 System.Enum.CompareTo(Object target), System.Boolean System.Enum.HasFlag(Enum flag), System.TypeCode System.Enum.GetTypeCode(), System.Boolean System.ValueType.Equals(Object obj), System.Int32 System.ValueType.GetHashCode(), System.String System.ValueType.ToString(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" + GetMembers="{System.Byte value__, Debugger.Tests.DebugType_Tests+MyEnum A, Debugger.Tests.DebugType_Tests+MyEnum B, Boolean System.Enum.Equals(Object obj), Int32 System.Enum.GetHashCode(), String System.Enum.ToString(), String System.Enum.ToString(String format, IFormatProvider provider), String System.Enum.ToString(String format), String System.Enum.ToString(IFormatProvider provider), Int32 System.Enum.CompareTo(Object target), Boolean System.Enum.HasFlag(Enum flag), TypeCode System.Enum.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Boolean System.Enum.Equals(Object obj), Int32 System.Enum.GetHashCode(), String System.Enum.ToString(), String System.Enum.ToString(String format, IFormatProvider provider), String System.Enum.ToString(String format), String System.Enum.ToString(IFormatProvider provider), Int32 System.Enum.CompareTo(Object target), Boolean System.Enum.HasFlag(Enum flag), TypeCode System.Enum.GetTypeCode(), Boolean System.ValueType.Equals(Object obj), Int32 System.ValueType.GetHashCode(), String System.ValueType.ToString(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" IsEnum="True" IsNested="True" IsValueType="True"> @@ -1552,9 +1560,9 @@ namespace Debugger.Tests { BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+Members" GetFields="{System.Int32 IntLiteral, System.Int32 instanceInt, System.Int32 staticInt, System.Void* voidPtr}" - GetMembers="{System.Int32 IntLiteral, System.Int32 instanceInt, System.Int32 staticInt, System.Void* voidPtr, void Debugger.Tests.DebugType_Tests+Members.set_SetterOnlyProp(Char value), System.Int32 Debugger.Tests.DebugType_Tests+Members.get_InstanceInt(), static System.Int32 Debugger.Tests.DebugType_Tests+Members.get_StaticInt(), System.Int32 Debugger.Tests.DebugType_Tests+Members.get_AutoProperty(), void Debugger.Tests.DebugType_Tests+Members.set_AutoProperty(Int32 value), System.Char Debugger.Tests.DebugType_Tests+Members.get_Item(Int32 i), System.Char Debugger.Tests.DebugType_Tests+Members.get_Item(String s), void Debugger.Tests.DebugType_Tests+Members.set_Item(Int32 i, Char value), void Debugger.Tests.DebugType_Tests+Members..ctor(), System.Char SetterOnlyProp, System.Int32 InstanceInt, System.Int32 StaticInt, System.Int32 AutoProperty, System.Char Item[Int32 i], System.Char Item[String s], void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{void Debugger.Tests.DebugType_Tests+Members.set_SetterOnlyProp(Char value), System.Int32 Debugger.Tests.DebugType_Tests+Members.get_InstanceInt(), static System.Int32 Debugger.Tests.DebugType_Tests+Members.get_StaticInt(), System.Int32 Debugger.Tests.DebugType_Tests+Members.get_AutoProperty(), void Debugger.Tests.DebugType_Tests+Members.set_AutoProperty(Int32 value), System.Char Debugger.Tests.DebugType_Tests+Members.get_Item(Int32 i), System.Char Debugger.Tests.DebugType_Tests+Members.get_Item(String s), void Debugger.Tests.DebugType_Tests+Members.set_Item(Int32 i, Char value), void Debugger.Tests.DebugType_Tests+Members..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Char SetterOnlyProp, System.Int32 InstanceInt, System.Int32 StaticInt, System.Int32 AutoProperty, System.Char Item[Int32 i], System.Char Item[String s]}" + GetMembers="{System.Int32 IntLiteral, System.Int32 instanceInt, System.Int32 staticInt, System.Void* voidPtr, void Debugger.Tests.DebugType_Tests+Members.set_SetterOnlyProp(Char value), Int32 Debugger.Tests.DebugType_Tests+Members.get_InstanceInt(), static Int32 Debugger.Tests.DebugType_Tests+Members.get_StaticInt(), Int32 Debugger.Tests.DebugType_Tests+Members.get_AutoProperty(), void Debugger.Tests.DebugType_Tests+Members.set_AutoProperty(Int32 value), Char Debugger.Tests.DebugType_Tests+Members.get_Item(Int32 i), Char Debugger.Tests.DebugType_Tests+Members.get_Item(String s), void Debugger.Tests.DebugType_Tests+Members.set_Item(Int32 i, Char value), void Debugger.Tests.DebugType_Tests+Members..ctor(), Char Debugger.Tests.DebugType_Tests+Members.SetterOnlyProp, Int32 Debugger.Tests.DebugType_Tests+Members.InstanceInt, static Int32 Debugger.Tests.DebugType_Tests+Members.StaticInt, Int32 Debugger.Tests.DebugType_Tests+Members.AutoProperty, Char Debugger.Tests.DebugType_Tests+Members.Item[Int32 i], Char Debugger.Tests.DebugType_Tests+Members.Item[String s], void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{void Debugger.Tests.DebugType_Tests+Members.set_SetterOnlyProp(Char value), Int32 Debugger.Tests.DebugType_Tests+Members.get_InstanceInt(), static Int32 Debugger.Tests.DebugType_Tests+Members.get_StaticInt(), Int32 Debugger.Tests.DebugType_Tests+Members.get_AutoProperty(), void Debugger.Tests.DebugType_Tests+Members.set_AutoProperty(Int32 value), Char Debugger.Tests.DebugType_Tests+Members.get_Item(Int32 i), Char Debugger.Tests.DebugType_Tests+Members.get_Item(String s), void Debugger.Tests.DebugType_Tests+Members.set_Item(Int32 i, Char value), void Debugger.Tests.DebugType_Tests+Members..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Char Debugger.Tests.DebugType_Tests+Members.SetterOnlyProp, Int32 Debugger.Tests.DebugType_Tests+Members.InstanceInt, static Int32 Debugger.Tests.DebugType_Tests+Members.StaticInt, Int32 Debugger.Tests.DebugType_Tests+Members.AutoProperty, Char Debugger.Tests.DebugType_Tests+Members.Item[Int32 i], Char Debugger.Tests.DebugType_Tests+Members.Item[String s]}" IsClass="True" IsNested="True"> null @@ -1573,9 +1581,9 @@ namespace Debugger.Tests { BaseType="System.Object" FullName="Debugger.Tests.DebugType_Tests+Access" GetFields="{System.Int32 publicField}" - GetMembers="{System.Int32 publicField, System.Int32 Debugger.Tests.DebugType_Tests+Access.get_publicProperty(), void Debugger.Tests.DebugType_Tests+Access.publicMethod(), void Debugger.Tests.DebugType_Tests+Access..ctor(), System.Int32 publicProperty, void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetMethods="{System.Int32 Debugger.Tests.DebugType_Tests+Access.get_publicProperty(), void Debugger.Tests.DebugType_Tests+Access.publicMethod(), void Debugger.Tests.DebugType_Tests+Access..ctor(), void System.Object..ctor(), System.String System.Object.ToString(), System.Boolean System.Object.Equals(Object obj), System.Int32 System.Object.GetHashCode(), System.Type System.Object.GetType()}" - GetProperties="{System.Int32 publicProperty}" + GetMembers="{System.Int32 publicField, Int32 Debugger.Tests.DebugType_Tests+Access.get_publicProperty(), void Debugger.Tests.DebugType_Tests+Access.publicMethod(), void Debugger.Tests.DebugType_Tests+Access..ctor(), Int32 Debugger.Tests.DebugType_Tests+Access.publicProperty, void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetMethods="{Int32 Debugger.Tests.DebugType_Tests+Access.get_publicProperty(), void Debugger.Tests.DebugType_Tests+Access.publicMethod(), void Debugger.Tests.DebugType_Tests+Access..ctor(), void System.Object..ctor(), String System.Object.ToString(), Boolean System.Object.Equals(Object obj), Int32 System.Object.GetHashCode(), Type System.Object.GetType()}" + GetProperties="{Int32 Debugger.Tests.DebugType_Tests+Access.publicProperty}" IsClass="True" IsNested="True"> null diff --git a/src/AddIns/Debugger/Debugger.Tests/Tests/ExpressionEvaluator_Tests.cs b/src/AddIns/Debugger/Debugger.Tests/Tests/ExpressionEvaluator_Tests.cs index 86f044db2d..5f40ca7fd8 100644 --- a/src/AddIns/Debugger/Debugger.Tests/Tests/ExpressionEvaluator_Tests.cs +++ b/src/AddIns/Debugger/Debugger.Tests/Tests/ExpressionEvaluator_Tests.cs @@ -441,8 +441,8 @@ namespace Debugger.Tests { myClass.Foo(1) = "derived Foo - int" myClass.Foo("abc") = "derived Foo - string" myClass[1] = More then one applicable overload found: - System.String Item[Double d] - System.String Item[Int64 i] + String Debugger.Tests.ExpressionEvaluator_Tests+DerivedClass.Item[Double d] + String Debugger.Tests.ExpressionEvaluator_Tests+BaseClass.Item[Int64 i] myClass[(long)1] = "base indexer - long" myClass[1.0] = "derived indexer - double" myClass["abc"] = "derived indexer - string"