From f37e95ddd0df7dfd2c95fd732726f5551150d1db Mon Sep 17 00:00:00 2001 From: Patrick Grawehr Date: Sun, 21 Apr 2024 09:20:19 +0200 Subject: [PATCH] Output is now syntactically correct so far --- tools/ArduinoCsCompiler/IlWriter.cs | 12 +- .../NanoGenerator/MethodWrapper.cs | 24 +- .../NanoGenerator/VoidParameterWrapper.cs | 3 +- .../NanoGenerator/VoidTypeWrapper.cs | 14 +- .../samples/BlinkingLedNano/generated.cs | 13980 ++++++++++------ 5 files changed, 8542 insertions(+), 5491 deletions(-) diff --git a/tools/ArduinoCsCompiler/IlWriter.cs b/tools/ArduinoCsCompiler/IlWriter.cs index 5fe27d7afa..9026a2cc02 100644 --- a/tools/ArduinoCsCompiler/IlWriter.cs +++ b/tools/ArduinoCsCompiler/IlWriter.cs @@ -147,10 +147,14 @@ public void Write(string sourceFile, string outFile) // arduinoMethod can still be null, e.g. for implicit ctors. } - var methodWrapped = new MethodWrapper(cls, member, arduinoMethod, _executionSet); - decl.AddChild(new Comment($"{member.Name}, Token {member.Token:X8}", CommentType.Documentation), Roles.Comment); - EntityDeclaration method = typeSystemAstBuilder.ConvertEntity(methodWrapped); - decl.AddChild(method, Roles.TypeMemberRole); + // Assume we don't need to generated implicit methods + if (arduinoMethod != null) + { + var methodWrapped = new MethodWrapper(cls, member, arduinoMethod, _executionSet); + decl.AddChild(new Comment($"{member.Name}, Token {member.Token:X8}", CommentType.Documentation), Roles.Comment); + EntityDeclaration method = typeSystemAstBuilder.ConvertEntity(methodWrapped); + decl.AddChild(method, Roles.TypeMemberRole); + } } } } diff --git a/tools/ArduinoCsCompiler/NanoGenerator/MethodWrapper.cs b/tools/ArduinoCsCompiler/NanoGenerator/MethodWrapper.cs index 679d3cb51c..0d2a971304 100644 --- a/tools/ArduinoCsCompiler/NanoGenerator/MethodWrapper.cs +++ b/tools/ArduinoCsCompiler/NanoGenerator/MethodWrapper.cs @@ -16,11 +16,11 @@ internal class MethodWrapper : IEntity, IMethod { private readonly ClassMember _memberField; private readonly ExecutionSet _executionSet; - private readonly ArduinoMethodDeclaration? _arduinoMethod; + private readonly ArduinoMethodDeclaration _arduinoMethod; private string _name; private IType _declaringType; - public MethodWrapper(ClassDeclaration owner, ClassMember memberField, ArduinoMethodDeclaration? methodDeclaration, ExecutionSet executionSet) + public MethodWrapper(ClassDeclaration owner, ClassMember memberField, ArduinoMethodDeclaration methodDeclaration, ExecutionSet executionSet) { _memberField = memberField; _executionSet = executionSet; @@ -97,7 +97,7 @@ public IMethod Specialize(TypeParameterSubstitution substitution) public IReadOnlyList TypeArguments => new List(); public bool IsExtensionMethod { get; } public bool IsLocalFunction { get; } - public bool IsConstructor => _memberField.Method.IsConstructor; + public bool IsConstructor => _arduinoMethod.Flags.HasFlag(MethodFlags.Ctor); public bool IsDestructor { get; } public bool IsOperator { get; } public bool HasBody => _arduinoMethod != null && _arduinoMethod.HasBody; @@ -131,7 +131,7 @@ public IType ReturnType if (returnType == typeof(void)) { - return new VoidTypeWrapper(SymbolKind.ReturnType, false); + return new VoidTypeWrapper(SymbolKind.ReturnType); } return new ClassWrapper(_executionSet.GetClass(returnType), _executionSet); @@ -141,8 +141,20 @@ public IType ReturnType IType? IEntity.DeclaringType => _declaringType; public IModule? ParentModule { get; } - public Accessibility Accessibility { get; } - public bool IsStatic { get; } + public Accessibility Accessibility => Accessibility.Public; + public bool IsStatic + { + get + { + if (_arduinoMethod == null) + { + return false; + } + + return _arduinoMethod.Flags.HasFlag(MethodFlags.Static); + } + } + public bool IsAbstract { get; } public bool IsSealed { get; } public string FullName { get; } diff --git a/tools/ArduinoCsCompiler/NanoGenerator/VoidParameterWrapper.cs b/tools/ArduinoCsCompiler/NanoGenerator/VoidParameterWrapper.cs index 27e3570034..684c6ad4af 100644 --- a/tools/ArduinoCsCompiler/NanoGenerator/VoidParameterWrapper.cs +++ b/tools/ArduinoCsCompiler/NanoGenerator/VoidParameterWrapper.cs @@ -7,6 +7,7 @@ using System.Text; using System.Threading.Tasks; using ICSharpCode.Decompiler.TypeSystem; +using ICSharpCode.Decompiler.TypeSystem.Implementation; namespace ArduinoCsCompiler.NanoGenerator { @@ -21,7 +22,7 @@ internal class VoidParameterWrapper : IParameter public VoidParameterWrapper(string name) { _name = name; - _voidType = new VoidTypeWrapper(SymbolKind.Parameter, true); + _voidType = new PointerType(new VoidTypeWrapper(SymbolKind.Parameter)); } public SymbolKind SymbolKind => SymbolKind.Parameter; diff --git a/tools/ArduinoCsCompiler/NanoGenerator/VoidTypeWrapper.cs b/tools/ArduinoCsCompiler/NanoGenerator/VoidTypeWrapper.cs index 93bca1c9dc..92abd9fd7a 100644 --- a/tools/ArduinoCsCompiler/NanoGenerator/VoidTypeWrapper.cs +++ b/tools/ArduinoCsCompiler/NanoGenerator/VoidTypeWrapper.cs @@ -11,12 +11,10 @@ namespace ArduinoCsCompiler.NanoGenerator internal class VoidTypeWrapper : IEntity, ITypeDefinition { private readonly string _name = "void"; - private readonly bool _isPointer; - public VoidTypeWrapper(SymbolKind symbolKind, bool isPointer) + public VoidTypeWrapper(SymbolKind symbolKind) { SymbolKind = symbolKind; - _isPointer = isPointer; } public SymbolKind SymbolKind { get; } @@ -115,11 +113,6 @@ public TypeKind Kind { get { - if (_isPointer) - { - return TypeKind.Pointer; - } - return TypeKind.Void; } } @@ -187,11 +180,6 @@ public FullTypeName FullTypeName { get { - if (_isPointer) - { - return new FullTypeName("System.Void*"); - } - return new FullTypeName("System.Void"); } } diff --git a/tools/ArduinoCsCompiler/samples/BlinkingLedNano/generated.cs b/tools/ArduinoCsCompiler/samples/BlinkingLedNano/generated.cs index 0e8465fae3..beeb15709f 100644 --- a/tools/ArduinoCsCompiler/samples/BlinkingLedNano/generated.cs +++ b/tools/ArduinoCsCompiler/samples/BlinkingLedNano/generated.cs @@ -3,20 +3,27 @@ namespace NanoInput ///ArduinoCsCompiler.MiniDebug public class Class_00000036 { - ///Method: public ArduinoCsCompiler.MiniDebug..ctor() - Class_00000036(); } ///ArduinoCsCompiler.ArduinoNativeBoard public class Class_00000039 : NanoInput.Class_00000043, NanoInput.Class_0000003A { - ///Method: public ArduinoCsCompiler.ArduinoNativeBoard..ctor() - Class_00000039(); + ///Method: public ArduinoCsCompiler.ArduinoNativeBoard..ctor(), Token 00000038 + public Class_00000039() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Device.Gpio.GpioController ArduinoCsCompiler.ArduinoNativeBoard.CreateGpioController() - virtual NanoInput.Class_000007A0 CreateGpioController(); + ///Method: public virtual System.Device.Gpio.GpioController ArduinoCsCompiler.ArduinoNativeBoard.CreateGpioController(), Token 00000807 + public virtual NanoInput.Class_000007A0 CreateGpioController() + { + throw new System.NotImplementedException(); + } - ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeBoard.ActivatePinMode(System.Int32 pinNumber, Iot.Device.Board.PinUsage usage) - virtual ? ActivatePinMode(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeBoard.ActivatePinMode(System.Int32 pinNumber, Iot.Device.Board.PinUsage usage), Token 00001C62 + public virtual void ActivatePinMode(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.IDisposable public interface Class_0000003A @@ -46,23 +53,30 @@ public abstract class Class_00000043 : NanoInput.Class_00000045, NanoInput.Class ///Field: System.Collections.Generic.Dictionary Iot.Device.Board.Board._knownUsages public NanoInput.Class_00000043 Field_00000041; - ///Method: protected Iot.Device.Board.Board..ctor() - Class_00000043(); + ///Method: protected Iot.Device.Board.Board..ctor(), Token 00000042 + public Class_00000043() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void Iot.Device.Board.Board.Dispose() - virtual ? Dispose(); + ///Method: public virtual void Iot.Device.Board.Board.Dispose(), Token 00000124 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.MarshalByRefObject public abstract class Class_00000045 { - ///Method: protected System.MarshalByRefObject..ctor() - Class_00000045(); + ///Method: protected System.MarshalByRefObject..ctor(), Token 00000044 + public Class_00000045() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniAppContext public class Class_00000047 { - ///Method: public ArduinoCsCompiler.Runtime.MiniAppContext..ctor() - Class_00000047(); } ///ArduinoCsCompiler.Runtime.MiniBitConverter public class Class_0000004B @@ -70,17 +84,15 @@ public class Class_0000004B ///Field: System.Boolean ArduinoCsCompiler.Runtime.MiniBitConverter.IsLittleEndian public static readonly NanoInput.Class_0000004B Field_00000048; - ///Method: public ArduinoCsCompiler.Runtime.MiniBitConverter..ctor() - Class_0000004B(); - - ///Method: private static ArduinoCsCompiler.Runtime.MiniBitConverter..cctor() - Class_0000004B(); + ///Method: private static ArduinoCsCompiler.Runtime.MiniBitConverter..cctor(), Token 0000004A + static Class_0000004B() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniBitOperations public class Class_0000004D { - ///Method: public ArduinoCsCompiler.Runtime.MiniBitOperations..ctor() - Class_0000004D(); } ///ArduinoCsCompiler.Runtime.MiniBuffer public abstract class Class_0000004E @@ -125,38 +137,41 @@ public class Class_00000062 : NanoInput.Class_00000063, NanoInput.Class_00000064 ///Field: System.Globalization.TextInfo ArduinoCsCompiler.Runtime.MiniCultureInfo.s_textInfo public static NanoInput.Class_00000062 Field_0000005A; - ///Method: public ArduinoCsCompiler.Runtime.MiniCultureInfo..ctor(System.String name) - Class_00000062(); - - ///Method: public ArduinoCsCompiler.Runtime.MiniCultureInfo..ctor(System.String name, System.Boolean useUserOverride) - Class_00000062(); - - ///Method: private ArduinoCsCompiler.Runtime.MiniCultureInfo..ctor(ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData cultureData, System.Boolean isReadOnly) - Class_00000062(NanoInput.Class_000000C7 Arg_0, NanoInput.Class_0000021C Arg_1); - - ///Method: public ArduinoCsCompiler.Runtime.MiniCultureInfo..ctor(System.Int32 culture) - Class_00000062(); - - ///Method: public ArduinoCsCompiler.Runtime.MiniCultureInfo..ctor(System.Int32 culture, System.Boolean useUserOverride) - Class_00000062(); - - ///Method: internal ArduinoCsCompiler.Runtime.MiniCultureInfo..ctor(System.String cultureName, System.String textAndCompareCultureName) - Class_00000062(); - - ///Method: private static ArduinoCsCompiler.Runtime.MiniCultureInfo..cctor() - Class_00000062(); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniCultureInfo.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniCultureInfo.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String ArduinoCsCompiler.Runtime.MiniCultureInfo.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.Object ArduinoCsCompiler.Runtime.MiniCultureInfo.GetFormat(System.Type formatType) - virtual NanoInput.Class_00000001 GetFormat(NanoInput.Class_00000002 Arg_0); + ///Method: private ArduinoCsCompiler.Runtime.MiniCultureInfo..ctor(ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData cultureData, System.Boolean isReadOnly), Token 0000005D + public Class_00000062(NanoInput.Class_000000C7 Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private static ArduinoCsCompiler.Runtime.MiniCultureInfo..cctor(), Token 00000061 + static Class_00000062() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniCultureInfo.Equals(System.Object value), Token 00000851 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniCultureInfo.GetHashCode(), Token 00000853 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String ArduinoCsCompiler.Runtime.MiniCultureInfo.ToString(), Token 00000854 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Object ArduinoCsCompiler.Runtime.MiniCultureInfo.GetFormat(System.Type formatType), Token 000008AC + public virtual NanoInput.Class_00000001 GetFormat(NanoInput.Class_00000002 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IFormatProvider public interface Class_00000063 @@ -169,8 +184,6 @@ public interface Class_00000064 ///ArduinoCsCompiler.Runtime.MiniDebugger public class Class_00000066 { - ///Method: public ArduinoCsCompiler.Runtime.MiniDebugger..ctor() - Class_00000066(); } ///ArduinoCsCompiler.Runtime.MiniEnvironment public abstract class Class_00000067 @@ -179,17 +192,29 @@ public abstract class Class_00000067 ///ArduinoCsCompiler.Runtime.MiniEventSource public class Class_0000006A : NanoInput.Class_0000003A { - ///Method: public ArduinoCsCompiler.Runtime.MiniEventSource..ctor() - Class_0000006A(); - - ///Method: public ArduinoCsCompiler.Runtime.MiniEventSource..ctor(System.Guid g, System.String s) - Class_0000006A(NanoInput.Class_000013CB Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniEventSource.Dispose() - virtual ? Dispose(); - - ///Method: public virtual System.String ArduinoCsCompiler.Runtime.MiniEventSource.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public ArduinoCsCompiler.Runtime.MiniEventSource..ctor(), Token 00000068 + public Class_0000006A() + { + throw new System.NotImplementedException(); + } + + ///Method: public ArduinoCsCompiler.Runtime.MiniEventSource..ctor(System.Guid g, System.String s), Token 00000069 + public Class_0000006A(NanoInput.Class_000013CB Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniEventSource.Dispose(), Token 00000900 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String ArduinoCsCompiler.Runtime.MiniEventSource.ToString(), Token 00000901 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniFileSystem public abstract class Class_0000006B @@ -202,14 +227,10 @@ public abstract class Class_0000006C ///ArduinoCsCompiler.Runtime.MiniGen2GcCallback public class Class_0000006E { - ///Method: public ArduinoCsCompiler.Runtime.MiniGen2GcCallback..ctor() - Class_0000006E(); } ///ArduinoCsCompiler.Runtime.MiniIntrospectionExtensions public class Class_00000070 { - ///Method: public ArduinoCsCompiler.Runtime.MiniIntrospectionExtensions..ctor() - Class_00000070(); } ///ArduinoCsCompiler.Runtime.MiniLowLevelLock public sealed class Class_00000073 : NanoInput.Class_0000003A @@ -217,29 +238,29 @@ public sealed class Class_00000073 : NanoInput.Class_0000003A ///Field: System.Object ArduinoCsCompiler.Runtime.MiniLowLevelLock._lock public NanoInput.Class_00000073 Field_00000071; - ///Method: public ArduinoCsCompiler.Runtime.MiniLowLevelLock..ctor() - Class_00000073(); + ///Method: public ArduinoCsCompiler.Runtime.MiniLowLevelLock..ctor(), Token 00000072 + public Class_00000073() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniLowLevelLock.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniLowLevelLock.Dispose(), Token 00000902 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniMarshal public class Class_00000075 { - ///Method: public ArduinoCsCompiler.Runtime.MiniMarshal..ctor() - Class_00000075(); } ///ArduinoCsCompiler.Runtime.MiniMonitor public class Class_00000077 { - ///Method: public ArduinoCsCompiler.Runtime.MiniMonitor..ctor() - Class_00000077(); } ///ArduinoCsCompiler.Runtime.MiniPathInternal public class Class_00000079 { - ///Method: public ArduinoCsCompiler.Runtime.MiniPathInternal..ctor() - Class_00000079(); } ///ArduinoCsCompiler.Runtime.MiniRegistryKey public sealed class Class_0000007C : NanoInput.Class_0000003A @@ -247,11 +268,17 @@ public sealed class Class_0000007C : NanoInput.Class_0000003A ///Field: System.String ArduinoCsCompiler.Runtime.MiniRegistryKey._name public NanoInput.Class_0000007C Field_0000007A; - ///Method: private ArduinoCsCompiler.Runtime.MiniRegistryKey..ctor(System.String name) - Class_0000007C(NanoInput.Class_00000004 Arg_0); + ///Method: private ArduinoCsCompiler.Runtime.MiniRegistryKey..ctor(System.String name), Token 0000007B + public Class_0000007C(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniRegistryKey.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniRegistryKey.Dispose(), Token 00000903 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniResourceManager public class Class_00000080 @@ -259,11 +286,17 @@ public class Class_00000080 ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniResourceManager.MagicNumber public static readonly NanoInput.Class_00000080 Field_0000007D; - ///Method: public ArduinoCsCompiler.Runtime.MiniResourceManager..ctor(System.Type resourceSource) - Class_00000080(NanoInput.Class_00000002 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniResourceManager..ctor(System.Type resourceSource), Token 0000007E + public Class_00000080(NanoInput.Class_00000002 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private static ArduinoCsCompiler.Runtime.MiniResourceManager..cctor() - Class_00000080(); + ///Method: private static ArduinoCsCompiler.Runtime.MiniResourceManager..cctor(), Token 0000007F + static Class_00000080() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniRuntimeHelpers public abstract class Class_00000081 @@ -275,14 +308,17 @@ public struct Class_00000084 : NanoInput.Class_00000085 ///Field: System.Type ArduinoCsCompiler.Runtime.MiniRuntimeTypeHandle.m_type public NanoInput.Class_00000084 Field_00000082; - ///Method: internal ArduinoCsCompiler.Runtime.MiniRuntimeTypeHandle..ctor(System.Type type) - Class_00000084(); - - ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniRuntimeTypeHandle.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniRuntimeTypeHandle.GetHashCode(), Token 00000904 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniRuntimeTypeHandle.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniRuntimeTypeHandle.Equals(System.Object obj), Token 00000906 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Runtime.Serialization.ISerializable public interface Class_00000085 @@ -291,17 +327,23 @@ public interface Class_00000085 ///System.ValueType public abstract class Class_00000087 { - ///Method: protected System.ValueType..ctor() - Class_00000087(); + ///Method: public virtual System.String System.ValueType.ToString(), Token 0000090D + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.ValueType.ToString() - virtual ? ToString(); + ///Method: public virtual System.Int32 System.ValueType.GetHashCode(), Token 00000905 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.ValueType.GetHashCode() - virtual ? GetHashCode(); - - ///Method: public virtual System.Boolean System.ValueType.Equals(System.Object obj) - virtual ? Equals(); + ///Method: public virtual System.Boolean System.ValueType.Equals(System.Object obj), Token 00000907 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniSpanHelpers public abstract class Class_00000088 @@ -313,11 +355,11 @@ public class Class_0000008C ///Field: System.Exception ArduinoCsCompiler.Runtime.MiniStackTrace._exception public NanoInput.Class_0000008C Field_00000089; - ///Method: public ArduinoCsCompiler.Runtime.MiniStackTrace..ctor(System.Exception e, System.Boolean fNeedsFileInfo) - Class_0000008C(NanoInput.Class_0000001E Arg_0, NanoInput.Class_0000021C Arg_1); - - ///Method: public ArduinoCsCompiler.Runtime.MiniStackTrace..ctor(System.Boolean fNeedsFileInfo) - Class_0000008C(); + ///Method: public ArduinoCsCompiler.Runtime.MiniStackTrace..ctor(System.Exception e, System.Boolean fNeedsFileInfo), Token 0000008A + public Class_0000008C(NanoInput.Class_0000001E Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniType public class Class_00000002 @@ -328,44 +370,52 @@ public class Class_00000002 ///Field: System.Type[] ArduinoCsCompiler.Runtime.MiniType.EmptyTypes public static readonly NanoInput.Class_00000002 Field_0000008E; - ///Method: protected ArduinoCsCompiler.Runtime.MiniType..ctor() - Class_00000002(); + ///Method: private static ArduinoCsCompiler.Runtime.MiniType..cctor(), Token 00000090 + static Class_00000002() + { + throw new System.NotImplementedException(); + } - ///Method: private static ArduinoCsCompiler.Runtime.MiniType..cctor() - Class_00000002(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniType.Equals(System.Object obj), Token 0000090B + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniType.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniType.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniType.GetHashCode(), Token 0000090C + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniUnsafe public class Class_00000092 { - ///Method: public ArduinoCsCompiler.Runtime.MiniUnsafe..ctor() - Class_00000092(); } ///ArduinoCsCompiler.Runtime.MiniValueType public class Class_00000094 { - ///Method: public ArduinoCsCompiler.Runtime.MiniValueType..ctor() - Class_00000094(); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniValueType.Equals(System.Object other) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniValueType.Equals(System.Object other), Token 00000907 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniValueType.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniValueType.GetHashCode(), Token 00000905 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String ArduinoCsCompiler.Runtime.MiniValueType.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String ArduinoCsCompiler.Runtime.MiniValueType.ToString(), Token 0000090D + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniX86Intrinsics public class Class_00000096 { - ///Method: public ArduinoCsCompiler.Runtime.MiniX86Intrinsics..ctor() - Class_00000096(); } ///ArduinoCsCompiler.Runtime.UnitsNet.MiniDuration public struct Class_0000009A @@ -375,9 +425,6 @@ public struct Class_0000009A ///Field: System.Nullable ArduinoCsCompiler.Runtime.UnitsNet.MiniDuration._unit public NanoInput.Class_0000009A Field_00000098; - - ///Method: private ArduinoCsCompiler.Runtime.UnitsNet.MiniDuration..ctor(System.Double value, UnitsNet.Units.DurationUnit unit) - Class_0000009A(); } ///ArduinoCsCompiler.Runtime.UnitsNet.MiniLength public struct Class_0000009E @@ -387,9 +434,6 @@ public struct Class_0000009E ///Field: System.Nullable ArduinoCsCompiler.Runtime.UnitsNet.MiniLength._unit public NanoInput.Class_0000009E Field_0000009C; - - ///Method: private ArduinoCsCompiler.Runtime.UnitsNet.MiniLength..ctor(System.Double value, UnitsNet.Units.LengthUnit unit) - Class_0000009E(); } ///ArduinoCsCompiler.Runtime.UnitsNet.MiniPressure public struct Class_000000A2 @@ -399,18 +443,12 @@ public struct Class_000000A2 ///Field: System.Nullable ArduinoCsCompiler.Runtime.UnitsNet.MiniPressure._unit public NanoInput.Class_000000A2 Field_000000A0; - - ///Method: private ArduinoCsCompiler.Runtime.UnitsNet.MiniPressure..ctor(System.Double value, UnitsNet.Units.PressureUnit unit) - Class_000000A2(); } ///ArduinoCsCompiler.Runtime.UnitsNet.MiniQuantityValue public struct Class_000000A5 { ///Field: System.Double ArduinoCsCompiler.Runtime.UnitsNet.MiniQuantityValue._value public readonly NanoInput.Class_000000A5 Field_000000A3; - - ///Method: private ArduinoCsCompiler.Runtime.UnitsNet.MiniQuantityValue..ctor(System.Double val) - Class_000000A5(); } ///ArduinoCsCompiler.Runtime.UnitsNet.MiniRelativeHumidity public struct Class_000000A9 @@ -420,9 +458,6 @@ public struct Class_000000A9 ///Field: System.Nullable ArduinoCsCompiler.Runtime.UnitsNet.MiniRelativeHumidity._unit public NanoInput.Class_000000A9 Field_000000A7; - - ///Method: private ArduinoCsCompiler.Runtime.UnitsNet.MiniRelativeHumidity..ctor(System.Double value, UnitsNet.Units.RelativeHumidityUnit unit) - Class_000000A9(); } ///ArduinoCsCompiler.Runtime.UnitsNet.MiniTemperature public struct Class_000000AD @@ -432,9 +467,6 @@ public struct Class_000000AD ///Field: System.Nullable ArduinoCsCompiler.Runtime.UnitsNet.MiniTemperature._unit public NanoInput.Class_000000AD Field_000000AB; - - ///Method: private ArduinoCsCompiler.Runtime.UnitsNet.MiniTemperature..ctor(System.Double value, UnitsNet.Units.TemperatureUnit unit) - Class_000000AD(); } ///ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData public class Class_000000C7 @@ -505,14 +537,17 @@ public class Class_000000C7 ///Field: ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData._sInvariant public static NanoInput.Class_000000C7 Field_000000C3; - ///Method: private static ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData..cctor() - Class_000000C7(); - - ///Method: private ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData..ctor() - Class_000000C7(); + ///Method: private static ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData..cctor(), Token 000000C4 + static Class_000000C7() + { + throw new System.NotImplementedException(); + } - ///Method: public ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData..ctor(System.Boolean isInvariant) - Class_000000C7(NanoInput.Class_0000021C Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCultureData..ctor(System.Boolean isInvariant), Token 000000C6 + public Class_000000C7(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfo public struct Class_000000CA @@ -520,8 +555,11 @@ public struct Class_000000CA ///Field: ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfoData ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfo._data public readonly NanoInput.Class_000000CA Field_000000C8; - ///Method: public ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfo..ctor(ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfoData obj) - Class_000000CA(NanoInput.Class_000011A3 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfo..ctor(ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfoData obj), Token 000000C9 + public Class_000000CA(NanoInput.Class_000011A3 Arg_0) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniInterop+Kernel32 public abstract class Class_000000CB @@ -530,26 +568,25 @@ public abstract class Class_000000CB ///ArduinoCsCompiler.Runtime.MiniInterop+Ole32 public class Class_000000CD { - ///Method: public ArduinoCsCompiler.Runtime.MiniInterop+Ole32..ctor() - Class_000000CD(); } ///ArduinoCsCompiler.Runtime.MiniX86Intrinsics+MiniX64 public class Class_000000CF { - ///Method: public ArduinoCsCompiler.Runtime.MiniX86Intrinsics+MiniX64..ctor() - Class_000000CF(); } ///System.Collections.Generic.ObjectEqualityComparer public sealed class Class_04000001 : NanoInput.Class_06000001, NanoInput.Class_000000D1, NanoInput.Class_05000001 { - ///Method: public System.Collections.Generic.ObjectEqualityComparer..ctor() - Class_04000001(); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj), Token 00000A1D + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode(), Token 00000A1E + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.IEqualityComparer public interface Class_000000D1 @@ -565,11 +602,11 @@ public abstract class Class_06000001 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06000001 Field_000000D2; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06000001(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06000001(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 000000D4 + static Class_06000001() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_07000001 @@ -578,20 +615,35 @@ public interface Class_07000001 ///System.Collections.Generic.GenericEqualityComparer public sealed class Class_08000004 : NanoInput.Class_06000004, NanoInput.Class_000000D1, NanoInput.Class_05000004 { - ///Method: public System.Collections.Generic.GenericEqualityComparer..ctor() - Class_08000004(); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.String x, System.String y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(System.String obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0); + ///Method: public System.Collections.Generic.GenericEqualityComparer..ctor(), Token 000000D5 + public Class_08000004() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj), Token 000009FB + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(), Token 000009FC + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.String x, System.String y), Token 00001C77 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(System.String obj), Token 00001C78 + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_05000004 @@ -603,11 +655,17 @@ public abstract class Class_06000004 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06000004 Field_000000D6; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06000004(); + ///Method: protected System.Collections.Generic.EqualityComparer..ctor(), Token 000000D7 + public Class_06000004() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06000004(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 000000D8 + static Class_06000004() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_07000004 @@ -616,20 +674,29 @@ public interface Class_07000004 ///System.Collections.Generic.GenericEqualityComparer public sealed class Class_08000014 : NanoInput.Class_06000014, NanoInput.Class_000000D1, NanoInput.Class_05000014 { - ///Method: public System.Collections.Generic.GenericEqualityComparer..ctor() - Class_08000014(); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Int32 x, System.Int32 y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(System.Int32 obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Int32 x, System.Int32 y), Token 000009F6 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(System.Int32 obj), Token 000009F7 + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj), Token 000009F9 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(), Token 000009FA + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_05000014 @@ -641,11 +708,11 @@ public abstract class Class_06000014 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06000014 Field_000000DA; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06000014(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06000014(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 000000DC + static Class_06000014() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_07000014 @@ -654,14 +721,17 @@ public interface Class_07000014 ///System.Collections.Generic.GenericComparer public sealed class Class_09000014 : NanoInput.Class_000000DE, NanoInput.Class_0A000014 { - ///Method: public System.Collections.Generic.GenericComparer..ctor() - Class_09000014(); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj), Token 000009F2 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode(), Token 000009F3 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.IComparer public interface Class_000000DE @@ -678,14 +748,17 @@ public interface Class_FF0000DF ///System.Collections.Generic.GenericComparer public sealed class Class_09000004 : NanoInput.Class_0B000004, NanoInput.Class_000000DE, NanoInput.Class_0A000004 { - ///Method: public System.Collections.Generic.GenericComparer..ctor() - Class_09000004(); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj), Token 000009F4 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode(), Token 000009F5 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IComparer public interface Class_0A000004 @@ -697,11 +770,11 @@ public abstract class Class_0B000004 : NanoInput.Class_000000DE, NanoInput.Class ///Field: System.Collections.Generic.Comparer System.Collections.Generic.Comparer.k__BackingField public static readonly NanoInput.Class_0B000004 Field_000000E1; - ///Method: protected System.Collections.Generic.Comparer..ctor() - Class_0B000004(); - - ///Method: private static System.Collections.Generic.Comparer..cctor() - Class_0B000004(); + ///Method: private static System.Collections.Generic.Comparer..cctor(), Token 000000E3 + static Class_0B000004() + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000004 @@ -710,209 +783,398 @@ public interface Class_0C000004 ///System.Collections.Generic.ObjectComparer public sealed class Class_0D000004 : NanoInput.Class_0B000004, NanoInput.Class_000000DE, NanoInput.Class_0A000004 { - ///Method: public System.Collections.Generic.ObjectComparer..ctor() - Class_0D000004(); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectComparer.Equals(System.Object obj), Token 00000A12 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectComparer.GetHashCode(), Token 00000A13 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Array public abstract class Class_00000009 : NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA { - ///Method: System.Array..ctor() - Class_00000009(); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.String[] array) - NanoInput.Class_2F000004 GetEnumerator(NanoInput.Class_00000004 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Object[] array) - NanoInput.Class_2F000001 GetEnumerator(NanoInput.Class_00000001 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Char[] array) - NanoInput.Class_2F000131 GetEnumerator(NanoInput.Class_00000131 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Byte[] array) - NanoInput.Class_2F000013 GetEnumerator(NanoInput.Class_00000013 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Int32[] array) - NanoInput.Class_2F000014 GetEnumerator(NanoInput.Class_00000014 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator>+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Collections.Generic.List`1[[Iot.Device.Board.Board+PinReservation, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF000702 GetEnumerator(NanoInput.Class_FF000354 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Iot.Device.Board.I2cBusManager, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array) - NanoInput.Class_FF000726 GetEnumerator(NanoInput.Class_FF00036C Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Iot.Device.Board.PinUsage, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array) - NanoInput.Class_FF000742 GetEnumerator(NanoInput.Class_FF00037A Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.UInt16[] array) - NanoInput.Class_2F0002C3 GetEnumerator(NanoInput.Class_000002C3 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator>+Node> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>+Node>(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Nullable`1[[System.Device.Gpio.PinValue, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF0007B7 GetEnumerator(NanoInput.Class_FF000470 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Node> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Node>(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Device.Gpio.GpioPin, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]][] array) - NanoInput.Class_FF0007C9 GetEnumerator(NanoInput.Class_FF00048B Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(Iot.Device.Board.IDeviceManager[] array) - NanoInput.Class_2F0004AD GetEnumerator(NanoInput.Class_000004AD Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[ArduinoCsCompiler.ArduinoNativeGpioDriver+CallbackContainer, ArduinoCsCompiler, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array) - NanoInput.Class_FF000835 GetEnumerator(NanoInput.Class_FF000810 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(Iot.Device.Board.Board+PinReservation[] array) - NanoInput.Class_2F000355 GetEnumerator(NanoInput.Class_00000355 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.HashSet`1+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF000973 GetEnumerator(NanoInput.Class_41000014 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Text.CodePageDataItem[] array) - NanoInput.Class_2F000CCA GetEnumerator(NanoInput.Class_00000CCA Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Type[] array) - NanoInput.Class_2F000002 GetEnumerator(NanoInput.Class_00000002 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(ArduinoCsCompiler.Runtime.CalendarId[] array) - NanoInput.Class_2F000EC5 GetEnumerator(NanoInput.Class_00000014 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+PerCoreLockedStacks> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+PerCoreLockedStacks>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF000F68 GetEnumerator(NanoInput.Class_4B000131 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF000F65 GetEnumerator(NanoInput.Class_FF000F47 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Double[] array) - NanoInput.Class_2F000C2B GetEnumerator(NanoInput.Class_00000C2B Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.SByte[] array) - NanoInput.Class_2F000C29 GetEnumerator(NanoInput.Class_00000C29 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Boolean[] array) - NanoInput.Class_2F00021C GetEnumerator(NanoInput.Class_0000021C Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+PerCoreLockedStacks> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+PerCoreLockedStacks>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF000FE3 GetEnumerator(NanoInput.Class_4B000013 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF000FE0 GetEnumerator(NanoInput.Class_FF000FC2 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.UInt16[][] array) - NanoInput.Class_2F000438 GetEnumerator(NanoInput.Class_00000438 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Single[] array) - NanoInput.Class_2F000C2A GetEnumerator(NanoInput.Class_00000C2A Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.UInt32[] array) - NanoInput.Class_2F000015 GetEnumerator(NanoInput.Class_00000015 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Collections.Hashtable+bucket[] array) - NanoInput.Class_2F001025 GetEnumerator(NanoInput.Class_00001025 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>(System.Threading.Tasks.Task`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF00107C GetEnumerator(NanoInput.Class_51000014 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+ThreadLocalArray> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+ThreadLocalArray>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001195 GetEnumerator(NanoInput.Class_53000013 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+LockedStack> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+LockedStack>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF0011A9 GetEnumerator(NanoInput.Class_54000013 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Byte[][] array) - NanoInput.Class_2F00027D GetEnumerator(NanoInput.Class_0000027D Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+ThreadLocalArray> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+ThreadLocalArray>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF0011DC GetEnumerator(NanoInput.Class_53000131 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+LockedStack> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+LockedStack>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF0011E7 GetEnumerator(NanoInput.Class_54000131 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Char[][] array) - NanoInput.Class_2F0001D4 GetEnumerator(NanoInput.Class_000001D4 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Int16[] array) - NanoInput.Class_2F000402 GetEnumerator(NanoInput.Class_00000402 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.UInt64[] array) - NanoInput.Class_2F000017 GetEnumerator(NanoInput.Class_00000017 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF0012EB GetEnumerator(NanoInput.Class_FF000FD3 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF0012F8 GetEnumerator(NanoInput.Class_FF000F58 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Exception[] array) - NanoInput.Class_2F00001E GetEnumerator(NanoInput.Class_0000001E Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.TimerQueue[] array) - NanoInput.Class_2F001467 GetEnumerator(NanoInput.Class_00001467 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.TimeZoneInfo+AdjustmentRule[] array) - NanoInput.Class_2F001655 GetEnumerator(NanoInput.Class_00001655 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.TimeZoneInfo, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001862 GetEnumerator(NanoInput.Class_FF001638 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.TimeZoneInfo[] array) - NanoInput.Class_2F00162E GetEnumerator(NanoInput.Class_0000162E Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+PerCoreLockedStacks> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+PerCoreLockedStacks>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF0018BF GetEnumerator(NanoInput.Class_4B000014 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF0018BC GetEnumerator(NanoInput.Class_FF00189E Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+ThreadLocalArray> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+ThreadLocalArray>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001906 GetEnumerator(NanoInput.Class_53000014 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+LockedStack> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+LockedStack>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001911 GetEnumerator(NanoInput.Class_54000014 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Int32[][] array) - NanoInput.Class_2F0009D7 GetEnumerator(NanoInput.Class_000009D7 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001921 GetEnumerator(NanoInput.Class_FF0018AF Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Slot> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Slot>(System.Collections.Concurrent.ConcurrentQueueSegment`1+Slot[[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001BBB GetEnumerator(NanoInput.Class_5B000001 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.IntPtr[] array) - NanoInput.Class_2F0005BD GetEnumerator(NanoInput.Class_000005BD Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.Tasks.Task[] array) - NanoInput.Class_2F000628 GetEnumerator(NanoInput.Class_00000628 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Runtime.ExceptionServices.ExceptionDispatchInfo[] array) - NanoInput.Class_2F001488 GetEnumerator(NanoInput.Class_00001488 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Threading.Tasks.Task, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001D33 GetEnumerator(NanoInput.Class_FF001B30 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Slot> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Slot>(System.Collections.Concurrent.ConcurrentQueueSegment`1+Slot[[System.Threading.IThreadPoolWorkItem, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001D6A GetEnumerator(NanoInput.Class_5B00145C Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.ThreadPoolWorkQueue+WorkStealingQueue[] array) - NanoInput.Class_2F001BA9 GetEnumerator(NanoInput.Class_00001BA9 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNodeFinalizationHelper[] array) - NanoInput.Class_2F001DF3 GetEnumerator(NanoInput.Class_00001DF3 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.HashSet`1+Entry[[System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001E81 GetEnumerator(NanoInput.Class_41001D97 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.PortableThreadPool+HillClimbing+LogEntry[] array) - NanoInput.Class_2F001A9E GetEnumerator(NanoInput.Class_00001A9E Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Threading.Tasks.TaskScheduler, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - NanoInput.Class_FF001EE5 GetEnumerator(NanoInput.Class_FF001EC6 Arg_0); - - ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Decimal+DecCalc+PowerOvfl[] array) - NanoInput.Class_2F001F96 GetEnumerator(NanoInput.Class_00001F96 Arg_0); + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.String[] array), Token 000006DC + public static NanoInput.Class_2F000004 GetEnumerator(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Object[] array), Token 00000596 + public static NanoInput.Class_2F000001 GetEnumerator(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Char[] array), Token 00000631 + public static NanoInput.Class_2F000131 GetEnumerator(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Byte[] array), Token 0000064B + public static NanoInput.Class_2F000013 GetEnumerator(NanoInput.Class_00000013 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Int32[] array), Token 000006E0 + public static NanoInput.Class_2F000014 GetEnumerator(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator>+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Collections.Generic.List`1[[Iot.Device.Board.Board+PinReservation, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000700 + public static NanoInput.Class_FF000702 GetEnumerator(NanoInput.Class_FF000354 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Iot.Device.Board.I2cBusManager, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array), Token 00000724 + public static NanoInput.Class_FF000726 GetEnumerator(NanoInput.Class_FF00036C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Iot.Device.Board.PinUsage, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array), Token 00000740 + public static NanoInput.Class_FF000742 GetEnumerator(NanoInput.Class_FF00037A Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.UInt16[] array), Token 0000078D + public static NanoInput.Class_2F0002C3 GetEnumerator(NanoInput.Class_000002C3 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator>+Node> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>+Node>(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Nullable`1[[System.Device.Gpio.PinValue, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000007B5 + public static NanoInput.Class_FF0007B7 GetEnumerator(NanoInput.Class_FF000470 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Node> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Node>(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Device.Gpio.GpioPin, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]][] array), Token 000007C7 + public static NanoInput.Class_FF0007C9 GetEnumerator(NanoInput.Class_FF00048B Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(Iot.Device.Board.IDeviceManager[] array), Token 000007E8 + public static NanoInput.Class_2F0004AD GetEnumerator(NanoInput.Class_000004AD Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[ArduinoCsCompiler.ArduinoNativeGpioDriver+CallbackContainer, ArduinoCsCompiler, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array), Token 00000833 + public static NanoInput.Class_FF000835 GetEnumerator(NanoInput.Class_FF000810 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(Iot.Device.Board.Board+PinReservation[] array), Token 0000096B + public static NanoInput.Class_2F000355 GetEnumerator(NanoInput.Class_00000355 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.HashSet`1+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000971 + public static NanoInput.Class_FF000973 GetEnumerator(NanoInput.Class_41000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Text.CodePageDataItem[] array), Token 00000CE9 + public static NanoInput.Class_2F000CCA GetEnumerator(NanoInput.Class_00000CCA Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Type[] array), Token 00000EC4 + public static NanoInput.Class_2F000002 GetEnumerator(NanoInput.Class_00000002 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(ArduinoCsCompiler.Runtime.CalendarId[] array), Token 00000EE1 + public static NanoInput.Class_2F000EC5 GetEnumerator(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+PerCoreLockedStacks> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+PerCoreLockedStacks>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000F66 + public static NanoInput.Class_FF000F68 GetEnumerator(NanoInput.Class_4B000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000F63 + public static NanoInput.Class_FF000F65 GetEnumerator(NanoInput.Class_FF000F47 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Double[] array), Token 00000F6C + public static NanoInput.Class_2F000C2B GetEnumerator(NanoInput.Class_00000C2B Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.SByte[] array), Token 00000F74 + public static NanoInput.Class_2F000C29 GetEnumerator(NanoInput.Class_00000C29 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Boolean[] array), Token 00000F75 + public static NanoInput.Class_2F00021C GetEnumerator(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+PerCoreLockedStacks> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+PerCoreLockedStacks>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000FE1 + public static NanoInput.Class_FF000FE3 GetEnumerator(NanoInput.Class_4B000013 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000FDE + public static NanoInput.Class_FF000FE0 GetEnumerator(NanoInput.Class_FF000FC2 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.UInt16[][] array), Token 00001013 + public static NanoInput.Class_2F000438 GetEnumerator(NanoInput.Class_00000438 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Single[] array), Token 00001019 + public static NanoInput.Class_2F000C2A GetEnumerator(NanoInput.Class_00000C2A Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.UInt32[] array), Token 0000102F + public static NanoInput.Class_2F000015 GetEnumerator(NanoInput.Class_00000015 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Collections.Hashtable+bucket[] array), Token 00001046 + public static NanoInput.Class_2F001025 GetEnumerator(NanoInput.Class_00001025 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>(System.Threading.Tasks.Task`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 0000107A + public static NanoInput.Class_FF00107C GetEnumerator(NanoInput.Class_51000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+ThreadLocalArray> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+ThreadLocalArray>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001193 + public static NanoInput.Class_FF001195 GetEnumerator(NanoInput.Class_53000013 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+LockedStack> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+LockedStack>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000011A7 + public static NanoInput.Class_FF0011A9 GetEnumerator(NanoInput.Class_54000013 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Byte[][] array), Token 000011AA + public static NanoInput.Class_2F00027D GetEnumerator(NanoInput.Class_0000027D Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+ThreadLocalArray> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+ThreadLocalArray>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000011DA + public static NanoInput.Class_FF0011DC GetEnumerator(NanoInput.Class_53000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+LockedStack> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+LockedStack>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000011E5 + public static NanoInput.Class_FF0011E7 GetEnumerator(NanoInput.Class_54000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Char[][] array), Token 000011E8 + public static NanoInput.Class_2F0001D4 GetEnumerator(NanoInput.Class_000001D4 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Int16[] array), Token 000013D4 + public static NanoInput.Class_2F000402 GetEnumerator(NanoInput.Class_00000402 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.UInt64[] array), Token 000013D5 + public static NanoInput.Class_2F000017 GetEnumerator(NanoInput.Class_00000017 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000013D9 + public static NanoInput.Class_FF0012EB GetEnumerator(NanoInput.Class_FF000FD3 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000013DE + public static NanoInput.Class_FF0012F8 GetEnumerator(NanoInput.Class_FF000F58 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Exception[] array), Token 0000148D + public static NanoInput.Class_2F00001E GetEnumerator(NanoInput.Class_0000001E Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.TimerQueue[] array), Token 000014AF + public static NanoInput.Class_2F001467 GetEnumerator(NanoInput.Class_00001467 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.TimeZoneInfo+AdjustmentRule[] array), Token 00001845 + public static NanoInput.Class_2F001655 GetEnumerator(NanoInput.Class_00001655 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.TimeZoneInfo, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001860 + public static NanoInput.Class_FF001862 GetEnumerator(NanoInput.Class_FF001638 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.TimeZoneInfo[] array), Token 00001866 + public static NanoInput.Class_2F00162E GetEnumerator(NanoInput.Class_0000162E Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+PerCoreLockedStacks> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+PerCoreLockedStacks>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000018BD + public static NanoInput.Class_FF0018BF GetEnumerator(NanoInput.Class_4B000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000018BA + public static NanoInput.Class_FF0018BC GetEnumerator(NanoInput.Class_FF00189E Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+ThreadLocalArray> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+ThreadLocalArray>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001904 + public static NanoInput.Class_FF001906 GetEnumerator(NanoInput.Class_53000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+LockedStack> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+LockedStack>(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 0000190F + public static NanoInput.Class_FF001911 GetEnumerator(NanoInput.Class_54000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Int32[][] array), Token 00001912 + public static NanoInput.Class_2F0009D7 GetEnumerator(NanoInput.Class_000009D7 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator>(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 0000196F + public static NanoInput.Class_FF001921 GetEnumerator(NanoInput.Class_FF0018AF Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Slot> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Slot>(System.Collections.Concurrent.ConcurrentQueueSegment`1+Slot[[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001BB9 + public static NanoInput.Class_FF001BBB GetEnumerator(NanoInput.Class_5B000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.IntPtr[] array), Token 00001C00 + public static NanoInput.Class_2F0005BD GetEnumerator(NanoInput.Class_000005BD Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.Tasks.Task[] array), Token 00001C1A + public static NanoInput.Class_2F000628 GetEnumerator(NanoInput.Class_00000628 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Runtime.ExceptionServices.ExceptionDispatchInfo[] array), Token 00001C23 + public static NanoInput.Class_2F001488 GetEnumerator(NanoInput.Class_00001488 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Threading.Tasks.Task, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001D31 + public static NanoInput.Class_FF001D33 GetEnumerator(NanoInput.Class_FF001B30 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Slot> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Slot>(System.Collections.Concurrent.ConcurrentQueueSegment`1+Slot[[System.Threading.IThreadPoolWorkItem, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001D68 + public static NanoInput.Class_FF001D6A GetEnumerator(NanoInput.Class_5B00145C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.ThreadPoolWorkQueue+WorkStealingQueue[] array), Token 00001E79 + public static NanoInput.Class_2F001BA9 GetEnumerator(NanoInput.Class_00001BA9 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNodeFinalizationHelper[] array), Token 00001E7E + public static NanoInput.Class_2F001DF3 GetEnumerator(NanoInput.Class_00001DF3 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Collections.Generic.HashSet`1+Entry[[System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001E7F + public static NanoInput.Class_FF001E81 GetEnumerator(NanoInput.Class_41001D97 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Threading.PortableThreadPool+HillClimbing+LogEntry[] array), Token 00001EB1 + public static NanoInput.Class_2F001A9E GetEnumerator(NanoInput.Class_00001A9E Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator+Entry> ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator+Entry>(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Threading.Tasks.TaskScheduler, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001EE3 + public static NanoInput.Class_FF001EE5 GetEnumerator(NanoInput.Class_FF001EC6 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public static System.Collections.Generic.IEnumerator ArduinoCsCompiler.Runtime.MiniArray.GetEnumerator(System.Decimal+DecCalc+PowerOvfl[] array), Token 00001F9D + public static NanoInput.Class_2F001F96 GetEnumerator(NanoInput.Class_00001F96 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.IList public interface Class_000000E6 : NanoInput.Class_000000E7, NanoInput.Class_000000E8 @@ -986,65 +1248,51 @@ public class Class_0000001E : NanoInput.Class_00000085 ///Field: System.Int32 System.Exception._HResult public NanoInput.Class_0000001E Field_000000F9; - ///Method: public System.Exception..ctor() - Class_0000001E(); - - ///Method: public System.Exception..ctor(System.String message) - Class_0000001E(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.Exception..ctor(System.String message, System.Exception innerException) - Class_0000001E(NanoInput.Class_00000004 Arg_0, NanoInput.Class_0000001E Arg_1); - - ///Method: protected System.Exception..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_0000001E(); - - ///Method: public virtual System.String System.Exception.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Exception..ctor(), Token 000000FA + public Class_0000001E() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Exception..ctor(System.String message), Token 000000FB + public Class_0000001E(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Exception..ctor(System.String message, System.Exception innerException), Token 000000FC + public Class_0000001E(NanoInput.Class_00000004 Arg_0, NanoInput.Class_0000001E Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Exception.ToString(), Token 00000A64 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.DivideByZeroException public class Class_00000021 : NanoInput.Class_0000002B, NanoInput.Class_00000085 { - ///Method: public System.DivideByZeroException..ctor() - Class_00000021(); - - ///Method: public System.DivideByZeroException..ctor(System.String message) - Class_00000021(); - - ///Method: public System.DivideByZeroException..ctor(System.String message, System.Exception innerException) - Class_00000021(); - - ///Method: protected System.DivideByZeroException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000021(); } ///System.ArithmeticException public class Class_0000002B : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.ArithmeticException..ctor() - Class_0000002B(); - - ///Method: public System.ArithmeticException..ctor(System.String message) - Class_0000002B(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.ArithmeticException..ctor(System.String message, System.Exception innerException) - Class_0000002B(); - - ///Method: protected System.ArithmeticException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_0000002B(); + ///Method: public System.ArithmeticException..ctor(System.String message), Token 00000103 + public Class_0000002B(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.SystemException public class Class_0000010A : NanoInput.Class_0000001E, NanoInput.Class_00000085 { - ///Method: public System.SystemException..ctor() - Class_0000010A(); - - ///Method: public System.SystemException..ctor(System.String message) - Class_0000010A(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.SystemException..ctor(System.String message, System.Exception innerException) - Class_0000010A(); - - ///Method: protected System.SystemException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_0000010A(); + ///Method: public System.SystemException..ctor(System.String message), Token 00000107 + public Class_0000010A(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///BlinkingLed.Program public class Class_00000111 @@ -1055,8 +1303,11 @@ public class Class_00000111 ///Field: System.Device.Gpio.GpioController BlinkingLed.Program._gpioController public NanoInput.Class_00000111 Field_0000010F; - ///Method: private BlinkingLed.Program..ctor(Iot.Device.Arduino.ArduinoBoard board) - Class_00000111(NanoInput.Class_00000039 Arg_0); + ///Method: private BlinkingLed.Program..ctor(Iot.Device.Arduino.ArduinoBoard board), Token 00000110 + public Class_00000111(NanoInput.Class_00000039 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.String public sealed class Class_00000004 : NanoInput.Class_00000130, NanoInput.Class_000000E8, NanoInput.Class_01000131, NanoInput.Class_0C000004, NanoInput.Class_07000004, NanoInput.Class_00000064 @@ -1070,44 +1321,47 @@ public sealed class Class_00000004 : NanoInput.Class_00000130, NanoInput.Class_0 ///Field: System.Char System.String._firstChar public NanoInput.Class_00000004 Field_00000126; - ///Method: public System.String..ctor(System.Char[] value) - Class_00000004(); - - ///Method: public System.String..ctor(System.Char[] value, System.Int32 startIndex, System.Int32 length) - Class_00000004(); - - ///Method: public System.String..ctor(System.Char* value) - Class_00000004(); - - ///Method: public System.String..ctor(System.Char* value, System.Int32 startIndex, System.Int32 length) - Class_00000004(); - - ///Method: public System.String..ctor(System.SByte* value) - Class_00000004(); - - ///Method: public System.String..ctor(System.SByte* value, System.Int32 startIndex, System.Int32 length) - Class_00000004(); - - ///Method: public System.String..ctor(System.SByte* value, System.Int32 startIndex, System.Int32 length, System.Text.Encoding enc) - Class_00000004(); - - ///Method: public System.String..ctor(System.Char c, System.Int32 count) - Class_00000004(); - - ///Method: public System.String..ctor(System.ReadOnlySpan value) - Class_00000004(); - - ///Method: public virtual System.Boolean System.String.Equals(System.Object obj) - virtual ? Equals(); - - ///Method: public virtual System.Int32 System.String.GetHashCode() - virtual ? GetHashCode(); - - ///Method: public virtual System.String System.String.ToString() - virtual ? ToString(); - - ///Method: public virtual System.Boolean System.String.Equals(System.String value) - virtual ? Equals(); + ///Method: public System.String..ctor(System.Char* value), Token 00000129 + public Class_00000004(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.String..ctor(System.Char* value, System.Int32 startIndex, System.Int32 length), Token 0000012A + public Class_00000004(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.String..ctor(System.ReadOnlySpan value), Token 0000012F + public Class_00000004(NanoInput.Class_0E000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.String.Equals(System.Object obj), Token 00000908 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.String.GetHashCode(), Token 00000909 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.String.ToString(), Token 0000090A + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.String.Equals(System.String value), Token 00000850 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_00000130 @@ -1156,38 +1410,47 @@ public class Class_00000145 ///Field: System.Net.IPAddress System.Net.IPAddress.s_loopbackMappedToIPv6 public static readonly NanoInput.Class_00000145 Field_0000013C; - ///Method: public System.Net.IPAddress..ctor(System.Int64 newAddress) - Class_00000145(NanoInput.Class_00000016 Arg_0); - - ///Method: public System.Net.IPAddress..ctor(System.Byte[] address, System.Int64 scopeid) - Class_00000145(); - - ///Method: public System.Net.IPAddress..ctor(System.ReadOnlySpan address, System.Int64 scopeid) - Class_00000145(NanoInput.Class_0E000013 Arg_0, NanoInput.Class_00000016 Arg_1); - - ///Method: internal System.Net.IPAddress..ctor(System.ReadOnlySpan numbers, System.UInt32 scopeid) - Class_00000145(); - - ///Method: private System.Net.IPAddress..ctor(System.UInt16[] numbers, System.UInt32 scopeid) - Class_00000145(); - - ///Method: public System.Net.IPAddress..ctor(System.Byte[] address) - Class_00000145(); - - ///Method: public System.Net.IPAddress..ctor(System.ReadOnlySpan address) - Class_00000145(NanoInput.Class_0E000013 Arg_0); - - ///Method: private static System.Net.IPAddress..cctor() - Class_00000145(); - - ///Method: public virtual System.String System.Net.IPAddress.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.Boolean System.Net.IPAddress.Equals(System.Object comparand) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Net.IPAddress.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public System.Net.IPAddress..ctor(System.Int64 newAddress), Token 0000013D + public Class_00000145(NanoInput.Class_00000016 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Net.IPAddress..ctor(System.ReadOnlySpan address, System.Int64 scopeid), Token 0000013F + public Class_00000145(NanoInput.Class_0E000013 Arg_0, NanoInput.Class_00000016 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Net.IPAddress..ctor(System.ReadOnlySpan address), Token 00000143 + public Class_00000145(NanoInput.Class_0E000013 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Net.IPAddress..cctor(), Token 00000144 + static Class_00000145() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Net.IPAddress.ToString(), Token 00000B0F + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Net.IPAddress.Equals(System.Object comparand), Token 00000B63 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Net.IPAddress.GetHashCode(), Token 00000B78 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Console public abstract class Class_00000551 @@ -1234,8 +1497,11 @@ public abstract class Class_00000551 ///Field: System.Runtime.CompilerServices.StrongBox System.Console._isStdErrRedirected public static NanoInput.Class_00000551 Field_0000054F; - ///Method: private static System.Console..cctor() - Class_00000551(); + ///Method: private static System.Console..cctor(), Token 00000550 + static Class_00000551() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Volatile+VolatileObject public struct Class_00000552 @@ -1258,8 +1524,11 @@ public abstract class Class_00000558 ///Field: System.Byte System.ConsolePal._defaultColors public static NanoInput.Class_00000558 Field_00000556; - ///Method: private static System.ConsolePal..cctor() - Class_00000558(); + ///Method: private static System.ConsolePal..cctor(), Token 00000557 + static Class_00000558() + { + throw new System.NotImplementedException(); + } } ///System.Int32 public struct Class_00000014 : NanoInput.Class_00000130, NanoInput.Class_000001F5, NanoInput.Class_000001F8, NanoInput.Class_0C000014, NanoInput.Class_07000014 @@ -1267,23 +1536,41 @@ public struct Class_00000014 : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.Int32 System.Int32.m_value public readonly NanoInput.Class_00000014 Field_00000559; - ///Method: public virtual System.Boolean System.Int32.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Boolean System.Int32.Equals(System.Int32 obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Int32 System.Int32.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Int32.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Int32.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.Int32.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: public virtual System.Boolean System.Int32.Equals(System.Object obj), Token 00000A80 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Int32.Equals(System.Int32 obj), Token 00000A81 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Int32.GetHashCode(), Token 00000A82 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Int32.ToString(), Token 00000A83 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Int32.ToString(System.String format, System.IFormatProvider provider), Token 00000A84 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Int32.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00000A85 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.ISpanFormattable public interface Class_000001F5 : NanoInput.Class_000001F8 @@ -1318,32 +1605,41 @@ public abstract class Class_0000020F : NanoInput.Class_00000064 ///Field: System.Text.CodePageDataItem System.Text.Encoding._dataItem public NanoInput.Class_0000020F Field_00000567; - ///Method: protected System.Text.Encoding..ctor(System.Int32 codePage) - Class_0000020F(NanoInput.Class_00000014 Arg_0); - - ///Method: protected System.Text.Encoding..ctor() - Class_0000020F(); - - ///Method: protected System.Text.Encoding..ctor(System.Int32 codePage, System.Text.EncoderFallback encoderFallback, System.Text.DecoderFallback decoderFallback) - Class_0000020F(); - - ///Method: private static System.Text.Encoding..cctor() - Class_0000020F(); - - ///Method: public virtual System.Boolean System.Text.Encoding.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.Encoding.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: protected System.Text.Encoding..ctor(System.Int32 codePage), Token 00000203 + public Class_0000020F(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected System.Text.Encoding..ctor(), Token 0000023C + public Class_0000020F() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.Encoding..cctor(), Token 00000569 + static Class_0000020F() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.Encoding.Equals(System.Object value), Token 00000BC0 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Encoding.GetHashCode(), Token 00000BC1 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Text.EncodingProvider public abstract class Class_0000056B { ///Field: System.Text.EncodingProvider[] System.Text.EncodingProvider.s_providers public static NanoInput.Class_0000056B Field_0000017A; - - ///Method: public System.Text.EncodingProvider..ctor() - Class_0000056B(); } ///System.LocalAppContextSwitches public abstract class Class_00000572 @@ -1381,32 +1677,47 @@ public class Class_00000574 : NanoInput.Class_00000064, NanoInput.Class_00000130 ///Field: System.String ArduinoCsCompiler.Runtime.MiniString.Empty public static NanoInput.Class_00000574 Field_00000113; - ///Method: public ArduinoCsCompiler.Runtime.MiniString..ctor(System.ReadOnlySpan value) - Class_00000574(NanoInput.Class_0E000131 Arg_0); - - ///Method: public ArduinoCsCompiler.Runtime.MiniString..ctor(System.Char c, System.Int32 count) - Class_00000574(); - - ///Method: public ArduinoCsCompiler.Runtime.MiniString..ctor(System.Char[] value, System.Int32 startIndex, System.Int32 length) - Class_00000574(); - - ///Method: public ArduinoCsCompiler.Runtime.MiniString..ctor(System.Char* value) - Class_00000574(NanoInput.Class_00000131 Arg_0); - - ///Method: public ArduinoCsCompiler.Runtime.MiniString..ctor(System.Char* value, System.Int32 startIndex, System.Int32 length) - Class_00000574(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: private static ArduinoCsCompiler.Runtime.MiniString..cctor() - Class_00000574(); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniString.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniString.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String ArduinoCsCompiler.Runtime.MiniString.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public ArduinoCsCompiler.Runtime.MiniString..ctor(System.ReadOnlySpan value), Token 0000012F + public Class_00000574(NanoInput.Class_0E000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public ArduinoCsCompiler.Runtime.MiniString..ctor(System.Char* value), Token 00000129 + public Class_00000574(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public ArduinoCsCompiler.Runtime.MiniString..ctor(System.Char* value, System.Int32 startIndex, System.Int32 length), Token 0000012A + public Class_00000574(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: private static ArduinoCsCompiler.Runtime.MiniString..cctor(), Token 00000573 + static Class_00000574() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniString.Equals(System.Object obj), Token 00000908 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniString.GetHashCode(), Token 00000909 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String ArduinoCsCompiler.Runtime.MiniString.ToString(), Token 0000090A + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Text.UnicodeEncoding public class Class_0000057C : NanoInput.Class_0000020F, NanoInput.Class_00000064 @@ -1426,56 +1737,95 @@ public class Class_0000057C : NanoInput.Class_0000020F, NanoInput.Class_00000064 ///Field: System.Boolean System.Text.UnicodeEncoding.byteOrderMark public readonly NanoInput.Class_0000057C Field_00000577; - ///Method: public System.Text.UnicodeEncoding..ctor() - Class_0000057C(); - - ///Method: public System.Text.UnicodeEncoding..ctor(System.Boolean bigEndian, System.Boolean byteOrderMark) - Class_0000057C(NanoInput.Class_0000021C Arg_0, NanoInput.Class_0000021C Arg_1); - - ///Method: public System.Text.UnicodeEncoding..ctor(System.Boolean bigEndian, System.Boolean byteOrderMark, System.Boolean throwOnInvalidBytes) - Class_0000057C(); - - ///Method: private static System.Text.UnicodeEncoding..cctor() - Class_0000057C(); - - ///Method: internal virtual void System.Text.UnicodeEncoding.SetDefaultFallbacks() - virtual ? SetDefaultFallbacks(); - - ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: internal virtual System.Int32 System.Text.UnicodeEncoding.GetByteCount(System.Char* chars, System.Int32 count, System.Text.EncoderNLS encoder) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000BD1 Arg_2); - - ///Method: internal virtual System.Int32 System.Text.UnicodeEncoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Text.EncoderNLS encoder) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000BD1 Arg_4); - - ///Method: public virtual System.Text.Encoder System.Text.UnicodeEncoding.GetEncoder() - virtual NanoInput.Class_00000630 GetEncoder(); - - ///Method: public virtual System.Byte[] System.Text.UnicodeEncoding.GetPreamble() - virtual NanoInput.Class_0000027D GetPreamble(); - - ///Method: public virtual System.ReadOnlySpan System.Text.UnicodeEncoding.get_Preamble() - ; - - ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetMaxByteCount(System.Int32 charCount) - virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Boolean System.Text.UnicodeEncoding.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetByteCount(System.Char* chars, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public System.Text.UnicodeEncoding..ctor(System.Boolean bigEndian, System.Boolean byteOrderMark), Token 00000579 + public Class_0000057C(NanoInput.Class_0000021C Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.UnicodeEncoding..cctor(), Token 0000057B + static Class_0000057C() + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual void System.Text.UnicodeEncoding.SetDefaultFallbacks(), Token 00000E25 + public virtual void SetDefaultFallbacks() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count), Token 00000E26 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex), Token 00000E27 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount), Token 00000E28 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Int32 System.Text.UnicodeEncoding.GetByteCount(System.Char* chars, System.Int32 count, System.Text.EncoderNLS encoder), Token 00000E29 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000BD1 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Int32 System.Text.UnicodeEncoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Text.EncoderNLS encoder), Token 00000E2B + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000BD1 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.Encoder System.Text.UnicodeEncoding.GetEncoder(), Token 00000E2C + public virtual NanoInput.Class_00000630 GetEncoder() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Byte[] System.Text.UnicodeEncoding.GetPreamble(), Token 00000E2D + public virtual NanoInput.Class_0000027D GetPreamble() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.ReadOnlySpan System.Text.UnicodeEncoding.get_Preamble(), Token 00000E2E + public virtual NanoInput.Class_0E000013 get_Preamble() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetMaxByteCount(System.Int32 charCount), Token 00000E2F + public virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.UnicodeEncoding.Equals(System.Object value), Token 00000E30 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetHashCode(), Token 00000E31 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UnicodeEncoding.GetByteCount(System.Char* chars, System.Int32 count), Token 00001CE4 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Text.UTF32Encoding public sealed class Class_00000584 : NanoInput.Class_0000020F, NanoInput.Class_00000064 @@ -1495,56 +1845,95 @@ public sealed class Class_00000584 : NanoInput.Class_0000020F, NanoInput.Class_0 ///Field: System.Boolean System.Text.UTF32Encoding._bigEndian public readonly NanoInput.Class_00000584 Field_0000057F; - ///Method: public System.Text.UTF32Encoding..ctor() - Class_00000584(); - - ///Method: public System.Text.UTF32Encoding..ctor(System.Boolean bigEndian, System.Boolean byteOrderMark) - Class_00000584(NanoInput.Class_0000021C Arg_0, NanoInput.Class_0000021C Arg_1); - - ///Method: public System.Text.UTF32Encoding..ctor(System.Boolean bigEndian, System.Boolean byteOrderMark, System.Boolean throwOnInvalidCharacters) - Class_00000584(); - - ///Method: private static System.Text.UTF32Encoding..cctor() - Class_00000584(); - - ///Method: internal virtual void System.Text.UTF32Encoding.SetDefaultFallbacks() - virtual ? SetDefaultFallbacks(); - - ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: internal virtual System.Int32 System.Text.UTF32Encoding.GetByteCount(System.Char* chars, System.Int32 count, System.Text.EncoderNLS encoder) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000BD1 Arg_2); - - ///Method: internal virtual System.Int32 System.Text.UTF32Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Text.EncoderNLS encoder) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000BD1 Arg_4); - - ///Method: public virtual System.Text.Encoder System.Text.UTF32Encoding.GetEncoder() - virtual NanoInput.Class_00000630 GetEncoder(); - - ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetMaxByteCount(System.Int32 charCount) - virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Byte[] System.Text.UTF32Encoding.GetPreamble() - virtual NanoInput.Class_0000027D GetPreamble(); - - ///Method: public virtual System.ReadOnlySpan System.Text.UTF32Encoding.get_Preamble() - ; - - ///Method: public virtual System.Boolean System.Text.UTF32Encoding.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetByteCount(System.Char* chars, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public System.Text.UTF32Encoding..ctor(System.Boolean bigEndian, System.Boolean byteOrderMark), Token 00000581 + public Class_00000584(NanoInput.Class_0000021C Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.UTF32Encoding..cctor(), Token 00000583 + static Class_00000584() + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual void System.Text.UTF32Encoding.SetDefaultFallbacks(), Token 00000D69 + public virtual void SetDefaultFallbacks() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count), Token 00000D74 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex), Token 00000D7C + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount), Token 00000D7F + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Int32 System.Text.UTF32Encoding.GetByteCount(System.Char* chars, System.Int32 count, System.Text.EncoderNLS encoder), Token 00000D83 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000BD1 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Int32 System.Text.UTF32Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Text.EncoderNLS encoder), Token 00000D89 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000BD1 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.Encoder System.Text.UTF32Encoding.GetEncoder(), Token 00000D8A + public virtual NanoInput.Class_00000630 GetEncoder() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetMaxByteCount(System.Int32 charCount), Token 00000D8B + public virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Byte[] System.Text.UTF32Encoding.GetPreamble(), Token 00000D8C + public virtual NanoInput.Class_0000027D GetPreamble() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.ReadOnlySpan System.Text.UTF32Encoding.get_Preamble(), Token 00000D8D + public virtual NanoInput.Class_0E000013 get_Preamble() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.UTF32Encoding.Equals(System.Object value), Token 00000D8E + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetHashCode(), Token 00000D8F + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF32Encoding.GetByteCount(System.Char* chars, System.Int32 count), Token 00001CE1 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Text.UTF8Encoding public class Class_00000588 : NanoInput.Class_0000020F, NanoInput.Class_00000064 @@ -1558,62 +1947,119 @@ public class Class_00000588 : NanoInput.Class_0000020F, NanoInput.Class_00000064 ///Field: System.Boolean System.Text.UTF8Encoding._isThrowException public readonly NanoInput.Class_00000588 Field_00000585; - ///Method: public System.Text.UTF8Encoding..ctor(System.Boolean encoderShouldEmitUTF8Identifier) - Class_00000588(NanoInput.Class_0000021C Arg_0); - - ///Method: public System.Text.UTF8Encoding..ctor() - Class_00000588(); - - ///Method: public System.Text.UTF8Encoding..ctor(System.Boolean encoderShouldEmitUTF8Identifier, System.Boolean throwOnInvalidBytes) - Class_00000588(NanoInput.Class_0000021C Arg_0, NanoInput.Class_0000021C Arg_1); - - ///Method: private static System.Text.UTF8Encoding..cctor() - Class_00000588(); - - ///Method: internal virtual void System.Text.UTF8Encoding.SetDefaultFallbacks() - virtual ? SetDefaultFallbacks(); - - ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: virtual System.Int32 System.Text.UTF8Encoding.GetByteCountFast(System.Char* pChars, System.Int32 charsLength, System.Text.EncoderFallback fallback, System.Int32& charsConsumed) - virtual NanoInput.Class_00000014 GetByteCountFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_000005ED Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: virtual System.Int32 System.Text.UTF8Encoding.GetBytesFast(System.Char* pChars, System.Int32 charsLength, System.Byte* pBytes, System.Int32 bytesLength, System.Int32& charsConsumed) - virtual NanoInput.Class_00000014 GetBytesFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: public virtual System.Text.Encoder System.Text.UTF8Encoding.GetEncoder() - virtual NanoInput.Class_00000630 GetEncoder(); - - ///Method: internal virtual System.Boolean System.Text.UTF8Encoding.TryGetByteCount(System.Text.Rune value, System.Int32& byteCount) - virtual NanoInput.Class_0000021C TryGetByteCount(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: internal virtual System.Buffers.OperationStatus System.Text.UTF8Encoding.EncodeRune(System.Text.Rune value, System.Span bytes, System.Int32& bytesWritten) - virtual NanoInput.Class_00000014 EncodeRune(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_02000013 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetMaxByteCount(System.Int32 charCount) - virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Byte[] System.Text.UTF8Encoding.GetPreamble() - virtual NanoInput.Class_0000027D GetPreamble(); - - ///Method: public virtual System.ReadOnlySpan System.Text.UTF8Encoding.get_Preamble() - ; - - ///Method: public virtual System.Boolean System.Text.UTF8Encoding.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetByteCount(System.Char* chars, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public System.Text.UTF8Encoding..ctor(System.Boolean encoderShouldEmitUTF8Identifier), Token 00000162 + public Class_00000588(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Text.UTF8Encoding..ctor(), Token 0000020D + public Class_00000588() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Text.UTF8Encoding..ctor(System.Boolean encoderShouldEmitUTF8Identifier, System.Boolean throwOnInvalidBytes), Token 00000586 + public Class_00000588(NanoInput.Class_0000021C Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.UTF8Encoding..cctor(), Token 00000587 + static Class_00000588() + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual void System.Text.UTF8Encoding.SetDefaultFallbacks(), Token 00000DB5 + public virtual void SetDefaultFallbacks() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count), Token 00000DB7 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Int32 System.Text.UTF8Encoding.GetByteCountFast(System.Char* pChars, System.Int32 charsLength, System.Text.EncoderFallback fallback, System.Int32& charsConsumed), Token 00000DB9 + public virtual NanoInput.Class_00000014 GetByteCountFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_000005ED Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex), Token 00000DF1 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount), Token 00000DF2 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Int32 System.Text.UTF8Encoding.GetBytesFast(System.Char* pChars, System.Int32 charsLength, System.Byte* pBytes, System.Int32 bytesLength, System.Int32& charsConsumed), Token 00000DF4 + public virtual NanoInput.Class_00000014 GetBytesFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.Encoder System.Text.UTF8Encoding.GetEncoder(), Token 00000E16 + public virtual NanoInput.Class_00000630 GetEncoder() + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Boolean System.Text.UTF8Encoding.TryGetByteCount(System.Text.Rune value, System.Int32& byteCount), Token 00000E18 + public virtual NanoInput.Class_0000021C TryGetByteCount(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Buffers.OperationStatus System.Text.UTF8Encoding.EncodeRune(System.Text.Rune value, System.Span bytes, System.Int32& bytesWritten), Token 00000E1B + public virtual NanoInput.Class_00000014 EncodeRune(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_02000013 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetMaxByteCount(System.Int32 charCount), Token 00000E1E + public virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Byte[] System.Text.UTF8Encoding.GetPreamble(), Token 00000E20 + public virtual NanoInput.Class_0000027D GetPreamble() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.ReadOnlySpan System.Text.UTF8Encoding.get_Preamble(), Token 00000E22 + public virtual NanoInput.Class_0E000013 get_Preamble() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.UTF8Encoding.Equals(System.Object value), Token 00000E23 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetHashCode(), Token 00000E24 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF8Encoding.GetByteCount(System.Char* chars, System.Int32 count), Token 00001CE3 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Text.ASCIIEncoding public class Class_0000058B : NanoInput.Class_0000020F, NanoInput.Class_00000064 @@ -1621,44 +2067,83 @@ public class Class_0000058B : NanoInput.Class_0000020F, NanoInput.Class_00000064 ///Field: System.Text.ASCIIEncoding+ASCIIEncodingSealed System.Text.ASCIIEncoding.s_default public static readonly NanoInput.Class_0000058B Field_00000188; - ///Method: public System.Text.ASCIIEncoding..ctor() - Class_0000058B(); - - ///Method: private static System.Text.ASCIIEncoding..cctor() - Class_0000058B(); - - ///Method: internal virtual void System.Text.ASCIIEncoding.SetDefaultFallbacks() - virtual ? SetDefaultFallbacks(); - - ///Method: public virtual System.Int32 System.Text.ASCIIEncoding.GetMaxByteCount(System.Int32 charCount) - virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Text.Encoder System.Text.ASCIIEncoding.GetEncoder() - virtual NanoInput.Class_00000630 GetEncoder(); - - ///Method: public virtual System.Int32 System.Text.ASCIIEncoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: virtual System.Int32 System.Text.ASCIIEncoding.GetByteCountFast(System.Char* pChars, System.Int32 charsLength, System.Text.EncoderFallback fallback, System.Int32& charsConsumed) - virtual NanoInput.Class_00000014 GetByteCountFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_000005ED Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: public virtual System.Int32 System.Text.ASCIIEncoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: public virtual System.Int32 System.Text.ASCIIEncoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: virtual System.Int32 System.Text.ASCIIEncoding.GetBytesFast(System.Char* pChars, System.Int32 charsLength, System.Byte* pBytes, System.Int32 bytesLength, System.Int32& charsConsumed) - virtual NanoInput.Class_00000014 GetBytesFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: virtual System.Int32 System.Text.ASCIIEncoding.GetBytesWithFallback(System.ReadOnlySpan chars, System.Int32 originalCharsLength, System.Span bytes, System.Int32 originalBytesLength, System.Text.EncoderNLS encoder) - virtual NanoInput.Class_00000014 GetBytesWithFallback(NanoInput.Class_0E000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_02000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000BD1 Arg_4); - - ///Method: internal virtual System.Boolean System.Text.ASCIIEncoding.TryGetByteCount(System.Text.Rune value, System.Int32& byteCount) - virtual NanoInput.Class_0000021C TryGetByteCount(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: internal virtual System.Buffers.OperationStatus System.Text.ASCIIEncoding.EncodeRune(System.Text.Rune value, System.Span bytes, System.Int32& bytesWritten) - virtual NanoInput.Class_00000014 EncodeRune(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_02000013 Arg_1, NanoInput.Class_00000014 Arg_2); + ///Method: public System.Text.ASCIIEncoding..ctor(), Token 00000589 + public Class_0000058B() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.ASCIIEncoding..cctor(), Token 0000058A + static Class_0000058B() + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual void System.Text.ASCIIEncoding.SetDefaultFallbacks(), Token 00000BC2 + public virtual void SetDefaultFallbacks() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.ASCIIEncoding.GetMaxByteCount(System.Int32 charCount), Token 00000BC5 + public virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.Encoder System.Text.ASCIIEncoding.GetEncoder(), Token 00000BC7 + public virtual NanoInput.Class_00000630 GetEncoder() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.ASCIIEncoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count), Token 00001CCA + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Int32 System.Text.ASCIIEncoding.GetByteCountFast(System.Char* pChars, System.Int32 charsLength, System.Text.EncoderFallback fallback, System.Int32& charsConsumed), Token 00001CCB + public virtual NanoInput.Class_00000014 GetByteCountFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_000005ED Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.ASCIIEncoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex), Token 00001CCD + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.ASCIIEncoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount), Token 00001CCE + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Int32 System.Text.ASCIIEncoding.GetBytesFast(System.Char* pChars, System.Int32 charsLength, System.Byte* pBytes, System.Int32 bytesLength, System.Int32& charsConsumed), Token 00001CCF + public virtual NanoInput.Class_00000014 GetBytesFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Int32 System.Text.ASCIIEncoding.GetBytesWithFallback(System.ReadOnlySpan chars, System.Int32 originalCharsLength, System.Span bytes, System.Int32 originalBytesLength, System.Text.EncoderNLS encoder), Token 00001CD0 + public virtual NanoInput.Class_00000014 GetBytesWithFallback(NanoInput.Class_0E000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_02000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000BD1 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Boolean System.Text.ASCIIEncoding.TryGetByteCount(System.Text.Rune value, System.Int32& byteCount), Token 00001CD1 + public virtual NanoInput.Class_0000021C TryGetByteCount(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Buffers.OperationStatus System.Text.ASCIIEncoding.EncodeRune(System.Text.Rune value, System.Span bytes, System.Int32& bytesWritten), Token 00001CD2 + public virtual NanoInput.Class_00000014 EncodeRune(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_02000013 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } } ///System.Text.Latin1Encoding public class Class_0000058E : NanoInput.Class_0000020F, NanoInput.Class_00000064 @@ -1666,47 +2151,89 @@ public class Class_0000058E : NanoInput.Class_0000020F, NanoInput.Class_00000064 ///Field: System.Text.Latin1Encoding+Latin1EncodingSealed System.Text.Latin1Encoding.s_default public static readonly NanoInput.Class_0000058E Field_00000189; - ///Method: public System.Text.Latin1Encoding..ctor() - Class_0000058E(); - - ///Method: private static System.Text.Latin1Encoding..cctor() - Class_0000058E(); - - ///Method: public virtual System.ReadOnlySpan System.Text.Latin1Encoding.get_Preamble() - ; - - ///Method: internal virtual void System.Text.Latin1Encoding.SetDefaultFallbacks() - virtual ? SetDefaultFallbacks(); - - ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: virtual System.Int32 System.Text.Latin1Encoding.GetByteCountFast(System.Char* pChars, System.Int32 charsLength, System.Text.EncoderFallback fallback, System.Int32& charsConsumed) - virtual NanoInput.Class_00000014 GetByteCountFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_000005ED Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetMaxByteCount(System.Int32 charCount) - virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: virtual System.Int32 System.Text.Latin1Encoding.GetBytesFast(System.Char* pChars, System.Int32 charsLength, System.Byte* pBytes, System.Int32 bytesLength, System.Int32& charsConsumed) - virtual NanoInput.Class_00000014 GetBytesFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: public virtual System.Text.Encoder System.Text.Latin1Encoding.GetEncoder() - virtual NanoInput.Class_00000630 GetEncoder(); - - ///Method: internal virtual System.Boolean System.Text.Latin1Encoding.TryGetByteCount(System.Text.Rune value, System.Int32& byteCount) - virtual NanoInput.Class_0000021C TryGetByteCount(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: internal virtual System.Buffers.OperationStatus System.Text.Latin1Encoding.EncodeRune(System.Text.Rune value, System.Span bytes, System.Int32& bytesWritten) - virtual NanoInput.Class_00000014 EncodeRune(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_02000013 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetByteCount(System.Char* chars, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public System.Text.Latin1Encoding..ctor(), Token 0000058C + public Class_0000058E() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.Latin1Encoding..cctor(), Token 0000058D + static Class_0000058E() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.ReadOnlySpan System.Text.Latin1Encoding.get_Preamble(), Token 00000BDD + public virtual NanoInput.Class_0E000013 get_Preamble() + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual void System.Text.Latin1Encoding.SetDefaultFallbacks(), Token 00000BE2 + public virtual void SetDefaultFallbacks() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count), Token 00000BE5 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Int32 System.Text.Latin1Encoding.GetByteCountFast(System.Char* pChars, System.Int32 charsLength, System.Text.EncoderFallback fallback, System.Int32& charsConsumed), Token 00000C18 + public virtual NanoInput.Class_00000014 GetByteCountFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_000005ED Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetMaxByteCount(System.Int32 charCount), Token 00000CAF + public virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount), Token 00000CB1 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex), Token 00000CEB + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Int32 System.Text.Latin1Encoding.GetBytesFast(System.Char* pChars, System.Int32 charsLength, System.Byte* pBytes, System.Int32 bytesLength, System.Int32& charsConsumed), Token 00000CED + public virtual NanoInput.Class_00000014 GetBytesFast(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.Encoder System.Text.Latin1Encoding.GetEncoder(), Token 00000D51 + public virtual NanoInput.Class_00000630 GetEncoder() + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Boolean System.Text.Latin1Encoding.TryGetByteCount(System.Text.Rune value, System.Int32& byteCount), Token 00000D52 + public virtual NanoInput.Class_0000021C TryGetByteCount(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Buffers.OperationStatus System.Text.Latin1Encoding.EncodeRune(System.Text.Rune value, System.Span bytes, System.Int32& bytesWritten), Token 00000D54 + public virtual NanoInput.Class_00000014 EncodeRune(NanoInput.Class_00000BF8 Arg_0, NanoInput.Class_02000013 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Latin1Encoding.GetByteCount(System.Char* chars, System.Int32 count), Token 00001CE0 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.SR public abstract class Class_00000595 @@ -1728,9 +2255,6 @@ public abstract class Class_00000595 ///Field: System.Resources.ResourceManager System.SR.s_resourceManager public static NanoInput.Class_00000595 Field_00000593; - - ///Method: private static System.SR..cctor() - Class_00000595(); } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E000001 : NanoInput.Class_2F000001, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -1741,14 +2265,23 @@ public class Class_2E000001 : NanoInput.Class_2F000001, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000001 Field_00000191; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Object[] array) - Class_2E000001(NanoInput.Class_00000001 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Object[] array), Token 0000018F + public Class_2E000001(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00000849 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 0000084A + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000001 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -1767,26 +2300,47 @@ public ref struct Class_0E000131 ///Field: System.Int32 System.ReadOnlySpan._length public readonly NanoInput.Class_0E000131 Field_00000199; - ///Method: internal System.ReadOnlySpan..ctor(System.Char& ptr, System.Int32 length) - Class_0E000131(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.ReadOnlySpan..ctor(System.Char[] array, System.Int32 start, System.Int32 length) - Class_0E000131(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length) - Class_0E000131(? @void, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.ReadOnlySpan..ctor(System.Char[] array) - Class_0E000131(NanoInput.Class_00000131 Arg_0); - - ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ReadOnlySpan.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: internal System.ReadOnlySpan..ctor(System.Char& ptr, System.Int32 length), Token 00000196 + public Class_0E000131(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ReadOnlySpan..ctor(System.Char[] array, System.Int32 start, System.Int32 length), Token 0000026B + public Class_0E000131(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length), Token 0000041B + public Class_0E000131(void* Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ReadOnlySpan..ctor(System.Char[] array), Token 00000598 + public Class_0E000131(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj), Token 00000BAA + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode(), Token 00000BAB + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ReadOnlySpan.ToString(), Token 00000BAC + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.ByReference public ref struct Class_30000131 @@ -1794,38 +2348,41 @@ public ref struct Class_30000131 ///Field: System.IntPtr System.ByReference._value public readonly NanoInput.Class_30000131 Field_00000599; - ///Method: public System.ByReference..ctor(System.Char& value) - Class_30000131(NanoInput.Class_00000131 Arg_0); + ///Method: public System.ByReference..ctor(System.Char& value), Token 00000197 + public Class_30000131(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.PlatformNotSupportedException public class Class_000003A8 : NanoInput.Class_00000027, NanoInput.Class_00000085 { - ///Method: public System.PlatformNotSupportedException..ctor() - Class_000003A8(); - - ///Method: public System.PlatformNotSupportedException..ctor(System.String message) - Class_000003A8(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.PlatformNotSupportedException..ctor(System.String message, System.Exception inner) - Class_000003A8(); + ///Method: public System.PlatformNotSupportedException..ctor(), Token 0000019A + public Class_000003A8() + { + throw new System.NotImplementedException(); + } - ///Method: protected System.PlatformNotSupportedException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_000003A8(); + ///Method: public System.PlatformNotSupportedException..ctor(System.String message), Token 0000045D + public Class_000003A8(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.NotSupportedException public class Class_00000027 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.NotSupportedException..ctor(System.String message) - Class_00000027(NanoInput.Class_00000004 Arg_0); + ///Method: public System.NotSupportedException..ctor(System.String message), Token 00000175 + public Class_00000027(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public System.NotSupportedException..ctor() - Class_00000027(); - - ///Method: public System.NotSupportedException..ctor(System.String message, System.Exception innerException) - Class_00000027(); - - ///Method: protected System.NotSupportedException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000027(); + ///Method: public System.NotSupportedException..ctor(), Token 0000059C + public Class_00000027() + { + throw new System.NotImplementedException(); + } } ///System.Text.ValueStringBuilder public ref struct Class_000001A2 @@ -1839,32 +2396,38 @@ public ref struct Class_000001A2 ///Field: System.Int32 System.Text.ValueStringBuilder._pos public NanoInput.Class_000001A2 Field_000001B4; - ///Method: public System.Text.ValueStringBuilder..ctor(System.Span initialBuffer) - Class_000001A2(NanoInput.Class_02000131 Arg_0); + ///Method: public System.Text.ValueStringBuilder..ctor(System.Span initialBuffer), Token 0000019F + public Class_000001A2(NanoInput.Class_02000131 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Text.ValueStringBuilder..ctor(System.Int32 initialCapacity) - Class_000001A2(); - - ///Method: public virtual System.String System.Text.ValueStringBuilder.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Text.ValueStringBuilder.ToString(), Token 00000E32 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.ArgumentNullException public class Class_000005A2 : NanoInput.Class_000005A6, NanoInput.Class_00000085 { - ///Method: public System.ArgumentNullException..ctor(System.String paramName) - Class_000005A2(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.ArgumentNullException..ctor(System.String paramName, System.String message) - Class_000005A2(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); + ///Method: public System.ArgumentNullException..ctor(System.String paramName), Token 000001A4 + public Class_000005A2(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public System.ArgumentNullException..ctor() - Class_000005A2(); + ///Method: public System.ArgumentNullException..ctor(System.String paramName, System.String message), Token 0000028C + public Class_000005A2(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public System.ArgumentNullException..ctor(System.String message, System.Exception innerException) - Class_000005A2(); - - ///Method: protected System.ArgumentNullException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_000005A2(); + ///Method: public System.ArgumentNullException..ctor(), Token 00000335 + public Class_000005A2() + { + throw new System.NotImplementedException(); + } } ///System.ArgumentException public class Class_000005A6 : NanoInput.Class_0000010A, NanoInput.Class_00000085 @@ -1872,26 +2435,29 @@ public class Class_000005A6 : NanoInput.Class_0000010A, NanoInput.Class_00000085 ///Field: System.String System.ArgumentException._paramName public readonly NanoInput.Class_000005A6 Field_000001A6; - ///Method: public System.ArgumentException..ctor(System.String message, System.String paramName) - Class_000005A6(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public System.ArgumentException..ctor(System.String message) - Class_000005A6(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.ArgumentException..ctor() - Class_000005A6(); - - ///Method: public System.ArgumentException..ctor(System.String message, System.Exception innerException) - Class_000005A6(); - - ///Method: public System.ArgumentException..ctor(System.String message, System.String paramName, System.Exception innerException) - Class_000005A6(); - - ///Method: protected System.ArgumentException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_000005A6(); - - ///Method: public virtual System.String System.ArgumentException.get_Message() - ; + ///Method: public System.ArgumentException..ctor(System.String message, System.String paramName), Token 0000016F + public Class_000005A6(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ArgumentException..ctor(System.String message), Token 000001AF + public Class_000005A6(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ArgumentException..ctor(), Token 00000342 + public Class_000005A6() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ArgumentException.get_Message(), Token 00001C72 + public virtual NanoInput.Class_00000004 get_Message() + { + throw new System.NotImplementedException(); + } } ///System.Span public ref struct Class_02000131 @@ -1902,26 +2468,47 @@ public ref struct Class_02000131 ///Field: System.Int32 System.Span._length public readonly NanoInput.Class_02000131 Field_000001AC; - ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length) - Class_02000131(? @void, NanoInput.Class_00000014 Arg_1); - - ///Method: internal System.Span..ctor(System.Char& ptr, System.Int32 length) - Class_02000131(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.Span..ctor(System.Char[] array) - Class_02000131(NanoInput.Class_00000131 Arg_0); - - ///Method: public System.Span..ctor(System.Char[] array, System.Int32 start, System.Int32 length) - Class_02000131(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Span.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Span.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length), Token 0000019E + public Class_02000131(void* Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: internal System.Span..ctor(System.Char& ptr, System.Int32 length), Token 000001D0 + public Class_02000131(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Span..ctor(System.Char[] array), Token 000001D1 + public Class_02000131(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Span..ctor(System.Char[] array, System.Int32 start, System.Int32 length), Token 000005A7 + public Class_02000131(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj), Token 00000BB4 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Span.GetHashCode(), Token 00000BB5 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Span.ToString(), Token 00000BB6 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Char public struct Class_00000131 : NanoInput.Class_00000130, NanoInput.Class_0C000131, NanoInput.Class_07000131, NanoInput.Class_000001F5, NanoInput.Class_000001F8 @@ -1929,23 +2516,41 @@ public struct Class_00000131 : NanoInput.Class_00000130, NanoInput.Class_0C00013 ///Field: System.Char System.Char.m_value public readonly NanoInput.Class_00000131 Field_000005A8; - ///Method: public virtual System.Int32 System.Char.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.Boolean System.Char.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Boolean System.Char.Equals(System.Char obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000131 Arg_0); - - ///Method: public virtual System.String System.Char.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: private virtual System.Boolean System.Char.System.ISpanFormattable.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C System.ISpanFormattable.TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: private virtual System.String System.Char.System.IFormattable.ToString(System.String format, System.IFormatProvider formatProvider) - virtual NanoInput.Class_00000004 System.IFormattable.ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); + ///Method: public virtual System.Int32 System.Char.GetHashCode(), Token 000009E8 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Char.Equals(System.Object obj), Token 000009E9 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Char.Equals(System.Char obj), Token 000009EA + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Char.ToString(), Token 000009EC + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.Boolean System.Char.System.ISpanFormattable.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 000009EF + public virtual NanoInput.Class_0000021C System.ISpanFormattable.TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.String System.Char.System.IFormattable.ToString(System.String format, System.IFormatProvider formatProvider), Token 000009F0 + public virtual NanoInput.Class_00000004 System.IFormattable.ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000131 @@ -1961,41 +2566,50 @@ public class Class_000005B8 : NanoInput.Class_000005A6, NanoInput.Class_00000085 ///Field: System.Object System.ArgumentOutOfRangeException._actualValue public readonly NanoInput.Class_000005B8 Field_000003BE; - ///Method: public System.ArgumentOutOfRangeException..ctor(System.String paramName, System.String message) - Class_000005B8(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public System.ArgumentOutOfRangeException..ctor() - Class_000005B8(); - - ///Method: public System.ArgumentOutOfRangeException..ctor(System.String paramName) - Class_000005B8(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.ArgumentOutOfRangeException..ctor(System.String paramName, System.Object actualValue, System.String message) - Class_000005B8(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00000004 Arg_2); - - ///Method: public System.ArgumentOutOfRangeException..ctor(System.String message, System.Exception innerException) - Class_000005B8(); - - ///Method: protected System.ArgumentOutOfRangeException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_000005B8(); - - ///Method: public virtual System.String System.ArgumentOutOfRangeException.get_Message() - ; + ///Method: public System.ArgumentOutOfRangeException..ctor(System.String paramName, System.String message), Token 00000178 + public Class_000005B8(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ArgumentOutOfRangeException..ctor(), Token 000001B0 + public Class_000005B8() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ArgumentOutOfRangeException..ctor(System.String paramName), Token 000001FE + public Class_000005B8(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ArgumentOutOfRangeException..ctor(System.String paramName, System.Object actualValue, System.String message), Token 000003B9 + public Class_000005B8(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00000004 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ArgumentOutOfRangeException.get_Message(), Token 00001C74 + public virtual NanoInput.Class_00000004 get_Message() + { + throw new System.NotImplementedException(); + } } ///System.IndexOutOfRangeException public sealed class Class_00000022 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.IndexOutOfRangeException..ctor() - Class_00000022(); + ///Method: public System.IndexOutOfRangeException..ctor(), Token 000001BC + public Class_00000022() + { + throw new System.NotImplementedException(); + } - ///Method: public System.IndexOutOfRangeException..ctor(System.String message) - Class_00000022(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.IndexOutOfRangeException..ctor(System.String message, System.Exception innerException) - Class_00000022(); - - ///Method: private System.IndexOutOfRangeException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000022(); + ///Method: public System.IndexOutOfRangeException..ctor(System.String message), Token 0000033A + public Class_00000022(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IntPtr public struct Class_000005BD : NanoInput.Class_070005BD, NanoInput.Class_00000130, NanoInput.Class_0C0005BD, NanoInput.Class_000001F5, NanoInput.Class_000001F8, NanoInput.Class_00000085 @@ -2006,32 +2620,53 @@ public struct Class_000005BD : NanoInput.Class_070005BD, NanoInput.Class_0000013 ///Field: System.IntPtr System.IntPtr.Zero public static readonly NanoInput.Class_000005BD Field_0000021D; - ///Method: public System.IntPtr..ctor(System.Int32 value) - Class_000005BD(NanoInput.Class_00000014 Arg_0); - - ///Method: public System.IntPtr..ctor(System.Void* value) - Class_000005BD(? @void); - - ///Method: public System.IntPtr..ctor(System.Int64 value) - Class_000005BD(NanoInput.Class_00000016 Arg_0); - - ///Method: private System.IntPtr..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_000005BD(); - - ///Method: public virtual System.Boolean System.IntPtr.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.IntPtr.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.IntPtr.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.IntPtr.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.IntPtr.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: public System.IntPtr..ctor(System.Int32 value), Token 000001C2 + public Class_000005BD(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.IntPtr..ctor(System.Void* value), Token 000002AC + public Class_000005BD(void* Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.IntPtr..ctor(System.Int64 value), Token 000005BB + public Class_000005BD(NanoInput.Class_00000016 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.IntPtr.Equals(System.Object obj), Token 00000A97 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.IntPtr.GetHashCode(), Token 00000A98 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.IntPtr.ToString(), Token 00000A99 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.IntPtr.ToString(System.String format, System.IFormatProvider provider), Token 00000A9A + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.IntPtr.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00000A9B + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_070005BD @@ -2047,11 +2682,17 @@ public abstract class Class_32000131 ///Field: System.Buffers.TlsOverPerCoreLockedStacksArrayPool System.Buffers.ArrayPool.s_shared public static readonly NanoInput.Class_32000131 Field_000001CF; - ///Method: protected System.Buffers.ArrayPool..ctor() - Class_32000131(); + ///Method: protected System.Buffers.ArrayPool..ctor(), Token 000005CB + public Class_32000131() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Buffers.ArrayPool..cctor() - Class_32000131(); + ///Method: private static System.Buffers.ArrayPool..cctor(), Token 000005CC + static Class_32000131() + { + throw new System.NotImplementedException(); + } } ///System.Math public abstract class Class_000005CF @@ -2059,14 +2700,15 @@ public abstract class Class_000005CF ///Field: System.Double[] System.Math.roundPower10Double public static readonly NanoInput.Class_000005CF Field_000005CD; - ///Method: private static System.Math..cctor() - Class_000005CF(); + ///Method: private static System.Math..cctor(), Token 000005CE + static Class_000005CF() + { + throw new System.NotImplementedException(); + } } ///System.Char[] public sealed class Class_000001D4 : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_33000131, NanoInput.Class_17000131, NanoInput.Class_01000131, NanoInput.Class_34000131, NanoInput.Class_35000131 { - ///Method: public System.Char[]..ctor(System.Int32 ) - Class_000001D4(); } ///System.Collections.Generic.IList public interface Class_33000131 : NanoInput.Class_17000131, NanoInput.Class_01000131, NanoInput.Class_000000E8 @@ -2087,17 +2729,11 @@ public interface Class_35000131 : NanoInput.Class_01000131, NanoInput.Class_0000 ///System.ArrayTypeMismatchException public class Class_00000023 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.ArrayTypeMismatchException..ctor() - Class_00000023(); - - ///Method: public System.ArrayTypeMismatchException..ctor(System.String message) - Class_00000023(); - - ///Method: public System.ArrayTypeMismatchException..ctor(System.String message, System.Exception innerException) - Class_00000023(); - - ///Method: protected System.ArrayTypeMismatchException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000023(); + ///Method: public System.ArrayTypeMismatchException..ctor(), Token 000001D8 + public Class_00000023() + { + throw new System.NotImplementedException(); + } } ///System.ParamsArray public struct Class_000005D8 @@ -2123,20 +2759,23 @@ public struct Class_000005D8 ///Field: System.Object[] System.ParamsArray._args public readonly NanoInput.Class_000005D8 Field_000001E8; - ///Method: public System.ParamsArray..ctor(System.Object arg0) - Class_000005D8(NanoInput.Class_00000001 Arg_0); - - ///Method: public System.ParamsArray..ctor(System.Object arg0, System.Object arg1) - Class_000005D8(NanoInput.Class_00000001 Arg_0, NanoInput.Class_00000001 Arg_1); + ///Method: public System.ParamsArray..ctor(System.Object arg0), Token 000001E2 + public Class_000005D8(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public System.ParamsArray..ctor(System.Object arg0, System.Object arg1, System.Object arg2) - Class_000005D8(); + ///Method: public System.ParamsArray..ctor(System.Object arg0, System.Object arg1), Token 00000201 + public Class_000005D8(NanoInput.Class_00000001 Arg_0, NanoInput.Class_00000001 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public System.ParamsArray..ctor(System.Object[] args) - Class_000005D8(); - - ///Method: private static System.ParamsArray..cctor() - Class_000005D8(); + ///Method: private static System.ParamsArray..cctor(), Token 000005D7 + static Class_000005D8() + { + throw new System.NotImplementedException(); + } } ///System.ICustomFormatter public interface Class_000001EC @@ -2145,17 +2784,11 @@ public interface Class_000001EC ///System.FormatException public class Class_000005DC : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.FormatException..ctor(System.String message) - Class_000005DC(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.FormatException..ctor() - Class_000005DC(); - - ///Method: public System.FormatException..ctor(System.String message, System.Exception innerException) - Class_000005DC(); - - ///Method: protected System.FormatException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_000005DC(); + ///Method: public System.FormatException..ctor(System.String message), Token 000001F1 + public Class_000005DC(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Text.UTF7Encoding public class Class_000005E4 : NanoInput.Class_0000020F, NanoInput.Class_00000064 @@ -2175,47 +2808,89 @@ public class Class_000005E4 : NanoInput.Class_0000020F, NanoInput.Class_00000064 ///Field: System.Boolean System.Text.UTF7Encoding._allowOptionals public readonly NanoInput.Class_000005E4 Field_000005E0; - ///Method: public System.Text.UTF7Encoding..ctor() - Class_000005E4(); - - ///Method: public System.Text.UTF7Encoding..ctor(System.Boolean allowOptionals) - Class_000005E4(NanoInput.Class_0000021C Arg_0); - - ///Method: private static System.Text.UTF7Encoding..cctor() - Class_000005E4(); - - ///Method: internal virtual void System.Text.UTF7Encoding.SetDefaultFallbacks() - virtual ? SetDefaultFallbacks(); - - ///Method: public virtual System.Boolean System.Text.UTF7Encoding.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: internal virtual System.Int32 System.Text.UTF7Encoding.GetByteCount(System.Char* chars, System.Int32 count, System.Text.EncoderNLS baseEncoder) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000BD1 Arg_2); - - ///Method: internal virtual System.Int32 System.Text.UTF7Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Text.EncoderNLS baseEncoder) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000BD1 Arg_4); - - ///Method: public virtual System.Text.Encoder System.Text.UTF7Encoding.GetEncoder() - virtual NanoInput.Class_00000630 GetEncoder(); - - ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetMaxByteCount(System.Int32 charCount) - virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetByteCount(System.Char* chars, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public System.Text.UTF7Encoding..ctor(), Token 000005E1 + public Class_000005E4() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Text.UTF7Encoding..ctor(System.Boolean allowOptionals), Token 000005E2 + public Class_000005E4(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.UTF7Encoding..cctor(), Token 000005E3 + static Class_000005E4() + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual void System.Text.UTF7Encoding.SetDefaultFallbacks(), Token 00000D91 + public virtual void SetDefaultFallbacks() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.UTF7Encoding.Equals(System.Object value), Token 00000D93 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetHashCode(), Token 00000D94 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count), Token 00000D95 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex), Token 00000D96 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount), Token 00000D97 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Int32 System.Text.UTF7Encoding.GetByteCount(System.Char* chars, System.Int32 count, System.Text.EncoderNLS baseEncoder), Token 00000D98 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000BD1 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Int32 System.Text.UTF7Encoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Text.EncoderNLS baseEncoder), Token 00000DA4 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000BD1 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.Encoder System.Text.UTF7Encoding.GetEncoder(), Token 00000DB3 + public virtual NanoInput.Class_00000630 GetEncoder() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetMaxByteCount(System.Int32 charCount), Token 00000DB4 + public virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.UTF7Encoding.GetByteCount(System.Char* chars, System.Int32 count), Token 00001CE2 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Text.OSEncoding public sealed class Class_000005E6 : NanoInput.Class_0000020F, NanoInput.Class_00000064 @@ -2226,23 +2901,41 @@ public sealed class Class_000005E6 : NanoInput.Class_0000020F, NanoInput.Class_0 ///Field: System.String System.Text.OSEncoding._encodingName public NanoInput.Class_000005E6 Field_000005E5; - ///Method: internal System.Text.OSEncoding..ctor(System.Int32 codePage) - Class_000005E6(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Int32 System.Text.OSEncoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Int32 System.Text.OSEncoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4); - - ///Method: public virtual System.Int32 System.Text.OSEncoding.GetMaxByteCount(System.Int32 charCount) - virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.String System.Text.OSEncoding.get_EncodingName() - ; - - ///Method: public virtual System.Text.Encoder System.Text.OSEncoding.GetEncoder() - virtual NanoInput.Class_00000630 GetEncoder(); + ///Method: internal System.Text.OSEncoding..ctor(System.Int32 codePage), Token 00000161 + public Class_000005E6(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.OSEncoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count), Token 00000D59 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.OSEncoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex), Token 00000D5E + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.OSEncoding.GetMaxByteCount(System.Int32 charCount), Token 00000D60 + public virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Text.OSEncoding.get_EncodingName(), Token 00000D61 + public virtual NanoInput.Class_00000004 get_EncodingName() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.Encoder System.Text.OSEncoding.GetEncoder(), Token 00000D63 + public virtual NanoInput.Class_00000630 GetEncoder() + { + throw new System.NotImplementedException(); + } } ///System.Text.EncoderReplacementFallback public sealed class Class_000005EB : NanoInput.Class_000005ED @@ -2253,32 +2946,56 @@ public sealed class Class_000005EB : NanoInput.Class_000005ED ///Field: System.String System.Text.EncoderReplacementFallback._strDefault public readonly NanoInput.Class_000005EB Field_000005E7; - ///Method: public System.Text.EncoderReplacementFallback..ctor() - Class_000005EB(); - - ///Method: public System.Text.EncoderReplacementFallback..ctor(System.String replacement) - Class_000005EB(NanoInput.Class_00000004 Arg_0); - - ///Method: private static System.Text.EncoderReplacementFallback..cctor() - Class_000005EB(); - - ///Method: public virtual System.Boolean System.Text.EncoderReplacementFallback.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.EncoderReplacementFallback.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.Text.EncoderFallbackBuffer System.Text.EncoderReplacementFallback.CreateFallbackBuffer() - virtual NanoInput.Class_00000C11 CreateFallbackBuffer(); - - ///Method: public virtual System.Int32 System.Text.EncoderReplacementFallback.get_MaxCharCount() - ; + ///Method: public System.Text.EncoderReplacementFallback..ctor(), Token 000005E8 + public Class_000005EB() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Text.EncoderReplacementFallback..ctor(System.String replacement), Token 000005E9 + public Class_000005EB(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.EncoderReplacementFallback..cctor(), Token 000005EA + static Class_000005EB() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderReplacementFallback.Equals(System.Object value), Token 00000BBC + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderReplacementFallback.GetHashCode(), Token 00000BBD + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.EncoderFallbackBuffer System.Text.EncoderReplacementFallback.CreateFallbackBuffer(), Token 00001CD8 + public virtual NanoInput.Class_00000C11 CreateFallbackBuffer() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderReplacementFallback.get_MaxCharCount(), Token 00001CDD + public virtual NanoInput.Class_00000014 get_MaxCharCount() + { + throw new System.NotImplementedException(); + } } ///System.Text.EncoderFallback public abstract class Class_000005ED { - ///Method: protected System.Text.EncoderFallback..ctor() - Class_000005ED(); + ///Method: protected System.Text.EncoderFallback..ctor(), Token 000005EC + public Class_000005ED() + { + throw new System.NotImplementedException(); + } } ///System.Text.DecoderReplacementFallback public sealed class Class_000005F2 : NanoInput.Class_000005F4 @@ -2289,26 +3006,44 @@ public sealed class Class_000005F2 : NanoInput.Class_000005F4 ///Field: System.String System.Text.DecoderReplacementFallback._strDefault public readonly NanoInput.Class_000005F2 Field_000005EE; - ///Method: public System.Text.DecoderReplacementFallback..ctor() - Class_000005F2(); - - ///Method: public System.Text.DecoderReplacementFallback..ctor(System.String replacement) - Class_000005F2(NanoInput.Class_00000004 Arg_0); - - ///Method: private static System.Text.DecoderReplacementFallback..cctor() - Class_000005F2(); - - ///Method: public virtual System.Boolean System.Text.DecoderReplacementFallback.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.DecoderReplacementFallback.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public System.Text.DecoderReplacementFallback..ctor(), Token 000005EF + public Class_000005F2() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Text.DecoderReplacementFallback..ctor(System.String replacement), Token 000005F0 + public Class_000005F2(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.DecoderReplacementFallback..cctor(), Token 000005F1 + static Class_000005F2() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.DecoderReplacementFallback.Equals(System.Object value), Token 00000BBA + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.DecoderReplacementFallback.GetHashCode(), Token 00000BBB + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Text.DecoderFallback public abstract class Class_000005F4 { - ///Method: protected System.Text.DecoderFallback..ctor() - Class_000005F4(); + ///Method: protected System.Text.DecoderFallback..ctor(), Token 000005F3 + public Class_000005F4() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.StrongBox public class Class_0F00021C : NanoInput.Class_000005F6 @@ -2316,11 +3051,11 @@ public class Class_0F00021C : NanoInput.Class_000005F6 ///Field: System.Boolean System.Runtime.CompilerServices.StrongBox.Value public NanoInput.Class_0F00021C Field_00000213; - ///Method: public System.Runtime.CompilerServices.StrongBox..ctor(System.Boolean value) - Class_0F00021C(NanoInput.Class_0000021C Arg_0); - - ///Method: public System.Runtime.CompilerServices.StrongBox..ctor() - Class_0F00021C(); + ///Method: public System.Runtime.CompilerServices.StrongBox..ctor(System.Boolean value), Token 00000215 + public Class_0F00021C(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.IStrongBox public interface Class_000005F6 @@ -2335,14 +3070,23 @@ public abstract class Class_000005F9 : NanoInput.Class_00000045, NanoInput.Class ///Field: System.Threading.SemaphoreSlim System.IO.Stream._asyncActiveSemaphore public NanoInput.Class_000005F9 Field_000005F7; - ///Method: protected System.IO.Stream..ctor() - Class_000005F9(); + ///Method: protected System.IO.Stream..ctor(), Token 00000229 + public Class_000005F9() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.IO.Stream..cctor() - Class_000005F9(); + ///Method: private static System.IO.Stream..cctor(), Token 000005F8 + static Class_000005F9() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.IO.Stream.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.IO.Stream.Dispose(), Token 00000A9D + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.IAsyncDisposable public interface Class_000005FA @@ -2360,17 +3104,29 @@ public sealed class Class_000005FB : NanoInput.Class_000005FC, NanoInput.Class_0 ///Field: System.Boolean System.ConsolePal+WindowsConsoleStream._useFileAPIs public readonly NanoInput.Class_000005FB Field_00000228; - ///Method: internal System.ConsolePal+WindowsConsoleStream..ctor(System.IntPtr handle, System.IO.FileAccess access, System.Boolean useFileAPIs) - Class_000005FB(NanoInput.Class_000005BD Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2); - - ///Method: protected virtual void System.ConsolePal+WindowsConsoleStream.Dispose(System.Boolean disposing) - virtual ? Dispose(NanoInput.Class_0000021C Arg_0); - - ///Method: public virtual void System.ConsolePal+WindowsConsoleStream.Write(System.ReadOnlySpan buffer) - virtual ? Write(NanoInput.Class_0E000013 Arg_0); - - ///Method: public virtual void System.ConsolePal+WindowsConsoleStream.Flush() - virtual ? Flush(); + ///Method: internal System.ConsolePal+WindowsConsoleStream..ctor(System.IntPtr handle, System.IO.FileAccess access, System.Boolean useFileAPIs), Token 00000222 + public Class_000005FB(NanoInput.Class_000005BD Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void System.ConsolePal+WindowsConsoleStream.Dispose(System.Boolean disposing), Token 00000AB3 + public virtual void Dispose(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.ConsolePal+WindowsConsoleStream.Write(System.ReadOnlySpan buffer), Token 00000AB6 + public virtual void Write(NanoInput.Class_0E000013 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.ConsolePal+WindowsConsoleStream.Flush(), Token 00000AF5 + public virtual void Flush() + { + throw new System.NotImplementedException(); + } } ///System.IO.ConsoleStream public abstract class Class_000005FC : NanoInput.Class_000005F9, NanoInput.Class_0000003A, NanoInput.Class_000005FA @@ -2381,26 +3137,47 @@ public abstract class Class_000005FC : NanoInput.Class_000005F9, NanoInput.Class ///Field: System.Boolean System.IO.ConsoleStream._canWrite public NanoInput.Class_000005FC Field_0000022B; - ///Method: internal System.IO.ConsoleStream..ctor(System.IO.FileAccess access) - Class_000005FC(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual void System.IO.ConsoleStream.Write(System.Byte[] buffer, System.Int32 offset, System.Int32 count) - virtual ? Write(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: protected virtual void System.IO.ConsoleStream.Dispose(System.Boolean disposing) - virtual ? Dispose(NanoInput.Class_0000021C Arg_0); - - ///Method: public virtual System.Boolean System.IO.ConsoleStream.get_CanWrite() - ; - - ///Method: public virtual System.Boolean System.IO.ConsoleStream.get_CanSeek() - ; - - ///Method: public virtual System.Int64 System.IO.ConsoleStream.get_Position() - ; - - ///Method: public virtual void System.IO.ConsoleStream.Flush() - virtual ? Flush(); + ///Method: internal System.IO.ConsoleStream..ctor(System.IO.FileAccess access), Token 00000225 + public Class_000005FC(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.ConsoleStream.Write(System.Byte[] buffer, System.Int32 offset, System.Int32 count), Token 00000AA0 + public virtual void Write(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void System.IO.ConsoleStream.Dispose(System.Boolean disposing), Token 00000AAC + public virtual void Dispose(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.IO.ConsoleStream.get_CanWrite(), Token 00000AAD + public virtual NanoInput.Class_0000021C get_CanWrite() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.IO.ConsoleStream.get_CanSeek(), Token 00000AAE + public virtual NanoInput.Class_0000021C get_CanSeek() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int64 System.IO.ConsoleStream.get_Position(), Token 00000AB0 + public virtual NanoInput.Class_00000016 get_Position() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.ConsoleStream.Flush(), Token 00000AB2 + public virtual void Flush() + { + throw new System.NotImplementedException(); + } } ///System.IO.StreamWriter public class Class_00000607 : NanoInput.Class_00000298, NanoInput.Class_0000003A, NanoInput.Class_000005FA @@ -2444,56 +3221,53 @@ public class Class_00000607 : NanoInput.Class_00000298, NanoInput.Class_0000003A ///Field: System.Boolean System.IO.StreamWriter._disposed public NanoInput.Class_00000607 Field_00000270; - ///Method: public System.IO.StreamWriter..ctor(System.IO.Stream stream, System.Text.Encoding encoding, System.Int32 bufferSize, System.Boolean leaveOpen) - Class_00000607(NanoInput.Class_000005F9 Arg_0, NanoInput.Class_0000020F Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3); - - ///Method: public System.IO.StreamWriter..ctor(System.IO.Stream stream) - Class_00000607(); - - ///Method: public System.IO.StreamWriter..ctor(System.IO.Stream stream, System.Text.Encoding encoding) - Class_00000607(); - - ///Method: public System.IO.StreamWriter..ctor(System.IO.Stream stream, System.Text.Encoding encoding, System.Int32 bufferSize) - Class_00000607(); - - ///Method: public System.IO.StreamWriter..ctor(System.String path) - Class_00000607(); - - ///Method: public System.IO.StreamWriter..ctor(System.String path, System.Boolean append) - Class_00000607(); - - ///Method: public System.IO.StreamWriter..ctor(System.String path, System.Boolean append, System.Text.Encoding encoding) - Class_00000607(); - - ///Method: public System.IO.StreamWriter..ctor(System.String path, System.Boolean append, System.Text.Encoding encoding, System.Int32 bufferSize) - Class_00000607(); - - ///Method: public System.IO.StreamWriter..ctor(System.String path, System.IO.FileStreamOptions options) - Class_00000607(); - - ///Method: public System.IO.StreamWriter..ctor(System.String path, System.Text.Encoding encoding, System.IO.FileStreamOptions options) - Class_00000607(); - - ///Method: private static System.IO.StreamWriter..cctor() - Class_00000607(); - - ///Method: protected virtual void System.IO.StreamWriter.Dispose(System.Boolean disposing) - virtual ? Dispose(NanoInput.Class_0000021C Arg_0); - - ///Method: public virtual void System.IO.StreamWriter.Write(System.Char value) - virtual ? Write(NanoInput.Class_00000131 Arg_0); - - ///Method: public virtual void System.IO.StreamWriter.Write(System.Char[] buffer) - virtual ? Write(NanoInput.Class_00000131 Arg_0); - - ///Method: public virtual void System.IO.StreamWriter.Write(System.Char[] buffer, System.Int32 index, System.Int32 count) - virtual ? Write(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual void System.IO.StreamWriter.Write(System.String value) - virtual ? Write(NanoInput.Class_00000004 Arg_0); - - ///Method: public virtual void System.IO.StreamWriter.WriteLine(System.String value) - virtual ? WriteLine(NanoInput.Class_00000004 Arg_0); + ///Method: public System.IO.StreamWriter..ctor(System.IO.Stream stream, System.Text.Encoding encoding, System.Int32 bufferSize, System.Boolean leaveOpen), Token 0000022D + public Class_00000607(NanoInput.Class_000005F9 Arg_0, NanoInput.Class_0000020F Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.IO.StreamWriter..cctor(), Token 00000606 + static Class_00000607() + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void System.IO.StreamWriter.Dispose(System.Boolean disposing), Token 00000AFA + public virtual void Dispose(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.StreamWriter.Write(System.Char value), Token 00000AFB + public virtual void Write(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.StreamWriter.Write(System.Char[] buffer), Token 00000AFE + public virtual void Write(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.StreamWriter.Write(System.Char[] buffer, System.Int32 index, System.Int32 count), Token 00000B01 + public virtual void Write(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.StreamWriter.Write(System.String value), Token 00000B02 + public virtual void Write(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.StreamWriter.WriteLine(System.String value), Token 00000B03 + public virtual void WriteLine(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IO.TextWriter public abstract class Class_00000298 : NanoInput.Class_00000045, NanoInput.Class_0000003A, NanoInput.Class_000005FA @@ -2513,17 +3287,29 @@ public abstract class Class_00000298 : NanoInput.Class_00000045, NanoInput.Class ///Field: System.IO.TextWriter System.IO.TextWriter.Null public static readonly NanoInput.Class_00000298 Field_00000608; - ///Method: protected System.IO.TextWriter..ctor(System.IFormatProvider formatProvider) - Class_00000298(NanoInput.Class_00000063 Arg_0); - - ///Method: protected System.IO.TextWriter..ctor() - Class_00000298(); - - ///Method: private static System.IO.TextWriter..cctor() - Class_00000298(); - - ///Method: public virtual void System.IO.TextWriter.Dispose() - virtual ? Dispose(); + ///Method: protected System.IO.TextWriter..ctor(System.IFormatProvider formatProvider), Token 00000240 + public Class_00000298(NanoInput.Class_00000063 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected System.IO.TextWriter..ctor(), Token 00000296 + public Class_00000298() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.IO.TextWriter..cctor(), Token 00000609 + static Class_00000298() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter.Dispose(), Token 00000AF8 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Array+EmptyArray public abstract class Class_36000013 @@ -2531,8 +3317,11 @@ public abstract class Class_36000013 ///Field: System.Byte[] System.Array+EmptyArray.Value public static readonly NanoInput.Class_36000013 Field_00000237; - ///Method: private static System.Array+EmptyArray..cctor() - Class_36000013(); + ///Method: private static System.Array+EmptyArray..cctor(), Token 0000060A + static Class_36000013() + { + throw new System.NotImplementedException(); + } } ///System.ReadOnlySpan public ref struct Class_0E000013 @@ -2543,26 +3332,47 @@ public ref struct Class_0E000013 ///Field: System.Int32 System.ReadOnlySpan._length public readonly NanoInput.Class_0E000013 Field_0000023B; - ///Method: public System.ReadOnlySpan..ctor(System.Byte[] array) - Class_0E000013(NanoInput.Class_00000013 Arg_0); - - ///Method: internal System.ReadOnlySpan..ctor(System.Byte& ptr, System.Int32 length) - Class_0E000013(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length) - Class_0E000013(? @void, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.ReadOnlySpan..ctor(System.Byte[] array, System.Int32 start, System.Int32 length) - Class_0E000013(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ReadOnlySpan.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ReadOnlySpan..ctor(System.Byte[] array), Token 00000238 + public Class_0E000013(NanoInput.Class_00000013 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: internal System.ReadOnlySpan..ctor(System.Byte& ptr, System.Int32 length), Token 00000293 + public Class_0E000013(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length), Token 000002B5 + public Class_0E000013(void* Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ReadOnlySpan..ctor(System.Byte[] array, System.Int32 start, System.Int32 length), Token 0000060B + public Class_0E000013(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj), Token 00000BA7 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode(), Token 00000BA8 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ReadOnlySpan.ToString(), Token 00000BA9 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.ByReference public ref struct Class_0000000A @@ -2570,8 +3380,11 @@ public ref struct Class_0000000A ///Field: System.IntPtr System.ByReference._value public readonly NanoInput.Class_0000000A Field_0000060C; - ///Method: public System.ByReference..ctor(System.Byte& value) - Class_0000000A(NanoInput.Class_00000013 Arg_0); + ///Method: public System.ByReference..ctor(System.Byte& value), Token 00000239 + public Class_0000000A(NanoInput.Class_00000013 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Text.ConsoleEncoding public sealed class Class_0000060D : NanoInput.Class_0000020F, NanoInput.Class_00000064 @@ -2579,32 +3392,59 @@ public sealed class Class_0000060D : NanoInput.Class_0000020F, NanoInput.Class_0 ///Field: System.Text.Encoding System.Text.ConsoleEncoding._encoding public readonly NanoInput.Class_0000060D Field_0000023D; - ///Method: internal System.Text.ConsoleEncoding..ctor(System.Text.Encoding encoding) - Class_0000060D(NanoInput.Class_0000020F Arg_0); - - ///Method: public virtual System.Byte[] System.Text.ConsoleEncoding.GetPreamble() - virtual NanoInput.Class_0000027D GetPreamble(); - - ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.get_CodePage() - ; - - ///Method: public virtual System.Text.Encoder System.Text.ConsoleEncoding.GetEncoder() - virtual NanoInput.Class_00000630 GetEncoder(); - - ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.GetMaxByteCount(System.Int32 charCount) - virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.String System.Text.ConsoleEncoding.get_EncodingName() - ; - - ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4); + ///Method: internal System.Text.ConsoleEncoding..ctor(System.Text.Encoding encoding), Token 00000233 + public Class_0000060D(NanoInput.Class_0000020F Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Byte[] System.Text.ConsoleEncoding.GetPreamble(), Token 00000BD2 + public virtual NanoInput.Class_0000027D GetPreamble() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.get_CodePage(), Token 00000BD3 + public virtual NanoInput.Class_00000014 get_CodePage() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.Encoder System.Text.ConsoleEncoding.GetEncoder(), Token 00000BD4 + public virtual NanoInput.Class_00000630 GetEncoder() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.GetMaxByteCount(System.Int32 charCount), Token 00000BD5 + public virtual NanoInput.Class_00000014 GetMaxByteCount(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Text.ConsoleEncoding.get_EncodingName(), Token 00001CD3 + public virtual NanoInput.Class_00000004 get_EncodingName() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count), Token 00001CD4 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount), Token 00001CD5 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.ConsoleEncoding.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex), Token 00001CD6 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4) + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.Task public class Class_00000628 : NanoInput.Class_00000629, NanoInput.Class_0000003A @@ -2654,47 +3494,23 @@ public class Class_00000628 : NanoInput.Class_00000629, NanoInput.Class_0000003A ///Field: System.Threading.Tasks.Task System.Threading.Tasks.Task.t_currentTask public static NanoInput.Class_00000628 Field_0000061A; - ///Method: private static System.Threading.Tasks.Task..cctor() - Class_00000628(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Boolean canceled, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.CancellationToken ct) - Class_00000628(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000F7C Arg_2); - - ///Method: internal System.Threading.Tasks.Task..ctor() - Class_00000628(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Object state, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Boolean promiseStyle) - Class_00000628(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Action action) - Class_00000628(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Action action, System.Threading.CancellationToken cancellationToken) - Class_00000628(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Action action, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_00000628(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Action action, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_00000628(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Action action, System.Object state) - Class_00000628(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Action action, System.Object state, System.Threading.CancellationToken cancellationToken) - Class_00000628(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Action action, System.Object state, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_00000628(); + ///Method: private static System.Threading.Tasks.Task..cctor(), Token 0000061B + static Class_00000628() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.Task..ctor(System.Action action, System.Object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_00000628(); + ///Method: internal System.Threading.Tasks.Task..ctor(System.Boolean canceled, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.CancellationToken ct), Token 0000061C + public Class_00000628(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000F7C Arg_2) + { + throw new System.NotImplementedException(); + } - ///Method: internal System.Threading.Tasks.Task..ctor(System.Delegate action, System.Object state, System.Threading.Tasks.Task parent, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.InternalTaskOptions internalOptions, System.Threading.Tasks.TaskScheduler scheduler) - Class_00000628(); - - ///Method: public virtual void System.Threading.Tasks.Task.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Threading.Tasks.Task.Dispose(), Token 00000E34 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.IAsyncResult public interface Class_00000629 @@ -2706,8 +3522,11 @@ public abstract class Class_0000062B ///Field: System.Text.Encoding System.IO.EncodingCache.UTF8NoBOM public static readonly NanoInput.Class_0000062B Field_00000254; - ///Method: private static System.IO.EncodingCache..cctor() - Class_0000062B(); + ///Method: private static System.IO.EncodingCache..cctor(), Token 0000062A + static Class_0000062B() + { + throw new System.NotImplementedException(); + } } ///System.Text.Encoding+DefaultEncoder public sealed class Class_0000062C : NanoInput.Class_00000630, NanoInput.Class_0000062D @@ -2715,20 +3534,35 @@ public sealed class Class_0000062C : NanoInput.Class_00000630, NanoInput.Class_0 ///Field: System.Text.Encoding System.Text.Encoding+DefaultEncoder._encoding public readonly NanoInput.Class_0000062C Field_00000257; - ///Method: public System.Text.Encoding+DefaultEncoder..ctor(System.Text.Encoding encoding) - Class_0000062C(NanoInput.Class_0000020F Arg_0); - - ///Method: public virtual System.Int32 System.Text.Encoding+DefaultEncoder.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count, System.Boolean flush) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3); - - ///Method: public virtual System.Int32 System.Text.Encoding+DefaultEncoder.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex, System.Boolean flush) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_0000021C Arg_5); - - ///Method: public virtual System.Int32 System.Text.Encoding+DefaultEncoder.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Boolean flush) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_0000021C Arg_4); - - ///Method: public virtual System.Int32 System.Text.Encoding+DefaultEncoder.GetByteCount(System.Char* chars, System.Int32 count, System.Boolean flush) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2); + ///Method: public System.Text.Encoding+DefaultEncoder..ctor(System.Text.Encoding encoding), Token 00000255 + public Class_0000062C(NanoInput.Class_0000020F Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Encoding+DefaultEncoder.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count, System.Boolean flush), Token 00000BD7 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Encoding+DefaultEncoder.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex, System.Boolean flush), Token 00000BD9 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_0000021C Arg_5) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Encoding+DefaultEncoder.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Boolean flush), Token 00000BDB + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_0000021C Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Encoding+DefaultEncoder.GetByteCount(System.Char* chars, System.Int32 count, System.Boolean flush), Token 00001CDF + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2) + { + throw new System.NotImplementedException(); + } } ///System.Runtime.Serialization.IObjectReference public interface Class_0000062D @@ -2743,8 +3577,11 @@ public abstract class Class_00000630 ///Field: System.Text.EncoderFallbackBuffer System.Text.Encoder._fallbackBuffer public NanoInput.Class_00000630 Field_0000062F; - ///Method: protected System.Text.Encoder..ctor() - Class_00000630(); + ///Method: protected System.Text.Encoder..ctor(), Token 00000256 + public Class_00000630() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E000131 : NanoInput.Class_2F000131, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -2755,14 +3592,23 @@ public class Class_2E000131 : NanoInput.Class_2F000131, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000131 Field_0000025A; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Char[] array) - Class_2E000131(NanoInput.Class_00000131 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Char[] array), Token 00000258 + public Class_2E000131(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 0000083B + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 0000083C + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000131 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -2771,17 +3617,11 @@ public interface Class_2F000131 : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.InvalidOperationException public class Class_00000024 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.InvalidOperationException..ctor(System.String message) - Class_00000024(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.InvalidOperationException..ctor() - Class_00000024(); - - ///Method: public System.InvalidOperationException..ctor(System.String message, System.Exception innerException) - Class_00000024(); - - ///Method: protected System.InvalidOperationException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000024(); + ///Method: public System.InvalidOperationException..ctor(System.String message), Token 00000263 + public Class_00000024(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Span public ref struct Class_02000013 @@ -2792,26 +3632,41 @@ public ref struct Class_02000013 ///Field: System.Int32 System.Span._length public readonly NanoInput.Class_02000013 Field_0000027F; - ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length) - Class_02000013(? @void, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.Span..ctor(System.Byte[] array) - Class_02000013(NanoInput.Class_00000013 Arg_0); - - ///Method: internal System.Span..ctor(System.Byte& ptr, System.Int32 length) - Class_02000013(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.Span..ctor(System.Byte[] array, System.Int32 start, System.Int32 length) - Class_02000013(); - - ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Span.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Span.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length), Token 0000026A + public Class_02000013(void* Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Span..ctor(System.Byte[] array), Token 0000027C + public Class_02000013(NanoInput.Class_00000013 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: internal System.Span..ctor(System.Byte& ptr, System.Int32 length), Token 00000290 + public Class_02000013(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj), Token 00000BB1 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Span.GetHashCode(), Token 00000BB2 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Span.ToString(), Token 00000BB3 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Byte public struct Class_00000013 : NanoInput.Class_00000130, NanoInput.Class_000001F5, NanoInput.Class_000001F8, NanoInput.Class_0C000013, NanoInput.Class_07000013 @@ -2819,23 +3674,41 @@ public struct Class_00000013 : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.Byte System.Byte.m_value public readonly NanoInput.Class_00000013 Field_00000636; - ///Method: public virtual System.Boolean System.Byte.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Byte.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Byte.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Byte.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.Byte.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: public virtual System.Boolean System.Byte.Equals(System.Byte obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000013 Arg_0); + ///Method: public virtual System.Boolean System.Byte.Equals(System.Object obj), Token 00000977 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Byte.GetHashCode(), Token 00000978 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Byte.ToString(), Token 0000097A + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Byte.ToString(System.String format, System.IFormatProvider provider), Token 0000098E + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Byte.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 000009E1 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Byte.Equals(System.Byte obj), Token 00001C75 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000013 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000013 @@ -2851,23 +3724,23 @@ public class Class_00000647 : NanoInput.Class_00000024, NanoInput.Class_00000085 ///Field: System.String System.ObjectDisposedException._objectName public readonly NanoInput.Class_00000647 Field_00000275; - ///Method: public System.ObjectDisposedException..ctor(System.String objectName, System.String message) - Class_00000647(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public System.ObjectDisposedException..ctor(System.String objectName) - Class_00000647(NanoInput.Class_00000004 Arg_0); - - ///Method: private System.ObjectDisposedException..ctor() - Class_00000647(); + ///Method: public System.ObjectDisposedException..ctor(System.String objectName, System.String message), Token 00000274 + public Class_00000647(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public System.ObjectDisposedException..ctor(System.String message, System.Exception innerException) - Class_00000647(); + ///Method: public System.ObjectDisposedException..ctor(System.String objectName), Token 000003A5 + public Class_00000647(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: protected System.ObjectDisposedException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000647(); - - ///Method: public virtual System.String System.ObjectDisposedException.get_Message() - ; + ///Method: public virtual System.String System.ObjectDisposedException.get_Message(), Token 00000B94 + public virtual NanoInput.Class_00000004 get_Message() + { + throw new System.NotImplementedException(); + } } ///System.Buffers.ArrayPool public abstract class Class_32000013 @@ -2875,17 +3748,21 @@ public abstract class Class_32000013 ///Field: System.Buffers.TlsOverPerCoreLockedStacksArrayPool System.Buffers.ArrayPool.s_shared public static readonly NanoInput.Class_32000013 Field_0000027B; - ///Method: protected System.Buffers.ArrayPool..ctor() - Class_32000013(); + ///Method: protected System.Buffers.ArrayPool..ctor(), Token 00000648 + public Class_32000013() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Buffers.ArrayPool..cctor() - Class_32000013(); + ///Method: private static System.Buffers.ArrayPool..cctor(), Token 00000649 + static Class_32000013() + { + throw new System.NotImplementedException(); + } } ///System.Byte[] public sealed class Class_0000027D : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_33000013, NanoInput.Class_17000013, NanoInput.Class_01000013, NanoInput.Class_34000013, NanoInput.Class_35000013 { - ///Method: public System.Byte[]..ctor(System.Int32 ) - Class_0000027D(); } ///System.Collections.Generic.IList public interface Class_33000013 : NanoInput.Class_17000013, NanoInput.Class_01000013, NanoInput.Class_000000E8 @@ -2916,14 +3793,23 @@ public class Class_2E000013 : NanoInput.Class_2F000013, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000013 Field_00000285; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Byte[] array) - Class_2E000013(NanoInput.Class_00000013 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Byte[] array), Token 00000283 + public Class_2E000013(NanoInput.Class_00000013 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00000839 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 0000083A + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000013 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -2935,26 +3821,47 @@ public sealed class Class_00000294 : NanoInput.Class_00000298, NanoInput.Class_0 ///Field: System.IO.TextWriter System.IO.TextWriter+SyncTextWriter._out public readonly NanoInput.Class_00000294 Field_00000297; - ///Method: internal System.IO.TextWriter+SyncTextWriter..ctor(System.IO.TextWriter t) - Class_00000294(NanoInput.Class_00000298 Arg_0); - - ///Method: protected virtual void System.IO.TextWriter+SyncTextWriter.Dispose(System.Boolean disposing) - virtual ? Dispose(NanoInput.Class_0000021C Arg_0); - - ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.Write(System.Char value) - virtual ? Write(NanoInput.Class_00000131 Arg_0); - - ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.Write(System.Char[] buffer) - virtual ? Write(NanoInput.Class_00000131 Arg_0); - - ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.Write(System.Char[] buffer, System.Int32 index, System.Int32 count) - virtual ? Write(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.Write(System.String value) - virtual ? Write(NanoInput.Class_00000004 Arg_0); - - ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.WriteLine(System.String value) - virtual ? WriteLine(NanoInput.Class_00000004 Arg_0); + ///Method: internal System.IO.TextWriter+SyncTextWriter..ctor(System.IO.TextWriter t), Token 00000295 + public Class_00000294(NanoInput.Class_00000298 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void System.IO.TextWriter+SyncTextWriter.Dispose(System.Boolean disposing), Token 00000B04 + public virtual void Dispose(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.Write(System.Char value), Token 00000B05 + public virtual void Write(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.Write(System.Char[] buffer), Token 00000B06 + public virtual void Write(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.Write(System.Char[] buffer, System.Int32 index, System.Int32 count), Token 00000B07 + public virtual void Write(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.Write(System.String value), Token 00000B08 + public virtual void Write(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter+SyncTextWriter.WriteLine(System.String value), Token 00000B09 + public virtual void WriteLine(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Array+EmptyArray public abstract class Class_36000131 @@ -2962,8 +3869,11 @@ public abstract class Class_36000131 ///Field: System.Char[] System.Array+EmptyArray.Value public static readonly NanoInput.Class_36000131 Field_0000029D; - ///Method: private static System.Array+EmptyArray..cctor() - Class_36000131(); + ///Method: private static System.Array+EmptyArray..cctor(), Token 0000064C + static Class_36000131() + { + throw new System.NotImplementedException(); + } } /// public sealed class Class_000006BD @@ -3106,23 +4016,41 @@ public struct Class_000002C3 : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.UInt16 System.UInt16.m_value public readonly NanoInput.Class_000002C3 Field_000006BE; - ///Method: public virtual System.Boolean System.UInt16.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.UInt16.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.UInt16.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.UInt16.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.UInt16.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: public virtual System.Boolean System.UInt16.Equals(System.UInt16 obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_000002C3 Arg_0); + ///Method: public virtual System.Boolean System.UInt16.Equals(System.Object obj), Token 00000E96 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.UInt16.GetHashCode(), Token 00000E97 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.UInt16.ToString(), Token 00000E98 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.UInt16.ToString(System.String format, System.IFormatProvider provider), Token 00000E99 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.UInt16.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00000E9A + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.UInt16.Equals(System.UInt16 obj), Token 00001D3B + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_000002C3 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C0002C3 @@ -3150,17 +4078,23 @@ public ref struct Class_000002E0 ///Field: System.Boolean System.Runtime.CompilerServices.DefaultInterpolatedStringHandler._hasCustomFormatter public readonly NanoInput.Class_000002E0 Field_000002CC; - ///Method: public System.Runtime.CompilerServices.DefaultInterpolatedStringHandler..ctor(System.Int32 literalLength, System.Int32 formattedCount) - Class_000002E0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.Runtime.CompilerServices.DefaultInterpolatedStringHandler..ctor(System.Int32 literalLength, System.Int32 formattedCount, System.IFormatProvider provider) - Class_000002E0(); + ///Method: public System.Runtime.CompilerServices.DefaultInterpolatedStringHandler..ctor(System.Int32 literalLength, System.Int32 formattedCount), Token 00000118 + public Class_000002E0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Runtime.CompilerServices.DefaultInterpolatedStringHandler..ctor(System.Int32 literalLength, System.Int32 formattedCount, System.IFormatProvider provider, System.Span initialBuffer) - Class_000002E0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000063 Arg_2, NanoInput.Class_02000131 Arg_3); + ///Method: public System.Runtime.CompilerServices.DefaultInterpolatedStringHandler..ctor(System.Int32 literalLength, System.Int32 formattedCount, System.IFormatProvider provider, System.Span initialBuffer), Token 000006CD + public Class_000002E0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000063 Arg_2, NanoInput.Class_02000131 Arg_3) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.ToString(), Token 00000BB0 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.UInt32 public struct Class_00000015 : NanoInput.Class_00000130, NanoInput.Class_000001F5, NanoInput.Class_000001F8, NanoInput.Class_0C000015, NanoInput.Class_07000015 @@ -3168,23 +4102,41 @@ public struct Class_00000015 : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.UInt32 System.UInt32.m_value public readonly NanoInput.Class_00000015 Field_000006CE; - ///Method: public virtual System.Boolean System.UInt32.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.UInt32.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.UInt32.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.UInt32.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.UInt32.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: public virtual System.Boolean System.UInt32.Equals(System.UInt32 obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000015 Arg_0); + ///Method: public virtual System.Boolean System.UInt32.Equals(System.Object obj), Token 00000E9B + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.UInt32.GetHashCode(), Token 00000E9C + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.UInt32.ToString(), Token 00000E9D + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.UInt32.ToString(System.String format, System.IFormatProvider provider), Token 00000E9E + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.UInt32.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00000B9D + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.UInt32.Equals(System.UInt32 obj), Token 00001D3C + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000015 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000015 @@ -3203,14 +4155,23 @@ public class Class_2E000004 : NanoInput.Class_2F000004, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000004 Field_000002E3; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.String[] array) - Class_2E000004(NanoInput.Class_00000004 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.String[] array), Token 000002E1 + public Class_2E000004(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 0000084B + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 0000084C + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000004 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -3231,20 +4192,29 @@ public class Class_11000014 : NanoInput.Class_33000014, NanoInput.Class_17000014 ///Field: System.Int32 System.Collections.Generic.List._size public NanoInput.Class_11000014 Field_000002E7; - ///Method: public System.Collections.Generic.List..ctor() - Class_11000014(); - - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_11000014(NanoInput.Class_00000014 Arg_0); - - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_11000014(); - - ///Method: private static System.Collections.Generic.List..cctor() - Class_11000014(); - - ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator() - virtual NanoInput.Class_2F000014 System.Collections.Generic.IEnumerable.GetEnumerator(); + ///Method: public System.Collections.Generic.List..ctor(), Token 0000011E + public Class_11000014() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity), Token 000006DD + public Class_11000014(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Collections.Generic.List..cctor(), Token 000006DF + static Class_11000014() + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator(), Token 00001C86 + public virtual NanoInput.Class_2F000014 System.Collections.Generic.IEnumerable.GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IList public interface Class_33000014 : NanoInput.Class_17000014, NanoInput.Class_01000014, NanoInput.Class_000000E8 @@ -3275,17 +4245,29 @@ public class Class_2E000014 : NanoInput.Class_2F000014, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000014 Field_00000334; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Int32[] array) - Class_2E000014(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); - - ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current() - ; + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Int32[] array), Token 00000332 + public Class_2E000014(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00000847 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00000848 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current(), Token 00001C65 + public virtual NanoInput.Class_00000014 get_Current() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000014 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -3294,17 +4276,11 @@ public interface Class_2F000014 : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.RankException public class Class_000006E4 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.RankException..ctor() - Class_000006E4(); - - ///Method: public System.RankException..ctor(System.String message) - Class_000006E4(); - - ///Method: public System.RankException..ctor(System.String message, System.Exception innerException) - Class_000006E4(); - - ///Method: protected System.RankException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_000006E4(); + ///Method: public System.RankException..ctor(), Token 00000340 + public Class_000006E4() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.Dictionary> public class Class_FF0006F1 : NanoInput.Class_FF0006F2, NanoInput.Class_FF0006F4, NanoInput.Class_FF0006F5, NanoInput.Class_000000E8, NanoInput.Class_000006F6, NanoInput.Class_000000E7, NanoInput.Class_FF0006F7, NanoInput.Class_FF0006F8, NanoInput.Class_00000085 @@ -3339,32 +4315,17 @@ public class Class_FF0006F1 : NanoInput.Class_FF0006F2, NanoInput.Class_FF0006F4 ///Field: System.Collections.Generic.Dictionary>+ValueCollection System.Collections.Generic.Dictionary>._values public NanoInput.Class_FF0006F1 Field_000006E9; - ///Method: public System.Collections.Generic.Dictionary>..ctor() - Class_FF0006F1(); - - ///Method: public System.Collections.Generic.Dictionary>..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0006F1(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1); - - ///Method: public System.Collections.Generic.Dictionary>..ctor(System.Int32 capacity) - Class_FF0006F1(); - - ///Method: public System.Collections.Generic.Dictionary>..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_FF0006F1(); - - ///Method: public System.Collections.Generic.Dictionary>..ctor(System.Collections.Generic.IDictionary> dictionary) - Class_FF0006F1(); - - ///Method: public System.Collections.Generic.Dictionary>..ctor(System.Collections.Generic.IDictionary> dictionary, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0006F1(); - - ///Method: public System.Collections.Generic.Dictionary>..ctor(System.Collections.Generic.IEnumerable>> collection) - Class_FF0006F1(); - - ///Method: public System.Collections.Generic.Dictionary>..ctor(System.Collections.Generic.IEnumerable>> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0006F1(); + ///Method: public System.Collections.Generic.Dictionary>..ctor(), Token 00000349 + public Class_FF0006F1() + { + throw new System.NotImplementedException(); + } - ///Method: protected System.Collections.Generic.Dictionary>..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_FF0006F1(); + ///Method: public System.Collections.Generic.Dictionary>..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer), Token 0000034D + public Class_FF0006F1(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IDictionary> public interface Class_FF0006F2 : NanoInput.Class_FF0006F4, NanoInput.Class_FF0006F5, NanoInput.Class_000000E8 @@ -3414,8 +4375,11 @@ public abstract class Class_000006FF ///Field: System.Runtime.CompilerServices.ConditionalWeakTable System.Collections.HashHelpers.s_serializationInfoTable public static NanoInput.Class_000006FF Field_000006FD; - ///Method: private static System.Collections.HashHelpers..cctor() - Class_000006FF(); + ///Method: private static System.Collections.HashHelpers..cctor(), Token 000006FE + static Class_000006FF() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Entry> public class Class_FF000701 : NanoInput.Class_FF000702, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -3426,14 +4390,23 @@ public class Class_FF000701 : NanoInput.Class_FF000702, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Entry>._current public NanoInput.Class_FF000701 Field_00000361; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Collections.Generic.List`1[[Iot.Device.Board.Board+PinReservation, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF000701(NanoInput.Class_FF000354 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Collections.Generic.List`1[[Iot.Device.Board.Board+PinReservation, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 0000035F + public Class_FF000701(NanoInput.Class_FF000354 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Entry>.MoveNext(), Token 00000845 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Entry>.Dispose(), Token 00000846 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator>+Entry> public interface Class_FF000702 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -3454,20 +4427,29 @@ public class Class_00000707 : NanoInput.Class_05000004, NanoInput.Class_00000708 ///Field: System.Collections.Generic.IEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer._underlyingComparer public readonly NanoInput.Class_00000707 Field_00000703; - ///Method: private System.Collections.Generic.NonRandomizedStringEqualityComparer..ctor(System.Collections.Generic.IEqualityComparer underlyingComparer) - Class_00000707(NanoInput.Class_05000004 Arg_0); - - ///Method: protected System.Collections.Generic.NonRandomizedStringEqualityComparer..ctor(System.Runtime.Serialization.SerializationInfo information, System.Runtime.Serialization.StreamingContext context) - Class_00000707(); - - ///Method: private static System.Collections.Generic.NonRandomizedStringEqualityComparer..cctor() - Class_00000707(); - - ///Method: public virtual System.Boolean System.Collections.Generic.NonRandomizedStringEqualityComparer.Equals(System.String x, System.String y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public virtual System.Int32 System.Collections.Generic.NonRandomizedStringEqualityComparer.GetHashCode(System.String obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0); + ///Method: private System.Collections.Generic.NonRandomizedStringEqualityComparer..ctor(System.Collections.Generic.IEqualityComparer underlyingComparer), Token 00000704 + public Class_00000707(NanoInput.Class_05000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Collections.Generic.NonRandomizedStringEqualityComparer..cctor(), Token 00000706 + static Class_00000707() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.NonRandomizedStringEqualityComparer.Equals(System.String x, System.String y), Token 00001C91 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.NonRandomizedStringEqualityComparer.GetHashCode(System.String obj), Token 00001C93 + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IInternalStringEqualityComparer public interface Class_00000708 : NanoInput.Class_05000004 @@ -3479,17 +4461,29 @@ public sealed class Class_0000070B : NanoInput.Class_0000070E, NanoInput.Class_0 ///Field: System.OrdinalCaseSensitiveComparer System.OrdinalCaseSensitiveComparer.Instance public static readonly NanoInput.Class_0000070B Field_00000367; - ///Method: private System.OrdinalCaseSensitiveComparer..ctor() - Class_0000070B(); - - ///Method: private static System.OrdinalCaseSensitiveComparer..cctor() - Class_0000070B(); - - ///Method: public virtual System.Boolean System.OrdinalCaseSensitiveComparer.Equals(System.String x, System.String y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public virtual System.Int32 System.OrdinalCaseSensitiveComparer.GetHashCode(System.String obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0); + ///Method: private System.OrdinalCaseSensitiveComparer..ctor(), Token 00000709 + public Class_0000070B() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.OrdinalCaseSensitiveComparer..cctor(), Token 0000070A + static Class_0000070B() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.OrdinalCaseSensitiveComparer.Equals(System.String x, System.String y), Token 00001CC1 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.OrdinalCaseSensitiveComparer.GetHashCode(System.String obj), Token 00001CC2 + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.OrdinalComparer public class Class_0000070E : NanoInput.Class_00000710, NanoInput.Class_000000DE, NanoInput.Class_000000D1, NanoInput.Class_0A000004, NanoInput.Class_05000004 @@ -3497,26 +4491,44 @@ public class Class_0000070E : NanoInput.Class_00000710, NanoInput.Class_000000DE ///Field: System.Boolean System.OrdinalComparer._ignoreCase public readonly NanoInput.Class_0000070E Field_0000070C; - ///Method: internal System.OrdinalComparer..ctor(System.Boolean ignoreCase) - Class_0000070E(NanoInput.Class_0000021C Arg_0); - - ///Method: public virtual System.Boolean System.OrdinalComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.OrdinalComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.Boolean System.OrdinalComparer.Equals(System.String x, System.String y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public virtual System.Int32 System.OrdinalComparer.GetHashCode(System.String obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0); + ///Method: internal System.OrdinalComparer..ctor(System.Boolean ignoreCase), Token 0000070D + public Class_0000070E(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.OrdinalComparer.Equals(System.Object obj), Token 00000BA0 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.OrdinalComparer.GetHashCode(), Token 00000BA1 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.OrdinalComparer.Equals(System.String x, System.String y), Token 00001CBC + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.OrdinalComparer.GetHashCode(System.String obj), Token 00001CBF + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.StringComparer public abstract class Class_00000710 : NanoInput.Class_000000DE, NanoInput.Class_000000D1, NanoInput.Class_0A000004, NanoInput.Class_05000004 { - ///Method: protected System.StringComparer..ctor() - Class_00000710(); + ///Method: protected System.StringComparer..ctor(), Token 0000070F + public Class_00000710() + { + throw new System.NotImplementedException(); + } } ///System.OrdinalIgnoreCaseComparer public sealed class Class_00000713 : NanoInput.Class_0000070E, NanoInput.Class_000000DE, NanoInput.Class_000000D1, NanoInput.Class_0A000004, NanoInput.Class_05000004, NanoInput.Class_00000085 @@ -3524,17 +4536,29 @@ public sealed class Class_00000713 : NanoInput.Class_0000070E, NanoInput.Class_0 ///Field: System.OrdinalIgnoreCaseComparer System.OrdinalIgnoreCaseComparer.Instance public static readonly NanoInput.Class_00000713 Field_00000368; - ///Method: private System.OrdinalIgnoreCaseComparer..ctor() - Class_00000713(); - - ///Method: private static System.OrdinalIgnoreCaseComparer..cctor() - Class_00000713(); - - ///Method: public virtual System.Boolean System.OrdinalIgnoreCaseComparer.Equals(System.String x, System.String y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public virtual System.Int32 System.OrdinalIgnoreCaseComparer.GetHashCode(System.String obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0); + ///Method: private System.OrdinalIgnoreCaseComparer..ctor(), Token 00000711 + public Class_00000713() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.OrdinalIgnoreCaseComparer..cctor(), Token 00000712 + static Class_00000713() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.OrdinalIgnoreCaseComparer.Equals(System.String x, System.String y), Token 00001CC3 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.OrdinalIgnoreCaseComparer.GetHashCode(System.String obj), Token 00001CC4 + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.Dictionary public class Class_FF00071D : NanoInput.Class_FF00071E, NanoInput.Class_FF00071F, NanoInput.Class_FF000720, NanoInput.Class_000000E8, NanoInput.Class_000006F6, NanoInput.Class_000000E7, NanoInput.Class_FF000721, NanoInput.Class_FF000722, NanoInput.Class_00000085 @@ -3569,32 +4593,17 @@ public class Class_FF00071D : NanoInput.Class_FF00071E, NanoInput.Class_FF00071F ///Field: System.Collections.Generic.Dictionary+ValueCollection System.Collections.Generic.Dictionary._values public NanoInput.Class_FF00071D Field_00000715; - ///Method: public System.Collections.Generic.Dictionary..ctor() - Class_FF00071D(); + ///Method: public System.Collections.Generic.Dictionary..ctor(), Token 0000034A + public Class_FF00071D() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_FF00071D(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity) - Class_FF00071D(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_FF00071D(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary) - Class_FF00071D(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary, System.Collections.Generic.IEqualityComparer comparer) - Class_FF00071D(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection) - Class_FF00071D(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF00071D(); - - ///Method: protected System.Collections.Generic.Dictionary..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_FF00071D(); + ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer), Token 00000369 + public Class_FF00071D(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IDictionary public interface Class_FF00071E : NanoInput.Class_FF00071F, NanoInput.Class_FF000720, NanoInput.Class_000000E8 @@ -3640,14 +4649,23 @@ public class Class_FF000725 : NanoInput.Class_FF000726, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF000725 Field_00000374; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Iot.Device.Board.I2cBusManager, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array) - Class_FF000725(NanoInput.Class_FF00036C Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Iot.Device.Board.I2cBusManager, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array), Token 00000372 + public Class_FF000725(NanoInput.Class_FF00036C Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 00000841 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 00000842 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF000726 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -3666,28 +4684,43 @@ public class Class_110004AD : NanoInput.Class_330004AD, NanoInput.Class_170004AD public NanoInput.Class_110004AD Field_0000049F; ///Field: System.Int32 System.Collections.Generic.List._version - public NanoInput.Class_110004AD Field_000004B4; - - ///Method: public System.Collections.Generic.List..ctor() - Class_110004AD(); - - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_110004AD(NanoInput.Class_010004AD Arg_0); - - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_110004AD(); - - ///Method: private static System.Collections.Generic.List..cctor() - Class_110004AD(); - - ///Method: public virtual System.Int32 System.Collections.Generic.List.get_Count() - ; - - ///Method: public virtual void System.Collections.Generic.List.CopyTo(Iot.Device.Board.IDeviceManager[] array, System.Int32 arrayIndex) - virtual ? CopyTo(NanoInput.Class_000004AD Arg_0, NanoInput.Class_00000014 Arg_1); + public NanoInput.Class_110004AD Field_000004B4; - ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator() - virtual NanoInput.Class_2F0004AD System.Collections.Generic.IEnumerable.GetEnumerator(); + ///Method: public System.Collections.Generic.List..ctor(), Token 0000034B + public Class_110004AD() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection), Token 00000534 + public Class_110004AD(NanoInput.Class_010004AD Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Collections.Generic.List..cctor(), Token 00000728 + static Class_110004AD() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.List.get_Count(), Token 00000A0B + public virtual NanoInput.Class_00000014 get_Count() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Collections.Generic.List.CopyTo(Iot.Device.Board.IDeviceManager[] array, System.Int32 arrayIndex), Token 00000A0F + public virtual void CopyTo(NanoInput.Class_000004AD Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator(), Token 00000A10 + public virtual NanoInput.Class_2F0004AD System.Collections.Generic.IEnumerable.GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IList public interface Class_330004AD : NanoInput.Class_170004AD, NanoInput.Class_010004AD, NanoInput.Class_000000E8 @@ -3742,32 +4775,17 @@ public class Class_FF000735 : NanoInput.Class_FF000736, NanoInput.Class_FF000738 ///Field: System.Collections.Generic.Dictionary+ValueCollection System.Collections.Generic.Dictionary._values public NanoInput.Class_FF000735 Field_0000072D; - ///Method: public System.Collections.Generic.Dictionary..ctor() - Class_FF000735(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_FF000735(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity) - Class_FF000735(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_FF000735(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary) - Class_FF000735(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary, System.Collections.Generic.IEqualityComparer comparer) - Class_FF000735(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection) - Class_FF000735(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF000735(); + ///Method: public System.Collections.Generic.Dictionary..ctor(), Token 0000034C + public Class_FF000735() + { + throw new System.NotImplementedException(); + } - ///Method: protected System.Collections.Generic.Dictionary..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_FF000735(); + ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer), Token 00000377 + public Class_FF000735(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IDictionary public interface Class_FF000736 : NanoInput.Class_FF000738, NanoInput.Class_FF000739, NanoInput.Class_000000E8 @@ -3813,14 +4831,23 @@ public class Class_FF000741 : NanoInput.Class_FF000742, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF000741 Field_00000382; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Iot.Device.Board.PinUsage, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array) - Class_FF000741(NanoInput.Class_FF00037A Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Iot.Device.Board.PinUsage, Board, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array), Token 00000380 + public Class_FF000741(NanoInput.Class_FF00037A Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 00000843 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 00000844 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF000742 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -3835,26 +4862,35 @@ public ref struct Class_0E000004 ///Field: System.Int32 System.ReadOnlySpan._length public readonly NanoInput.Class_0E000004 Field_00000387; - ///Method: public System.ReadOnlySpan..ctor(System.String[] array) - Class_0E000004(NanoInput.Class_00000004 Arg_0); - - ///Method: internal System.ReadOnlySpan..ctor(System.String& ptr, System.Int32 length) - Class_0E000004(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.ReadOnlySpan..ctor(System.String[] array, System.Int32 start, System.Int32 length) - Class_0E000004(); - - ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length) - Class_0E000004(); - - ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ReadOnlySpan.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ReadOnlySpan..ctor(System.String[] array), Token 00000383 + public Class_0E000004(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: internal System.ReadOnlySpan..ctor(System.String& ptr, System.Int32 length), Token 0000039E + public Class_0E000004(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj), Token 00000BAD + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode(), Token 00000BAE + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ReadOnlySpan.ToString(), Token 00000BAF + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.ByReference public ref struct Class_30000004 @@ -3862,8 +4898,11 @@ public ref struct Class_30000004 ///Field: System.IntPtr System.ByReference._value public readonly NanoInput.Class_30000004 Field_00000745; - ///Method: public System.ByReference..ctor(System.String& value) - Class_30000004(NanoInput.Class_00000004 Arg_0); + ///Method: public System.ByReference..ctor(System.String& value), Token 00000385 + public Class_30000004(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Array+EmptyArray public abstract class Class_36000004 @@ -3871,8 +4910,11 @@ public abstract class Class_36000004 ///Field: System.String[] System.Array+EmptyArray.Value public static readonly NanoInput.Class_36000004 Field_00000398; - ///Method: private static System.Array+EmptyArray..cctor() - Class_36000004(); + ///Method: private static System.Array+EmptyArray..cctor(), Token 00000746 + static Class_36000004() + { + throw new System.NotImplementedException(); + } } ///System.Span public ref struct Class_02000004 @@ -3883,32 +4925,33 @@ public ref struct Class_02000004 ///Field: System.Int32 System.Span._length public readonly NanoInput.Class_02000004 Field_0000039D; - ///Method: public System.Span..ctor(System.String[] array) - Class_02000004(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.Span..ctor(System.String[] array, System.Int32 start, System.Int32 length) - Class_02000004(); - - ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length) - Class_02000004(); - - ///Method: internal System.Span..ctor(System.String& ptr, System.Int32 length) - Class_02000004(); - - ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Span.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Span.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Span..ctor(System.String[] array), Token 0000039A + public Class_02000004(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj), Token 00000BB7 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Span.GetHashCode(), Token 00000BB8 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Span.ToString(), Token 00000BB9 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.String[] public sealed class Class_0000039B : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_33000004, NanoInput.Class_17000004, NanoInput.Class_01000004, NanoInput.Class_34000004, NanoInput.Class_35000004 { - ///Method: public System.String[]..ctor(System.Int32 ) - Class_0000039B(); } ///System.Collections.Generic.IList public interface Class_33000004 : NanoInput.Class_17000004, NanoInput.Class_01000004, NanoInput.Class_000000E8 @@ -3945,38 +4988,41 @@ public sealed class Class_00000750 : NanoInput.Class_00000064, NanoInput.Class_0 ///Field: System.Int32 System.Version._Revision public readonly NanoInput.Class_00000750 Field_000003B5; - ///Method: public System.Version..ctor(System.Int32 major, System.Int32 minor) - Class_00000750(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.Version..ctor(System.Int32 major, System.Int32 minor, System.Int32 build, System.Int32 revision) - Class_00000750(); - - ///Method: public System.Version..ctor(System.Int32 major, System.Int32 minor, System.Int32 build) - Class_00000750(); - - ///Method: public System.Version..ctor(System.String version) - Class_00000750(); - - ///Method: public System.Version..ctor() - Class_00000750(); - - ///Method: private System.Version..ctor(System.Version version) - Class_00000750(); - - ///Method: public virtual System.Boolean System.Version.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Version.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Version.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: private virtual System.String System.Version.System.IFormattable.ToString(System.String format, System.IFormatProvider formatProvider) - virtual NanoInput.Class_00000004 System.IFormattable.ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: private virtual System.Boolean System.Version.System.ISpanFormattable.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C System.ISpanFormattable.TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: public System.Version..ctor(System.Int32 major, System.Int32 minor), Token 000003AF + public Class_00000750(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Version.Equals(System.Object obj), Token 00000EB7 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Version.GetHashCode(), Token 00000EB8 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Version.ToString(), Token 00000EBA + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.String System.Version.System.IFormattable.ToString(System.String format, System.IFormatProvider formatProvider), Token 00000EBB + public virtual NanoInput.Class_00000004 System.IFormattable.ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.Boolean System.Version.System.ISpanFormattable.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00000EBC + public virtual NanoInput.Class_0000021C System.ISpanFormattable.TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000750 @@ -4001,14 +5047,23 @@ public sealed class Class_00000752 : NanoInput.Class_00000085, NanoInput.Class_0 ///Field: System.String System.OperatingSystem._versionString public NanoInput.Class_00000752 Field_00000751; - ///Method: public System.OperatingSystem..ctor(System.PlatformID platform, System.Version version) - Class_00000752(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000750 Arg_1); + ///Method: public System.OperatingSystem..ctor(System.PlatformID platform, System.Version version), Token 000003B0 + public Class_00000752(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000750 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: internal System.OperatingSystem..ctor(System.PlatformID platform, System.Version version, System.String servicePack) - Class_00000752(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000750 Arg_1, NanoInput.Class_00000004 Arg_2); + ///Method: internal System.OperatingSystem..ctor(System.PlatformID platform, System.Version version, System.String servicePack), Token 000003B6 + public Class_00000752(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000750 Arg_1, NanoInput.Class_00000004 Arg_2) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.OperatingSystem.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.OperatingSystem.ToString(), Token 00000B96 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.PlatformID public struct Class_000003B7 : NanoInput.Class_00000008, NanoInput.Class_00000130, NanoInput.Class_000001F8 @@ -4043,20 +5098,29 @@ public struct Class_000003B7 : NanoInput.Class_00000008, NanoInput.Class_0000013 ///System.Enum public abstract class Class_00000008 : NanoInput.Class_00000130, NanoInput.Class_000001F8 { - ///Method: protected System.Enum..ctor() - Class_00000008(); - - ///Method: public virtual System.Boolean System.Enum.Equals(System.Object obj) - virtual ? Equals(); - - ///Method: public virtual System.Int32 System.Enum.GetHashCode() - virtual ? GetHashCode(); - - ///Method: public virtual System.String System.Enum.ToString() - virtual ? ToString(); - - ///Method: public virtual System.String System.Enum.ToString(System.String format, System.IFormatProvider provider) - virtual ? ToString(); + ///Method: public virtual System.Boolean System.Enum.Equals(System.Object obj), Token 00000A50 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Enum.GetHashCode(), Token 00000A51 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Enum.ToString(), Token 00000A54 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Enum.ToString(System.String format, System.IFormatProvider provider), Token 00000A5A + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Globalization.CompareInfo public sealed class Class_0000075A @@ -4082,26 +5146,38 @@ public sealed class Class_0000075A ///Field: System.Int32 System.Globalization.CompareInfo.culture public NanoInput.Class_0000075A Field_00000757; - ///Method: internal System.Globalization.CompareInfo..ctor(System.Globalization.CultureInfo culture) - Class_0000075A(); - - ///Method: private static System.Globalization.CompareInfo..cctor() - Class_0000075A(); - - ///Method: public virtual System.Boolean System.Globalization.CompareInfo.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Globalization.CompareInfo.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Globalization.CompareInfo.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: private static System.Globalization.CompareInfo..cctor(), Token 00000759 + static Class_0000075A() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Globalization.CompareInfo.Equals(System.Object value), Token 00000A6B + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Globalization.CompareInfo.GetHashCode(), Token 00000A6C + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Globalization.CompareInfo.ToString(), Token 00000A6D + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCompareInfo public class Class_0000075B { - ///Method: public ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCompareInfo..ctor(ArduinoCsCompiler.Runtime.MiniCultureInfo culture) - Class_0000075B(NanoInput.Class_00000062 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniCultureInfo+MiniCompareInfo..ctor(ArduinoCsCompiler.Runtime.MiniCultureInfo culture), Token 000003D2 + public Class_0000075B(NanoInput.Class_00000062 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Globalization.GlobalizationMode public abstract class Class_0000075D @@ -4109,8 +5185,11 @@ public abstract class Class_0000075D ///Field: System.Boolean System.Globalization.GlobalizationMode.k__BackingField public static readonly NanoInput.Class_0000075D Field_000003E0; - ///Method: private static System.Globalization.GlobalizationMode..cctor() - Class_0000075D(); + ///Method: private static System.Globalization.GlobalizationMode..cctor(), Token 0000075C + static Class_0000075D() + { + throw new System.NotImplementedException(); + } } ///System.Globalization.GlobalizationMode+Settings public abstract class Class_00000760 @@ -4121,8 +5200,11 @@ public abstract class Class_00000760 ///Field: System.Boolean System.Globalization.GlobalizationMode+Settings.k__BackingField public static readonly NanoInput.Class_00000760 Field_0000075E; - ///Method: private static System.Globalization.GlobalizationMode+Settings..cctor() - Class_00000760(); + ///Method: private static System.Globalization.GlobalizationMode+Settings..cctor(), Token 0000075F + static Class_00000760() + { + throw new System.NotImplementedException(); + } } ///System.ReadOnlySpan public ref struct Class_0E00021C @@ -4133,26 +5215,29 @@ public ref struct Class_0E00021C ///Field: System.Int32 System.ReadOnlySpan._length public readonly NanoInput.Class_0E00021C Field_000003EF; - ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length) - Class_0E00021C(? @void, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.ReadOnlySpan..ctor(System.Boolean[] array) - Class_0E00021C(); - - ///Method: public System.ReadOnlySpan..ctor(System.Boolean[] array, System.Int32 start, System.Int32 length) - Class_0E00021C(); - - ///Method: internal System.ReadOnlySpan..ctor(System.Boolean& ptr, System.Int32 length) - Class_0E00021C(); - - ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ReadOnlySpan.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length), Token 000003EB + public Class_0E00021C(void* Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj), Token 00000BA3 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode(), Token 00000BA5 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ReadOnlySpan.ToString(), Token 00000BA6 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Boolean public struct Class_0000021C : NanoInput.Class_00000130, NanoInput.Class_0C00021C, NanoInput.Class_0700021C @@ -4166,17 +5251,29 @@ public struct Class_0000021C : NanoInput.Class_00000130, NanoInput.Class_0C00021 ///Field: System.String System.Boolean.FalseString public static readonly NanoInput.Class_0000021C Field_00000766; - ///Method: private static System.Boolean..cctor() - Class_0000021C(); - - ///Method: public virtual System.Int32 System.Boolean.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Boolean.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.Boolean System.Boolean.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: private static System.Boolean..cctor(), Token 00000767 + static Class_0000021C() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Boolean.GetHashCode(), Token 00000974 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Boolean.ToString(), Token 00000975 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Boolean.Equals(System.Object obj), Token 00000976 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C00021C @@ -4192,8 +5289,11 @@ public ref struct Class_3000021C ///Field: System.IntPtr System.ByReference._value public readonly NanoInput.Class_3000021C Field_00000768; - ///Method: public System.ByReference..ctor(System.Boolean& value) - Class_3000021C(NanoInput.Class_0000021C Arg_0); + ///Method: public System.ByReference..ctor(System.Boolean& value), Token 000003ED + public Class_3000021C(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Globalization.TextInfo public sealed class Class_00000772 : NanoInput.Class_00000064 @@ -4225,23 +5325,41 @@ public sealed class Class_00000772 : NanoInput.Class_00000064 ///Field: System.Globalization.TextInfo System.Globalization.TextInfo.Invariant public static readonly NanoInput.Class_00000772 Field_0000076E; - ///Method: internal System.Globalization.TextInfo..ctor(System.Globalization.CultureData cultureData) - Class_00000772(NanoInput.Class_000000C7 Arg_0); - - ///Method: private System.Globalization.TextInfo..ctor(System.Globalization.CultureData cultureData, System.Boolean readOnly) - Class_00000772(NanoInput.Class_000000C7 Arg_0, NanoInput.Class_0000021C Arg_1); - - ///Method: private static System.Globalization.TextInfo..cctor() - Class_00000772(); - - ///Method: public virtual System.Boolean System.Globalization.TextInfo.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Globalization.TextInfo.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Globalization.TextInfo.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: internal System.Globalization.TextInfo..ctor(System.Globalization.CultureData cultureData), Token 0000076F + public Class_00000772(NanoInput.Class_000000C7 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private System.Globalization.TextInfo..ctor(System.Globalization.CultureData cultureData, System.Boolean readOnly), Token 00000770 + public Class_00000772(NanoInput.Class_000000C7 Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Globalization.TextInfo..cctor(), Token 00000771 + static Class_00000772() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Globalization.TextInfo.Equals(System.Object obj), Token 00000A6F + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Globalization.TextInfo.GetHashCode(), Token 00000A70 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Globalization.TextInfo.ToString(), Token 00000A72 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Int16 public struct Class_00000402 : NanoInput.Class_00000130, NanoInput.Class_000001F5, NanoInput.Class_000001F8, NanoInput.Class_0C000402, NanoInput.Class_07000402 @@ -4249,23 +5367,41 @@ public struct Class_00000402 : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.Int16 System.Int16.m_value public readonly NanoInput.Class_00000402 Field_00000773; - ///Method: public virtual System.Boolean System.Int16.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Int16.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Int16.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Int16.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.Int16.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: public virtual System.Boolean System.Int16.Equals(System.Int16 obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000402 Arg_0); + ///Method: public virtual System.Boolean System.Int16.Equals(System.Object obj), Token 00000A73 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Int16.GetHashCode(), Token 00000A74 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Int16.ToString(), Token 00000A76 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Int16.ToString(System.String format, System.IFormatProvider provider), Token 00000A79 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Int16.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00000A7D + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Int16.Equals(System.Int16 obj), Token 00001CBB + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000402 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000402 @@ -4278,17 +5414,11 @@ public interface Class_07000402 ///System.NotImplementedException public class Class_00000784 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.NotImplementedException..ctor() - Class_00000784(); - - ///Method: public System.NotImplementedException..ctor(System.String message) - Class_00000784(); - - ///Method: public System.NotImplementedException..ctor(System.String message, System.Exception inner) - Class_00000784(); - - ///Method: protected System.NotImplementedException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000784(); + ///Method: public System.NotImplementedException..ctor(), Token 00000412 + public Class_00000784() + { + throw new System.NotImplementedException(); + } } ///System.ValueTuple public struct Class_FF000785 : NanoInput.Class_FF000786, NanoInput.Class_000000EA, NanoInput.Class_000000E9, NanoInput.Class_00000130, NanoInput.Class_FF000787, NanoInput.Class_00000788, NanoInput.Class_00000789 @@ -4299,17 +5429,29 @@ public struct Class_FF000785 : NanoInput.Class_FF000786, NanoInput.Class_000000E ///Field: System.Int32 System.ValueTuple.Item2 public NanoInput.Class_FF000785 Field_0000042A; - ///Method: public System.ValueTuple..ctor(System.UInt32 item1, System.Int32 item2) - Class_FF000785(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ValueTuple.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ValueTuple..ctor(System.UInt32 item1, System.Int32 item2), Token 0000042D + public Class_FF000785(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj), Token 00000EA9 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode(), Token 00000EB2 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ValueTuple.ToString(), Token 00000EB4 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000786 @@ -4339,14 +5481,15 @@ public abstract class Class_0000078B ///Field: System.UInt16[] System.Globalization.OrdinalCasing.s_noCasingPage public static NanoInput.Class_0000078B Field_00000435; - ///Method: private static System.Globalization.OrdinalCasing..cctor() - Class_0000078B(); + ///Method: private static System.Globalization.OrdinalCasing..cctor(), Token 0000078A + static Class_0000078B() + { + throw new System.NotImplementedException(); + } } ///System.UInt16[] public sealed class Class_00000438 : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_330002C3, NanoInput.Class_170002C3, NanoInput.Class_010002C3, NanoInput.Class_340002C3, NanoInput.Class_350002C3 { - ///Method: public System.UInt16[]..ctor(System.Int32 ) - Class_00000438(); } ///System.Collections.Generic.IList public interface Class_330002C3 : NanoInput.Class_170002C3, NanoInput.Class_010002C3, NanoInput.Class_000000E8 @@ -4377,14 +5520,23 @@ public class Class_2E0002C3 : NanoInput.Class_2F0002C3, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E0002C3 Field_0000043C; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.UInt16[] array) - Class_2E0002C3(NanoInput.Class_000002C3 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.UInt16[] array), Token 0000043A + public Class_2E0002C3(NanoInput.Class_000002C3 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 0000084D + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 0000084E + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F0002C3 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -4396,23 +5548,41 @@ public struct Class_00000017 : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.UInt64 System.UInt64.m_value public readonly NanoInput.Class_00000017 Field_0000078E; - ///Method: public virtual System.Boolean System.UInt64.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.UInt64.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.UInt64.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.UInt64.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.UInt64.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: public virtual System.Boolean System.UInt64.Equals(System.UInt64 obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000017 Arg_0); + ///Method: public virtual System.Boolean System.UInt64.Equals(System.Object obj), Token 00000E9F + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.UInt64.GetHashCode(), Token 00000EA0 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.UInt64.ToString(), Token 00000A53 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.UInt64.ToString(System.String format, System.IFormatProvider provider), Token 00000EA2 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.UInt64.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00000EA6 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.UInt64.Equals(System.UInt64 obj), Token 00001D3D + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000017 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000017 @@ -4428,44 +5598,80 @@ public class Class_0000079C : NanoInput.Class_0000079D, NanoInput.Class_0000003A ///Field: System.Device.Gpio.Drivers.Windows10Driver System.Device.Gpio.Drivers.HummingBoardDriver._internalDriver public NanoInput.Class_0000079C Field_0000045E; - ///Method: public System.Device.Gpio.Drivers.HummingBoardDriver..ctor() - Class_0000079C(); - - ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.ClosePin(System.Int32 pinNumber) - virtual ? ClosePin(NanoInput.Class_00000014 Arg_0); - - ///Method: virtual System.Int32 System.Device.Gpio.Drivers.HummingBoardDriver.ConvertPinNumberToLogicalNumberingScheme(System.Int32 pinNumber) - virtual NanoInput.Class_00000014 ConvertPinNumberToLogicalNumberingScheme(NanoInput.Class_00000014 Arg_0); - - ///Method: virtual System.Device.Gpio.PinMode System.Device.Gpio.Drivers.HummingBoardDriver.GetPinMode(System.Int32 pinNumber) - virtual NanoInput.Class_00000014 GetPinMode(NanoInput.Class_00000014 Arg_0); - - ///Method: virtual System.Boolean System.Device.Gpio.Drivers.HummingBoardDriver.IsPinModeSupported(System.Int32 pinNumber, System.Device.Gpio.PinMode mode) - virtual NanoInput.Class_0000021C IsPinModeSupported(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.OpenPin(System.Int32 pinNumber) - virtual ? OpenPin(NanoInput.Class_00000014 Arg_0); - - ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.SetPinMode(System.Int32 pinNumber, System.Device.Gpio.PinMode mode) - virtual ? SetPinMode(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.SetPinMode(System.Int32 pinNumber, System.Device.Gpio.PinMode mode, System.Device.Gpio.PinValue initialValue) - virtual ? SetPinMode(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000471 Arg_2); - - ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.Write(System.Int32 pinNumber, System.Device.Gpio.PinValue value) - virtual ? Write(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000471 Arg_1); - - ///Method: protected virtual void System.Device.Gpio.Drivers.HummingBoardDriver.Dispose(System.Boolean disposing) - virtual ? Dispose(NanoInput.Class_0000021C Arg_0); + ///Method: public System.Device.Gpio.Drivers.HummingBoardDriver..ctor(), Token 000003C4 + public Class_0000079C() + { + throw new System.NotImplementedException(); + } + + ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.ClosePin(System.Int32 pinNumber), Token 00000A42 + public virtual void ClosePin(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Int32 System.Device.Gpio.Drivers.HummingBoardDriver.ConvertPinNumberToLogicalNumberingScheme(System.Int32 pinNumber), Token 00000A44 + public virtual NanoInput.Class_00000014 ConvertPinNumberToLogicalNumberingScheme(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Device.Gpio.PinMode System.Device.Gpio.Drivers.HummingBoardDriver.GetPinMode(System.Int32 pinNumber), Token 00000A48 + public virtual NanoInput.Class_00000014 GetPinMode(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Boolean System.Device.Gpio.Drivers.HummingBoardDriver.IsPinModeSupported(System.Int32 pinNumber, System.Device.Gpio.PinMode mode), Token 00000A49 + public virtual NanoInput.Class_0000021C IsPinModeSupported(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.OpenPin(System.Int32 pinNumber), Token 00000A4A + public virtual void OpenPin(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.SetPinMode(System.Int32 pinNumber, System.Device.Gpio.PinMode mode), Token 00000A4B + public virtual void SetPinMode(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.SetPinMode(System.Int32 pinNumber, System.Device.Gpio.PinMode mode, System.Device.Gpio.PinValue initialValue), Token 00000A4C + public virtual void SetPinMode(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000471 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual void System.Device.Gpio.Drivers.HummingBoardDriver.Write(System.Int32 pinNumber, System.Device.Gpio.PinValue value), Token 00000A4D + public virtual void Write(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000471 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void System.Device.Gpio.Drivers.HummingBoardDriver.Dispose(System.Boolean disposing), Token 00000A4E + public virtual void Dispose(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Device.Gpio.GpioDriver public abstract class Class_0000079D : NanoInput.Class_0000003A { - ///Method: protected System.Device.Gpio.GpioDriver..ctor() - Class_0000079D(); + ///Method: protected System.Device.Gpio.GpioDriver..ctor(), Token 0000045C + public Class_0000079D() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Device.Gpio.GpioDriver.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Device.Gpio.GpioDriver.Dispose(), Token 00000A26 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///Iot.Device.Board.ManagedGpioController public class Class_0000049C : NanoInput.Class_000007A0, NanoInput.Class_0000003A, NanoInput.Class_000004AD @@ -4479,20 +5685,35 @@ public class Class_0000049C : NanoInput.Class_000007A0, NanoInput.Class_0000003A ///Field: System.Collections.Generic.HashSet Iot.Device.Board.ManagedGpioController._openPins public readonly NanoInput.Class_0000049C Field_00000464; - ///Method: public Iot.Device.Board.ManagedGpioController..ctor(Iot.Device.Board.Board board, System.Device.Gpio.GpioDriver driver) - Class_0000049C(NanoInput.Class_00000043 Arg_0, NanoInput.Class_0000079D Arg_1); - - ///Method: protected virtual System.Int32 Iot.Device.Board.ManagedGpioController.GetLogicalPinNumber(System.Int32 pinNumber) - virtual NanoInput.Class_00000014 GetLogicalPinNumber(NanoInput.Class_00000014 Arg_0); - - ///Method: protected virtual void Iot.Device.Board.ManagedGpioController.OpenPinCore(System.Int32 pinNumber) - virtual ? OpenPinCore(NanoInput.Class_00000014 Arg_0); - - ///Method: protected virtual void Iot.Device.Board.ManagedGpioController.ClosePinCore(System.Int32 pinNumber) - virtual ? ClosePinCore(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Collections.Generic.IReadOnlyCollection Iot.Device.Board.ManagedGpioController.GetActiveManagedPins() - virtual NanoInput.Class_35000014 GetActiveManagedPins(); + ///Method: public Iot.Device.Board.ManagedGpioController..ctor(Iot.Device.Board.Board board, System.Device.Gpio.GpioDriver driver), Token 000003A3 + public Class_0000049C(NanoInput.Class_00000043 Arg_0, NanoInput.Class_0000079D Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual System.Int32 Iot.Device.Board.ManagedGpioController.GetLogicalPinNumber(System.Int32 pinNumber), Token 0000090E + public virtual NanoInput.Class_00000014 GetLogicalPinNumber(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void Iot.Device.Board.ManagedGpioController.OpenPinCore(System.Int32 pinNumber), Token 00000911 + public virtual void OpenPinCore(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void Iot.Device.Board.ManagedGpioController.ClosePinCore(System.Int32 pinNumber), Token 00001C6E + public virtual void ClosePinCore(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Collections.Generic.IReadOnlyCollection Iot.Device.Board.ManagedGpioController.GetActiveManagedPins(), Token 00001C6F + public virtual NanoInput.Class_35000014 GetActiveManagedPins() + { + throw new System.NotImplementedException(); + } } ///Iot.Device.Board.IDeviceManager public interface Class_000004AD : NanoInput.Class_0000003A @@ -4513,17 +5734,17 @@ public class Class_000007A0 : NanoInput.Class_0000003A ///Field: System.Collections.Concurrent.ConcurrentDictionary System.Device.Gpio.GpioController._gpioPins public readonly NanoInput.Class_000007A0 Field_0000046A; - ///Method: public System.Device.Gpio.GpioController..ctor(System.Device.Gpio.PinNumberingScheme numberingScheme, System.Device.Gpio.GpioDriver driver) - Class_000007A0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000079D Arg_1); - - ///Method: public System.Device.Gpio.GpioController..ctor() - Class_000007A0(); + ///Method: public System.Device.Gpio.GpioController..ctor(System.Device.Gpio.PinNumberingScheme numberingScheme, System.Device.Gpio.GpioDriver driver), Token 00000460 + public Class_000007A0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000079D Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Device.Gpio.GpioController..ctor(System.Device.Gpio.PinNumberingScheme numberingScheme) - Class_000007A0(); - - ///Method: public virtual void System.Device.Gpio.GpioController.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Device.Gpio.GpioController.Dispose(), Token 00000A20 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Concurrent.ConcurrentDictionary> public class Class_FF0007A8 : NanoInput.Class_FF0007A9, NanoInput.Class_FF0007AB, NanoInput.Class_FF0007AC, NanoInput.Class_000000E8, NanoInput.Class_000006F6, NanoInput.Class_000000E7, NanoInput.Class_FF0007AD, NanoInput.Class_FF0007AE @@ -4546,32 +5767,23 @@ public class Class_FF0007A8 : NanoInput.Class_FF0007A9, NanoInput.Class_FF0007AB ///Field: System.Boolean System.Collections.Concurrent.ConcurrentDictionary>.s_isValueWriteAtomic public static readonly NanoInput.Class_FF0007A8 Field_000004E9; - ///Method: public System.Collections.Concurrent.ConcurrentDictionary>..ctor() - Class_FF0007A8(); - - ///Method: internal System.Collections.Concurrent.ConcurrentDictionary>..ctor(System.Int32 concurrencyLevel, System.Int32 capacity, System.Boolean growLockArray, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007A8(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2, NanoInput.Class_05000014 Arg_3); - - ///Method: public System.Collections.Concurrent.ConcurrentDictionary>..ctor(System.Int32 concurrencyLevel, System.Int32 capacity) - Class_FF0007A8(); - - ///Method: public System.Collections.Concurrent.ConcurrentDictionary>..ctor(System.Collections.Generic.IEnumerable>> collection) - Class_FF0007A8(); - - ///Method: public System.Collections.Concurrent.ConcurrentDictionary>..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007A8(); - - ///Method: public System.Collections.Concurrent.ConcurrentDictionary>..ctor(System.Collections.Generic.IEnumerable>> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007A8(); + ///Method: public System.Collections.Concurrent.ConcurrentDictionary>..ctor(), Token 00000467 + public Class_FF0007A8() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Collections.Concurrent.ConcurrentDictionary>..ctor(System.Int32 concurrencyLevel, System.Collections.Generic.IEnumerable>> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007A8(); + ///Method: internal System.Collections.Concurrent.ConcurrentDictionary>..ctor(System.Int32 concurrencyLevel, System.Int32 capacity, System.Boolean growLockArray, System.Collections.Generic.IEqualityComparer comparer), Token 0000046C + public Class_FF0007A8(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2, NanoInput.Class_05000014 Arg_3) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Collections.Concurrent.ConcurrentDictionary>..ctor(System.Int32 concurrencyLevel, System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007A8(); - - ///Method: private static System.Collections.Concurrent.ConcurrentDictionary>..cctor() - Class_FF0007A8(); + ///Method: private static System.Collections.Concurrent.ConcurrentDictionary>..cctor(), Token 000007A7 + static Class_FF0007A8() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IDictionary> public interface Class_FF0007A9 : NanoInput.Class_FF0007AB, NanoInput.Class_FF0007AC, NanoInput.Class_000000E8 @@ -4608,8 +5820,11 @@ public sealed class Class_FF000470 ///Field: System.Collections.Concurrent.ConcurrentDictionary>+Node System.Collections.Concurrent.ConcurrentDictionary>+Node._next public NanoInput.Class_FF000470 Field_000004D2; - ///Method: internal System.Collections.Concurrent.ConcurrentDictionary>+Node..ctor(System.Int32 key, System.Nullable value, System.Int32 hashcode, System.Collections.Concurrent.ConcurrentDictionary>+Node next) - Class_FF000470(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00800471 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_FF000470 Arg_3); + ///Method: internal System.Collections.Concurrent.ConcurrentDictionary>+Node..ctor(System.Int32 key, System.Nullable value, System.Int32 hashcode, System.Collections.Concurrent.ConcurrentDictionary>+Node next), Token 000004EA + public Class_FF000470(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00800471 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_FF000470 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.SR public abstract class Class_000007B0 @@ -4619,24 +5834,10 @@ public abstract class Class_000007B0 ///Field: System.Resources.ResourceManager System.SR.s_resourceManager public static NanoInput.Class_000007B0 Field_0000047E; - - ///Method: private static System.SR..cctor() - Class_000007B0(); } ///System.Resources.MissingManifestResourceException public class Class_0000047C : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.Resources.MissingManifestResourceException..ctor() - Class_0000047C(); - - ///Method: public System.Resources.MissingManifestResourceException..ctor(System.String message) - Class_0000047C(); - - ///Method: public System.Resources.MissingManifestResourceException..ctor(System.String message, System.Exception inner) - Class_0000047C(); - - ///Method: protected System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_0000047C(); } ///FxResources.System.Collections.Concurrent.SR public abstract class Class_0000047F @@ -4651,14 +5852,23 @@ public class Class_FF0007B6 : NanoInput.Class_FF0007B7, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Node>._current public NanoInput.Class_FF0007B6 Field_00000482; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Node>..ctor(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Nullable`1[[System.Device.Gpio.PinValue, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF0007B6(NanoInput.Class_FF000470 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Node>..ctor(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Nullable`1[[System.Device.Gpio.PinValue, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000480 + public Class_FF0007B6(NanoInput.Class_FF000470 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Node>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Node>.MoveNext(), Token 0000083F + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Node>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>+Node>.Dispose(), Token 00000840 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator>+Node> public interface Class_FF0007B7 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -4679,8 +5889,11 @@ public sealed class Class_FF0007B8 ///Field: System.UInt64 System.Collections.Concurrent.ConcurrentDictionary>+Tables._fastModBucketsMultiplier public readonly NanoInput.Class_FF0007B8 Field_00000488; - ///Method: internal System.Collections.Concurrent.ConcurrentDictionary>+Tables..ctor(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Nullable`1[[System.Device.Gpio.PinValue, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] buckets, System.Object[] locks, System.Int32[] countPerLock) - Class_FF0007B8(NanoInput.Class_FF000470 Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00000014 Arg_2); + ///Method: internal System.Collections.Concurrent.ConcurrentDictionary>+Tables..ctor(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Nullable`1[[System.Device.Gpio.PinValue, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] buckets, System.Object[] locks, System.Int32[] countPerLock), Token 00000472 + public Class_FF0007B8(NanoInput.Class_FF000470 Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Concurrent.ConcurrentDictionary public class Class_FF0007C0 : NanoInput.Class_FF0007C1, NanoInput.Class_FF0007C3, NanoInput.Class_FF0007C4, NanoInput.Class_000000E8, NanoInput.Class_000006F6, NanoInput.Class_000000E7, NanoInput.Class_FF0007C5, NanoInput.Class_FF0007C6 @@ -4703,32 +5916,23 @@ public class Class_FF0007C0 : NanoInput.Class_FF0007C1, NanoInput.Class_FF0007C3 ///Field: System.Boolean System.Collections.Concurrent.ConcurrentDictionary.s_isValueWriteAtomic public static readonly NanoInput.Class_FF0007C0 Field_000004F5; - ///Method: public System.Collections.Concurrent.ConcurrentDictionary..ctor() - Class_FF0007C0(); - - ///Method: internal System.Collections.Concurrent.ConcurrentDictionary..ctor(System.Int32 concurrencyLevel, System.Int32 capacity, System.Boolean growLockArray, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007C0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2, NanoInput.Class_05000014 Arg_3); - - ///Method: public System.Collections.Concurrent.ConcurrentDictionary..ctor(System.Int32 concurrencyLevel, System.Int32 capacity) - Class_FF0007C0(); - - ///Method: public System.Collections.Concurrent.ConcurrentDictionary..ctor(System.Collections.Generic.IEnumerable> collection) - Class_FF0007C0(); + ///Method: public System.Collections.Concurrent.ConcurrentDictionary..ctor(), Token 00000469 + public Class_FF0007C0() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Collections.Concurrent.ConcurrentDictionary..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007C0(); + ///Method: internal System.Collections.Concurrent.ConcurrentDictionary..ctor(System.Int32 concurrencyLevel, System.Int32 capacity, System.Boolean growLockArray, System.Collections.Generic.IEqualityComparer comparer), Token 0000048A + public Class_FF0007C0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2, NanoInput.Class_05000014 Arg_3) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Collections.Concurrent.ConcurrentDictionary..ctor(System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007C0(); - - ///Method: public System.Collections.Concurrent.ConcurrentDictionary..ctor(System.Int32 concurrencyLevel, System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007C0(); - - ///Method: public System.Collections.Concurrent.ConcurrentDictionary..ctor(System.Int32 concurrencyLevel, System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_FF0007C0(); - - ///Method: private static System.Collections.Concurrent.ConcurrentDictionary..cctor() - Class_FF0007C0(); + ///Method: private static System.Collections.Concurrent.ConcurrentDictionary..cctor(), Token 000007BF + static Class_FF0007C0() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IDictionary public interface Class_FF0007C1 : NanoInput.Class_FF0007C3, NanoInput.Class_FF0007C4, NanoInput.Class_000000E8 @@ -4765,8 +5969,11 @@ public sealed class Class_FF00048B ///Field: System.Collections.Concurrent.ConcurrentDictionary+Node System.Collections.Concurrent.ConcurrentDictionary+Node._next public NanoInput.Class_FF00048B Field_000004DD; - ///Method: internal System.Collections.Concurrent.ConcurrentDictionary+Node..ctor(System.Int32 key, System.Device.Gpio.GpioPin value, System.Int32 hashcode, System.Collections.Concurrent.ConcurrentDictionary+Node next) - Class_FF00048B(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000048C Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_FF00048B Arg_3); + ///Method: internal System.Collections.Concurrent.ConcurrentDictionary+Node..ctor(System.Int32 key, System.Device.Gpio.GpioPin value, System.Int32 hashcode, System.Collections.Concurrent.ConcurrentDictionary+Node next), Token 000004F6 + public Class_FF00048B(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000048C Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_FF00048B Arg_3) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Node> public class Class_FF0007C8 : NanoInput.Class_FF0007C9, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -4777,14 +5984,23 @@ public class Class_FF0007C8 : NanoInput.Class_FF0007C9, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Node>._current public NanoInput.Class_FF0007C8 Field_00000495; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Node>..ctor(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Device.Gpio.GpioPin, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]][] array) - Class_FF0007C8(NanoInput.Class_FF00048B Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Node>..ctor(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Device.Gpio.GpioPin, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]][] array), Token 00000493 + public Class_FF0007C8(NanoInput.Class_FF00048B Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Node>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Node>.MoveNext(), Token 0000083D + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Node>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Node>.Dispose(), Token 0000083E + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Node> public interface Class_FF0007C9 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -4805,8 +6021,11 @@ public sealed class Class_FF0007CA ///Field: System.UInt64 System.Collections.Concurrent.ConcurrentDictionary+Tables._fastModBucketsMultiplier public readonly NanoInput.Class_FF0007CA Field_00000499; - ///Method: internal System.Collections.Concurrent.ConcurrentDictionary+Tables..ctor(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Device.Gpio.GpioPin, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]][] buckets, System.Object[] locks, System.Int32[] countPerLock) - Class_FF0007CA(NanoInput.Class_FF00048B Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00000014 Arg_2); + ///Method: internal System.Collections.Concurrent.ConcurrentDictionary+Tables..ctor(System.Collections.Concurrent.ConcurrentDictionary`2+Node[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Device.Gpio.GpioPin, System.Device.Gpio, Version=42.42.42.42, Culture=neutral, PublicKeyToken=31bf3856ad364e35]][] buckets, System.Object[] locks, System.Int32[] countPerLock), Token 0000048D + public Class_FF0007CA(NanoInput.Class_FF00048B Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.HashSet public class Class_3D000014 : NanoInput.Class_17000014, NanoInput.Class_01000014, NanoInput.Class_000000E8, NanoInput.Class_3E000014, NanoInput.Class_35000014, NanoInput.Class_3F000014, NanoInput.Class_00000085 @@ -4835,29 +6054,23 @@ public class Class_3D000014 : NanoInput.Class_17000014, NanoInput.Class_01000014 ///Field: System.Int32 System.Collections.Generic.HashSet._version public NanoInput.Class_3D000014 Field_000007D1; - ///Method: public System.Collections.Generic.HashSet..ctor() - Class_3D000014(); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_3D000014(NanoInput.Class_05000014 Arg_0); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Int32 capacity) - Class_3D000014(); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Collections.Generic.IEnumerable collection) - Class_3D000014(); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Collections.Generic.IEnumerable collection, System.Collections.Generic.IEqualityComparer comparer) - Class_3D000014(); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_3D000014(); + ///Method: public System.Collections.Generic.HashSet..ctor(), Token 00000463 + public Class_3D000014() + { + throw new System.NotImplementedException(); + } - ///Method: protected System.Collections.Generic.HashSet..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_3D000014(); + ///Method: public System.Collections.Generic.HashSet..ctor(System.Collections.Generic.IEqualityComparer comparer), Token 0000049A + public Class_3D000014(NanoInput.Class_05000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.HashSet.System.Collections.Generic.IEnumerable.GetEnumerator() - virtual NanoInput.Class_2F000014 System.Collections.Generic.IEnumerable.GetEnumerator(); + ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.HashSet.System.Collections.Generic.IEnumerable.GetEnumerator(), Token 00001C80 + public virtual NanoInput.Class_2F000014 System.Collections.Generic.IEnumerable.GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.ISet public interface Class_3E000014 : NanoInput.Class_17000014, NanoInput.Class_01000014, NanoInput.Class_000000E8 @@ -4873,23 +6086,41 @@ public struct Class_00000016 : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.Int64 System.Int64.m_value public readonly NanoInput.Class_00000016 Field_000007D7; - ///Method: public virtual System.Boolean System.Int64.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Boolean System.Int64.Equals(System.Int64 obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000016 Arg_0); - - ///Method: public virtual System.Int32 System.Int64.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Int64.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Int64.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.Int64.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: public virtual System.Boolean System.Int64.Equals(System.Object obj), Token 00000A86 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Int64.Equals(System.Int64 obj), Token 00000A87 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000016 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Int64.GetHashCode(), Token 00000A88 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Int64.ToString(), Token 00000A8A + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Int64.ToString(System.String format, System.IFormatProvider provider), Token 00000A8D + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Int64.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00000A92 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000016 @@ -4905,11 +6136,11 @@ public abstract class Class_060004AD : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_060004AD Field_000004B2; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_060004AD(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_060004AD(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 000007E6 + static Class_060004AD() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_050004AD @@ -4922,20 +6153,29 @@ public interface Class_070004AD ///System.Collections.Generic.ObjectEqualityComparer public sealed class Class_040004AD : NanoInput.Class_060004AD, NanoInput.Class_000000D1, NanoInput.Class_050004AD { - ///Method: public System.Collections.Generic.ObjectEqualityComparer..ctor() - Class_040004AD(); - - ///Method: internal virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.IndexOf(Iot.Device.Board.IDeviceManager[] array, Iot.Device.Board.IDeviceManager value, System.Int32 startIndex, System.Int32 count) - virtual NanoInput.Class_00000014 IndexOf(NanoInput.Class_000004AD Arg_0, NanoInput.Class_000004AD Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(Iot.Device.Board.IDeviceManager x, Iot.Device.Board.IDeviceManager y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_000004AD Arg_0, NanoInput.Class_000004AD Arg_1); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: internal virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.IndexOf(Iot.Device.Board.IDeviceManager[] array, Iot.Device.Board.IDeviceManager value, System.Int32 startIndex, System.Int32 count), Token 00000A14 + public virtual NanoInput.Class_00000014 IndexOf(NanoInput.Class_000004AD Arg_0, NanoInput.Class_000004AD Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(Iot.Device.Board.IDeviceManager x, Iot.Device.Board.IDeviceManager y), Token 00000A15 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_000004AD Arg_0, NanoInput.Class_000004AD Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj), Token 00000A17 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode(), Token 00000A18 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E0004AD : NanoInput.Class_2F0004AD, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -4946,17 +6186,29 @@ public class Class_2E0004AD : NanoInput.Class_2F0004AD, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E0004AD Field_000004BA; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(Iot.Device.Board.IDeviceManager[] array) - Class_2E0004AD(NanoInput.Class_000004AD Arg_0); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual Iot.Device.Board.IDeviceManager ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current() - ; - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(Iot.Device.Board.IDeviceManager[] array), Token 000004B8 + public Class_2E0004AD(NanoInput.Class_000004AD Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00000836 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual Iot.Device.Board.IDeviceManager ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current(), Token 00000837 + public virtual NanoInput.Class_000004AD get_Current() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00000838 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F0004AD : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -4971,29 +6223,44 @@ public struct Class_00800471 ///Field: System.Device.Gpio.PinValue System.Nullable.value public NanoInput.Class_00800471 Field_00000508; - ///Method: public System.Nullable..ctor(System.Device.Gpio.PinValue value) - Class_00800471(NanoInput.Class_00000471 Arg_0); - - ///Method: public virtual System.Boolean System.Nullable.Equals(System.Object other) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Nullable.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Nullable.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Nullable..ctor(System.Device.Gpio.PinValue value), Token 0000050D + public Class_00800471(NanoInput.Class_00000471 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Nullable.Equals(System.Object other), Token 00000B8C + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Nullable.GetHashCode(), Token 00000B8D + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Nullable.ToString(), Token 00000B8E + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.ObjectEqualityComparer> public sealed class Class_FF0007EA : NanoInput.Class_000000D1, NanoInput.Class_FF0007EB { - ///Method: public System.Collections.Generic.ObjectEqualityComparer>..ctor() - Class_FF0007EA(); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer>.Equals(System.Object obj), Token 00000A19 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer>.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer>.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer>.GetHashCode(), Token 00000A1A + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer> public interface Class_FF0007EB @@ -5008,23 +6275,20 @@ public class Class_0000048C ///Field: System.Int32 System.Device.Gpio.GpioPin._pinNumber public readonly NanoInput.Class_0000048C Field_000004F2; - ///Method: internal System.Device.Gpio.GpioPin..ctor(System.Int32 pinNumber, System.Device.Gpio.GpioDriver driver) - Class_0000048C(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000079D Arg_1); + ///Method: internal System.Device.Gpio.GpioPin..ctor(System.Int32 pinNumber, System.Device.Gpio.GpioDriver driver), Token 000004C6 + public Class_0000048C(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000079D Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.KeyNotFoundException public class Class_000007EF : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.Collections.Generic.KeyNotFoundException..ctor(System.String message) - Class_000007EF(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.Collections.Generic.KeyNotFoundException..ctor() - Class_000007EF(); - - ///Method: public System.Collections.Generic.KeyNotFoundException..ctor(System.String message, System.Exception innerException) - Class_000007EF(); - - ///Method: protected System.Collections.Generic.KeyNotFoundException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_000007EF(); + ///Method: public System.Collections.Generic.KeyNotFoundException..ctor(System.String message), Token 000004E0 + public Class_000007EF(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Nullable public struct Class_00800014 @@ -5035,29 +6299,44 @@ public struct Class_00800014 ///Field: System.Int32 System.Nullable.value public NanoInput.Class_00800014 Field_000004EE; - ///Method: public System.Nullable..ctor(System.Int32 value) - Class_00800014(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Boolean System.Nullable.Equals(System.Object other) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Nullable.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Nullable.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Nullable..ctor(System.Int32 value), Token 000007F0 + public Class_00800014(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Nullable.Equals(System.Object other), Token 00000B8F + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Nullable.GetHashCode(), Token 00000B90 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Nullable.ToString(), Token 00000B91 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.ObjectEqualityComparer> public sealed class Class_FF0007F2 : NanoInput.Class_FF000F03, NanoInput.Class_000000D1, NanoInput.Class_FF0007F3 { - ///Method: public System.Collections.Generic.ObjectEqualityComparer>..ctor() - Class_FF0007F2(); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer>.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer>.Equals(System.Object obj), Token 00000A1B + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer>.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer>.GetHashCode(), Token 00000A1C + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer> public interface Class_FF0007F3 @@ -5066,17 +6345,11 @@ public interface Class_FF0007F3 ///System.OverflowException public class Class_00000029 : NanoInput.Class_0000002B, NanoInput.Class_00000085 { - ///Method: public System.OverflowException..ctor() - Class_00000029(); - - ///Method: public System.OverflowException..ctor(System.String message) - Class_00000029(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.OverflowException..ctor(System.String message, System.Exception innerException) - Class_00000029(); - - ///Method: protected System.OverflowException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000029(); + ///Method: public System.OverflowException..ctor(System.String message), Token 000007F5 + public Class_00000029(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Device.Gpio.PinMode public struct Class_00000505 : NanoInput.Class_00000008, NanoInput.Class_00000130, NanoInput.Class_000001F8 @@ -5102,17 +6375,29 @@ public struct Class_00000471 : NanoInput.Class_07000471 ///Field: System.Byte System.Device.Gpio.PinValue._value public readonly NanoInput.Class_00000471 Field_0000050C; - ///Method: private System.Device.Gpio.PinValue..ctor(System.Byte value) - Class_00000471(NanoInput.Class_00000013 Arg_0); - - ///Method: public virtual System.Boolean System.Device.Gpio.PinValue.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Device.Gpio.PinValue.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Device.Gpio.PinValue.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: private System.Device.Gpio.PinValue..ctor(System.Byte value), Token 0000050B + public Class_00000471(NanoInput.Class_00000013 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Device.Gpio.PinValue.Equals(System.Object obj), Token 00000A5C + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Device.Gpio.PinValue.GetHashCode(), Token 00000A5D + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Device.Gpio.PinValue.ToString(), Token 00000A5E + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_07000471 @@ -5136,14 +6421,23 @@ public struct Class_FF000519 : NanoInput.Class_FF0007F9, NanoInput.Class_0000003 ///Field: System.Int32 System.Collections.Generic.Dictionary+Enumerator._getEnumeratorRetType public readonly NanoInput.Class_FF000519 Field_00000526; - ///Method: internal System.Collections.Generic.Dictionary+Enumerator..ctor(System.Collections.Generic.Dictionary dictionary, System.Int32 getEnumeratorRetType) - Class_FF000519(NanoInput.Class_FF00071D Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: internal System.Collections.Generic.Dictionary+Enumerator..ctor(System.Collections.Generic.Dictionary dictionary, System.Int32 getEnumeratorRetType), Token 00000521 + public Class_FF000519(NanoInput.Class_FF00071D Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.Dictionary+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean System.Collections.Generic.Dictionary+Enumerator.MoveNext(), Token 00000518 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Collections.Generic.Dictionary+Enumerator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Collections.Generic.Dictionary+Enumerator.Dispose(), Token 000009F1 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator> public interface Class_FF0007F9 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -5168,17 +6462,29 @@ public struct Class_140004AD : NanoInput.Class_2F0004AD, NanoInput.Class_0000003 ///Field: Iot.Device.Board.IDeviceManager System.Collections.Generic.List+Enumerator._current public NanoInput.Class_140004AD Field_00000540; - ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list) - Class_140004AD(NanoInput.Class_110004AD Arg_0); - - ///Method: public virtual Iot.Device.Board.IDeviceManager System.Collections.Generic.List+Enumerator.get_Current() - ; - - ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose() - virtual ? Dispose(); + ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list), Token 0000053C + public Class_140004AD(NanoInput.Class_110004AD Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual Iot.Device.Board.IDeviceManager System.Collections.Generic.List+Enumerator.get_Current(), Token 0000051D + public virtual NanoInput.Class_000004AD get_Current() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext(), Token 0000051E + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose(), Token 00000A11 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.KeyValuePair public struct Class_FF000528 @@ -5189,11 +6495,17 @@ public struct Class_FF000528 ///Field: Iot.Device.Board.I2cBusManager System.Collections.Generic.KeyValuePair.value public readonly NanoInput.Class_FF000528 Field_00000529; - ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Int32 key, Iot.Device.Board.I2cBusManager value) - Class_FF000528(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000036D Arg_1); + ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Int32 key, Iot.Device.Board.I2cBusManager value), Token 0000052F + public Class_FF000528(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000036D Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString(), Token 00000A08 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Linq.IIListProvider public interface Class_160004AD : NanoInput.Class_010004AD, NanoInput.Class_000000E8 @@ -5214,38 +6526,68 @@ public class Class_0000081A : NanoInput.Class_0000079D, NanoInput.Class_0000003A ///Field: System.Threading.Thread ArduinoCsCompiler.ArduinoNativeGpioDriver._callbackThread public NanoInput.Class_0000081A Field_00000819; - ///Method: public ArduinoCsCompiler.ArduinoNativeGpioDriver..ctor() - Class_0000081A(); - - ///Method: protected virtual System.Int32 ArduinoCsCompiler.ArduinoNativeGpioDriver.ConvertPinNumberToLogicalNumberingScheme(System.Int32 pinNumber) - virtual NanoInput.Class_00000014 ConvertPinNumberToLogicalNumberingScheme(NanoInput.Class_00000014 Arg_0); - - ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.OpenPin(System.Int32 pinNumber) - virtual ? OpenPin(NanoInput.Class_00000014 Arg_0); - - ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.ClosePin(System.Int32 pinNumber) - virtual ? ClosePin(NanoInput.Class_00000014 Arg_0); - - ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.SetPinMode(System.Int32 pinNumber, System.Device.Gpio.PinMode mode) - virtual ? SetPinMode(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: protected virtual System.Device.Gpio.PinMode ArduinoCsCompiler.ArduinoNativeGpioDriver.GetPinMode(System.Int32 pinNumber) - virtual NanoInput.Class_00000014 GetPinMode(NanoInput.Class_00000014 Arg_0); - - ///Method: protected virtual System.Boolean ArduinoCsCompiler.ArduinoNativeGpioDriver.IsPinModeSupported(System.Int32 pinNumber, System.Device.Gpio.PinMode mode) - virtual NanoInput.Class_0000021C IsPinModeSupported(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.Write(System.Int32 pinNumber, System.Device.Gpio.PinValue value) - virtual ? Write(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000471 Arg_1); - - ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.Dispose(System.Boolean disposing) - virtual ? Dispose(NanoInput.Class_0000021C Arg_0); + ///Method: public ArduinoCsCompiler.ArduinoNativeGpioDriver..ctor(), Token 00000806 + public Class_0000081A() + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual System.Int32 ArduinoCsCompiler.ArduinoNativeGpioDriver.ConvertPinNumberToLogicalNumberingScheme(System.Int32 pinNumber), Token 0000108E + public virtual NanoInput.Class_00000014 ConvertPinNumberToLogicalNumberingScheme(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.OpenPin(System.Int32 pinNumber), Token 0000108F + public virtual void OpenPin(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.ClosePin(System.Int32 pinNumber), Token 00001091 + public virtual void ClosePin(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.SetPinMode(System.Int32 pinNumber, System.Device.Gpio.PinMode mode), Token 00001092 + public virtual void SetPinMode(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual System.Device.Gpio.PinMode ArduinoCsCompiler.ArduinoNativeGpioDriver.GetPinMode(System.Int32 pinNumber), Token 00001094 + public virtual NanoInput.Class_00000014 GetPinMode(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual System.Boolean ArduinoCsCompiler.ArduinoNativeGpioDriver.IsPinModeSupported(System.Int32 pinNumber, System.Device.Gpio.PinMode mode), Token 00001096 + public virtual NanoInput.Class_0000021C IsPinModeSupported(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.Write(System.Int32 pinNumber, System.Device.Gpio.PinValue value), Token 00001099 + public virtual void Write(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000471 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void ArduinoCsCompiler.ArduinoNativeGpioDriver.Dispose(System.Boolean disposing), Token 0000109B + public virtual void Dispose(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.ArduinoHardwareLevelAccess public class Class_0000081B { - ///Method: public ArduinoCsCompiler.ArduinoHardwareLevelAccess..ctor() - Class_0000081B(); + ///Method: public ArduinoCsCompiler.ArduinoHardwareLevelAccess..ctor(), Token 00000808 + public Class_0000081B() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.Dictionary public class Class_FF000828 : NanoInput.Class_FF000829, NanoInput.Class_FF00082B, NanoInput.Class_FF00082C, NanoInput.Class_000000E8, NanoInput.Class_000006F6, NanoInput.Class_000000E7, NanoInput.Class_FF00082D, NanoInput.Class_FF00082E, NanoInput.Class_00000085 @@ -5280,32 +6622,17 @@ public class Class_FF000828 : NanoInput.Class_FF000829, NanoInput.Class_FF00082B ///Field: System.Collections.Generic.Dictionary+ValueCollection System.Collections.Generic.Dictionary._values public NanoInput.Class_FF000828 Field_00000820; - ///Method: public System.Collections.Generic.Dictionary..ctor() - Class_FF000828(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_FF000828(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity) - Class_FF000828(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_FF000828(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary) - Class_FF000828(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary, System.Collections.Generic.IEqualityComparer comparer) - Class_FF000828(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection) - Class_FF000828(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF000828(); + ///Method: public System.Collections.Generic.Dictionary..ctor(), Token 0000080B + public Class_FF000828() + { + throw new System.NotImplementedException(); + } - ///Method: protected System.Collections.Generic.Dictionary..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_FF000828(); + ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer), Token 0000080D + public Class_FF000828(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IDictionary public interface Class_FF000829 : NanoInput.Class_FF00082B, NanoInput.Class_FF00082C, NanoInput.Class_000000E8 @@ -5351,14 +6678,23 @@ public class Class_FF000834 : NanoInput.Class_FF000835, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF000834 Field_00000818; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[ArduinoCsCompiler.ArduinoNativeGpioDriver+CallbackContainer, ArduinoCsCompiler, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array) - Class_FF000834(NanoInput.Class_FF000810 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[ArduinoCsCompiler.ArduinoNativeGpioDriver+CallbackContainer, ArduinoCsCompiler, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]][] array), Token 00000816 + public Class_FF000834(NanoInput.Class_FF000810 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 000010A7 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 000010A8 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF000835 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -5460,14 +6796,23 @@ public sealed class Class_00000855 : NanoInput.Class_00000063, NanoInput.Class_0 ///Field: System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo.s_invariantInfo public static NanoInput.Class_00000855 Field_00000877; - ///Method: public System.Globalization.NumberFormatInfo..ctor() - Class_00000855(); + ///Method: public System.Globalization.NumberFormatInfo..ctor(), Token 00000878 + public Class_00000855() + { + throw new System.NotImplementedException(); + } - ///Method: internal System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData cultureData) - Class_00000855(NanoInput.Class_000000C7 Arg_0); + ///Method: internal System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData cultureData), Token 00000879 + public Class_00000855(NanoInput.Class_000000C7 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Object System.Globalization.NumberFormatInfo.GetFormat(System.Type formatType) - virtual NanoInput.Class_00000001 GetFormat(NanoInput.Class_00000002 Arg_0); + ///Method: public virtual System.Object System.Globalization.NumberFormatInfo.GetFormat(System.Type formatType), Token 00001275 + public virtual NanoInput.Class_00000001 GetFormat(NanoInput.Class_00000002 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Globalization.DateTimeFormatInfo public sealed class Class_00000857 : NanoInput.Class_00000063, NanoInput.Class_00000064 @@ -5616,14 +6961,23 @@ public sealed class Class_00000857 : NanoInput.Class_00000063, NanoInput.Class_0 ///Field: System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo.s_zhtwDTFI public static NanoInput.Class_00000857 Field_000008A9; - ///Method: public System.Globalization.DateTimeFormatInfo..ctor() - Class_00000857(); + ///Method: public System.Globalization.DateTimeFormatInfo..ctor(), Token 000008AA + public Class_00000857() + { + throw new System.NotImplementedException(); + } - ///Method: internal System.Globalization.DateTimeFormatInfo..ctor(System.Globalization.CultureData cultureData, System.Globalization.Calendar cal) - Class_00000857(NanoInput.Class_000000C7 Arg_0, NanoInput.Class_000008FE Arg_1); + ///Method: internal System.Globalization.DateTimeFormatInfo..ctor(System.Globalization.CultureData cultureData, System.Globalization.Calendar cal), Token 000008AB + public Class_00000857(NanoInput.Class_000000C7 Arg_0, NanoInput.Class_000008FE Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Object System.Globalization.DateTimeFormatInfo.GetFormat(System.Type formatType) - virtual NanoInput.Class_00000001 GetFormat(NanoInput.Class_00000002 Arg_0); + ///Method: public virtual System.Object System.Globalization.DateTimeFormatInfo.GetFormat(System.Type formatType), Token 00001273 + public virtual NanoInput.Class_00000001 GetFormat(NanoInput.Class_00000002 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Globalization.GregorianCalendar public class Class_000008FC : NanoInput.Class_000008FE, NanoInput.Class_00000064 @@ -5640,35 +6994,65 @@ public class Class_000008FC : NanoInput.Class_000008FE, NanoInput.Class_00000064 ///Field: System.Int32[] System.Globalization.GregorianCalendar.DaysToMonth366 public static readonly NanoInput.Class_000008FC Field_000008FA; - ///Method: public System.Globalization.GregorianCalendar..ctor() - Class_000008FC(); - - ///Method: public System.Globalization.GregorianCalendar..ctor(System.Globalization.GregorianCalendarTypes type) - Class_000008FC(NanoInput.Class_00000014 Arg_0); - - ///Method: private static System.Globalization.GregorianCalendar..cctor() - Class_000008FC(); - - ///Method: internal virtual System.Globalization.CalendarId System.Globalization.GregorianCalendar.get_ID() - ; - - ///Method: public virtual System.Int32 System.Globalization.GregorianCalendar.GetDayOfMonth(System.DateTime time) - virtual NanoInput.Class_00000014 GetDayOfMonth(NanoInput.Class_000014AC Arg_0); - - ///Method: public virtual System.DayOfWeek System.Globalization.GregorianCalendar.GetDayOfWeek(System.DateTime time) - virtual NanoInput.Class_00000014 GetDayOfWeek(NanoInput.Class_000014AC Arg_0); - - ///Method: public virtual System.Int32 System.Globalization.GregorianCalendar.GetEra(System.DateTime time) - virtual NanoInput.Class_00000014 GetEra(NanoInput.Class_000014AC Arg_0); - - ///Method: public virtual System.Int32 System.Globalization.GregorianCalendar.GetMonth(System.DateTime time) - virtual NanoInput.Class_00000014 GetMonth(NanoInput.Class_000014AC Arg_0); - - ///Method: public virtual System.Int32 System.Globalization.GregorianCalendar.GetYear(System.DateTime time) - virtual NanoInput.Class_00000014 GetYear(NanoInput.Class_000014AC Arg_0); - - ///Method: public virtual System.Boolean System.Globalization.GregorianCalendar.IsLeapYear(System.Int32 year, System.Int32 era) - virtual NanoInput.Class_0000021C IsLeapYear(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public System.Globalization.GregorianCalendar..ctor(), Token 000008C3 + public Class_000008FC() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Globalization.GregorianCalendar..ctor(System.Globalization.GregorianCalendarTypes type), Token 000008C4 + public Class_000008FC(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Globalization.GregorianCalendar..cctor(), Token 000008FB + static Class_000008FC() + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Globalization.CalendarId System.Globalization.GregorianCalendar.get_ID(), Token 00001274 + public virtual NanoInput.Class_00000014 get_ID() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Globalization.GregorianCalendar.GetDayOfMonth(System.DateTime time), Token 00001CB5 + public virtual NanoInput.Class_00000014 GetDayOfMonth(NanoInput.Class_000014AC Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.DayOfWeek System.Globalization.GregorianCalendar.GetDayOfWeek(System.DateTime time), Token 00001CB6 + public virtual NanoInput.Class_00000014 GetDayOfWeek(NanoInput.Class_000014AC Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Globalization.GregorianCalendar.GetEra(System.DateTime time), Token 00001CB7 + public virtual NanoInput.Class_00000014 GetEra(NanoInput.Class_000014AC Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Globalization.GregorianCalendar.GetMonth(System.DateTime time), Token 00001CB8 + public virtual NanoInput.Class_00000014 GetMonth(NanoInput.Class_000014AC Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Globalization.GregorianCalendar.GetYear(System.DateTime time), Token 00001CB9 + public virtual NanoInput.Class_00000014 GetYear(NanoInput.Class_000014AC Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Globalization.GregorianCalendar.IsLeapYear(System.Int32 year, System.Int32 era), Token 00001CBA + public virtual NanoInput.Class_0000021C IsLeapYear(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Globalization.Calendar public abstract class Class_000008FE : NanoInput.Class_00000064 @@ -5682,8 +7066,11 @@ public abstract class Class_000008FE : NanoInput.Class_00000064 ///Field: System.Boolean System.Globalization.Calendar._isReadOnly public NanoInput.Class_000008FE Field_000008FD; - ///Method: protected System.Globalization.Calendar..ctor() - Class_000008FE(); + ///Method: protected System.Globalization.Calendar..ctor(), Token 000008C5 + public Class_000008FE() + { + throw new System.NotImplementedException(); + } } ///System.Globalization.GregorianCalendarTypes public struct Class_000008C6 : NanoInput.Class_00000008, NanoInput.Class_00000130, NanoInput.Class_000001F8 @@ -5724,26 +7111,35 @@ public class Class_11000355 : NanoInput.Class_33000355, NanoInput.Class_17000355 ///Field: System.Int32 System.Collections.Generic.List._size public NanoInput.Class_11000355 Field_0000093D; - ///Method: public System.Collections.Generic.List..ctor() - Class_11000355(); - - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_11000355(); - - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_11000355(); - - ///Method: private static System.Collections.Generic.List..cctor() - Class_11000355(); - - ///Method: public virtual System.Int32 System.Collections.Generic.List.get_Count() - ; - - ///Method: public virtual Iot.Device.Board.Board+PinReservation System.Collections.Generic.List.get_Item(System.Int32 index) - ; - - ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator() - virtual NanoInput.Class_2F000355 System.Collections.Generic.IEnumerable.GetEnumerator(); + ///Method: public System.Collections.Generic.List..ctor(), Token 0000091A + public Class_11000355() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Collections.Generic.List..cctor(), Token 00000967 + static Class_11000355() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.List.get_Count(), Token 000010E1 + public virtual NanoInput.Class_00000014 get_Count() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual Iot.Device.Board.Board+PinReservation System.Collections.Generic.List.get_Item(System.Int32 index), Token 000011FB + public virtual NanoInput.Class_00000355 get_Item(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator(), Token 00001202 + public virtual NanoInput.Class_2F000355 System.Collections.Generic.IEnumerable.GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IList public interface Class_33000355 : NanoInput.Class_17000355, NanoInput.Class_01000355, NanoInput.Class_000000E8 @@ -5785,8 +7181,11 @@ public sealed class Class_00000355 ///Field: System.Int32 Iot.Device.Board.Board+PinReservation.k__BackingField public readonly NanoInput.Class_00000355 Field_00000939; - ///Method: public Iot.Device.Board.Board+PinReservation..ctor(System.Int32 pin, Iot.Device.Board.PinUsage usage, System.Object owner) - Class_00000355(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000001 Arg_2); + ///Method: public Iot.Device.Board.Board+PinReservation..ctor(System.Int32 pin, Iot.Device.Board.PinUsage usage, System.Object owner), Token 00000919 + public Class_00000355(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000001 Arg_2) + { + throw new System.NotImplementedException(); + } } ///System.SR public abstract class Class_00000969 @@ -5796,9 +7195,6 @@ public abstract class Class_00000969 ///Field: System.Resources.ResourceManager System.SR.s_resourceManager public static NanoInput.Class_00000969 Field_00000933; - - ///Method: private static System.SR..cctor() - Class_00000969(); } ///FxResources.System.Linq.SR public abstract class Class_00000934 @@ -5846,17 +7242,29 @@ public class Class_2E000355 : NanoInput.Class_2F000355, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000355 Field_00000943; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(Iot.Device.Board.Board+PinReservation[] array) - Class_2E000355(NanoInput.Class_00000355 Arg_0); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual Iot.Device.Board.Board+PinReservation ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current() - ; - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(Iot.Device.Board.Board+PinReservation[] array), Token 00000941 + public Class_2E000355(NanoInput.Class_00000355 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 0000109E + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual Iot.Device.Board.Board+PinReservation ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current(), Token 0000109F + public virtual NanoInput.Class_00000355 get_Current() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010A0 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000355 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -5865,14 +7273,23 @@ public interface Class_2F000355 : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalComparer public sealed class Class_0000096C : NanoInput.Class_0000096D, NanoInput.Class_000000D1, NanoInput.Class_05000004, NanoInput.Class_00000708 { - ///Method: internal System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalComparer..ctor(System.Collections.Generic.IEqualityComparer wrappedComparer) - Class_0000096C(NanoInput.Class_05000004 Arg_0); + ///Method: internal System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalComparer..ctor(System.Collections.Generic.IEqualityComparer wrappedComparer), Token 0000094D + public Class_0000096C(NanoInput.Class_05000004 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalComparer.Equals(System.String x, System.String y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); + ///Method: public virtual System.Boolean System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalComparer.Equals(System.String x, System.String y), Token 00001CA9 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalComparer.GetHashCode(System.String obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0); + ///Method: public virtual System.Int32 System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalComparer.GetHashCode(System.String obj), Token 00001CAB + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.RandomizedStringEqualityComparer public abstract class Class_0000096D : NanoInput.Class_06000004, NanoInput.Class_000000D1, NanoInput.Class_05000004, NanoInput.Class_00000708 @@ -5883,8 +7300,11 @@ public abstract class Class_0000096D : NanoInput.Class_06000004, NanoInput.Class ///Field: System.Collections.Generic.RandomizedStringEqualityComparer+MarvinSeed System.Collections.Generic.RandomizedStringEqualityComparer._seed public readonly NanoInput.Class_0000096D Field_00000951; - ///Method: private System.Collections.Generic.RandomizedStringEqualityComparer..ctor(System.Collections.Generic.IEqualityComparer underlyingComparer) - Class_0000096D(NanoInput.Class_05000004 Arg_0); + ///Method: private System.Collections.Generic.RandomizedStringEqualityComparer..ctor(System.Collections.Generic.IEqualityComparer underlyingComparer), Token 0000094F + public Class_0000096D(NanoInput.Class_05000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.RandomizedStringEqualityComparer+MarvinSeed public struct Class_00000952 @@ -5898,14 +7318,23 @@ public struct Class_00000952 ///System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer public sealed class Class_00000970 : NanoInput.Class_0000096D, NanoInput.Class_000000D1, NanoInput.Class_05000004, NanoInput.Class_00000708 { - ///Method: internal System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer..ctor(System.Collections.Generic.IEqualityComparer wrappedComparer) - Class_00000970(NanoInput.Class_05000004 Arg_0); + ///Method: internal System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer..ctor(System.Collections.Generic.IEqualityComparer wrappedComparer), Token 0000094E + public Class_00000970(NanoInput.Class_05000004 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.Equals(System.String x, System.String y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); + ///Method: public virtual System.Boolean System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.Equals(System.String x, System.String y), Token 00001CB0 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.GetHashCode(System.String obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0); + ///Method: public virtual System.Int32 System.Collections.Generic.RandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.GetHashCode(System.String obj), Token 00001CB2 + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.HashSet+Entry public struct Class_41000014 @@ -5928,14 +7357,23 @@ public class Class_FF000972 : NanoInput.Class_FF000973, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF000972 Field_00000964; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.HashSet`1+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF000972(NanoInput.Class_41000014 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.HashSet`1+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000962 + public Class_FF000972(NanoInput.Class_41000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 000010A9 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 000010AA + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF000973 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -5968,8 +7406,11 @@ public abstract class Class_00000989 ///Field: System.Double[] System.Number.s_Pow10DoubleTable public static readonly NanoInput.Class_00000989 Field_00000987; - ///Method: private static System.Number..cctor() - Class_00000989(); + ///Method: private static System.Number..cctor(), Token 00000988 + static Class_00000989() + { + throw new System.NotImplementedException(); + } } ///System.ValueTuple public struct Class_FF00098A : NanoInput.Class_FF00098B, NanoInput.Class_000000EA, NanoInput.Class_000000E9, NanoInput.Class_00000130, NanoInput.Class_FF00098C, NanoInput.Class_00000788, NanoInput.Class_00000789 @@ -5980,17 +7421,29 @@ public struct Class_FF00098A : NanoInput.Class_FF00098B, NanoInput.Class_000000E ///Field: System.UInt32 System.ValueTuple.Item2 public NanoInput.Class_FF00098A Field_0000097F; - ///Method: public System.ValueTuple..ctor(System.UInt32 item1, System.UInt32 item2) - Class_FF00098A(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000015 Arg_1); - - ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ValueTuple.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ValueTuple..ctor(System.UInt32 item1, System.UInt32 item2), Token 00000980 + public Class_FF00098A(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000015 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj), Token 000013B6 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode(), Token 000013B7 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ValueTuple.ToString(), Token 000013B8 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF00098B @@ -6021,11 +7474,17 @@ public ref struct Class_000009DB ///Field: System.Span System.Number+NumberBuffer.Digits public NanoInput.Class_000009DB Field_000009A7; - ///Method: public System.Number+NumberBuffer..ctor(System.Number+NumberBufferKind kind, System.Byte* digits, System.Int32 digitsLength) - Class_000009DB(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000013 Arg_1, NanoInput.Class_00000014 Arg_2); + ///Method: public System.Number+NumberBuffer..ctor(System.Number+NumberBufferKind kind, System.Byte* digits, System.Int32 digitsLength), Token 00000995 + public Class_000009DB(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000013 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Number+NumberBuffer.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Number+NumberBuffer.ToString(), Token 000012BC + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Span public ref struct Class_02000014 @@ -6036,26 +7495,41 @@ public ref struct Class_02000014 ///Field: System.Int32 System.Span._length public readonly NanoInput.Class_02000014 Field_000009D5; - ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length) - Class_02000014(? @void, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.Span..ctor(System.Int32[] array) - Class_02000014(NanoInput.Class_00000014 Arg_0); - - ///Method: public System.Span..ctor(System.Int32[] array, System.Int32 start, System.Int32 length) - Class_02000014(); - - ///Method: internal System.Span..ctor(System.Int32& ptr, System.Int32 length) - Class_02000014(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Span.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Span.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length), Token 000009CA + public Class_02000014(void* Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Span..ctor(System.Int32[] array), Token 000009D6 + public Class_02000014(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: internal System.Span..ctor(System.Int32& ptr, System.Int32 length), Token 000009DD + public Class_02000014(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj), Token 00001357 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Span.GetHashCode(), Token 00001358 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Span.ToString(), Token 00001359 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.ByReference public ref struct Class_30000014 @@ -6063,14 +7537,15 @@ public ref struct Class_30000014 ///Field: System.IntPtr System.ByReference._value public readonly NanoInput.Class_30000014 Field_000009DE; - ///Method: public System.ByReference..ctor(System.Int32& value) - Class_30000014(NanoInput.Class_00000014 Arg_0); + ///Method: public System.ByReference..ctor(System.Int32& value), Token 000009D3 + public Class_30000014(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Int32[] public sealed class Class_000009D7 : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_33000014, NanoInput.Class_17000014, NanoInput.Class_01000014, NanoInput.Class_34000014, NanoInput.Class_35000014 { - ///Method: public System.Int32[]..ctor(System.Int32 ) - Class_000009D7(); } ///Iot.Device.Board.I2cBusManager public class Class_0000036D : NanoInput.Class_00000A07, NanoInput.Class_0000003A, NanoInput.Class_000004AD @@ -6093,23 +7568,26 @@ public class Class_0000036D : NanoInput.Class_00000A07, NanoInput.Class_0000003A ///Field: Iot.Device.Board.Board Iot.Device.Board.I2cBusManager._board public NanoInput.Class_0000036D Field_00000A04; - ///Method: public Iot.Device.Board.I2cBusManager..ctor(Iot.Device.Board.Board board, System.Int32 bus, System.Int32[] pins, System.Device.I2c.I2cBus busInstance) - Class_0000036D(); + ///Method: protected virtual void Iot.Device.Board.I2cBusManager.Dispose(System.Boolean disposing), Token 000010D3 + public virtual void Dispose(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: protected virtual void Iot.Device.Board.I2cBusManager.Dispose(System.Boolean disposing) - virtual ? Dispose(NanoInput.Class_0000021C Arg_0); - - ///Method: public virtual System.Collections.Generic.IReadOnlyCollection Iot.Device.Board.I2cBusManager.GetActiveManagedPins() - virtual NanoInput.Class_35000014 GetActiveManagedPins(); + ///Method: public virtual System.Collections.Generic.IReadOnlyCollection Iot.Device.Board.I2cBusManager.GetActiveManagedPins(), Token 0000111E + public virtual NanoInput.Class_35000014 GetActiveManagedPins() + { + throw new System.NotImplementedException(); + } } ///System.Device.I2c.I2cBus public abstract class Class_00000A07 : NanoInput.Class_0000003A { - ///Method: protected System.Device.I2c.I2cBus..ctor() - Class_00000A07(); - - ///Method: public virtual void System.Device.I2c.I2cBus.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Device.I2c.I2cBus.Dispose(), Token 00000517 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Concurrent.CDSCollectionETWBCLProvider public sealed class Class_00000A3E : NanoInput.Class_0000003A @@ -6117,11 +7595,17 @@ public sealed class Class_00000A3E : NanoInput.Class_0000003A ///Field: System.Collections.Concurrent.CDSCollectionETWBCLProvider System.Collections.Concurrent.CDSCollectionETWBCLProvider.Log public static NanoInput.Class_00000A3E Field_00000A2C; - ///Method: private System.Collections.Concurrent.CDSCollectionETWBCLProvider..ctor() - Class_00000A3E(); + ///Method: private System.Collections.Concurrent.CDSCollectionETWBCLProvider..ctor(), Token 00000A3C + public Class_00000A3E() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Collections.Concurrent.CDSCollectionETWBCLProvider..cctor() - Class_00000A3E(); + ///Method: private static System.Collections.Concurrent.CDSCollectionETWBCLProvider..cctor(), Token 00000A3D + static Class_00000A3E() + { + throw new System.NotImplementedException(); + } } ///System.Collections.ObjectModel.ReadOnlyCollection public class Class_42000014 : NanoInput.Class_33000014, NanoInput.Class_17000014, NanoInput.Class_01000014, NanoInput.Class_000000E8, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_34000014, NanoInput.Class_35000014 @@ -6129,11 +7613,17 @@ public class Class_42000014 : NanoInput.Class_33000014, NanoInput.Class_17000014 ///Field: System.Collections.Generic.IList System.Collections.ObjectModel.ReadOnlyCollection.list public readonly NanoInput.Class_42000014 Field_00000A31; - ///Method: public System.Collections.ObjectModel.ReadOnlyCollection..ctor(System.Collections.Generic.IList list) - Class_42000014(NanoInput.Class_33000014 Arg_0); + ///Method: public System.Collections.ObjectModel.ReadOnlyCollection..ctor(System.Collections.Generic.IList list), Token 00000A2B + public Class_42000014(NanoInput.Class_33000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Collections.Generic.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection.GetEnumerator() - virtual NanoInput.Class_2F000014 GetEnumerator(); + ///Method: public virtual System.Collections.Generic.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection.GetEnumerator(), Token 00001216 + public virtual NanoInput.Class_2F000014 GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.EqualityComparer public abstract class Class_0600048C : NanoInput.Class_000000D1, NanoInput.Class_0500048C @@ -6141,11 +7631,11 @@ public abstract class Class_0600048C : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_0600048C Field_00000A37; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_0600048C(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_0600048C(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 00000A40 + static Class_0600048C() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_0500048C @@ -6158,17 +7648,23 @@ public interface Class_0700048C ///System.Collections.Generic.ObjectEqualityComparer public sealed class Class_0400048C : NanoInput.Class_0600048C, NanoInput.Class_000000D1, NanoInput.Class_0500048C { - ///Method: public System.Collections.Generic.ObjectEqualityComparer..ctor() - Class_0400048C(); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Device.Gpio.GpioPin x, System.Device.Gpio.GpioPin y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_0000048C Arg_0, NanoInput.Class_0000048C Arg_1); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Device.Gpio.GpioPin x, System.Device.Gpio.GpioPin y), Token 0000120E + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_0000048C Arg_0, NanoInput.Class_0000048C Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj), Token 00001210 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode(), Token 00001211 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.SR public abstract class Class_00000AAB @@ -6178,9 +7674,6 @@ public abstract class Class_00000AAB ///Field: System.Resources.ResourceManager System.SR.s_resourceManager public static NanoInput.Class_00000AAB Field_00000AA8; - - ///Method: private static System.SR..cctor() - Class_00000AAB(); } ///FxResources.System.Console.SR public abstract class Class_00000AA9 @@ -6195,95 +7688,65 @@ public class Class_00000ADC : NanoInput.Class_0000002A, NanoInput.Class_00000085 ///Field: System.String System.IO.FileNotFoundException.k__BackingField public readonly NanoInput.Class_00000ADC Field_00000AD5; - ///Method: public System.IO.FileNotFoundException..ctor(System.String message, System.String fileName) - Class_00000ADC(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: private System.IO.FileNotFoundException..ctor(System.String fileName, System.Int32 hResult) - Class_00000ADC(); - - ///Method: public System.IO.FileNotFoundException..ctor() - Class_00000ADC(); - - ///Method: public System.IO.FileNotFoundException..ctor(System.String message) - Class_00000ADC(); + ///Method: public System.IO.FileNotFoundException..ctor(System.String message, System.String fileName), Token 00000ABE + public Class_00000ADC(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public System.IO.FileNotFoundException..ctor(System.String message, System.Exception innerException) - Class_00000ADC(); + ///Method: public virtual System.String System.IO.FileNotFoundException.get_Message(), Token 0000127B + public virtual NanoInput.Class_00000004 get_Message() + { + throw new System.NotImplementedException(); + } - ///Method: public System.IO.FileNotFoundException..ctor(System.String message, System.String fileName, System.Exception innerException) - Class_00000ADC(); - - ///Method: protected System.IO.FileNotFoundException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000ADC(); - - ///Method: public virtual System.String System.IO.FileNotFoundException.get_Message() - ; - - ///Method: public virtual System.String System.IO.FileNotFoundException.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.IO.FileNotFoundException.ToString(), Token 00001288 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IO.IOException public class Class_0000002A : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.IO.IOException..ctor(System.String message, System.Int32 hresult) - Class_0000002A(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.IO.IOException..ctor(System.String message) - Class_0000002A(NanoInput.Class_00000004 Arg_0); + ///Method: public System.IO.IOException..ctor(System.String message, System.Int32 hresult), Token 00000AC7 + public Class_0000002A(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public System.IO.IOException..ctor() - Class_0000002A(); - - ///Method: public System.IO.IOException..ctor(System.String message, System.Exception innerException) - Class_0000002A(); - - ///Method: protected System.IO.IOException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_0000002A(); + ///Method: public System.IO.IOException..ctor(System.String message), Token 00000AD1 + public Class_0000002A(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IO.DirectoryNotFoundException public class Class_00000AE3 : NanoInput.Class_0000002A, NanoInput.Class_00000085 { - ///Method: public System.IO.DirectoryNotFoundException..ctor(System.String message) - Class_00000AE3(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.IO.DirectoryNotFoundException..ctor() - Class_00000AE3(); - - ///Method: public System.IO.DirectoryNotFoundException..ctor(System.String message, System.Exception innerException) - Class_00000AE3(); - - ///Method: protected System.IO.DirectoryNotFoundException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000AE3(); + ///Method: public System.IO.DirectoryNotFoundException..ctor(System.String message), Token 00000AC1 + public Class_00000AE3(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.UnauthorizedAccessException public class Class_00000AE7 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.UnauthorizedAccessException..ctor(System.String message) - Class_00000AE7(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.UnauthorizedAccessException..ctor() - Class_00000AE7(); - - ///Method: public System.UnauthorizedAccessException..ctor(System.String message, System.Exception inner) - Class_00000AE7(); - - ///Method: protected System.UnauthorizedAccessException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000AE7(); + ///Method: public System.UnauthorizedAccessException..ctor(System.String message), Token 00000AC4 + public Class_00000AE7(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IO.PathTooLongException public class Class_00000AEB : NanoInput.Class_0000002A, NanoInput.Class_00000085 { - ///Method: public System.IO.PathTooLongException..ctor(System.String message) - Class_00000AEB(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.IO.PathTooLongException..ctor() - Class_00000AEB(); - - ///Method: public System.IO.PathTooLongException..ctor(System.String message, System.Exception innerException) - Class_00000AEB(); - - ///Method: protected System.IO.PathTooLongException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000AEB(); + ///Method: public System.IO.PathTooLongException..ctor(System.String message), Token 00000ACA + public Class_00000AEB(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.OperationCanceledException public class Class_00000AF3 : NanoInput.Class_0000010A, NanoInput.Class_00000085 @@ -6291,26 +7754,11 @@ public class Class_00000AF3 : NanoInput.Class_0000010A, NanoInput.Class_00000085 ///Field: System.Threading.CancellationToken System.OperationCanceledException._cancellationToken public NanoInput.Class_00000AF3 Field_00000AEC; - ///Method: public System.OperationCanceledException..ctor() - Class_00000AF3(); - - ///Method: public System.OperationCanceledException..ctor(System.String message) - Class_00000AF3(); - - ///Method: public System.OperationCanceledException..ctor(System.String message, System.Exception innerException) - Class_00000AF3(); - - ///Method: public System.OperationCanceledException..ctor(System.Threading.CancellationToken token) - Class_00000AF3(); - - ///Method: public System.OperationCanceledException..ctor(System.String message, System.Threading.CancellationToken token) - Class_00000AF3(); - - ///Method: public System.OperationCanceledException..ctor(System.String message, System.Exception innerException, System.Threading.CancellationToken token) - Class_00000AF3(); - - ///Method: protected System.OperationCanceledException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000AF3(); + ///Method: public System.OperationCanceledException..ctor(), Token 00000ACE + public Class_00000AF3() + { + throw new System.NotImplementedException(); + } } ///System.Text.StringBuilderCache public abstract class Class_00000B54 @@ -6336,35 +7784,35 @@ public sealed class Class_00000B5B : NanoInput.Class_00000085 ///Field: System.Int32 System.Text.StringBuilder.m_MaxCapacity public NanoInput.Class_00000B5B Field_00000B2A; - ///Method: public System.Text.StringBuilder..ctor(System.Int32 capacity) - Class_00000B5B(NanoInput.Class_00000014 Arg_0); - - ///Method: private System.Text.StringBuilder..ctor(System.Text.StringBuilder from) - Class_00000B5B(NanoInput.Class_00000B5B Arg_0); - - ///Method: public System.Text.StringBuilder..ctor(System.Int32 capacity, System.Int32 maxCapacity) - Class_00000B5B(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.Text.StringBuilder..ctor() - Class_00000B5B(); - - ///Method: public System.Text.StringBuilder..ctor(System.String value) - Class_00000B5B(); - - ///Method: public System.Text.StringBuilder..ctor(System.String value, System.Int32 capacity) - Class_00000B5B(); - - ///Method: public System.Text.StringBuilder..ctor(System.String value, System.Int32 startIndex, System.Int32 length, System.Int32 capacity) - Class_00000B5B(); - - ///Method: private System.Text.StringBuilder..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000B5B(); - - ///Method: private System.Text.StringBuilder..ctor(System.Int32 size, System.Int32 maxCapacity, System.Text.StringBuilder previousBlock) - Class_00000B5B(); - - ///Method: public virtual System.String System.Text.StringBuilder.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Text.StringBuilder..ctor(System.Int32 capacity), Token 00000B1F + public Class_00000B5B(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private System.Text.StringBuilder..ctor(System.Text.StringBuilder from), Token 00000B2E + public Class_00000B5B(NanoInput.Class_00000B5B Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Text.StringBuilder..ctor(System.Int32 capacity, System.Int32 maxCapacity), Token 00000B2F + public Class_00000B5B(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Text.StringBuilder..ctor(), Token 00000B55 + public Class_00000B5B() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Text.StringBuilder.ToString(), Token 00001387 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.ReadOnlySpan public ref struct Class_0E0002C3 @@ -6375,26 +7823,35 @@ public ref struct Class_0E0002C3 ///Field: System.Int32 System.ReadOnlySpan._length public readonly NanoInput.Class_0E0002C3 Field_00000B36; - ///Method: public System.ReadOnlySpan..ctor(System.UInt16[] array) - Class_0E0002C3(NanoInput.Class_000002C3 Arg_0); - - ///Method: public System.ReadOnlySpan..ctor(System.UInt16[] array, System.Int32 start, System.Int32 length) - Class_0E0002C3(NanoInput.Class_000002C3 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length) - Class_0E0002C3(); - - ///Method: internal System.ReadOnlySpan..ctor(System.UInt16& ptr, System.Int32 length) - Class_0E0002C3(); - - ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ReadOnlySpan.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ReadOnlySpan..ctor(System.UInt16[] array), Token 00000B33 + public Class_0E0002C3(NanoInput.Class_000002C3 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.ReadOnlySpan..ctor(System.UInt16[] array, System.Int32 start, System.Int32 length), Token 00000B3C + public Class_0E0002C3(NanoInput.Class_000002C3 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj), Token 000012DC + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode(), Token 000012DD + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ReadOnlySpan.ToString(), Token 000012DE + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.ByReference public ref struct Class_300002C3 @@ -6402,8 +7859,11 @@ public ref struct Class_300002C3 ///Field: System.IntPtr System.ByReference._value public readonly NanoInput.Class_300002C3 Field_00000B5E; - ///Method: public System.ByReference..ctor(System.UInt16& value) - Class_300002C3(NanoInput.Class_000002C3 Arg_0); + ///Method: public System.ByReference..ctor(System.UInt16& value), Token 00000B34 + public Class_300002C3(NanoInput.Class_000002C3 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.ValueTuple public struct Class_FF000B5F : NanoInput.Class_FF000B60, NanoInput.Class_000000EA, NanoInput.Class_000000E9, NanoInput.Class_00000130, NanoInput.Class_FF000B61, NanoInput.Class_00000788, NanoInput.Class_00000789 @@ -6414,17 +7874,29 @@ public struct Class_FF000B5F : NanoInput.Class_FF000B60, NanoInput.Class_000000E ///Field: System.Int32 System.ValueTuple.Item2 public NanoInput.Class_FF000B5F Field_00000B3F; - ///Method: public System.ValueTuple..ctor(System.Int32 item1, System.Int32 item2) - Class_FF000B5F(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ValueTuple.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ValueTuple..ctor(System.Int32 item1, System.Int32 item2), Token 00000B43 + public Class_FF000B5F(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj), Token 000013B2 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode(), Token 000013B3 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ValueTuple.ToString(), Token 000013B4 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000B60 @@ -6443,26 +7915,29 @@ public ref struct Class_020002C3 ///Field: System.Int32 System.Span._length public readonly NanoInput.Class_020002C3 Field_00000B6C; - ///Method: public System.Span..ctor(System.UInt16[] array) - Class_020002C3(NanoInput.Class_000002C3 Arg_0); - - ///Method: public System.Span..ctor(System.UInt16[] array, System.Int32 start, System.Int32 length) - Class_020002C3(); - - ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length) - Class_020002C3(); - - ///Method: internal System.Span..ctor(System.UInt16& ptr, System.Int32 length) - Class_020002C3(); - - ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Span.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Span.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Span..ctor(System.UInt16[] array), Token 00000B6A + public Class_020002C3(NanoInput.Class_000002C3 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj), Token 0000135A + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Span.GetHashCode(), Token 0000135B + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Span.ToString(), Token 0000135C + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.HashCode public struct Class_00000B8B @@ -6494,14 +7969,23 @@ public struct Class_00000B8B ///Field: System.UInt32 System.HashCode._length public NanoInput.Class_00000B8B Field_00000B89; - ///Method: private static System.HashCode..cctor() - Class_00000B8B(); + ///Method: private static System.HashCode..cctor(), Token 00000B8A + static Class_00000B8B() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.HashCode.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.HashCode.GetHashCode(), Token 00001277 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.HashCode.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.HashCode.Equals(System.Object obj), Token 00001279 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Text.EncoderNLS public class Class_00000BD1 : NanoInput.Class_00000630 @@ -6521,23 +8005,41 @@ public class Class_00000BD1 : NanoInput.Class_00000630 ///Field: System.Int32 System.Text.EncoderNLS._charsUsed public NanoInput.Class_00000BD1 Field_00000BD0; - ///Method: internal System.Text.EncoderNLS..ctor(System.Text.Encoding encoding) - Class_00000BD1(NanoInput.Class_0000020F Arg_0); - - ///Method: public virtual void System.Text.EncoderNLS.Reset() - virtual ? Reset(); - - ///Method: public virtual System.Int32 System.Text.EncoderNLS.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count, System.Boolean flush) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3); - - ///Method: public virtual System.Int32 System.Text.EncoderNLS.GetByteCount(System.Char* chars, System.Int32 count, System.Boolean flush) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2); - - ///Method: public virtual System.Int32 System.Text.EncoderNLS.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex, System.Boolean flush) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_0000021C Arg_5); - - ///Method: public virtual System.Int32 System.Text.EncoderNLS.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Boolean flush) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_0000021C Arg_4); + ///Method: internal System.Text.EncoderNLS..ctor(System.Text.Encoding encoding), Token 00000BC6 + public Class_00000BD1(NanoInput.Class_0000020F Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Text.EncoderNLS.Reset(), Token 0000136E + public virtual void Reset() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderNLS.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count, System.Boolean flush), Token 00001370 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderNLS.GetByteCount(System.Char* chars, System.Int32 count, System.Boolean flush), Token 00001371 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderNLS.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex, System.Boolean flush), Token 00001372 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_0000021C Arg_5) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderNLS.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Boolean flush), Token 00001373 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_0000021C Arg_4) + { + throw new System.NotImplementedException(); + } } ///System.Text.EncoderLatin1BestFitFallback public sealed class Class_00000BE1 : NanoInput.Class_000005ED @@ -6545,17 +8047,29 @@ public sealed class Class_00000BE1 : NanoInput.Class_000005ED ///Field: System.Text.EncoderLatin1BestFitFallback System.Text.EncoderLatin1BestFitFallback.SingletonInstance public static readonly NanoInput.Class_00000BE1 Field_00000BDE; - ///Method: private System.Text.EncoderLatin1BestFitFallback..ctor() - Class_00000BE1(); - - ///Method: private static System.Text.EncoderLatin1BestFitFallback..cctor() - Class_00000BE1(); - - ///Method: public virtual System.Text.EncoderFallbackBuffer System.Text.EncoderLatin1BestFitFallback.CreateFallbackBuffer() - virtual NanoInput.Class_00000C11 CreateFallbackBuffer(); - - ///Method: public virtual System.Int32 System.Text.EncoderLatin1BestFitFallback.get_MaxCharCount() - ; + ///Method: private System.Text.EncoderLatin1BestFitFallback..ctor(), Token 00000BDF + public Class_00000BE1() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.EncoderLatin1BestFitFallback..cctor(), Token 00000BE0 + static Class_00000BE1() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.EncoderFallbackBuffer System.Text.EncoderLatin1BestFitFallback.CreateFallbackBuffer(), Token 00001366 + public virtual NanoInput.Class_00000C11 CreateFallbackBuffer() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderLatin1BestFitFallback.get_MaxCharCount(), Token 0000136D + public virtual NanoInput.Class_00000014 get_MaxCharCount() + { + throw new System.NotImplementedException(); + } } ///System.Text.EncoderFallbackBuffer public abstract class Class_00000C11 @@ -6587,8 +8101,11 @@ public abstract class Class_00000C11 ///Field: System.Int32 System.Text.EncoderFallbackBuffer.originalCharCount public NanoInput.Class_00000C11 Field_00000BF4; - ///Method: protected System.Text.EncoderFallbackBuffer..ctor() - Class_00000C11(); + ///Method: protected System.Text.EncoderFallbackBuffer..ctor(), Token 00000C10 + public Class_00000C11() + { + throw new System.NotImplementedException(); + } } ///System.Text.Rune public struct Class_00000BF8 : NanoInput.Class_00000130, NanoInput.Class_0C000BF8, NanoInput.Class_07000BF8, NanoInput.Class_000001F5, NanoInput.Class_000001F8 @@ -6596,35 +8113,41 @@ public struct Class_00000BF8 : NanoInput.Class_00000130, NanoInput.Class_0C000BF ///Field: System.UInt32 System.Text.Rune._value public readonly NanoInput.Class_00000BF8 Field_00000BFC; - ///Method: private System.Text.Rune..ctor(System.UInt32 scalarValue, System.Boolean unused) - Class_00000BF8(NanoInput.Class_00000015 Arg_0, NanoInput.Class_0000021C Arg_1); - - ///Method: public System.Text.Rune..ctor(System.Char ch) - Class_00000BF8(); - - ///Method: public System.Text.Rune..ctor(System.Char highSurrogate, System.Char lowSurrogate) - Class_00000BF8(); - - ///Method: public System.Text.Rune..ctor(System.Int32 value) - Class_00000BF8(); - - ///Method: public System.Text.Rune..ctor(System.UInt32 value) - Class_00000BF8(); - - ///Method: public virtual System.Boolean System.Text.Rune.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.Rune.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Text.Rune.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: private virtual System.Boolean System.Text.Rune.System.ISpanFormattable.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C System.ISpanFormattable.TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: private virtual System.String System.Text.Rune.System.IFormattable.ToString(System.String format, System.IFormatProvider formatProvider) - virtual NanoInput.Class_00000004 System.IFormattable.ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); + ///Method: private System.Text.Rune..ctor(System.UInt32 scalarValue, System.Boolean unused), Token 00000BFB + public Class_00000BF8(NanoInput.Class_00000015 Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.Rune.Equals(System.Object obj), Token 0000137B + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.Rune.GetHashCode(), Token 0000137D + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Text.Rune.ToString(), Token 00001381 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.Boolean System.Text.Rune.System.ISpanFormattable.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00001384 + public virtual NanoInput.Class_0000021C System.ISpanFormattable.TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.String System.Text.Rune.System.IFormattable.ToString(System.String format, System.IFormatProvider formatProvider), Token 00001386 + public virtual NanoInput.Class_00000004 System.IFormattable.ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000BF8 @@ -6637,23 +8160,38 @@ public interface Class_07000BF8 ///System.SByte public struct Class_00000C29 : NanoInput.Class_00000130, NanoInput.Class_000001F5, NanoInput.Class_000001F8, NanoInput.Class_0C000C29, NanoInput.Class_07000C29 { - ///Field: System.SByte System.SByte.m_value - public readonly NanoInput.Class_00000C29 Field_00000C5A; - - ///Method: public virtual System.Boolean System.SByte.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.SByte.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.SByte.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.SByte.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); + ///Field: System.SByte System.SByte.m_value + public readonly NanoInput.Class_00000C29 Field_00000C5A; - ///Method: public virtual System.Boolean System.SByte.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: public virtual System.Boolean System.SByte.Equals(System.Object obj), Token 00001341 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.SByte.GetHashCode(), Token 00001342 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.SByte.ToString(), Token 00001343 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.SByte.ToString(System.String format, System.IFormatProvider provider), Token 00001344 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.SByte.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00001345 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000C29 @@ -6669,23 +8207,41 @@ public struct Class_00000C2A : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.Single System.Single.m_value public readonly NanoInput.Class_00000C2A Field_00000C68; - ///Method: public virtual System.Boolean System.Single.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Single.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Single.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Single.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.Single.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: public virtual System.Boolean System.Single.Equals(System.Single obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000C2A Arg_0); + ///Method: public virtual System.Boolean System.Single.Equals(System.Object obj), Token 00001347 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Single.GetHashCode(), Token 00001348 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Single.ToString(), Token 0000134A + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Single.ToString(System.String format, System.IFormatProvider provider), Token 00001354 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Single.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00001356 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Single.Equals(System.Single obj), Token 00001CC5 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000C2A Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000C2A @@ -6701,23 +8257,41 @@ public struct Class_00000C2B : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.Double System.Double.m_value public readonly NanoInput.Class_00000C2B Field_00000C75; - ///Method: public virtual System.Boolean System.Double.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Double.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Double.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Double.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.Double.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: public virtual System.Boolean System.Double.Equals(System.Double obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000C2B Arg_0); + ///Method: public virtual System.Boolean System.Double.Equals(System.Object obj), Token 0000121D + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Double.GetHashCode(), Token 0000121E + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Double.ToString(), Token 00001220 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Double.ToString(System.String format, System.IFormatProvider provider), Token 0000126F + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Double.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00001271 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Double.Equals(System.Double obj), Token 00001CB4 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000C2B Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000C2B @@ -6736,32 +8310,41 @@ public struct Class_00000C2C : NanoInput.Class_07000C2C, NanoInput.Class_0000013 ///Field: System.UIntPtr System.UIntPtr.Zero public static readonly NanoInput.Class_00000C2C Field_00000C82; - ///Method: public System.UIntPtr..ctor(System.UInt64 value) - Class_00000C2C(NanoInput.Class_00000017 Arg_0); - - ///Method: public System.UIntPtr..ctor(System.UInt32 value) - Class_00000C2C(); - - ///Method: public System.UIntPtr..ctor(System.Void* value) - Class_00000C2C(); - - ///Method: private System.UIntPtr..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000C2C(); - - ///Method: public virtual System.Boolean System.UIntPtr.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.UIntPtr.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.UIntPtr.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.UIntPtr.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.UIntPtr.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: public System.UIntPtr..ctor(System.UInt64 value), Token 00000C3E + public Class_00000C2C(NanoInput.Class_00000017 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.UIntPtr.Equals(System.Object obj), Token 000013AC + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.UIntPtr.GetHashCode(), Token 000013AD + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.UIntPtr.ToString(), Token 000013AE + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.UIntPtr.ToString(System.String format, System.IFormatProvider provider), Token 000013AF + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.UIntPtr.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 000013B0 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_07000C2C @@ -6777,35 +8360,35 @@ public struct Class_430002C3 : NanoInput.Class_FF000C99, NanoInput.Class_000001F ///Field: System.Numerics.Register System.Numerics.Vector.register public NanoInput.Class_430002C3 Field_00000C93; - ///Method: public System.Numerics.Vector..ctor(System.UInt16 value) - Class_430002C3(NanoInput.Class_000002C3 Arg_0); - - ///Method: public System.Numerics.Vector..ctor(System.UInt16[] values) - Class_430002C3(); - - ///Method: public System.Numerics.Vector..ctor(System.UInt16[] values, System.Int32 index) - Class_430002C3(); - - ///Method: public System.Numerics.Vector..ctor(System.ReadOnlySpan values) - Class_430002C3(); - - ///Method: public System.Numerics.Vector..ctor(System.ReadOnlySpan values) - Class_430002C3(); - - ///Method: public System.Numerics.Vector..ctor(System.Span values) - Class_430002C3(); - - ///Method: public virtual System.Boolean System.Numerics.Vector.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Numerics.Vector.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Numerics.Vector.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Numerics.Vector.ToString(System.String format, System.IFormatProvider formatProvider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); + ///Method: public System.Numerics.Vector..ctor(System.UInt16 value), Token 00000C20 + public Class_430002C3(NanoInput.Class_000002C3 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Numerics.Vector.Equals(System.Object obj), Token 000012CF + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Numerics.Vector.GetHashCode(), Token 000012D1 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Numerics.Vector.ToString(), Token 000012D3 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Numerics.Vector.ToString(System.String format, System.IFormatProvider formatProvider), Token 000012D2 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000C99 @@ -6817,35 +8400,29 @@ public struct Class_43000013 : NanoInput.Class_FF000CA1, NanoInput.Class_000001F ///Field: System.Numerics.Register System.Numerics.Vector.register public NanoInput.Class_43000013 Field_00000C9A; - ///Method: public System.Numerics.Vector..ctor(System.Byte value) - Class_43000013(); - - ///Method: public System.Numerics.Vector..ctor(System.Byte[] values) - Class_43000013(); - - ///Method: public System.Numerics.Vector..ctor(System.Byte[] values, System.Int32 index) - Class_43000013(); - - ///Method: public System.Numerics.Vector..ctor(System.ReadOnlySpan values) - Class_43000013(); - - ///Method: public System.Numerics.Vector..ctor(System.ReadOnlySpan values) - Class_43000013(); - - ///Method: public System.Numerics.Vector..ctor(System.Span values) - Class_43000013(); - - ///Method: public virtual System.Boolean System.Numerics.Vector.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Numerics.Vector.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Numerics.Vector.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Numerics.Vector.ToString(System.String format, System.IFormatProvider formatProvider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); + ///Method: public virtual System.Boolean System.Numerics.Vector.Equals(System.Object obj), Token 000012BF + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Numerics.Vector.GetHashCode(), Token 000012C5 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Numerics.Vector.ToString(), Token 000012C8 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Numerics.Vector.ToString(System.String format, System.IFormatProvider formatProvider), Token 000012C7 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000CA1 @@ -6857,35 +8434,35 @@ public struct Class_43000014 : NanoInput.Class_FF000CA8, NanoInput.Class_000001F ///Field: System.Numerics.Register System.Numerics.Vector.register public NanoInput.Class_43000014 Field_00000CA2; - ///Method: public System.Numerics.Vector..ctor(System.Int32 value) - Class_43000014(NanoInput.Class_00000014 Arg_0); - - ///Method: public System.Numerics.Vector..ctor(System.Int32[] values) - Class_43000014(); - - ///Method: public System.Numerics.Vector..ctor(System.Int32[] values, System.Int32 index) - Class_43000014(); - - ///Method: public System.Numerics.Vector..ctor(System.ReadOnlySpan values) - Class_43000014(); - - ///Method: public System.Numerics.Vector..ctor(System.ReadOnlySpan values) - Class_43000014(); - - ///Method: public System.Numerics.Vector..ctor(System.Span values) - Class_43000014(); - - ///Method: public virtual System.Boolean System.Numerics.Vector.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Numerics.Vector.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Numerics.Vector.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Numerics.Vector.ToString(System.String format, System.IFormatProvider formatProvider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); + ///Method: public System.Numerics.Vector..ctor(System.Int32 value), Token 00000C42 + public Class_43000014(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Numerics.Vector.Equals(System.Object obj), Token 000012C9 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Numerics.Vector.GetHashCode(), Token 000012CB + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Numerics.Vector.ToString(), Token 000012CD + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Numerics.Vector.ToString(System.String format, System.IFormatProvider formatProvider), Token 000012CC + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000CA8 @@ -6900,14 +8477,23 @@ public struct Class_44000013 : NanoInput.Class_FF000CAB ///Field: System.UInt64 System.Runtime.Intrinsics.Vector128._01 public readonly NanoInput.Class_44000013 Field_00000CAA; - ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj), Token 000012FC + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode(), Token 0000130F + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString(), Token 00001310 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000CAB @@ -6922,14 +8508,23 @@ public struct Class_440002C3 : NanoInput.Class_FF000CAE ///Field: System.UInt64 System.Runtime.Intrinsics.Vector128._01 public readonly NanoInput.Class_440002C3 Field_00000CAD; - ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj), Token 0000131E + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode(), Token 00001326 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString(), Token 00001327 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000CAE @@ -6965,8 +8560,11 @@ public abstract class Class_00000CE8 ///Field: System.Collections.Hashtable System.Text.EncodingTable.s_nameToCodePage public static readonly NanoInput.Class_00000CE8 Field_00000CE6; - ///Method: private static System.Text.EncodingTable..cctor() - Class_00000CE8(); + ///Method: private static System.Text.EncodingTable..cctor(), Token 00000CE7 + static Class_00000CE8() + { + throw new System.NotImplementedException(); + } } ///System.Text.CodePageDataItem public sealed class Class_00000CCA @@ -6989,8 +8587,11 @@ public sealed class Class_00000CCA ///Field: System.UInt32 System.Text.CodePageDataItem.k__BackingField public readonly NanoInput.Class_00000CCA Field_00000CE3; - ///Method: internal System.Text.CodePageDataItem..ctor(System.Int32 uiFamilyCodePage, System.String webName, System.String headerName, System.String bodyName, System.String displayName, System.UInt32 flags) - Class_00000CCA(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000004 Arg_1, NanoInput.Class_00000004 Arg_2, NanoInput.Class_00000004 Arg_3, NanoInput.Class_00000004 Arg_4, NanoInput.Class_00000015 Arg_5); + ///Method: internal System.Text.CodePageDataItem..ctor(System.Int32 uiFamilyCodePage, System.String webName, System.String headerName, System.String bodyName, System.String displayName, System.UInt32 flags), Token 00000CD8 + public Class_00000CCA(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000004 Arg_1, NanoInput.Class_00000004 Arg_2, NanoInput.Class_00000004 Arg_3, NanoInput.Class_00000004 Arg_4, NanoInput.Class_00000015 Arg_5) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E000CCA : NanoInput.Class_2F000CCA, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -7001,14 +8602,23 @@ public class Class_2E000CCA : NanoInput.Class_2F000CCA, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000CCA Field_00000CD0; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Text.CodePageDataItem[] array) - Class_2E000CCA(NanoInput.Class_00000CCA Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Text.CodePageDataItem[] array), Token 00000CCE + public Class_2E000CCA(NanoInput.Class_00000CCA Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000010B7 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010B8 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000CCA : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -7017,8 +8627,6 @@ public interface Class_2F000CCA : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.Text.CodePageDataItem[] public sealed class Class_00000CD1 : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_33000CCA, NanoInput.Class_17000CCA, NanoInput.Class_01000CCA, NanoInput.Class_34000CCA, NanoInput.Class_35000CCA { - ///Method: public System.Text.CodePageDataItem[]..ctor(System.Int32 ) - Class_00000CD1(); } ///System.Collections.Generic.IList public interface Class_33000CCA : NanoInput.Class_17000CCA, NanoInput.Class_01000CCA, NanoInput.Class_000000E8 @@ -7049,14 +8657,23 @@ public struct Class_44000402 : NanoInput.Class_FF000D09 ///Field: System.UInt64 System.Runtime.Intrinsics.Vector128._01 public readonly NanoInput.Class_44000402 Field_00000D08; - ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj), Token 00001312 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode(), Token 0000131B + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString(), Token 0000131C + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000D09 @@ -7071,14 +8688,23 @@ public struct Class_44000017 : NanoInput.Class_FF000D0C ///Field: System.UInt64 System.Runtime.Intrinsics.Vector128._01 public readonly NanoInput.Class_44000017 Field_00000D0B; - ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj), Token 00001338 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode(), Token 0000133F + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString(), Token 00001340 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000D0C @@ -7294,14 +8920,23 @@ public struct Class_44000015 : NanoInput.Class_FF000D50 ///Field: System.UInt64 System.Runtime.Intrinsics.Vector128._01 public readonly NanoInput.Class_44000015 Field_00000D4F; - ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj), Token 00001329 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode(), Token 00001335 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString(), Token 00001336 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000D50 @@ -7316,23 +8951,41 @@ public sealed class Class_00000D66 : NanoInput.Class_00000630 ///Field: System.Char System.Text.OSEncoder._charLeftOver public NanoInput.Class_00000D66 Field_00000D65; - ///Method: internal System.Text.OSEncoder..ctor(System.Text.Encoding encoding) - Class_00000D66(NanoInput.Class_0000020F Arg_0); - - ///Method: public virtual void System.Text.OSEncoder.Reset() - virtual ? Reset(); - - ///Method: public virtual System.Int32 System.Text.OSEncoder.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count, System.Boolean flush) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3); - - ///Method: public virtual System.Int32 System.Text.OSEncoder.GetByteCount(System.Char* chars, System.Int32 count, System.Boolean flush) - virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2); - - ///Method: public virtual System.Int32 System.Text.OSEncoder.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex, System.Boolean flush) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_0000021C Arg_5); - - ///Method: public virtual System.Int32 System.Text.OSEncoder.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Boolean flush) - virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_0000021C Arg_4); + ///Method: internal System.Text.OSEncoder..ctor(System.Text.Encoding encoding), Token 00000D62 + public Class_00000D66(NanoInput.Class_0000020F Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Text.OSEncoder.Reset(), Token 00001374 + public virtual void Reset() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.OSEncoder.GetByteCount(System.Char[] chars, System.Int32 index, System.Int32 count, System.Boolean flush), Token 00001375 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.OSEncoder.GetByteCount(System.Char* chars, System.Int32 count, System.Boolean flush), Token 00001377 + public virtual NanoInput.Class_00000014 GetByteCount(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.OSEncoder.GetBytes(System.Char[] chars, System.Int32 charIndex, System.Int32 charCount, System.Byte[] bytes, System.Int32 byteIndex, System.Boolean flush), Token 00001378 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_0000021C Arg_5) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.OSEncoder.GetBytes(System.Char* chars, System.Int32 charCount, System.Byte* bytes, System.Int32 byteCount, System.Boolean flush), Token 00001379 + public virtual NanoInput.Class_00000014 GetBytes(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_0000021C Arg_4) + { + throw new System.NotImplementedException(); + } } ///System.Text.EncoderExceptionFallback public sealed class Class_00000D6F : NanoInput.Class_000005ED @@ -7340,23 +8993,41 @@ public sealed class Class_00000D6F : NanoInput.Class_000005ED ///Field: System.Text.EncoderExceptionFallback System.Text.EncoderExceptionFallback.s_default public static readonly NanoInput.Class_00000D6F Field_00000D6A; - ///Method: public System.Text.EncoderExceptionFallback..ctor() - Class_00000D6F(); - - ///Method: private static System.Text.EncoderExceptionFallback..cctor() - Class_00000D6F(); - - ///Method: public virtual System.Text.EncoderFallbackBuffer System.Text.EncoderExceptionFallback.CreateFallbackBuffer() - virtual NanoInput.Class_00000C11 CreateFallbackBuffer(); - - ///Method: public virtual System.Int32 System.Text.EncoderExceptionFallback.get_MaxCharCount() - ; - - ///Method: public virtual System.Boolean System.Text.EncoderExceptionFallback.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.EncoderExceptionFallback.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public System.Text.EncoderExceptionFallback..ctor(), Token 00000D6D + public Class_00000D6F() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.EncoderExceptionFallback..cctor(), Token 00000D6E + static Class_00000D6F() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Text.EncoderFallbackBuffer System.Text.EncoderExceptionFallback.CreateFallbackBuffer(), Token 00001360 + public virtual NanoInput.Class_00000C11 CreateFallbackBuffer() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderExceptionFallback.get_MaxCharCount(), Token 00001362 + public virtual NanoInput.Class_00000014 get_MaxCharCount() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderExceptionFallback.Equals(System.Object value), Token 00001363 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderExceptionFallback.GetHashCode(), Token 00001364 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Text.DecoderExceptionFallback public sealed class Class_00000D72 : NanoInput.Class_000005F4 @@ -7364,29 +9035,50 @@ public sealed class Class_00000D72 : NanoInput.Class_000005F4 ///Field: System.Text.DecoderExceptionFallback System.Text.DecoderExceptionFallback.s_default public static readonly NanoInput.Class_00000D72 Field_00000D6B; - ///Method: public System.Text.DecoderExceptionFallback..ctor() - Class_00000D72(); - - ///Method: private static System.Text.DecoderExceptionFallback..cctor() - Class_00000D72(); - - ///Method: public virtual System.Boolean System.Text.DecoderExceptionFallback.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Text.DecoderExceptionFallback.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public System.Text.DecoderExceptionFallback..ctor(), Token 00000D70 + public Class_00000D72() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.DecoderExceptionFallback..cctor(), Token 00000D71 + static Class_00000D72() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.DecoderExceptionFallback.Equals(System.Object value), Token 0000135D + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.DecoderExceptionFallback.GetHashCode(), Token 0000135E + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Text.UTF7Encoding+DecoderUTF7Fallback public sealed class Class_00000D92 : NanoInput.Class_000005F4 { - ///Method: public System.Text.UTF7Encoding+DecoderUTF7Fallback..ctor() - Class_00000D92(); + ///Method: public System.Text.UTF7Encoding+DecoderUTF7Fallback..ctor(), Token 00000D90 + public Class_00000D92() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Text.UTF7Encoding+DecoderUTF7Fallback.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Text.UTF7Encoding+DecoderUTF7Fallback.Equals(System.Object value), Token 00001388 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Text.UTF7Encoding+DecoderUTF7Fallback.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Text.UTF7Encoding+DecoderUTF7Fallback.GetHashCode(), Token 00001389 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Text.UTF7Encoding+Encoder public sealed class Class_00000D99 : NanoInput.Class_00000BD1 @@ -7397,11 +9089,17 @@ public sealed class Class_00000D99 : NanoInput.Class_00000BD1 ///Field: System.Int32 System.Text.UTF7Encoding+Encoder.bitCount public NanoInput.Class_00000D99 Field_00000D9C; - ///Method: public System.Text.UTF7Encoding+Encoder..ctor(System.Text.UTF7Encoding encoding) - Class_00000D99(NanoInput.Class_000005E4 Arg_0); + ///Method: public System.Text.UTF7Encoding+Encoder..ctor(System.Text.UTF7Encoding encoding), Token 00000DA3 + public Class_00000D99(NanoInput.Class_000005E4 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Text.UTF7Encoding+Encoder.Reset() - virtual ? Reset(); + ///Method: public virtual void System.Text.UTF7Encoding+Encoder.Reset(), Token 0000138A + public virtual void Reset() + { + throw new System.NotImplementedException(); + } } ///System.Text.Encoding+EncodingByteBuffer public sealed class Class_00000DB2 @@ -7436,8 +9134,11 @@ public sealed class Class_00000DB2 ///Field: System.Int32 System.Text.Encoding+EncodingByteBuffer._byteCountResult public NanoInput.Class_00000DB2 Field_00000DB0; - ///Method: internal System.Text.Encoding+EncodingByteBuffer..ctor(System.Text.Encoding inEncoding, System.Text.EncoderNLS inEncoder, System.Byte* inByteStart, System.Int32 inByteCount, System.Char* inCharStart, System.Int32 inCharCount) - Class_00000DB2(NanoInput.Class_0000020F Arg_0, NanoInput.Class_00000BD1 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000131 Arg_4, NanoInput.Class_00000014 Arg_5); + ///Method: internal System.Text.Encoding+EncodingByteBuffer..ctor(System.Text.Encoding inEncoding, System.Text.EncoderNLS inEncoder, System.Byte* inByteStart, System.Int32 inByteCount, System.Char* inCharStart, System.Int32 inCharCount), Token 00000D9A + public Class_00000DB2(NanoInput.Class_0000020F Arg_0, NanoInput.Class_00000BD1 Arg_1, NanoInput.Class_00000013 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000131 Arg_4, NanoInput.Class_00000014 Arg_5) + { + throw new System.NotImplementedException(); + } } ///System.Numerics.Vector public struct Class_43000C2C : NanoInput.Class_FF000DEF, NanoInput.Class_000001F8 @@ -7445,35 +9146,29 @@ public struct Class_43000C2C : NanoInput.Class_FF000DEF, NanoInput.Class_000001F ///Field: System.Numerics.Register System.Numerics.Vector.register public NanoInput.Class_43000C2C Field_00000DE8; - ///Method: public System.Numerics.Vector..ctor(System.UIntPtr value) - Class_43000C2C(); - - ///Method: public System.Numerics.Vector..ctor(System.UIntPtr[] values) - Class_43000C2C(); - - ///Method: public System.Numerics.Vector..ctor(System.UIntPtr[] values, System.Int32 index) - Class_43000C2C(); - - ///Method: public System.Numerics.Vector..ctor(System.ReadOnlySpan values) - Class_43000C2C(); - - ///Method: public System.Numerics.Vector..ctor(System.ReadOnlySpan values) - Class_43000C2C(); - - ///Method: public System.Numerics.Vector..ctor(System.Span values) - Class_43000C2C(); - - ///Method: public virtual System.Boolean System.Numerics.Vector.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Numerics.Vector.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Numerics.Vector.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Numerics.Vector.ToString(System.String format, System.IFormatProvider formatProvider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); + ///Method: public virtual System.Boolean System.Numerics.Vector.Equals(System.Object obj), Token 000012D5 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Numerics.Vector.GetHashCode(), Token 000012D9 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Numerics.Vector.ToString(), Token 000012DB + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Numerics.Vector.ToString(System.String format, System.IFormatProvider formatProvider), Token 000012DA + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF000DEF @@ -7509,8 +9204,11 @@ public sealed class Class_00000E84 ///Field: System.Threading.Tasks.Task System.Threading.Tasks.Task+ContingentProperties.m_parent public NanoInput.Class_00000E84 Field_00000E82; - ///Method: public System.Threading.Tasks.Task+ContingentProperties..ctor() - Class_00000E84(); + ///Method: public System.Threading.Tasks.Task+ContingentProperties..ctor(), Token 00000E83 + public Class_00000E84() + { + throw new System.NotImplementedException(); + } } ///System.Threading.ManualResetEventSlim public class Class_00000E8A : NanoInput.Class_0000003A @@ -7527,20 +9225,17 @@ public class Class_00000E8A : NanoInput.Class_0000003A ///Field: System.Action System.Threading.ManualResetEventSlim.s_cancellationTokenCallback public static readonly NanoInput.Class_00000E8A Field_00000E85; - ///Method: public System.Threading.ManualResetEventSlim..ctor() - Class_00000E8A(); - - ///Method: public System.Threading.ManualResetEventSlim..ctor(System.Boolean initialState) - Class_00000E8A(); - - ///Method: public System.Threading.ManualResetEventSlim..ctor(System.Boolean initialState, System.Int32 spinCount) - Class_00000E8A(); - - ///Method: private static System.Threading.ManualResetEventSlim..cctor() - Class_00000E8A(); + ///Method: private static System.Threading.ManualResetEventSlim..cctor(), Token 00000E89 + static Class_00000E8A() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Threading.ManualResetEventSlim.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Threading.ManualResetEventSlim.Dispose(), Token 00000E3B + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Threading.SpinWait public struct Class_00000E48 @@ -7551,8 +9246,11 @@ public struct Class_00000E48 ///Field: System.Int32 System.Threading.SpinWait._count public NanoInput.Class_00000E48 Field_00000E4D; - ///Method: private static System.Threading.SpinWait..cctor() - Class_00000E48(); + ///Method: private static System.Threading.SpinWait..cctor(), Token 00000E8C + static Class_00000E48() + { + throw new System.NotImplementedException(); + } } ///System.Threading.WaitHandle public abstract class Class_00000E90 : NanoInput.Class_00000045, NanoInput.Class_0000003A @@ -7566,35 +9264,53 @@ public abstract class Class_00000E90 : NanoInput.Class_00000045, NanoInput.Class ///Field: Microsoft.Win32.SafeHandles.SafeWaitHandle[] System.Threading.WaitHandle.t_safeWaitHandlesForRent public static NanoInput.Class_00000E90 Field_00000E8D; - ///Method: protected System.Threading.WaitHandle..ctor() - Class_00000E90(); + ///Method: protected System.Threading.WaitHandle..ctor(), Token 00000E8E + public Class_00000E90() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.WaitHandle..cctor() - Class_00000E90(); + ///Method: private static System.Threading.WaitHandle..cctor(), Token 00000E8F + static Class_00000E90() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Threading.WaitHandle.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Threading.WaitHandle.Dispose(), Token 00000E71 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///Microsoft.Win32.SafeHandles.SafeWaitHandle public sealed class Class_00000E92 : NanoInput.Class_00000E93, NanoInput.Class_0000003A { - ///Method: public Microsoft.Win32.SafeHandles.SafeWaitHandle..ctor(System.IntPtr existingHandle, System.Boolean ownsHandle) - Class_00000E92(NanoInput.Class_000005BD Arg_0, NanoInput.Class_0000021C Arg_1); + ///Method: public Microsoft.Win32.SafeHandles.SafeWaitHandle..ctor(System.IntPtr existingHandle, System.Boolean ownsHandle), Token 00000E57 + public Class_00000E92(NanoInput.Class_000005BD Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public Microsoft.Win32.SafeHandles.SafeWaitHandle..ctor() - Class_00000E92(); - - ///Method: protected virtual System.Boolean Microsoft.Win32.SafeHandles.SafeWaitHandle.ReleaseHandle() - virtual NanoInput.Class_0000021C ReleaseHandle(); + ///Method: protected virtual System.Boolean Microsoft.Win32.SafeHandles.SafeWaitHandle.ReleaseHandle(), Token 00001121 + public virtual NanoInput.Class_0000021C ReleaseHandle() + { + throw new System.NotImplementedException(); + } } ///Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid public abstract class Class_00000E93 : NanoInput.Class_00000E94, NanoInput.Class_0000003A { - ///Method: protected Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid..ctor(System.Boolean ownsHandle) - Class_00000E93(NanoInput.Class_0000021C Arg_0); + ///Method: protected Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid..ctor(System.Boolean ownsHandle), Token 00000E58 + public Class_00000E93(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid.get_IsInvalid() - ; + ///Method: public virtual System.Boolean Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid.get_IsInvalid(), Token 0000111F + public virtual NanoInput.Class_0000021C get_IsInvalid() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.InteropServices.SafeHandle public abstract class Class_00000E94 : NanoInput.Class_00000E95, NanoInput.Class_0000003A @@ -7611,17 +9327,26 @@ public abstract class Class_00000E94 : NanoInput.Class_00000E95, NanoInput.Class ///Field: System.Boolean System.Runtime.InteropServices.SafeHandle._fullyInitialized public NanoInput.Class_00000E94 Field_00000E5F; - ///Method: protected System.Runtime.InteropServices.SafeHandle..ctor(System.IntPtr invalidHandleValue, System.Boolean ownsHandle) - Class_00000E94(NanoInput.Class_000005BD Arg_0, NanoInput.Class_0000021C Arg_1); + ///Method: protected System.Runtime.InteropServices.SafeHandle..ctor(System.IntPtr invalidHandleValue, System.Boolean ownsHandle), Token 00000E5A + public Class_00000E94(NanoInput.Class_000005BD Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Runtime.InteropServices.SafeHandle.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Runtime.InteropServices.SafeHandle.Dispose(), Token 00000E74 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.ConstrainedExecution.CriticalFinalizerObject public abstract class Class_00000E95 { - ///Method: protected System.Runtime.ConstrainedExecution.CriticalFinalizerObject..ctor() - Class_00000E95(); + ///Method: protected System.Runtime.ConstrainedExecution.CriticalFinalizerObject..ctor(), Token 00000E5B + public Class_00000E95() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.EqualityComparer public abstract class Class_06000015 : NanoInput.Class_000000D1, NanoInput.Class_05000015 @@ -7629,11 +9354,11 @@ public abstract class Class_06000015 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06000015 Field_00000EAC; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06000015(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06000015(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 00000EAE + static Class_06000015() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_05000015 @@ -7642,29 +9367,38 @@ public interface Class_05000015 ///System.Collections.Generic.GenericEqualityComparer public sealed class Class_08000015 : NanoInput.Class_06000015, NanoInput.Class_000000D1, NanoInput.Class_05000015 { - ///Method: public System.Collections.Generic.GenericEqualityComparer..ctor() - Class_08000015(); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.UInt32 x, System.UInt32 y), Token 000011F6 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000015 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.UInt32 x, System.UInt32 y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000015 Arg_1); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj), Token 000011F8 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(), Token 000011F9 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.GenericComparer public sealed class Class_09000015 : NanoInput.Class_000000DE, NanoInput.Class_0A000015 { - ///Method: public System.Collections.Generic.GenericComparer..ctor() - Class_09000015(); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj), Token 000011F1 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode(), Token 000011F2 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IComparer public interface Class_0A000015 @@ -7673,8 +9407,11 @@ public interface Class_0A000015 ///ArduinoCsCompiler.Runtime.MiniTextInfo public class Class_00000EC0 { - ///Method: public ArduinoCsCompiler.Runtime.MiniTextInfo..ctor() - Class_00000EC0(); + ///Method: public ArduinoCsCompiler.Runtime.MiniTextInfo..ctor(), Token 00000EBE + public Class_00000EC0() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E000002 : NanoInput.Class_2F000002, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -7685,14 +9422,23 @@ public class Class_2E000002 : NanoInput.Class_2F000002, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000002 Field_00000EC3; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Type[] array) - Class_2E000002(NanoInput.Class_00000002 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Type[] array), Token 00000EC1 + public Class_2E000002(NanoInput.Class_00000002 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000010BB + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010BC + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000002 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -7788,14 +9534,23 @@ public class Class_2E000EC5 : NanoInput.Class_2F000EC5, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000EC5 Field_00000ED0; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(ArduinoCsCompiler.Runtime.CalendarId[] array) - Class_2E000EC5(NanoInput.Class_00000014 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(ArduinoCsCompiler.Runtime.CalendarId[] array), Token 00000ECE + public Class_2E000EC5(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 0000109C + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 0000109D + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000EC5 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -7804,14 +9559,17 @@ public interface Class_2F000EC5 : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.Reflection.MemberInfo public abstract class Class_00000EF3 : NanoInput.Class_00000EF4 { - ///Method: protected System.Reflection.MemberInfo..ctor() - Class_00000EF3(); + ///Method: public virtual System.Boolean System.Reflection.MemberInfo.Equals(System.Object obj), Token 000012DF + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Reflection.MemberInfo.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Reflection.MemberInfo.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Reflection.MemberInfo.GetHashCode(), Token 000012E0 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Reflection.ICustomAttributeProvider public interface Class_00000EF4 @@ -7838,29 +9596,44 @@ public struct Class_00800000 ///Field: T System.Nullable.value public NanoInput.Class_00800000 Field_00000EF8; - ///Method: public System.Nullable..ctor(T value) - Class_00800000(); - - ///Method: public virtual System.Boolean System.Nullable.Equals(System.Object other) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Nullable.Equals(System.Object other), Token 000012B4 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Nullable.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Nullable.GetHashCode(), Token 000012B5 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Nullable.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Nullable.ToString(), Token 000012B6 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.ByteEqualityComparer public sealed class Class_00000EFA : NanoInput.Class_06000013, NanoInput.Class_000000D1, NanoInput.Class_05000013 { - ///Method: public System.Collections.Generic.ByteEqualityComparer..ctor() - Class_00000EFA(); + ///Method: public System.Collections.Generic.ByteEqualityComparer..ctor(), Token 00000EE3 + public Class_00000EFA() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.ByteEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.ByteEqualityComparer.Equals(System.Object obj), Token 000011E9 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.ByteEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ByteEqualityComparer.GetHashCode(), Token 000011EA + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_05000013 @@ -7872,35 +9645,47 @@ public abstract class Class_06000013 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06000013 Field_00000EFB; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06000013(); + ///Method: protected System.Collections.Generic.EqualityComparer..ctor(), Token 00000EEC + public Class_06000013() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06000013(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 00000EFC + static Class_06000013() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.GenericEqualityComparer public sealed class Class_08000013 : NanoInput.Class_06000013, NanoInput.Class_000000D1, NanoInput.Class_05000013 { - ///Method: public System.Collections.Generic.GenericEqualityComparer..ctor() - Class_08000013(); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj), Token 000011F3 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(), Token 000011F4 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.GenericComparer public sealed class Class_09000013 : NanoInput.Class_000000DE, NanoInput.Class_0A000013 { - ///Method: public System.Collections.Generic.GenericComparer..ctor() - Class_09000013(); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj), Token 000011EF + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode(), Token 000011F0 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IComparer public interface Class_0A000013 @@ -7909,14 +9694,17 @@ public interface Class_0A000013 ///System.Collections.Generic.NullableEqualityComparer public sealed class Class_47000014 : NanoInput.Class_FF000F03, NanoInput.Class_000000D1, NanoInput.Class_FF0007F3 { - ///Method: public System.Collections.Generic.NullableEqualityComparer..ctor() - Class_47000014(); + ///Method: public virtual System.Boolean System.Collections.Generic.NullableEqualityComparer.Equals(System.Object obj), Token 00001206 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.NullableEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.NullableEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.NullableEqualityComparer.GetHashCode(), Token 00001207 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.EqualityComparer> public abstract class Class_FF000F03 : NanoInput.Class_000000D1, NanoInput.Class_FF0007F3 @@ -7924,26 +9712,26 @@ public abstract class Class_FF000F03 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer> System.Collections.Generic.EqualityComparer>.k__BackingField public static readonly NanoInput.Class_FF000F03 Field_00000F00; - ///Method: protected System.Collections.Generic.EqualityComparer>..ctor() - Class_FF000F03(); - - ///Method: private static System.Collections.Generic.EqualityComparer>..cctor() - Class_FF000F03(); + ///Method: private static System.Collections.Generic.EqualityComparer>..cctor(), Token 00000F02 + static Class_FF000F03() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.EnumEqualityComparer public sealed class Class_48000000 : NanoInput.Class_06000F06, NanoInput.Class_000000D1, NanoInput.Class_05000F06, NanoInput.Class_00000085 { - ///Method: public System.Collections.Generic.EnumEqualityComparer..ctor() - Class_48000000(); - - ///Method: private System.Collections.Generic.EnumEqualityComparer..ctor(System.Runtime.Serialization.SerializationInfo information, System.Runtime.Serialization.StreamingContext context) - Class_48000000(); - - ///Method: public virtual System.Boolean System.Collections.Generic.EnumEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.EnumEqualityComparer.Equals(System.Object obj), Token 000011ED + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.EnumEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.EnumEqualityComparer.GetHashCode(), Token 000011EE + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_05000F06 @@ -7954,12 +9742,6 @@ public abstract class Class_06000F06 : NanoInput.Class_000000D1, NanoInput.Class { ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06000F06 Field_00000F07; - - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06000F06(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06000F06(); } ///System.IEquatable public interface Class_07000F06 @@ -7968,14 +9750,17 @@ public interface Class_07000F06 ///System.Collections.Generic.ObjectEqualityComparer public sealed class Class_04000F06 : NanoInput.Class_06000F06, NanoInput.Class_000000D1, NanoInput.Class_05000F06 { - ///Method: public System.Collections.Generic.ObjectEqualityComparer..ctor() - Class_04000F06(); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj), Token 00001214 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode(), Token 00001215 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C000000 @@ -7984,14 +9769,17 @@ public interface Class_0C000000 ///System.Collections.Generic.ObjectComparer public sealed class Class_0D000001 : NanoInput.Class_0B000001, NanoInput.Class_000000DE, NanoInput.Class_0A000001 { - ///Method: public System.Collections.Generic.ObjectComparer..ctor() - Class_0D000001(); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectComparer.Equals(System.Object obj), Token 0000120A + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectComparer.GetHashCode(), Token 0000120B + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IComparer public interface Class_0A000001 @@ -8003,23 +9791,26 @@ public abstract class Class_0B000001 : NanoInput.Class_000000DE, NanoInput.Class ///Field: System.Collections.Generic.Comparer System.Collections.Generic.Comparer.k__BackingField public static readonly NanoInput.Class_0B000001 Field_00000F0F; - ///Method: protected System.Collections.Generic.Comparer..ctor() - Class_0B000001(); - - ///Method: private static System.Collections.Generic.Comparer..cctor() - Class_0B000001(); + ///Method: private static System.Collections.Generic.Comparer..cctor(), Token 00000F11 + static Class_0B000001() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.NullableComparer public sealed class Class_49000014 : NanoInput.Class_FF000F17, NanoInput.Class_000000DE, NanoInput.Class_FF000F13 { - ///Method: public System.Collections.Generic.NullableComparer..ctor() - Class_49000014(); - - ///Method: public virtual System.Boolean System.Collections.Generic.NullableComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.NullableComparer.Equals(System.Object obj), Token 00001204 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.NullableComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.NullableComparer.GetHashCode(), Token 00001205 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IComparer> public interface Class_FF000F13 @@ -8031,11 +9822,11 @@ public abstract class Class_FF000F17 : NanoInput.Class_000000DE, NanoInput.Class ///Field: System.Collections.Generic.Comparer> System.Collections.Generic.Comparer>.k__BackingField public static readonly NanoInput.Class_FF000F17 Field_00000F14; - ///Method: protected System.Collections.Generic.Comparer>..ctor() - Class_FF000F17(); - - ///Method: private static System.Collections.Generic.Comparer>..cctor() - Class_FF000F17(); + ///Method: private static System.Collections.Generic.Comparer>..cctor(), Token 00000F16 + static Class_FF000F17() + { + throw new System.NotImplementedException(); + } } ///System.IComparable> public interface Class_FF000F18 @@ -8044,29 +9835,32 @@ public interface Class_FF000F18 ///System.Collections.Generic.ObjectComparer> public sealed class Class_FF000F1A : NanoInput.Class_FF000F17, NanoInput.Class_000000DE, NanoInput.Class_FF000F13 { - ///Method: public System.Collections.Generic.ObjectComparer>..ctor() - Class_FF000F1A(); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectComparer>.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectComparer>.Equals(System.Object obj), Token 00001208 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectComparer>.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectComparer>.GetHashCode(), Token 00001209 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.EnumComparer public sealed class Class_4A000000 : NanoInput.Class_0B000F1D, NanoInput.Class_000000DE, NanoInput.Class_0A000F1D, NanoInput.Class_00000085 { - ///Method: public System.Collections.Generic.EnumComparer..ctor() - Class_4A000000(); + ///Method: public virtual System.Boolean System.Collections.Generic.EnumComparer.Equals(System.Object obj), Token 000011EB + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private System.Collections.Generic.EnumComparer..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_4A000000(); - - ///Method: public virtual System.Boolean System.Collections.Generic.EnumComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.EnumComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.EnumComparer.GetHashCode(), Token 000011EC + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IComparer public interface Class_0A000F1D @@ -8077,12 +9871,6 @@ public abstract class Class_0B000F1D : NanoInput.Class_000000DE, NanoInput.Class { ///Field: System.Collections.Generic.Comparer System.Collections.Generic.Comparer.k__BackingField public static readonly NanoInput.Class_0B000F1D Field_00000F1E; - - ///Method: protected System.Collections.Generic.Comparer..ctor() - Class_0B000F1D(); - - ///Method: private static System.Collections.Generic.Comparer..cctor() - Class_0B000F1D(); } ///System.IComparable public interface Class_0C000F1D @@ -8091,14 +9879,17 @@ public interface Class_0C000F1D ///System.Collections.Generic.ObjectComparer public sealed class Class_0D000F1D : NanoInput.Class_0B000F1D, NanoInput.Class_000000DE, NanoInput.Class_0A000F1D { - ///Method: public System.Collections.Generic.ObjectComparer..ctor() - Class_0D000F1D(); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectComparer.Equals(System.Object obj), Token 0000120C + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectComparer.GetHashCode(), Token 0000120D + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } /// public sealed class Class_00000F2B @@ -8124,8 +9915,11 @@ public sealed class Class_00000F2B ///System.Net.IPAddress+ReadOnlyIPAddress public sealed class Class_00000F35 : NanoInput.Class_00000145 { - ///Method: public System.Net.IPAddress+ReadOnlyIPAddress..ctor(System.ReadOnlySpan newAddress) - Class_00000F35(NanoInput.Class_0E000013 Arg_0); + ///Method: public System.Net.IPAddress+ReadOnlyIPAddress..ctor(System.ReadOnlySpan newAddress), Token 00000F23 + public Class_00000F35(NanoInput.Class_0E000013 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.SR public abstract class Class_00000F37 @@ -8135,9 +9929,6 @@ public abstract class Class_00000F37 ///Field: System.Resources.ResourceManager System.SR.s_resourceManager public static NanoInput.Class_00000F37 Field_00000F32; - - ///Method: private static System.SR..cctor() - Class_00000F37(); } ///FxResources.System.Net.Primitives.SR public abstract class Class_00000F33 @@ -8146,23 +9937,35 @@ public abstract class Class_00000F33 ///System.Text.UTF8Encoding+UTF8EncodingSealed public sealed class Class_00000F39 : NanoInput.Class_00000588, NanoInput.Class_00000064 { - ///Method: public System.Text.UTF8Encoding+UTF8EncodingSealed..ctor(System.Boolean encoderShouldEmitUTF8Identifier) - Class_00000F39(NanoInput.Class_0000021C Arg_0); + ///Method: public System.Text.UTF8Encoding+UTF8EncodingSealed..ctor(System.Boolean encoderShouldEmitUTF8Identifier), Token 00000F38 + public Class_00000F39(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.ReadOnlySpan System.Text.UTF8Encoding+UTF8EncodingSealed.get_Preamble() - ; + ///Method: public virtual System.ReadOnlySpan System.Text.UTF8Encoding+UTF8EncodingSealed.get_Preamble(), Token 0000138B + public virtual NanoInput.Class_0E000013 get_Preamble() + { + throw new System.NotImplementedException(); + } } ///System.Text.ASCIIEncoding+ASCIIEncodingSealed public sealed class Class_00000F3B : NanoInput.Class_0000058B, NanoInput.Class_00000064 { - ///Method: public System.Text.ASCIIEncoding+ASCIIEncodingSealed..ctor() - Class_00000F3B(); + ///Method: public System.Text.ASCIIEncoding+ASCIIEncodingSealed..ctor(), Token 00000F3A + public Class_00000F3B() + { + throw new System.NotImplementedException(); + } } ///System.Text.Latin1Encoding+Latin1EncodingSealed public sealed class Class_00000F3D : NanoInput.Class_0000058E, NanoInput.Class_00000064 { - ///Method: public System.Text.Latin1Encoding+Latin1EncodingSealed..ctor() - Class_00000F3D(); + ///Method: public System.Text.Latin1Encoding+Latin1EncodingSealed..ctor(), Token 00000F3C + public Class_00000F3D() + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool public sealed class Class_4D000131 : NanoInput.Class_32000131 @@ -8179,14 +9982,23 @@ public sealed class Class_4D000131 : NanoInput.Class_32000131 ///Field: System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] System.Buffers.TlsOverPerCoreLockedStacksArrayPool.t_tlsBuckets public static NanoInput.Class_4D000131 Field_00000F51; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool..ctor() - Class_4D000131(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool..ctor(), Token 00000F3E + public Class_4D000131() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Char[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Rent(System.Int32 minimumLength) - virtual NanoInput.Class_000001D4 Rent(NanoInput.Class_00000014 Arg_0); + ///Method: public virtual System.Char[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Rent(System.Int32 minimumLength), Token 000011B0 + public virtual NanoInput.Class_000001D4 Rent(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Return(System.Char[] array, System.Boolean clearArray) - virtual ? Return(NanoInput.Class_00000131 Arg_0, NanoInput.Class_0000021C Arg_1); + ///Method: public virtual void System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Return(System.Char[] array, System.Boolean clearArray), Token 000011B9 + public virtual void Return(NanoInput.Class_00000131 Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks public sealed class Class_4B000131 @@ -8197,11 +10009,17 @@ public sealed class Class_4B000131 ///Field: System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks.s_lockedStackCount public static readonly NanoInput.Class_4B000131 Field_00000F53; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..ctor() - Class_4B000131(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..ctor(), Token 00000F54 + public Class_4B000131() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..cctor() - Class_4B000131(); + ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..cctor(), Token 00000F55 + static Class_4B000131() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.ConditionalWeakTable public sealed class Class_FF000F57 : NanoInput.Class_FF000F59, NanoInput.Class_000000E8 @@ -8215,11 +10033,17 @@ public sealed class Class_FF000F57 : NanoInput.Class_FF000F59, NanoInput.Class_0 ///Field: System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable._activeEnumeratorRefCount public NanoInput.Class_FF000F57 Field_00000F56; - ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable..ctor() - Class_FF000F57(); + ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable..ctor(), Token 00000F3F + public Class_FF000F57() + { + throw new System.NotImplementedException(); + } - ///Method: private virtual System.Collections.Generic.IEnumerator> System.Runtime.CompilerServices.ConditionalWeakTable.System.Collections.Generic.IEnumerable>.GetEnumerator() - virtual NanoInput.Class_FF0012F8 System.Collections.Generic.IEnumerable>.GetEnumerator(); + ///Method: private virtual System.Collections.Generic.IEnumerator> System.Runtime.CompilerServices.ConditionalWeakTable.System.Collections.Generic.IEnumerable>.GetEnumerator(), Token 000012F1 + public virtual NanoInput.Class_FF0012F8 System.Collections.Generic.IEnumerable>.GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerable> public interface Class_FF000F59 : NanoInput.Class_000000E8 @@ -8249,11 +10073,17 @@ public sealed class Class_FF000F5F ///Field: System.Object System.Runtime.CompilerServices.ConditionalWeakTable+Container._oldKeepAlive public NanoInput.Class_FF000F5F Field_00000F5D; - ///Method: internal System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent) - Class_FF000F5F(NanoInput.Class_FF000F57 Arg_0); + ///Method: internal System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent), Token 00000F43 + public Class_FF000F5F(NanoInput.Class_FF000F57 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent, System.Int32[] buckets, System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] entries, System.Int32 firstFreeEntry) - Class_FF000F5F(NanoInput.Class_FF000F57 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_FF000F47 Arg_2, NanoInput.Class_00000014 Arg_3); + ///Method: private System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent, System.Int32[] buckets, System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] entries, System.Int32 firstFreeEntry), Token 00000F5E + public Class_FF000F5F(NanoInput.Class_FF000F57 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_FF000F47 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.ConditionalWeakTable+Entry public struct Class_FF000F47 @@ -8276,14 +10106,23 @@ public class Class_FF000F64 : NanoInput.Class_FF000F65, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF000F64 Field_00000F4C; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF000F64(NanoInput.Class_FF000F47 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000F4A + public Class_FF000F64(NanoInput.Class_FF000F47 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 000010B1 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 000010B2 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF000F65 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8298,14 +10137,23 @@ public class Class_FF000F67 : NanoInput.Class_FF000F68, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>._current public NanoInput.Class_FF000F67 Field_00000F4F; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF000F67(NanoInput.Class_4B000131 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000F4D + public Class_FF000F67(NanoInput.Class_4B000131 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.MoveNext(), Token 000010A5 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.Dispose(), Token 000010A6 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+PerCoreLockedStacks> public interface Class_FF000F68 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8320,14 +10168,23 @@ public class Class_2E000C2B : NanoInput.Class_2F000C2B, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000C2B Field_00000F6B; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Double[] array) - Class_2E000C2B(NanoInput.Class_00000C2B Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Double[] array), Token 00000F69 + public Class_2E000C2B(NanoInput.Class_00000C2B Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000010AD + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010AE + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000C2B : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8342,14 +10199,23 @@ public class Class_2E000C29 : NanoInput.Class_2F000C29, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000C29 Field_00000F70; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.SByte[] array) - Class_2E000C29(NanoInput.Class_00000C29 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.SByte[] array), Token 00000F6E + public Class_2E000C29(NanoInput.Class_00000C29 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000010B3 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010B4 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000C29 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8364,14 +10230,23 @@ public class Class_2E00021C : NanoInput.Class_2F00021C, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E00021C Field_00000F73; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Boolean[] array) - Class_2E00021C(NanoInput.Class_0000021C Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Boolean[] array), Token 00000F71 + public Class_2E00021C(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000010A1 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010A2 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F00021C : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8380,47 +10255,86 @@ public interface Class_2F00021C : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.IO.Stream+NullStream public sealed class Class_00000F77 : NanoInput.Class_000005F9, NanoInput.Class_0000003A, NanoInput.Class_000005FA { - ///Method: internal System.IO.Stream+NullStream..ctor() - Class_00000F77(); - - ///Method: public virtual System.Boolean System.IO.Stream+NullStream.get_CanWrite() - ; - - ///Method: public virtual System.Boolean System.IO.Stream+NullStream.get_CanSeek() - ; - - ///Method: public virtual System.Int64 System.IO.Stream+NullStream.get_Position() - ; - - ///Method: protected virtual void System.IO.Stream+NullStream.Dispose(System.Boolean disposing) - virtual ? Dispose(NanoInput.Class_0000021C Arg_0); - - ///Method: public virtual void System.IO.Stream+NullStream.Flush() - virtual ? Flush(); - - ///Method: public virtual void System.IO.Stream+NullStream.Write(System.Byte[] buffer, System.Int32 offset, System.Int32 count) - virtual ? Write(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual void System.IO.Stream+NullStream.Write(System.ReadOnlySpan buffer) - virtual ? Write(NanoInput.Class_0E000013 Arg_0); + ///Method: internal System.IO.Stream+NullStream..ctor(), Token 00000F76 + public Class_00000F77() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.IO.Stream+NullStream.get_CanWrite(), Token 00001289 + public virtual NanoInput.Class_0000021C get_CanWrite() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.IO.Stream+NullStream.get_CanSeek(), Token 0000128A + public virtual NanoInput.Class_0000021C get_CanSeek() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int64 System.IO.Stream+NullStream.get_Position(), Token 0000128B + public virtual NanoInput.Class_00000016 get_Position() + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual void System.IO.Stream+NullStream.Dispose(System.Boolean disposing), Token 0000128C + public virtual void Dispose(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.Stream+NullStream.Flush(), Token 0000128D + public virtual void Flush() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.Stream+NullStream.Write(System.Byte[] buffer, System.Int32 offset, System.Int32 count), Token 0000128E + public virtual void Write(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.Stream+NullStream.Write(System.ReadOnlySpan buffer), Token 0000128F + public virtual void Write(NanoInput.Class_0E000013 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.IO.TextWriter+NullTextWriter public sealed class Class_00000F79 : NanoInput.Class_00000298, NanoInput.Class_0000003A, NanoInput.Class_000005FA { - ///Method: internal System.IO.TextWriter+NullTextWriter..ctor() - Class_00000F79(); - - ///Method: public virtual void System.IO.TextWriter+NullTextWriter.Write(System.Char[] buffer, System.Int32 index, System.Int32 count) - virtual ? Write(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual void System.IO.TextWriter+NullTextWriter.Write(System.String value) - virtual ? Write(NanoInput.Class_00000004 Arg_0); - - ///Method: public virtual void System.IO.TextWriter+NullTextWriter.WriteLine(System.String value) - virtual ? WriteLine(NanoInput.Class_00000004 Arg_0); - - ///Method: public virtual void System.IO.TextWriter+NullTextWriter.Write(System.Char value) - virtual ? Write(NanoInput.Class_00000131 Arg_0); + ///Method: internal System.IO.TextWriter+NullTextWriter..ctor(), Token 00000F78 + public Class_00000F79() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter+NullTextWriter.Write(System.Char[] buffer, System.Int32 index, System.Int32 count), Token 00001290 + public virtual void Write(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter+NullTextWriter.Write(System.String value), Token 00001291 + public virtual void Write(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter+NullTextWriter.WriteLine(System.String value), Token 00001292 + public virtual void WriteLine(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.IO.TextWriter+NullTextWriter.Write(System.Char value), Token 00001293 + public virtual void Write(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.VoidTaskResult public struct Class_00000F7B @@ -8432,17 +10346,23 @@ public struct Class_00000F7C ///Field: System.Threading.CancellationTokenSource System.Threading.CancellationToken._source public readonly NanoInput.Class_00000F7C Field_00000F81; - ///Method: internal System.Threading.CancellationToken..ctor(System.Threading.CancellationTokenSource source) - Class_00000F7C(NanoInput.Class_0000139A Arg_0); - - ///Method: public System.Threading.CancellationToken..ctor(System.Boolean canceled) - Class_00000F7C(); + ///Method: internal System.Threading.CancellationToken..ctor(System.Threading.CancellationTokenSource source), Token 00000F82 + public Class_00000F7C(NanoInput.Class_0000139A Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Threading.CancellationToken.Equals(System.Object other) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Threading.CancellationToken.Equals(System.Object other), Token 0000138D + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Threading.CancellationToken.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Threading.CancellationToken.GetHashCode(), Token 0000139B + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.Task+<>c public sealed class Class_00000F8C @@ -8468,11 +10388,17 @@ public sealed class Class_00000F8C ///Field: System.Predicate System.Threading.Tasks.Task+<>c.<>9__211_0 public static NanoInput.Class_00000F8C Field_00000F89; - ///Method: private static System.Threading.Tasks.Task+<>c..cctor() - Class_00000F8C(); + ///Method: private static System.Threading.Tasks.Task+<>c..cctor(), Token 00000F8A + static Class_00000F8C() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.Task+<>c..ctor() - Class_00000F8C(); + ///Method: public System.Threading.Tasks.Task+<>c..ctor(), Token 00000F8B + public Class_00000F8C() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.TaskFactory public class Class_00000F9A @@ -8489,20 +10415,11 @@ public class Class_00000F9A ///Field: System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory.m_defaultContinuationOptions public readonly NanoInput.Class_00000F9A Field_00000F95; - ///Method: public System.Threading.Tasks.TaskFactory..ctor() - Class_00000F9A(); - - ///Method: public System.Threading.Tasks.TaskFactory..ctor(System.Threading.CancellationToken cancellationToken) - Class_00000F9A(); - - ///Method: public System.Threading.Tasks.TaskFactory..ctor(System.Threading.Tasks.TaskScheduler scheduler) - Class_00000F9A(); - - ///Method: public System.Threading.Tasks.TaskFactory..ctor(System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskContinuationOptions continuationOptions) - Class_00000F9A(); - - ///Method: public System.Threading.Tasks.TaskFactory..ctor(System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskContinuationOptions continuationOptions, System.Threading.Tasks.TaskScheduler scheduler) - Class_00000F9A(); + ///Method: public System.Threading.Tasks.TaskFactory..ctor(), Token 00000F7A + public Class_00000F9A() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.Task public class Class_51000F7B : NanoInput.Class_00000628, NanoInput.Class_00000629, NanoInput.Class_0000003A @@ -8516,59 +10433,32 @@ public class Class_51000F7B : NanoInput.Class_00000628, NanoInput.Class_00000629 ///Field: System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task.s_Factory public static NanoInput.Class_51000F7B Field_00000F9C; - ///Method: internal System.Threading.Tasks.Task..ctor(System.Boolean canceled, System.Threading.Tasks.VoidTaskResult result, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.CancellationToken ct) - Class_51000F7B(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000F7B Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000F7C Arg_3); - - ///Method: internal System.Threading.Tasks.Task..ctor() - Class_51000F7B(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Object state, System.Threading.Tasks.TaskCreationOptions options) - Class_51000F7B(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Threading.Tasks.VoidTaskResult result) - Class_51000F7B(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function) - Class_51000F7B(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Threading.CancellationToken cancellationToken) - Class_51000F7B(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_51000F7B(); + ///Method: internal System.Threading.Tasks.Task..ctor(System.Boolean canceled, System.Threading.Tasks.VoidTaskResult result, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.CancellationToken ct), Token 00000F7D + public Class_51000F7B(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000F7B Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000F7C Arg_3) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_51000F7B(); + ///Method: private static System.Threading.Tasks.Task..cctor(), Token 00000FAA + static Class_51000F7B() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state) - Class_51000F7B(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state, System.Threading.CancellationToken cancellationToken) - Class_51000F7B(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_51000F7B(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_51000F7B(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Func valueSelector, System.Threading.Tasks.Task parent, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.InternalTaskOptions internalOptions, System.Threading.Tasks.TaskScheduler scheduler) - Class_51000F7B(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Delegate valueSelector, System.Object state, System.Threading.Tasks.Task parent, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.InternalTaskOptions internalOptions, System.Threading.Tasks.TaskScheduler scheduler) - Class_51000F7B(); - - ///Method: private static System.Threading.Tasks.Task..cctor() - Class_51000F7B(); - - ///Method: internal virtual void System.Threading.Tasks.Task.InnerInvoke() - virtual ? InnerInvoke(); + ///Method: internal virtual void System.Threading.Tasks.Task.InnerInvoke(), Token 000013AB + public virtual void InnerInvoke() + { + throw new System.NotImplementedException(); + } } ///System.Action public sealed class Class_00000F8F : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Action..ctor(System.Object object, System.IntPtr method) - Class_00000F8F(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Action..ctor(System.Object object, System.IntPtr method), Token 00000FAB + public Class_00000F8F(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.MulticastDelegate public abstract class Class_0000000C : NanoInput.Class_0000000B, NanoInput.Class_00000064, NanoInput.Class_00000085 @@ -8579,17 +10469,17 @@ public abstract class Class_0000000C : NanoInput.Class_0000000B, NanoInput.Class ///Field: System.IntPtr System.MulticastDelegate._invocationCount public NanoInput.Class_0000000C Field_00000FAD; - ///Method: protected System.MulticastDelegate..ctor(System.Object target, System.String method) - Class_0000000C(); - - ///Method: protected System.MulticastDelegate..ctor(System.Type target, System.String method) - Class_0000000C(); + ///Method: public virtual System.Boolean System.MulticastDelegate.Equals(System.Object obj), Token 00001298 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.MulticastDelegate.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.MulticastDelegate.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.MulticastDelegate.GetHashCode(), Token 000012AF + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Delegate public abstract class Class_0000000B : NanoInput.Class_00000064, NanoInput.Class_00000085 @@ -8606,29 +10496,35 @@ public abstract class Class_0000000B : NanoInput.Class_00000064, NanoInput.Class ///Field: System.IntPtr System.Delegate._methodPtrAux public NanoInput.Class_0000000B Field_00000FB3; - ///Method: protected System.Delegate..ctor(System.Object target, System.String method) - Class_0000000B(); - - ///Method: protected System.Delegate..ctor(System.Type target, System.String method) - Class_0000000B(); + ///Method: public virtual System.Boolean System.Delegate.Equals(System.Object obj), Token 0000121A + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Delegate.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Delegate.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Delegate.GetHashCode(), Token 0000121B + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Action public sealed class Class_50000001 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Action..ctor(System.Object object, System.IntPtr method) - Class_50000001(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Action..ctor(System.Object object, System.IntPtr method), Token 00000FB6 + public Class_50000001(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.ContextCallback public sealed class Class_00000FB7 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Threading.ContextCallback..ctor(System.Object object, System.IntPtr method) - Class_00000FB7(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Threading.ContextCallback..ctor(System.Object object, System.IntPtr method), Token 00000F80 + public Class_00000FB7(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool public sealed class Class_4D000013 : NanoInput.Class_32000013 @@ -8645,14 +10541,23 @@ public sealed class Class_4D000013 : NanoInput.Class_32000013 ///Field: System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] System.Buffers.TlsOverPerCoreLockedStacksArrayPool.t_tlsBuckets public static NanoInput.Class_4D000013 Field_00000FCC; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool..ctor() - Class_4D000013(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool..ctor(), Token 00000FB9 + public Class_4D000013() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Byte[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Rent(System.Int32 minimumLength) - virtual NanoInput.Class_0000027D Rent(NanoInput.Class_00000014 Arg_0); + ///Method: public virtual System.Byte[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Rent(System.Int32 minimumLength), Token 00001131 + public virtual NanoInput.Class_0000027D Rent(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Return(System.Byte[] array, System.Boolean clearArray) - virtual ? Return(NanoInput.Class_00000013 Arg_0, NanoInput.Class_0000021C Arg_1); + ///Method: public virtual void System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Return(System.Byte[] array, System.Boolean clearArray), Token 00001147 + public virtual void Return(NanoInput.Class_00000013 Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks public sealed class Class_4B000013 @@ -8663,11 +10568,17 @@ public sealed class Class_4B000013 ///Field: System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks.s_lockedStackCount public static readonly NanoInput.Class_4B000013 Field_00000FCE; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..ctor() - Class_4B000013(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..ctor(), Token 00000FCF + public Class_4B000013() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..cctor() - Class_4B000013(); + ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..cctor(), Token 00000FD0 + static Class_4B000013() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.ConditionalWeakTable public sealed class Class_FF000FD2 : NanoInput.Class_FF000FD4, NanoInput.Class_000000E8 @@ -8681,11 +10592,17 @@ public sealed class Class_FF000FD2 : NanoInput.Class_FF000FD4, NanoInput.Class_0 ///Field: System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable._activeEnumeratorRefCount public NanoInput.Class_FF000FD2 Field_00000FD1; - ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable..ctor() - Class_FF000FD2(); + ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable..ctor(), Token 00000FBA + public Class_FF000FD2() + { + throw new System.NotImplementedException(); + } - ///Method: private virtual System.Collections.Generic.IEnumerator> System.Runtime.CompilerServices.ConditionalWeakTable.System.Collections.Generic.IEnumerable>.GetEnumerator() - virtual NanoInput.Class_FF0012EB System.Collections.Generic.IEnumerable>.GetEnumerator(); + ///Method: private virtual System.Collections.Generic.IEnumerator> System.Runtime.CompilerServices.ConditionalWeakTable.System.Collections.Generic.IEnumerable>.GetEnumerator(), Token 000012E4 + public virtual NanoInput.Class_FF0012EB System.Collections.Generic.IEnumerable>.GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerable> public interface Class_FF000FD4 : NanoInput.Class_000000E8 @@ -8715,11 +10632,17 @@ public sealed class Class_FF000FDA ///Field: System.Object System.Runtime.CompilerServices.ConditionalWeakTable+Container._oldKeepAlive public NanoInput.Class_FF000FDA Field_00000FD8; - ///Method: internal System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent) - Class_FF000FDA(NanoInput.Class_FF000FD2 Arg_0); + ///Method: internal System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent), Token 00000FBE + public Class_FF000FDA(NanoInput.Class_FF000FD2 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent, System.Int32[] buckets, System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] entries, System.Int32 firstFreeEntry) - Class_FF000FDA(NanoInput.Class_FF000FD2 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_FF000FC2 Arg_2, NanoInput.Class_00000014 Arg_3); + ///Method: private System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent, System.Int32[] buckets, System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] entries, System.Int32 firstFreeEntry), Token 00000FD9 + public Class_FF000FDA(NanoInput.Class_FF000FD2 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_FF000FC2 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.ConditionalWeakTable+Entry public struct Class_FF000FC2 @@ -8742,14 +10665,23 @@ public class Class_FF000FDF : NanoInput.Class_FF000FE0, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF000FDF Field_00000FC7; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF000FDF(NanoInput.Class_FF000FC2 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000FC5 + public Class_FF000FDF(NanoInput.Class_FF000FC2 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 000010AF + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 000010B0 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF000FE0 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8764,14 +10696,23 @@ public class Class_FF000FE2 : NanoInput.Class_FF000FE3, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>._current public NanoInput.Class_FF000FE2 Field_00000FCA; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF000FE2(NanoInput.Class_4B000013 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00000FC8 + public Class_FF000FE2(NanoInput.Class_4B000013 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.MoveNext(), Token 000010A3 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.Dispose(), Token 000010A4 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+PerCoreLockedStacks> public interface Class_FF000FE3 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8780,29 +10721,50 @@ public interface Class_FF000FE3 : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalComparer public sealed class Class_00000FE7 : NanoInput.Class_00000707, NanoInput.Class_05000004, NanoInput.Class_00000708, NanoInput.Class_00000085 { - ///Method: internal System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalComparer..ctor(System.Collections.Generic.IEqualityComparer wrappedComparer) - Class_00000FE7(NanoInput.Class_05000004 Arg_0); + ///Method: internal System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalComparer..ctor(System.Collections.Generic.IEqualityComparer wrappedComparer), Token 00000FE5 + public Class_00000FE7(NanoInput.Class_05000004 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalComparer.Equals(System.String x, System.String y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); + ///Method: public virtual System.Boolean System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalComparer.Equals(System.String x, System.String y), Token 00001C94 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalComparer.GetHashCode(System.String obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0); + ///Method: public virtual System.Int32 System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalComparer.GetHashCode(System.String obj), Token 00001C95 + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer public sealed class Class_00000FE8 : NanoInput.Class_00000707, NanoInput.Class_05000004, NanoInput.Class_00000708, NanoInput.Class_00000085 { - ///Method: internal System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer..ctor(System.Collections.Generic.IEqualityComparer wrappedComparer) - Class_00000FE8(NanoInput.Class_05000004 Arg_0); - - ///Method: internal virtual System.Collections.Generic.RandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.GetRandomizedEqualityComparer() - virtual NanoInput.Class_0000096D GetRandomizedEqualityComparer(); - - ///Method: public virtual System.Boolean System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.Equals(System.String x, System.String y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1); - - ///Method: public virtual System.Int32 System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.GetHashCode(System.String obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0); + ///Method: internal System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer..ctor(System.Collections.Generic.IEqualityComparer wrappedComparer), Token 00000FE6 + public Class_00000FE8(NanoInput.Class_05000004 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual System.Collections.Generic.RandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.GetRandomizedEqualityComparer(), Token 00001203 + public virtual NanoInput.Class_0000096D GetRandomizedEqualityComparer() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.Equals(System.String x, System.String y), Token 00001C97 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000004 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer.GetHashCode(System.String obj), Token 00001C99 + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Nullable public struct Class_00801002 @@ -8813,29 +10775,44 @@ public struct Class_00801002 ///Field: System.Runtime.InteropServices.DllImportSearchPath System.Nullable.value public NanoInput.Class_00801002 Field_00000FFF; - ///Method: public System.Nullable..ctor(System.Runtime.InteropServices.DllImportSearchPath value) - Class_00801002(NanoInput.Class_00000014 Arg_0); - - ///Method: public virtual System.Boolean System.Nullable.Equals(System.Object other) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Nullable.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Nullable.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Nullable..ctor(System.Runtime.InteropServices.DllImportSearchPath value), Token 00000FFC + public Class_00801002(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Nullable.Equals(System.Object other), Token 000012B1 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Nullable.GetHashCode(), Token 000012B2 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Nullable.ToString(), Token 000012B3 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.ObjectEqualityComparer> public sealed class Class_FF001004 : NanoInput.Class_000000D1, NanoInput.Class_FF001005 { - ///Method: public System.Collections.Generic.ObjectEqualityComparer>..ctor() - Class_FF001004(); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer>.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer>.Equals(System.Object obj), Token 00001212 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer>.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer>.GetHashCode(), Token 00001213 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer> public interface Class_FF001005 @@ -8847,8 +10824,11 @@ public abstract class Class_360002C3 ///Field: System.UInt16[] System.Array+EmptyArray.Value public static readonly NanoInput.Class_360002C3 Field_0000100D; - ///Method: private static System.Array+EmptyArray..cctor() - Class_360002C3(); + ///Method: private static System.Array+EmptyArray..cctor(), Token 00001012 + static Class_360002C3() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E000438 : NanoInput.Class_2F000438, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8859,14 +10839,23 @@ public class Class_2E000438 : NanoInput.Class_2F000438, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000438 Field_00001011; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.UInt16[][] array) - Class_2E000438(NanoInput.Class_00000438 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.UInt16[][] array), Token 0000100F + public Class_2E000438(NanoInput.Class_00000438 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000010BD + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010BE + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000438 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8881,14 +10870,23 @@ public class Class_2E000C2A : NanoInput.Class_2F000C2A, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000C2A Field_00001018; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Single[] array) - Class_2E000C2A(NanoInput.Class_00000C2A Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Single[] array), Token 00001016 + public Class_2E000C2A(NanoInput.Class_00000C2A Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000010B5 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010B6 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000C2A : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8903,14 +10901,23 @@ public class Class_2E000015 : NanoInput.Class_2F000015, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000015 Field_0000101F; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.UInt32[] array) - Class_2E000015(NanoInput.Class_00000015 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.UInt32[] array), Token 0000101D + public Class_2E000015(NanoInput.Class_00000015 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000010BF + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010C0 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000015 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -8949,56 +10956,29 @@ public class Class_00001042 : NanoInput.Class_000006F6, NanoInput.Class_000000E7 ///Field: System.Collections.ICollection System.Collections.Hashtable._values public NanoInput.Class_00001042 Field_00001034; - ///Method: public System.Collections.Hashtable..ctor(System.Collections.IEqualityComparer equalityComparer) - Class_00001042(NanoInput.Class_000000D1 Arg_0); - - ///Method: public System.Collections.Hashtable..ctor(System.Int32 capacity, System.Single loadFactor, System.Collections.IEqualityComparer equalityComparer) - Class_00001042(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000C2A Arg_1, NanoInput.Class_000000D1 Arg_2); - - ///Method: public System.Collections.Hashtable..ctor(System.Int32 capacity, System.Single loadFactor) - Class_00001042(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000C2A Arg_1); - - ///Method: internal System.Collections.Hashtable..ctor(System.Boolean trash) - Class_00001042(NanoInput.Class_0000021C Arg_0); - - ///Method: public System.Collections.Hashtable..ctor() - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Int32 capacity) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Int32 capacity, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Int32 capacity, System.Collections.IEqualityComparer equalityComparer) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Collections.IDictionary d) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Collections.IDictionary d, System.Single loadFactor) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Collections.IDictionary d, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Collections.IDictionary d, System.Collections.IEqualityComparer equalityComparer) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Int32 capacity, System.Single loadFactor, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Collections.IDictionary d, System.Single loadFactor, System.Collections.IHashCodeProvider hcp, System.Collections.IComparer comparer) - Class_00001042(); - - ///Method: public System.Collections.Hashtable..ctor(System.Collections.IDictionary d, System.Single loadFactor, System.Collections.IEqualityComparer equalityComparer) - Class_00001042(); - - ///Method: protected System.Collections.Hashtable..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001042(); + ///Method: public System.Collections.Hashtable..ctor(System.Collections.IEqualityComparer equalityComparer), Token 0000101B + public Class_00001042(NanoInput.Class_000000D1 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Collections.Hashtable..ctor(System.Int32 capacity, System.Single loadFactor, System.Collections.IEqualityComparer equalityComparer), Token 00001020 + public Class_00001042(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000C2A Arg_1, NanoInput.Class_000000D1 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Collections.Hashtable..ctor(System.Int32 capacity, System.Single loadFactor), Token 00001021 + public Class_00001042(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000C2A Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: internal System.Collections.Hashtable..ctor(System.Boolean trash), Token 0000102D + public Class_00001042(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Hashtable+bucket public struct Class_00001025 @@ -9021,14 +11001,23 @@ public class Class_2E001025 : NanoInput.Class_2F001025, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E001025 Field_0000102B; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Collections.Hashtable+bucket[] array) - Class_2E001025(NanoInput.Class_00001025 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Collections.Hashtable+bucket[] array), Token 00001029 + public Class_2E001025(NanoInput.Class_00001025 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000010AB + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000010AC + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F001025 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9040,11 +11029,11 @@ public sealed class Class_00001048 : NanoInput.Class_00001042, NanoInput.Class_0 ///Field: System.Collections.Hashtable System.Collections.Hashtable+SyncHashtable._table public NanoInput.Class_00001048 Field_0000102E; - ///Method: internal System.Collections.Hashtable+SyncHashtable..ctor(System.Collections.Hashtable table) - Class_00001048(NanoInput.Class_00001042 Arg_0); - - ///Method: internal System.Collections.Hashtable+SyncHashtable..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001048(); + ///Method: internal System.Collections.Hashtable+SyncHashtable..ctor(System.Collections.Hashtable table), Token 0000102C + public Class_00001048(NanoInput.Class_00001042 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.TaskCache public abstract class Class_0000104F @@ -9058,8 +11047,11 @@ public abstract class Class_0000104F ///Field: System.Threading.Tasks.Task`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] System.Threading.Tasks.TaskCache.s_int32Tasks public static readonly NanoInput.Class_0000104F Field_0000104D; - ///Method: private static System.Threading.Tasks.TaskCache..cctor() - Class_0000104F(); + ///Method: private static System.Threading.Tasks.TaskCache..cctor(), Token 0000104E + static Class_0000104F() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.Task public class Class_5100021C : NanoInput.Class_00000628, NanoInput.Class_00000629, NanoInput.Class_0000003A @@ -9073,53 +11065,23 @@ public class Class_5100021C : NanoInput.Class_00000628, NanoInput.Class_00000629 ///Field: System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task.s_Factory public static NanoInput.Class_5100021C Field_0000105B; - ///Method: internal System.Threading.Tasks.Task..ctor(System.Boolean canceled, System.Boolean result, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.CancellationToken ct) - Class_5100021C(NanoInput.Class_0000021C Arg_0, NanoInput.Class_0000021C Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000F7C Arg_3); - - ///Method: internal System.Threading.Tasks.Task..ctor() - Class_5100021C(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Object state, System.Threading.Tasks.TaskCreationOptions options) - Class_5100021C(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Boolean result) - Class_5100021C(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function) - Class_5100021C(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Threading.CancellationToken cancellationToken) - Class_5100021C(); + ///Method: internal System.Threading.Tasks.Task..ctor(System.Boolean canceled, System.Boolean result, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.CancellationToken ct), Token 00001052 + public Class_5100021C(NanoInput.Class_0000021C Arg_0, NanoInput.Class_0000021C Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000F7C Arg_3) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_5100021C(); + ///Method: private static System.Threading.Tasks.Task..cctor(), Token 00001069 + static Class_5100021C() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_5100021C(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state) - Class_5100021C(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state, System.Threading.CancellationToken cancellationToken) - Class_5100021C(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_5100021C(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_5100021C(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Func valueSelector, System.Threading.Tasks.Task parent, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.InternalTaskOptions internalOptions, System.Threading.Tasks.TaskScheduler scheduler) - Class_5100021C(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Delegate valueSelector, System.Object state, System.Threading.Tasks.Task parent, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.InternalTaskOptions internalOptions, System.Threading.Tasks.TaskScheduler scheduler) - Class_5100021C(); - - ///Method: private static System.Threading.Tasks.Task..cctor() - Class_5100021C(); - - ///Method: internal virtual void System.Threading.Tasks.Task.InnerInvoke() - virtual ? InnerInvoke(); + ///Method: internal virtual void System.Threading.Tasks.Task.InnerInvoke(), Token 0000139F + public virtual void InnerInvoke() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.Task public class Class_51000014 : NanoInput.Class_00000628, NanoInput.Class_00000629, NanoInput.Class_0000003A @@ -9133,53 +11095,23 @@ public class Class_51000014 : NanoInput.Class_00000628, NanoInput.Class_00000629 ///Field: System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task.s_Factory public static NanoInput.Class_51000014 Field_0000106B; - ///Method: internal System.Threading.Tasks.Task..ctor(System.Boolean canceled, System.Int32 result, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.CancellationToken ct) - Class_51000014(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000F7C Arg_3); - - ///Method: internal System.Threading.Tasks.Task..ctor() - Class_51000014(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Object state, System.Threading.Tasks.TaskCreationOptions options) - Class_51000014(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Int32 result) - Class_51000014(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function) - Class_51000014(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Threading.CancellationToken cancellationToken) - Class_51000014(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_51000014(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_51000014(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state) - Class_51000014(); + ///Method: internal System.Threading.Tasks.Task..ctor(System.Boolean canceled, System.Int32 result, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.CancellationToken ct), Token 00001058 + public Class_51000014(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000F7C Arg_3) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state, System.Threading.CancellationToken cancellationToken) - Class_51000014(); + ///Method: private static System.Threading.Tasks.Task..cctor(), Token 00001079 + static Class_51000014() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_51000014(); - - ///Method: public System.Threading.Tasks.Task..ctor(System.Func function, System.Object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions) - Class_51000014(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Func valueSelector, System.Threading.Tasks.Task parent, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.InternalTaskOptions internalOptions, System.Threading.Tasks.TaskScheduler scheduler) - Class_51000014(); - - ///Method: internal System.Threading.Tasks.Task..ctor(System.Delegate valueSelector, System.Object state, System.Threading.Tasks.Task parent, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.InternalTaskOptions internalOptions, System.Threading.Tasks.TaskScheduler scheduler) - Class_51000014(); - - ///Method: private static System.Threading.Tasks.Task..cctor() - Class_51000014(); - - ///Method: internal virtual void System.Threading.Tasks.Task.InnerInvoke() - virtual ? InnerInvoke(); + ///Method: internal virtual void System.Threading.Tasks.Task.InnerInvoke(), Token 000013A5 + public virtual void InnerInvoke() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator> public class Class_FF00107B : NanoInput.Class_FF00107C, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9190,14 +11122,23 @@ public class Class_FF00107B : NanoInput.Class_FF00107C, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>._current public NanoInput.Class_FF00107B Field_00001057; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>..ctor(System.Threading.Tasks.Task`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF00107B(NanoInput.Class_51000014 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>..ctor(System.Threading.Tasks.Task`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001055 + public Class_FF00107B(NanoInput.Class_51000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.MoveNext(), Token 000010B9 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.Dispose(), Token 000010BA + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator> public interface Class_FF00107C : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9221,14 +11162,23 @@ public struct Class_FF0010C8 : NanoInput.Class_FF0010D2, NanoInput.Class_0000003 ///Field: System.Int32 System.Collections.Generic.Dictionary+Enumerator._getEnumeratorRetType public readonly NanoInput.Class_FF0010C8 Field_000010CF; - ///Method: internal System.Collections.Generic.Dictionary+Enumerator..ctor(System.Collections.Generic.Dictionary dictionary, System.Int32 getEnumeratorRetType) - Class_FF0010C8(NanoInput.Class_FF001117 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: internal System.Collections.Generic.Dictionary+Enumerator..ctor(System.Collections.Generic.Dictionary dictionary, System.Int32 getEnumeratorRetType), Token 000010D0 + public Class_FF0010C8(NanoInput.Class_FF001117 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.Dictionary+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean System.Collections.Generic.Dictionary+Enumerator.MoveNext(), Token 000010C7 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Collections.Generic.Dictionary+Enumerator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Collections.Generic.Dictionary+Enumerator.Dispose(), Token 000014F6 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator> public interface Class_FF0010D2 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9240,14 +11190,20 @@ public sealed class Class_00001105 ///Field: System.Object Iot.Device.Board.Board+<>c__DisplayClass19_0.owner public NanoInput.Class_00001105 Field_000010D9; - ///Method: public Iot.Device.Board.Board+<>c__DisplayClass19_0..ctor() - Class_00001105(); + ///Method: public Iot.Device.Board.Board+<>c__DisplayClass19_0..ctor(), Token 000010D8 + public Class_00001105() + { + throw new System.NotImplementedException(); + } } ///System.Func public sealed class Class_FF001106 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Func..ctor(System.Object object, System.IntPtr method) - Class_FF001106(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Func..ctor(System.Object object, System.IntPtr method), Token 000010DE + public Class_FF001106(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.EqualityComparer public abstract class Class_06000355 : NanoInput.Class_000000D1, NanoInput.Class_05000355 @@ -9255,11 +11211,11 @@ public abstract class Class_06000355 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06000355 Field_000010F4; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06000355(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06000355(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 00001108 + static Class_06000355() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_05000355 @@ -9272,20 +11228,29 @@ public interface Class_07000355 ///System.Collections.Generic.ObjectEqualityComparer public sealed class Class_04000355 : NanoInput.Class_06000355, NanoInput.Class_000000D1, NanoInput.Class_05000355 { - ///Method: public System.Collections.Generic.ObjectEqualityComparer..ctor() - Class_04000355(); - - ///Method: internal virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.IndexOf(Iot.Device.Board.Board+PinReservation[] array, Iot.Device.Board.Board+PinReservation value, System.Int32 startIndex, System.Int32 count) - virtual NanoInput.Class_00000014 IndexOf(NanoInput.Class_00000355 Arg_0, NanoInput.Class_00000355 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(Iot.Device.Board.Board+PinReservation x, Iot.Device.Board.Board+PinReservation y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000355 Arg_0, NanoInput.Class_00000355 Arg_1); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: internal virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.IndexOf(Iot.Device.Board.Board+PinReservation[] array, Iot.Device.Board.Board+PinReservation value, System.Int32 startIndex, System.Int32 count), Token 0000150B + public virtual NanoInput.Class_00000014 IndexOf(NanoInput.Class_00000355 Arg_0, NanoInput.Class_00000355 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(Iot.Device.Board.Board+PinReservation x, Iot.Device.Board.Board+PinReservation y), Token 0000150C + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000355 Arg_0, NanoInput.Class_00000355 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj), Token 0000150E + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode(), Token 0000150F + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.Dictionary public class Class_FF001117 : NanoInput.Class_FF001118, NanoInput.Class_FF001119, NanoInput.Class_FF00111A, NanoInput.Class_000000E8, NanoInput.Class_000006F6, NanoInput.Class_000000E7, NanoInput.Class_FF00111B, NanoInput.Class_FF00111C, NanoInput.Class_00000085 @@ -9319,33 +11284,6 @@ public class Class_FF001117 : NanoInput.Class_FF001118, NanoInput.Class_FF001119 ///Field: System.Collections.Generic.Dictionary+ValueCollection System.Collections.Generic.Dictionary._values public NanoInput.Class_FF001117 Field_0000110D; - - ///Method: public System.Collections.Generic.Dictionary..ctor() - Class_FF001117(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity) - Class_FF001117(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_FF001117(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_FF001117(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary) - Class_FF001117(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary, System.Collections.Generic.IEqualityComparer comparer) - Class_FF001117(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection) - Class_FF001117(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF001117(); - - ///Method: protected System.Collections.Generic.Dictionary..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_FF001117(); } ///System.Collections.Generic.IDictionary public interface Class_FF001118 : NanoInput.Class_FF001119, NanoInput.Class_FF00111A, NanoInput.Class_000000E8 @@ -9376,11 +11314,17 @@ public struct Class_FF0010D1 ///Field: System.Device.I2c.I2cDevice System.Collections.Generic.KeyValuePair.value public readonly NanoInput.Class_FF0010D1 Field_000010F8; - ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Int32 key, System.Device.I2c.I2cDevice value) - Class_FF0010D1(NanoInput.Class_00000014 Arg_0, NanoInput.Class_000010C9 Arg_1); + ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Int32 key, System.Device.I2c.I2cDevice value), Token 000010FF + public Class_FF0010D1(NanoInput.Class_00000014 Arg_0, NanoInput.Class_000010C9 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString(), Token 000014FD + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.Dictionary+Entry public struct Class_FF0010FB @@ -9403,14 +11347,17 @@ public sealed class Class_0000112E : NanoInput.Class_0000003A ///Field: System.Buffers.ArrayPoolEventSource System.Buffers.ArrayPoolEventSource.Log public static readonly NanoInput.Class_0000112E Field_00001122; - ///Method: private System.Buffers.ArrayPoolEventSource..ctor(System.Int32 _) - Class_0000112E(); - - ///Method: private System.Buffers.ArrayPoolEventSource..ctor() - Class_0000112E(); + ///Method: private System.Buffers.ArrayPoolEventSource..ctor(), Token 0000112C + public Class_0000112E() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Buffers.ArrayPoolEventSource..cctor() - Class_0000112E(); + ///Method: private static System.Buffers.ArrayPoolEventSource..cctor(), Token 0000112D + static Class_0000112E() + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray public struct Class_53000013 @@ -9421,8 +11368,11 @@ public struct Class_53000013 ///Field: System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray.MillisecondsTimeStamp public NanoInput.Class_53000013 Field_0000112F; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray..ctor(System.Byte[] array) - Class_53000013(NanoInput.Class_00000013 Arg_0); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray..ctor(System.Byte[] array), Token 00001130 + public Class_53000013(NanoInput.Class_00000013 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Diagnostics.Tracing.EventSource+EventData public struct Class_00001132 @@ -9448,8 +11398,11 @@ public sealed class Class_54000013 ///Field: System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack._millisecondsTimestamp public NanoInput.Class_54000013 Field_0000113F; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack..ctor() - Class_54000013(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack..ctor(), Token 00001140 + public Class_54000013() + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c public sealed class Class_55000013 @@ -9460,11 +11413,17 @@ public sealed class Class_55000013 ///Field: System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c.<>9 public static readonly NanoInput.Class_55000013 Field_0000114B; - ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..cctor() - Class_55000013(); + ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..cctor(), Token 00001191 + static Class_55000013() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..ctor() - Class_55000013(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..ctor(), Token 00001192 + public Class_55000013() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray> public class Class_FF001194 : NanoInput.Class_FF001195, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9475,14 +11434,23 @@ public class Class_FF001194 : NanoInput.Class_FF001195, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>._current public NanoInput.Class_FF001194 Field_00001151; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001194(NanoInput.Class_53000013 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 0000114F + public Class_FF001194(NanoInput.Class_53000013 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.MoveNext(), Token 000014D0 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.Dispose(), Token 000014D1 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+ThreadLocalArray> public interface Class_FF001195 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9491,8 +11459,6 @@ public interface Class_FF001195 : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] public sealed class Class_00000FC1 : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_FF001197, NanoInput.Class_FF001198, NanoInput.Class_FF001199, NanoInput.Class_FF00119A, NanoInput.Class_FF00119B { - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][]..ctor(System.Int32 ) - Class_00000FC1(); } ///System.Collections.Generic.IList+ThreadLocalArray> public interface Class_FF001197 : NanoInput.Class_FF001198, NanoInput.Class_FF001199, NanoInput.Class_000000E8 @@ -9526,11 +11492,17 @@ public struct Class_0000119D : NanoInput.Class_0000003A ///Field: System.IntPtr System.Runtime.DependentHandle._handle public NanoInput.Class_0000119D Field_0000115A; - ///Method: public System.Runtime.DependentHandle..ctor(System.Object target, System.Object dependent) - Class_0000119D(NanoInput.Class_00000001 Arg_0, NanoInput.Class_00000001 Arg_1); + ///Method: public System.Runtime.DependentHandle..ctor(System.Object target, System.Object dependent), Token 00001166 + public Class_0000119D(NanoInput.Class_00000001 Arg_0, NanoInput.Class_00000001 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Runtime.DependentHandle.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Runtime.DependentHandle.Dispose(), Token 00001528 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfoData public class Class_000011A3 @@ -9577,8 +11549,11 @@ public class Class_000011A3 ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfoData._pauseTimePercentage public NanoInput.Class_000011A3 Field_000011A2; - ///Method: public ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfoData..ctor() - Class_000011A3(); + ///Method: public ArduinoCsCompiler.Runtime.MiniGC+MiniGcMemoryInfoData..ctor(), Token 00001176 + public Class_000011A3() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.KeyValuePair public struct Class_FF000FD3 @@ -9589,17 +11564,26 @@ public struct Class_FF000FD3 ///Field: System.Object System.Collections.Generic.KeyValuePair.value public readonly NanoInput.Class_FF000FD3 Field_000011A4; - ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] key, System.Object value) - Class_FF000FD3(NanoInput.Class_53000013 Arg_0, NanoInput.Class_00000001 Arg_1); + ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] key, System.Object value), Token 000011A5 + public Class_FF000FD3(NanoInput.Class_53000013 Arg_0, NanoInput.Class_00000001 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString(), Token 000014F8 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Func public sealed class Class_FF0011A6 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Func..ctor(System.Object object, System.IntPtr method) - Class_FF0011A6(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Func..ctor(System.Object object, System.IntPtr method), Token 0000114D + public Class_FF0011A6(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack> public class Class_FF0011A8 : NanoInput.Class_FF0011A9, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9610,14 +11594,23 @@ public class Class_FF0011A8 : NanoInput.Class_FF0011A9, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>._current public NanoInput.Class_FF0011A8 Field_0000118C; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF0011A8(NanoInput.Class_54000013 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 0000118A + public Class_FF0011A8(NanoInput.Class_54000013 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.MoveNext(), Token 000014CE + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.Dispose(), Token 000014CF + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+LockedStack> public interface Class_FF0011A9 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9632,14 +11625,23 @@ public class Class_2E00027D : NanoInput.Class_2F00027D, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E00027D Field_0000118F; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Byte[][] array) - Class_2E00027D(NanoInput.Class_0000027D Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Byte[][] array), Token 0000118D + public Class_2E00027D(NanoInput.Class_0000027D Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000014D6 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000014D7 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F00027D : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9654,8 +11656,11 @@ public struct Class_53000131 ///Field: System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray.MillisecondsTimeStamp public NanoInput.Class_53000131 Field_000011AE; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray..ctor(System.Char[] array) - Class_53000131(NanoInput.Class_00000131 Arg_0); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray..ctor(System.Char[] array), Token 000011AF + public Class_53000131(NanoInput.Class_00000131 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack public sealed class Class_54000131 @@ -9669,8 +11674,11 @@ public sealed class Class_54000131 ///Field: System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack._millisecondsTimestamp public NanoInput.Class_54000131 Field_000011B4; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack..ctor() - Class_54000131(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack..ctor(), Token 000011B5 + public Class_54000131() + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c public sealed class Class_55000131 @@ -9681,11 +11689,17 @@ public sealed class Class_55000131 ///Field: System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c.<>9 public static readonly NanoInput.Class_55000131 Field_000011BC; - ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..cctor() - Class_55000131(); + ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..cctor(), Token 000011D8 + static Class_55000131() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..ctor() - Class_55000131(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..ctor(), Token 000011D9 + public Class_55000131() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray> public class Class_FF0011DB : NanoInput.Class_FF0011DC, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9696,14 +11710,23 @@ public class Class_FF0011DB : NanoInput.Class_FF0011DC, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>._current public NanoInput.Class_FF0011DB Field_000011C0; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF0011DB(NanoInput.Class_53000131 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000011BE + public Class_FF0011DB(NanoInput.Class_53000131 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.MoveNext(), Token 000014D4 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.Dispose(), Token 000014D5 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+ThreadLocalArray> public interface Class_FF0011DC : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9712,8 +11735,6 @@ public interface Class_FF0011DC : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] public sealed class Class_00000F46 : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_FF0011DE, NanoInput.Class_FF0011DF, NanoInput.Class_FF0011E0, NanoInput.Class_FF0011E1, NanoInput.Class_FF0011E2 { - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][]..ctor(System.Int32 ) - Class_00000F46(); } ///System.Collections.Generic.IList+ThreadLocalArray> public interface Class_FF0011DE : NanoInput.Class_FF0011DF, NanoInput.Class_FF0011E0, NanoInput.Class_000000E8 @@ -9744,11 +11765,17 @@ public struct Class_FF000F58 ///Field: System.Object System.Collections.Generic.KeyValuePair.value public readonly NanoInput.Class_FF000F58 Field_000011E3; - ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] key, System.Object value) - Class_FF000F58(NanoInput.Class_53000131 Arg_0, NanoInput.Class_00000001 Arg_1); + ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] key, System.Object value), Token 000011E4 + public Class_FF000F58(NanoInput.Class_53000131 Arg_0, NanoInput.Class_00000001 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString(), Token 000014FA + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack> public class Class_FF0011E6 : NanoInput.Class_FF0011E7, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9759,14 +11786,23 @@ public class Class_FF0011E6 : NanoInput.Class_FF0011E7, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>._current public NanoInput.Class_FF0011E6 Field_000011D3; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF0011E6(NanoInput.Class_54000131 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000011D1 + public Class_FF0011E6(NanoInput.Class_54000131 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.MoveNext(), Token 000014D2 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.Dispose(), Token 000014D3 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+LockedStack> public interface Class_FF0011E7 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9781,14 +11817,23 @@ public class Class_2E0001D4 : NanoInput.Class_2F0001D4, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E0001D4 Field_000011D6; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Char[][] array) - Class_2E0001D4(NanoInput.Class_000001D4 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Char[][] array), Token 000011D4 + public Class_2E0001D4(NanoInput.Class_000001D4 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000014D8 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000014D9 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F0001D4 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -9809,17 +11854,29 @@ public struct Class_14000355 : NanoInput.Class_2F000355, NanoInput.Class_0000003 ///Field: Iot.Device.Board.Board+PinReservation System.Collections.Generic.List+Enumerator._current public NanoInput.Class_14000355 Field_00001201; - ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list) - Class_14000355(NanoInput.Class_11000355 Arg_0); - - ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose() - virtual ? Dispose(); - - ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual Iot.Device.Board.Board+PinReservation System.Collections.Generic.List+Enumerator.get_Current() - ; + ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list), Token 000011FD + public Class_14000355(NanoInput.Class_11000355 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose(), Token 000014FE + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext(), Token 00001500 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual Iot.Device.Board.Board+PinReservation System.Collections.Generic.List+Enumerator.get_Current(), Token 00001501 + public virtual NanoInput.Class_00000355 get_Current() + { + throw new System.NotImplementedException(); + } } ///System.Number+Grisu3 public abstract class Class_00001269 @@ -9836,8 +11893,11 @@ public abstract class Class_00001269 ///Field: System.UInt32[] System.Number+Grisu3.s_SmallPowersOfTen public static readonly NanoInput.Class_00001269 Field_00001243; - ///Method: private static System.Number+Grisu3..cctor() - Class_00001269(); + ///Method: private static System.Number+Grisu3..cctor(), Token 00001268 + static Class_00001269() + { + throw new System.NotImplementedException(); + } } ///System.Number+DiyFp public ref struct Class_00001236 @@ -9848,17 +11908,23 @@ public ref struct Class_00001236 ///Field: System.Int32 System.Number+DiyFp.e public readonly NanoInput.Class_00001236 Field_00001231; - ///Method: public System.Number+DiyFp..ctor(System.Double value) - Class_00001236(NanoInput.Class_00000C2B Arg_0); - - ///Method: public System.Number+DiyFp..ctor(System.UInt64 f, System.Int32 e) - Class_00001236(NanoInput.Class_00000017 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public System.Number+DiyFp..ctor(System.Double value), Token 0000122E + public Class_00001236(NanoInput.Class_00000C2B Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Number+DiyFp..ctor(System.Single value) - Class_00001236(NanoInput.Class_00000C2A Arg_0); + ///Method: public System.Number+DiyFp..ctor(System.UInt64 f, System.Int32 e), Token 00001235 + public Class_00001236(NanoInput.Class_00000017 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Number+DiyFp..ctor(System.Half value) - Class_00001236(); + ///Method: public System.Number+DiyFp..ctor(System.Single value), Token 0000126A + public Class_00001236(NanoInput.Class_00000C2A Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Number+BigInteger public ref struct Class_0000126D @@ -9878,8 +11944,11 @@ public ref struct Class_0000126D ///Field: System.Number+BigInteger+<_blocks>e__FixedBuffer System.Number+BigInteger._blocks public NanoInput.Class_0000126D Field_00001256; - ///Method: private static System.Number+BigInteger..cctor() - Class_0000126D(); + ///Method: private static System.Number+BigInteger..cctor(), Token 0000126C + static Class_0000126D() + { + throw new System.NotImplementedException(); + } } ///System.Number+BigInteger+<_blocks>e__FixedBuffer public struct Class_0000126E @@ -9893,8 +11962,11 @@ public ref struct Class_00001284 ///Field: System.Void* System.Runtime.CompilerServices.StringHandleOnStack._ptr public NanoInput.Class_00001284 Field_00001283; - ///Method: internal System.Runtime.CompilerServices.StringHandleOnStack..ctor(System.String& s) - Class_00001284(NanoInput.Class_00000004 Arg_0); + ///Method: internal System.Runtime.CompilerServices.StringHandleOnStack..ctor(System.String& s), Token 0000127F + public Class_00001284(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Reflection.LoaderAllocator public sealed class Class_00001299 @@ -9910,9 +11982,6 @@ public sealed class Class_00001299 ///Field: System.Int32 System.Reflection.LoaderAllocator.m_slotsUsed public NanoInput.Class_00001299 Field_000012A0; - - ///Method: private System.Reflection.LoaderAllocator..ctor() - Class_00001299(); } ///System.Reflection.Emit.DynamicResolver public sealed class Class_0000129A : NanoInput.Class_000012AC @@ -9937,24 +12006,14 @@ public sealed class Class_0000129A : NanoInput.Class_000012AC ///Field: System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver.m_scope public NanoInput.Class_0000129A Field_000012A8; - - ///Method: internal System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator ilGenerator) - Class_0000129A(); - - ///Method: internal System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILInfo dynamicILInfo) - Class_0000129A(); } ///System.Resolver public abstract class Class_000012AC { - ///Method: protected System.Resolver..ctor() - Class_000012AC(); } ///System.Object[] public sealed class Class_0000129B : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_33000001, NanoInput.Class_17000001, NanoInput.Class_01000001, NanoInput.Class_34000001, NanoInput.Class_35000001 { - ///Method: public System.Object[]..ctor(System.Int32 ) - Class_0000129B(); } ///System.Collections.Generic.IList public interface Class_33000001 : NanoInput.Class_17000001, NanoInput.Class_01000001, NanoInput.Class_000000E8 @@ -10036,17 +12095,29 @@ public sealed class Class_FF0012EA : NanoInput.Class_FF0012EB, NanoInput.Class_0 ///Field: System.Collections.Generic.KeyValuePair System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator._current public NanoInput.Class_FF0012EA Field_000012E9; - ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator..ctor(System.Runtime.CompilerServices.ConditionalWeakTable table) - Class_FF0012EA(NanoInput.Class_FF000FD2 Arg_0); - - ///Method: public virtual void System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.Dispose() - virtual ? Dispose(); - - ///Method: public virtual System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Collections.Generic.KeyValuePair System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.get_Current() - ; + ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator..ctor(System.Runtime.CompilerServices.ConditionalWeakTable table), Token 000012E2 + public Class_FF0012EA(NanoInput.Class_FF000FD2 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.Dispose(), Token 0000151C + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.MoveNext(), Token 0000151E + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Collections.Generic.KeyValuePair System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.get_Current(), Token 00001520 + public virtual NanoInput.Class_FF000FD3 get_Current() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator> public interface Class_FF0012EB : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -10058,8 +12129,11 @@ public abstract class Class_FF0012ED ///Field: System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] System.Array+EmptyArray>.Value public static readonly NanoInput.Class_FF0012ED Field_000012E8; - ///Method: private static System.Array+EmptyArray>..cctor() - Class_FF0012ED(); + ///Method: private static System.Array+EmptyArray>..cctor(), Token 000012EC + static Class_FF0012ED() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator public sealed class Class_FF0012F7 : NanoInput.Class_FF0012F8, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -10076,17 +12150,29 @@ public sealed class Class_FF0012F7 : NanoInput.Class_FF0012F8, NanoInput.Class_0 ///Field: System.Collections.Generic.KeyValuePair System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator._current public NanoInput.Class_FF0012F7 Field_000012F6; - ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator..ctor(System.Runtime.CompilerServices.ConditionalWeakTable table) - Class_FF0012F7(NanoInput.Class_FF000F57 Arg_0); - - ///Method: public virtual void System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.Dispose() - virtual ? Dispose(); - - ///Method: public virtual System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Collections.Generic.KeyValuePair System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.get_Current() - ; + ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator..ctor(System.Runtime.CompilerServices.ConditionalWeakTable table), Token 000012EF + public Class_FF0012F7(NanoInput.Class_FF000F57 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.Dispose(), Token 00001523 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.MoveNext(), Token 00001525 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Collections.Generic.KeyValuePair System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.get_Current(), Token 00001526 + public virtual NanoInput.Class_FF000F58 get_Current() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator> public interface Class_FF0012F8 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -10098,8 +12184,11 @@ public abstract class Class_FF0012FA ///Field: System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] System.Array+EmptyArray>.Value public static readonly NanoInput.Class_FF0012FA Field_000012F5; - ///Method: private static System.Array+EmptyArray>..cctor() - Class_FF0012FA(); + ///Method: private static System.Array+EmptyArray>..cctor(), Token 000012F9 + static Class_FF0012FA() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.Intrinsics.Vector128 public struct Class_44000C2A : NanoInput.Class_FF00130B @@ -10110,14 +12199,23 @@ public struct Class_44000C2A : NanoInput.Class_FF00130B ///Field: System.UInt64 System.Runtime.Intrinsics.Vector128._01 public readonly NanoInput.Class_44000C2A Field_0000130A; - ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj), Token 0000153B + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode(), Token 00001549 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString(), Token 0000154A + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF00130B @@ -10132,14 +12230,23 @@ public struct Class_44000C2B : NanoInput.Class_FF00130E ///Field: System.UInt64 System.Runtime.Intrinsics.Vector128._01 public readonly NanoInput.Class_44000C2B Field_0000130D; - ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Runtime.Intrinsics.Vector128.Equals(System.Object obj), Token 0000152A + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Runtime.Intrinsics.Vector128.GetHashCode(), Token 00001538 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Runtime.Intrinsics.Vector128.ToString(), Token 00001539 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF00130E @@ -10148,23 +12255,41 @@ public interface Class_FF00130E ///System.Text.EncoderExceptionFallbackBuffer public sealed class Class_00001361 : NanoInput.Class_00000C11 { - ///Method: public System.Text.EncoderExceptionFallbackBuffer..ctor() - Class_00001361(); - - ///Method: public virtual System.Boolean System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char charUnknown, System.Int32 index) - virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public virtual System.Boolean System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char charUnknownHigh, System.Char charUnknownLow, System.Int32 index) - virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Char System.Text.EncoderExceptionFallbackBuffer.GetNextChar() - virtual NanoInput.Class_00000131 GetNextChar(); - - ///Method: public virtual System.Boolean System.Text.EncoderExceptionFallbackBuffer.MovePrevious() - virtual NanoInput.Class_0000021C MovePrevious(); - - ///Method: public virtual System.Int32 System.Text.EncoderExceptionFallbackBuffer.get_Remaining() - ; + ///Method: public System.Text.EncoderExceptionFallbackBuffer..ctor(), Token 0000135F + public Class_00001361() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char charUnknown, System.Int32 index), Token 0000154D + public virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderExceptionFallbackBuffer.Fallback(System.Char charUnknownHigh, System.Char charUnknownLow, System.Int32 index), Token 00001558 + public virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Char System.Text.EncoderExceptionFallbackBuffer.GetNextChar(), Token 00001559 + public virtual NanoInput.Class_00000131 GetNextChar() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderExceptionFallbackBuffer.MovePrevious(), Token 0000155A + public virtual NanoInput.Class_0000021C MovePrevious() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderExceptionFallbackBuffer.get_Remaining(), Token 0000155B + public virtual NanoInput.Class_00000014 get_Remaining() + { + throw new System.NotImplementedException(); + } } ///System.Text.EncoderLatin1BestFitFallbackBuffer public sealed class Class_0000136C : NanoInput.Class_00000C11 @@ -10181,29 +12306,53 @@ public sealed class Class_0000136C : NanoInput.Class_00000C11 ///Field: System.Char[] System.Text.EncoderLatin1BestFitFallbackBuffer.s_arrayCharBestFit public static readonly NanoInput.Class_0000136C Field_0000136A; - ///Method: public System.Text.EncoderLatin1BestFitFallbackBuffer..ctor() - Class_0000136C(); - - ///Method: private static System.Text.EncoderLatin1BestFitFallbackBuffer..cctor() - Class_0000136C(); - - ///Method: public virtual System.Boolean System.Text.EncoderLatin1BestFitFallbackBuffer.Fallback(System.Char charUnknown, System.Int32 index) - virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public virtual System.Boolean System.Text.EncoderLatin1BestFitFallbackBuffer.Fallback(System.Char charUnknownHigh, System.Char charUnknownLow, System.Int32 index) - virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Char System.Text.EncoderLatin1BestFitFallbackBuffer.GetNextChar() - virtual NanoInput.Class_00000131 GetNextChar(); - - ///Method: public virtual System.Boolean System.Text.EncoderLatin1BestFitFallbackBuffer.MovePrevious() - virtual NanoInput.Class_0000021C MovePrevious(); - - ///Method: public virtual System.Int32 System.Text.EncoderLatin1BestFitFallbackBuffer.get_Remaining() - ; - - ///Method: public virtual void System.Text.EncoderLatin1BestFitFallbackBuffer.Reset() - virtual ? Reset(); + ///Method: public System.Text.EncoderLatin1BestFitFallbackBuffer..ctor(), Token 00001365 + public Class_0000136C() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Text.EncoderLatin1BestFitFallbackBuffer..cctor(), Token 0000136B + static Class_0000136C() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderLatin1BestFitFallbackBuffer.Fallback(System.Char charUnknown, System.Int32 index), Token 0000155D + public virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderLatin1BestFitFallbackBuffer.Fallback(System.Char charUnknownHigh, System.Char charUnknownLow, System.Int32 index), Token 0000155E + public virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Char System.Text.EncoderLatin1BestFitFallbackBuffer.GetNextChar(), Token 0000155F + public virtual NanoInput.Class_00000131 GetNextChar() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderLatin1BestFitFallbackBuffer.MovePrevious(), Token 00001560 + public virtual NanoInput.Class_0000021C MovePrevious() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderLatin1BestFitFallbackBuffer.get_Remaining(), Token 00001561 + public virtual NanoInput.Class_00000014 get_Remaining() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Text.EncoderLatin1BestFitFallbackBuffer.Reset(), Token 00001562 + public virtual void Reset() + { + throw new System.NotImplementedException(); + } } ///System.Threading.CancellationTokenSource public class Class_0000139A : NanoInput.Class_0000003A @@ -10232,50 +12381,48 @@ public class Class_0000139A : NanoInput.Class_0000003A ///Field: System.Threading.TimerCallback System.Threading.CancellationTokenSource.s_timerCallback public static readonly NanoInput.Class_0000139A Field_00001395; - ///Method: public System.Threading.CancellationTokenSource..ctor() - Class_0000139A(); - - ///Method: public System.Threading.CancellationTokenSource..ctor(System.TimeSpan delay) - Class_0000139A(); + ///Method: public System.Threading.CancellationTokenSource..ctor(), Token 00001396 + public Class_0000139A() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.CancellationTokenSource..ctor(System.Int32 millisecondsDelay) - Class_0000139A(); + ///Method: private static System.Threading.CancellationTokenSource..cctor(), Token 00001399 + static Class_0000139A() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.CancellationTokenSource..cctor() - Class_0000139A(); - - ///Method: public virtual void System.Threading.CancellationTokenSource.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Threading.CancellationTokenSource.Dispose(), Token 00001564 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Func public sealed class Class_5700021C : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Func..ctor(System.Object object, System.IntPtr method) - Class_5700021C(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Func..ctor(System.Object object, System.IntPtr method), Token 0000139E + public Class_5700021C(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Func public sealed class Class_57000014 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Func..ctor(System.Object object, System.IntPtr method) - Class_57000014(); } ///System.Func public sealed class Class_FF0013A1 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Func..ctor(System.Object object, System.IntPtr method) - Class_FF0013A1(); } ///System.Func public sealed class Class_57000F7B : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Func..ctor(System.Object object, System.IntPtr method) - Class_57000F7B(); } ///System.Func public sealed class Class_FF0013A7 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Func..ctor(System.Object object, System.IntPtr method) - Class_FF0013A7(); } ///System.Guid public struct Class_000013CB : NanoInput.Class_000001F5, NanoInput.Class_000001F8, NanoInput.Class_00000130, NanoInput.Class_0C0013CB, NanoInput.Class_070013CB @@ -10316,38 +12463,47 @@ public struct Class_000013CB : NanoInput.Class_000001F5, NanoInput.Class_000001F ///Field: System.Byte System.Guid._k public readonly NanoInput.Class_000013CB Field_000013C4; - ///Method: public System.Guid..ctor(System.Int32 a, System.Int16 b, System.Int16 c, System.Byte d, System.Byte e, System.Byte f, System.Byte g, System.Byte h, System.Byte i, System.Byte j, System.Byte k) - Class_000013CB(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000402 Arg_1, NanoInput.Class_00000402 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000013 Arg_4, NanoInput.Class_00000013 Arg_5, NanoInput.Class_00000013 Arg_6, NanoInput.Class_00000013 Arg_7, NanoInput.Class_00000013 Arg_8, NanoInput.Class_00000013 Arg_9, NanoInput.Class_00000013 Arg_10); - - ///Method: public System.Guid..ctor(System.Byte[] b) - Class_000013CB(); - - ///Method: public System.Guid..ctor(System.ReadOnlySpan b) - Class_000013CB(); - - ///Method: public System.Guid..ctor(System.UInt32 a, System.UInt16 b, System.UInt16 c, System.Byte d, System.Byte e, System.Byte f, System.Byte g, System.Byte h, System.Byte i, System.Byte j, System.Byte k) - Class_000013CB(NanoInput.Class_00000015 Arg_0, NanoInput.Class_000002C3 Arg_1, NanoInput.Class_000002C3 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000013 Arg_4, NanoInput.Class_00000013 Arg_5, NanoInput.Class_00000013 Arg_6, NanoInput.Class_00000013 Arg_7, NanoInput.Class_00000013 Arg_8, NanoInput.Class_00000013 Arg_9, NanoInput.Class_00000013 Arg_10); - - ///Method: public System.Guid..ctor(System.Int32 a, System.Int16 b, System.Int16 c, System.Byte[] d) - Class_000013CB(); - - ///Method: public System.Guid..ctor(System.String g) - Class_000013CB(); - - ///Method: public virtual System.String System.Guid.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.Int32 System.Guid.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.Boolean System.Guid.Equals(System.Object o) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.String System.Guid.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: private virtual System.Boolean System.Guid.System.ISpanFormattable.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C System.ISpanFormattable.TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: public System.Guid..ctor(System.Int32 a, System.Int16 b, System.Int16 c, System.Byte d, System.Byte e, System.Byte f, System.Byte g, System.Byte h, System.Byte i, System.Byte j, System.Byte k), Token 000013B9 + public Class_000013CB(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000402 Arg_1, NanoInput.Class_00000402 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000013 Arg_4, NanoInput.Class_00000013 Arg_5, NanoInput.Class_00000013 Arg_6, NanoInput.Class_00000013 Arg_7, NanoInput.Class_00000013 Arg_8, NanoInput.Class_00000013 Arg_9, NanoInput.Class_00000013 Arg_10) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Guid..ctor(System.UInt32 a, System.UInt16 b, System.UInt16 c, System.Byte d, System.Byte e, System.Byte f, System.Byte g, System.Byte h, System.Byte i, System.Byte j, System.Byte k), Token 000013C8 + public Class_000013CB(NanoInput.Class_00000015 Arg_0, NanoInput.Class_000002C3 Arg_1, NanoInput.Class_000002C3 Arg_2, NanoInput.Class_00000013 Arg_3, NanoInput.Class_00000013 Arg_4, NanoInput.Class_00000013 Arg_5, NanoInput.Class_00000013 Arg_6, NanoInput.Class_00000013 Arg_7, NanoInput.Class_00000013 Arg_8, NanoInput.Class_00000013 Arg_9, NanoInput.Class_00000013 Arg_10) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Guid.ToString(), Token 00001511 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Guid.GetHashCode(), Token 00001517 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Guid.Equals(System.Object o), Token 00001519 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Guid.ToString(System.String format, System.IFormatProvider provider), Token 00001510 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.Boolean System.Guid.System.ISpanFormattable.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 0000151A + public virtual NanoInput.Class_0000021C System.ISpanFormattable.TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C0013CB @@ -10366,14 +12522,23 @@ public class Class_2E000402 : NanoInput.Class_2F000402, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000402 Field_000013D0; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Int16[] array) - Class_2E000402(NanoInput.Class_00000402 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Int16[] array), Token 000013CE + public Class_2E000402(NanoInput.Class_00000402 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000014E3 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000014E4 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000402 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -10388,14 +12553,23 @@ public class Class_2E000017 : NanoInput.Class_2F000017, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000017 Field_000013D3; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.UInt64[] array) - Class_2E000017(NanoInput.Class_00000017 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.UInt64[] array), Token 000013D1 + public Class_2E000017(NanoInput.Class_00000017 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000014E7 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000014E8 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000017 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -10410,17 +12584,29 @@ public class Class_FF0013DA : NanoInput.Class_FF0012EB, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>._current public NanoInput.Class_FF0013DA Field_000013D8; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>..ctor(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF0013DA(NanoInput.Class_FF000FD3 Arg_0); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Collections.Generic.KeyValuePair ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.get_Current() - ; - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.Dispose() - virtual ? Dispose(); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>..ctor(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Byte, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000013D6 + public Class_FF0013DA(NanoInput.Class_FF000FD3 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.MoveNext(), Token 000014DA + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Collections.Generic.KeyValuePair ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.get_Current(), Token 000014DB + public virtual NanoInput.Class_FF000FD3 get_Current() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.Dispose(), Token 000014DC + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator> public class Class_FF0013DF : NanoInput.Class_FF0012F8, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -10431,17 +12617,29 @@ public class Class_FF0013DF : NanoInput.Class_FF0012F8, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>._current public NanoInput.Class_FF0013DF Field_000013DD; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>..ctor(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF0013DF(NanoInput.Class_FF000F58 Arg_0); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Collections.Generic.KeyValuePair ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.get_Current() - ; - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.Dispose() - virtual ? Dispose(); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>..ctor(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Char, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000013DB + public Class_FF0013DF(NanoInput.Class_FF000F58 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.MoveNext(), Token 000014DD + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Collections.Generic.KeyValuePair ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.get_Current(), Token 000014DE + public virtual NanoInput.Class_FF000F58 get_Current() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.Dispose(), Token 000014DF + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Threading.TimerQueueTimer public sealed class Class_0000145B : NanoInput.Class_0000145C @@ -10491,11 +12689,11 @@ public sealed class Class_0000145B : NanoInput.Class_0000145C ///Field: System.Threading.ContextCallback System.Threading.TimerQueueTimer.s_callCallbackInContext public static readonly NanoInput.Class_0000145B Field_00001458; - ///Method: internal System.Threading.TimerQueueTimer..ctor(System.Threading.TimerCallback timerCallback, System.Object state, System.UInt32 dueTime, System.UInt32 period, System.Boolean flowExecutionContext) - Class_0000145B(); - - ///Method: private static System.Threading.TimerQueueTimer..cctor() - Class_0000145B(); + ///Method: private static System.Threading.TimerQueueTimer..cctor(), Token 0000145A + static Class_0000145B() + { + throw new System.NotImplementedException(); + } } ///System.Threading.IThreadPoolWorkItem public interface Class_0000145C @@ -10537,11 +12735,17 @@ public sealed class Class_00001467 ///Field: System.Threading.TimerQueue[] System.Threading.TimerQueue.k__BackingField public static readonly NanoInput.Class_00001467 Field_00001464; - ///Method: private System.Threading.TimerQueue..ctor(System.Int32 id) - Class_00001467(NanoInput.Class_00000014 Arg_0); + ///Method: private System.Threading.TimerQueue..ctor(System.Int32 id), Token 00001465 + public Class_00001467(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.TimerQueue..cctor() - Class_00001467(); + ///Method: private static System.Threading.TimerQueue..cctor(), Token 00001466 + static Class_00001467() + { + throw new System.NotImplementedException(); + } } ///System.Threading.CancellationTokenSource+Registrations public sealed class Class_0000140A @@ -10566,9 +12770,6 @@ public sealed class Class_0000140A ///Field: System.Int64 System.Threading.CancellationTokenSource+Registrations.NextAvailableId public NanoInput.Class_0000140A Field_00001469; - - ///Method: public System.Threading.CancellationTokenSource+Registrations..ctor(System.Threading.CancellationTokenSource source) - Class_0000140A(); } ///System.Threading.CancellationTokenSource+CallbackNode public sealed class Class_00001414 @@ -10596,9 +12797,6 @@ public sealed class Class_00001414 ///Field: System.Object System.Threading.CancellationTokenSource+CallbackNode.CallbackState public NanoInput.Class_00001414 Field_00001418; - - ///Method: public System.Threading.CancellationTokenSource+CallbackNode..ctor(System.Threading.CancellationTokenSource+Registrations registrations) - Class_00001414(); } ///System.Threading.CancellationTokenSource+<>c public sealed class Class_0000146E @@ -10609,11 +12807,17 @@ public sealed class Class_0000146E ///Field: System.Threading.CancellationTokenSource+<>c System.Threading.CancellationTokenSource+<>c.<>9 public static readonly NanoInput.Class_0000146E Field_00001401; - ///Method: private static System.Threading.CancellationTokenSource+<>c..cctor() - Class_0000146E(); + ///Method: private static System.Threading.CancellationTokenSource+<>c..cctor(), Token 0000146C + static Class_0000146E() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.CancellationTokenSource+<>c..ctor() - Class_0000146E(); + ///Method: public System.Threading.CancellationTokenSource+<>c..ctor(), Token 0000146D + public Class_0000146E() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Thread public sealed class Class_0000000D : NanoInput.Class_00000E95 @@ -10654,26 +12858,35 @@ public sealed class Class_0000000D : NanoInput.Class_00000E95 ///Field: System.Threading.AsyncLocal System.Threading.Thread.s_asyncLocalPrincipal public static NanoInput.Class_0000000D Field_00001476; - ///Method: private static System.Threading.Thread..cctor() - Class_0000000D(); - - ///Method: private System.Threading.Thread..ctor() - Class_0000000D(); - - ///Method: public System.Threading.Thread..ctor(System.Threading.ThreadStart start) - Class_0000000D(NanoInput.Class_00001C15 Arg_0); - - ///Method: public System.Threading.Thread..ctor(System.Threading.ThreadStart start, System.Int32 maxStackSize) - Class_0000000D(NanoInput.Class_00001C15 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.Threading.Thread..ctor(System.Threading.ParameterizedThreadStart start) - Class_0000000D(NanoInput.Class_00001E87 Arg_0); - - ///Method: public System.Threading.Thread..ctor(System.Threading.ParameterizedThreadStart start, System.Int32 maxStackSize) - Class_0000000D(); - - ///Method: public virtual System.Int32 System.Threading.Thread.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: private static System.Threading.Thread..cctor(), Token 00001477 + static Class_0000000D() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Threading.Thread..ctor(System.Threading.ThreadStart start), Token 00001479 + public Class_0000000D(NanoInput.Class_00001C15 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Threading.Thread..ctor(System.Threading.ThreadStart start, System.Int32 maxStackSize), Token 0000147A + public Class_0000000D(NanoInput.Class_00001C15 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Threading.Thread..ctor(System.Threading.ParameterizedThreadStart start), Token 0000147B + public Class_0000000D(NanoInput.Class_00001E87 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Threading.Thread.GetHashCode(), Token 0000156E + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Threading.CancellationTokenSource+CallbackNode+<>c public sealed class Class_0000147F @@ -10684,17 +12897,21 @@ public sealed class Class_0000147F ///Field: System.Threading.CancellationTokenSource+CallbackNode+<>c System.Threading.CancellationTokenSource+CallbackNode+<>c.<>9 public static readonly NanoInput.Class_0000147F Field_0000141C; - ///Method: private static System.Threading.CancellationTokenSource+CallbackNode+<>c..cctor() - Class_0000147F(); + ///Method: private static System.Threading.CancellationTokenSource+CallbackNode+<>c..cctor(), Token 0000147D + static Class_0000147F() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.CancellationTokenSource+CallbackNode+<>c..ctor() - Class_0000147F(); + ///Method: public System.Threading.CancellationTokenSource+CallbackNode+<>c..ctor(), Token 0000147E + public Class_0000147F() + { + throw new System.NotImplementedException(); + } } ///System.Action public sealed class Class_FF00141F : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Action..ctor(System.Object object, System.IntPtr method) - Class_FF00141F(); } ///System.Threading.ExecutionContext public sealed class Class_00001487 : NanoInput.Class_0000003A, NanoInput.Class_00000085 @@ -10717,17 +12934,23 @@ public sealed class Class_00001487 : NanoInput.Class_0000003A, NanoInput.Class_0 ///Field: System.Threading.ExecutionContext System.Threading.ExecutionContext.s_defaultFlowSuppressed public static NanoInput.Class_00001487 Field_00001483; - ///Method: private System.Threading.ExecutionContext..ctor() - Class_00001487(); + ///Method: private System.Threading.ExecutionContext..ctor(), Token 00001484 + public Class_00001487() + { + throw new System.NotImplementedException(); + } - ///Method: private System.Threading.ExecutionContext..ctor(System.Threading.IAsyncLocalValueMap localValues, System.Threading.IAsyncLocal[] localChangeNotifications, System.Boolean isFlowSuppressed) - Class_00001487(); + ///Method: private static System.Threading.ExecutionContext..cctor(), Token 00001486 + static Class_00001487() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.ExecutionContext..cctor() - Class_00001487(); - - ///Method: public virtual void System.Threading.ExecutionContext.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Threading.ExecutionContext.Dispose(), Token 0000156D + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.ExceptionServices.ExceptionDispatchInfo public sealed class Class_00001488 @@ -10738,8 +12961,11 @@ public sealed class Class_00001488 ///Field: System.Exception+DispatchState System.Runtime.ExceptionServices.ExceptionDispatchInfo._dispatchState public readonly NanoInput.Class_00001488 Field_00001433; - ///Method: private System.Runtime.ExceptionServices.ExceptionDispatchInfo..ctor(System.Exception exception) - Class_00001488(NanoInput.Class_0000001E Arg_0); + ///Method: private System.Runtime.ExceptionServices.ExceptionDispatchInfo..ctor(System.Exception exception), Token 00001430 + public Class_00001488(NanoInput.Class_0000001E Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Exception+DispatchState public struct Class_00001489 @@ -10759,14 +12985,20 @@ public struct Class_00001489 ///Field: System.Byte[] System.Exception+DispatchState.WatsonBuckets public readonly NanoInput.Class_00001489 Field_0000143A; - ///Method: public System.Exception+DispatchState..ctor(System.Byte[] stackTrace, System.Object[] dynamicMethods, System.String remoteStackTrace, System.UIntPtr ipForWatsonBuckets, System.Byte[] watsonBuckets) - Class_00001489(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00000004 Arg_2, NanoInput.Class_00000C2C Arg_3, NanoInput.Class_00000013 Arg_4); + ///Method: public System.Exception+DispatchState..ctor(System.Byte[] stackTrace, System.Object[] dynamicMethods, System.String remoteStackTrace, System.UIntPtr ipForWatsonBuckets, System.Byte[] watsonBuckets), Token 00001435 + public Class_00001489(NanoInput.Class_00000013 Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00000004 Arg_2, NanoInput.Class_00000C2C Arg_3, NanoInput.Class_00000013 Arg_4) + { + throw new System.NotImplementedException(); + } } ///System.Threading.SendOrPostCallback public sealed class Class_0000148A : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Threading.SendOrPostCallback..ctor(System.Object object, System.IntPtr method) - Class_0000148A(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Threading.SendOrPostCallback..ctor(System.Object object, System.IntPtr method), Token 00001403 + public Class_0000148A(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.List public class Class_1100001E : NanoInput.Class_3300001E, NanoInput.Class_1700001E, NanoInput.Class_0100001E, NanoInput.Class_000000E8, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_3400001E, NanoInput.Class_3500001E @@ -10781,28 +13013,43 @@ public class Class_1100001E : NanoInput.Class_3300001E, NanoInput.Class_1700001E public NanoInput.Class_1100001E Field_0000143F; ///Field: System.Int32 System.Collections.Generic.List._size - public NanoInput.Class_1100001E Field_00001440; - - ///Method: public System.Collections.Generic.List..ctor() - Class_1100001E(); - - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_1100001E(NanoInput.Class_0100001E Arg_0); - - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_1100001E(); - - ///Method: private static System.Collections.Generic.List..cctor() - Class_1100001E(); - - ///Method: public virtual System.Int32 System.Collections.Generic.List.get_Count() - ; - - ///Method: public virtual void System.Collections.Generic.List.CopyTo(System.Exception[] array, System.Int32 arrayIndex) - virtual ? CopyTo(NanoInput.Class_0000001E Arg_0, NanoInput.Class_00000014 Arg_1); + public NanoInput.Class_1100001E Field_00001440; - ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator() - virtual NanoInput.Class_2F00001E System.Collections.Generic.IEnumerable.GetEnumerator(); + ///Method: public System.Collections.Generic.List..ctor(), Token 00001406 + public Class_1100001E() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection), Token 00001449 + public Class_1100001E(NanoInput.Class_0100001E Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Collections.Generic.List..cctor(), Token 0000148C + static Class_1100001E() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.List.get_Count(), Token 00001502 + public virtual NanoInput.Class_00000014 get_Count() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Collections.Generic.List.CopyTo(System.Exception[] array, System.Int32 arrayIndex), Token 00001504 + public virtual void CopyTo(NanoInput.Class_0000001E Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator(), Token 0000150A + public virtual NanoInput.Class_2F00001E System.Collections.Generic.IEnumerable.GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IList public interface Class_3300001E : NanoInput.Class_1700001E, NanoInput.Class_0100001E, NanoInput.Class_000000E8 @@ -10833,17 +13080,29 @@ public class Class_2E00001E : NanoInput.Class_2F00001E, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E00001E Field_00001446; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Exception[] array) - Class_2E00001E(NanoInput.Class_0000001E Arg_0); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Exception ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current() - ; - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Exception[] array), Token 00001444 + public Class_2E00001E(NanoInput.Class_0000001E Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000014E0 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Exception ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current(), Token 000014E1 + public virtual NanoInput.Class_0000001E get_Current() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000014E2 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F00001E : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -10858,50 +13117,68 @@ public class Class_00001497 : NanoInput.Class_0000001E, NanoInput.Class_00000085 ///Field: System.Collections.ObjectModel.ReadOnlyCollection System.AggregateException._rocView public NanoInput.Class_00001497 Field_0000148E; - ///Method: public System.AggregateException..ctor(System.Collections.Generic.IEnumerable innerExceptions) - Class_00001497(NanoInput.Class_0100001E Arg_0); - - ///Method: public System.AggregateException..ctor(System.String message, System.Collections.Generic.IEnumerable innerExceptions) - Class_00001497(NanoInput.Class_00000004 Arg_0, NanoInput.Class_0100001E Arg_1); - - ///Method: private System.AggregateException..ctor(System.String message, System.Exception[] innerExceptions, System.Boolean cloneExceptions) - Class_00001497(NanoInput.Class_00000004 Arg_0, NanoInput.Class_0000001E Arg_1, NanoInput.Class_0000021C Arg_2); - - ///Method: public System.AggregateException..ctor() - Class_00001497(); - - ///Method: public System.AggregateException..ctor(System.String message) - Class_00001497(); - - ///Method: public System.AggregateException..ctor(System.String message, System.Exception innerException) - Class_00001497(); - - ///Method: public System.AggregateException..ctor(System.Exception[] innerExceptions) - Class_00001497(NanoInput.Class_0000001E Arg_0); - - ///Method: public System.AggregateException..ctor(System.String message, System.Exception[] innerExceptions) - Class_00001497(NanoInput.Class_00000004 Arg_0, NanoInput.Class_0000001E Arg_1); - - ///Method: internal System.AggregateException..ctor(System.Collections.Generic.List innerExceptionInfos) - Class_00001497(NanoInput.Class_11001488 Arg_0); - - ///Method: internal System.AggregateException..ctor(System.String message, System.Collections.Generic.List innerExceptionInfos) - Class_00001497(NanoInput.Class_00000004 Arg_0, NanoInput.Class_11001488 Arg_1); - - ///Method: protected System.AggregateException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001497(); - - ///Method: public virtual System.String System.AggregateException.get_Message() - ; - - ///Method: public virtual System.String System.AggregateException.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.AggregateException..ctor(System.Collections.Generic.IEnumerable innerExceptions), Token 00001409 + public Class_00001497(NanoInput.Class_0100001E Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.AggregateException..ctor(System.String message, System.Collections.Generic.IEnumerable innerExceptions), Token 00001448 + public Class_00001497(NanoInput.Class_00000004 Arg_0, NanoInput.Class_0100001E Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private System.AggregateException..ctor(System.String message, System.Exception[] innerExceptions, System.Boolean cloneExceptions), Token 0000144B + public Class_00001497(NanoInput.Class_00000004 Arg_0, NanoInput.Class_0000001E Arg_1, NanoInput.Class_0000021C Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.AggregateException..ctor(System.Exception[] innerExceptions), Token 00001492 + public Class_00001497(NanoInput.Class_0000001E Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.AggregateException..ctor(System.String message, System.Exception[] innerExceptions), Token 00001493 + public Class_00001497(NanoInput.Class_00000004 Arg_0, NanoInput.Class_0000001E Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: internal System.AggregateException..ctor(System.Collections.Generic.List innerExceptionInfos), Token 00001494 + public Class_00001497(NanoInput.Class_11001488 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: internal System.AggregateException..ctor(System.String message, System.Collections.Generic.List innerExceptionInfos), Token 00001495 + public Class_00001497(NanoInput.Class_00000004 Arg_0, NanoInput.Class_11001488 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.AggregateException.get_Message(), Token 000014EB + public virtual NanoInput.Class_00000004 get_Message() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.AggregateException.ToString(), Token 000014F2 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Threading.TimerCallback public sealed class Class_00001498 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Threading.TimerCallback..ctor(System.Object object, System.IntPtr method) - Class_00001498(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Threading.TimerCallback..ctor(System.Object object, System.IntPtr method), Token 000013E1 + public Class_00001498(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.TimerQueueTimer+<>c public sealed class Class_0000149D @@ -10909,11 +13186,17 @@ public sealed class Class_0000149D ///Field: System.Threading.TimerQueueTimer+<>c System.Threading.TimerQueueTimer+<>c.<>9 public static readonly NanoInput.Class_0000149D Field_00001499; - ///Method: private static System.Threading.TimerQueueTimer+<>c..cctor() - Class_0000149D(); + ///Method: private static System.Threading.TimerQueueTimer+<>c..cctor(), Token 0000149B + static Class_0000149D() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.TimerQueueTimer+<>c..ctor() - Class_0000149D(); + ///Method: public System.Threading.TimerQueueTimer+<>c..ctor(), Token 0000149C + public Class_0000149D() + { + throw new System.NotImplementedException(); + } } ///System.ValueTuple public struct Class_FF0014AB : NanoInput.Class_FF0014AD, NanoInput.Class_000000EA, NanoInput.Class_000000E9, NanoInput.Class_00000130, NanoInput.Class_FF0014AE, NanoInput.Class_00000788, NanoInput.Class_00000789 @@ -10924,17 +13207,29 @@ public struct Class_FF0014AB : NanoInput.Class_FF0014AD, NanoInput.Class_000000E ///Field: System.DateTime System.ValueTuple.Item2 public NanoInput.Class_FF0014AB Field_000014A7; - ///Method: public System.ValueTuple..ctor(System.Int64 item1, System.DateTime item2) - Class_FF0014AB(NanoInput.Class_00000016 Arg_0, NanoInput.Class_000014AC Arg_1); - - ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ValueTuple.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ValueTuple..ctor(System.Int64 item1, System.DateTime item2), Token 000014A1 + public Class_FF0014AB(NanoInput.Class_00000016 Arg_0, NanoInput.Class_000014AC Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj), Token 00001570 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode(), Token 0000159E + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ValueTuple.ToString(), Token 0000159F + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF0014AD @@ -10953,14 +13248,23 @@ public class Class_2E001467 : NanoInput.Class_2F001467, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E001467 Field_000014AA; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.TimerQueue[] array) - Class_2E001467(NanoInput.Class_00001467 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.TimerQueue[] array), Token 000014A8 + public Class_2E001467(NanoInput.Class_00001467 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000014E5 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000014E6 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F001467 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -10996,11 +13300,11 @@ public class Class_000014C2 ///Field: System.Double System.Diagnostics.Stopwatch.s_tickFrequency public static readonly NanoInput.Class_000014C2 Field_000014BF; - ///Method: public System.Diagnostics.Stopwatch..ctor() - Class_000014C2(); - - ///Method: private static System.Diagnostics.Stopwatch..cctor() - Class_000014C2(); + ///Method: private static System.Diagnostics.Stopwatch..cctor(), Token 000014C1 + static Class_000014C2() + { + throw new System.NotImplementedException(); + } } ///System.Text.StringBuilderCache public abstract class Class_000014EE @@ -11011,11 +13315,11 @@ public abstract class Class_000014EE ///System.Device.I2c.I2cDevice public abstract class Class_000010C9 : NanoInput.Class_0000003A { - ///Method: protected System.Device.I2c.I2cDevice..ctor() - Class_000010C9(); - - ///Method: public virtual void System.Device.I2c.I2cDevice.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Device.I2c.I2cDevice.Dispose(), Token 000010C6 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.List+Enumerator public struct Class_1400001E : NanoInput.Class_2F00001E, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -11032,17 +13336,29 @@ public struct Class_1400001E : NanoInput.Class_2F00001E, NanoInput.Class_0000003 ///Field: System.Exception System.Collections.Generic.List+Enumerator._current public NanoInput.Class_1400001E Field_00001509; - ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list) - Class_1400001E(NanoInput.Class_1100001E Arg_0); - - ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose() - virtual ? Dispose(); - - ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Exception System.Collections.Generic.List+Enumerator.get_Current() - ; + ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list), Token 00001505 + public Class_1400001E(NanoInput.Class_1100001E Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose(), Token 000015B7 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext(), Token 000015B9 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Exception System.Collections.Generic.List+Enumerator.get_Current(), Token 000015BA + public virtual NanoInput.Class_0000001E get_Current() + { + throw new System.NotImplementedException(); + } } ///System.Text.EncoderFallbackException public sealed class Class_00001557 : NanoInput.Class_000005A6, NanoInput.Class_00000085 @@ -11059,44 +13375,36 @@ public sealed class Class_00001557 : NanoInput.Class_000005A6, NanoInput.Class_0 ///Field: System.Char System.Text.EncoderFallbackException._charUnknownLow public readonly NanoInput.Class_00001557 Field_00001551; - ///Method: internal System.Text.EncoderFallbackException..ctor(System.String message, System.Char charUnknown, System.Int32 index) - Class_00001557(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000014 Arg_2); + ///Method: internal System.Text.EncoderFallbackException..ctor(System.String message, System.Char charUnknown, System.Int32 index), Token 0000154C + public Class_00001557(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Text.EncoderFallbackException..ctor() - Class_00001557(); - - ///Method: public System.Text.EncoderFallbackException..ctor(System.String message) - Class_00001557(); - - ///Method: public System.Text.EncoderFallbackException..ctor(System.String message, System.Exception innerException) - Class_00001557(); - - ///Method: internal System.Text.EncoderFallbackException..ctor(System.String message, System.Char charUnknownHigh, System.Char charUnknownLow, System.Int32 index) - Class_00001557(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000131 Arg_2, NanoInput.Class_00000014 Arg_3); - - ///Method: private System.Text.EncoderFallbackException..ctor(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) - Class_00001557(); + ///Method: internal System.Text.EncoderFallbackException..ctor(System.String message, System.Char charUnknownHigh, System.Char charUnknownLow, System.Int32 index), Token 00001555 + public Class_00001557(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000131 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.Threading.ManualResetEvent public sealed class Class_00001566 : NanoInput.Class_0000156C, NanoInput.Class_0000003A { - ///Method: public System.Threading.ManualResetEvent..ctor(System.Boolean initialState) - Class_00001566(); } ///System.Threading.EventWaitHandle public class Class_0000156C : NanoInput.Class_00000E90, NanoInput.Class_0000003A { - ///Method: public System.Threading.EventWaitHandle..ctor(System.Boolean initialState, System.Threading.EventResetMode mode) - Class_0000156C(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public System.Threading.EventWaitHandle..ctor(System.Boolean initialState, System.Threading.EventResetMode mode), Token 00001568 + public Class_0000156C(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.EventWaitHandle..ctor(System.Boolean initialState, System.Threading.EventResetMode mode, System.String name) - Class_0000156C(); - - ///Method: public System.Threading.EventWaitHandle..ctor(System.Boolean initialState, System.Threading.EventResetMode mode, System.String name, System.Boolean& createdNew) - Class_0000156C(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000004 Arg_2, NanoInput.Class_0000021C Arg_3); - - ///Method: private System.Threading.EventWaitHandle..ctor(Microsoft.Win32.SafeHandles.SafeWaitHandle handle) - Class_0000156C(); + ///Method: public System.Threading.EventWaitHandle..ctor(System.Boolean initialState, System.Threading.EventResetMode mode, System.String name, System.Boolean& createdNew), Token 0000156A + public Class_0000156C(NanoInput.Class_0000021C Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000004 Arg_2, NanoInput.Class_0000021C Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.EqualityComparer public abstract class Class_06000016 : NanoInput.Class_000000D1, NanoInput.Class_05000016 @@ -11104,11 +13412,11 @@ public abstract class Class_06000016 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06000016 Field_00001575; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06000016(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06000016(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 00001578 + static Class_06000016() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_05000016 @@ -11117,29 +13425,38 @@ public interface Class_05000016 ///System.Collections.Generic.GenericEqualityComparer public sealed class Class_08000016 : NanoInput.Class_06000016, NanoInput.Class_000000D1, NanoInput.Class_05000016 { - ///Method: public System.Collections.Generic.GenericEqualityComparer..ctor() - Class_08000016(); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Int64 x, System.Int64 y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000016 Arg_0, NanoInput.Class_00000016 Arg_1); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Int64 x, System.Int64 y), Token 000015B3 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000016 Arg_0, NanoInput.Class_00000016 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj), Token 000015B5 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(), Token 000015B6 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.GenericComparer public sealed class Class_09000016 : NanoInput.Class_000000DE, NanoInput.Class_0A000016 { - ///Method: public System.Collections.Generic.GenericComparer..ctor() - Class_09000016(); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj), Token 000015AC + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode(), Token 000015AD + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IComparer public interface Class_0A000016 @@ -11151,11 +13468,11 @@ public abstract class Class_060014AC : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_060014AC Field_00001576; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_060014AC(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_060014AC(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 0000157C + static Class_060014AC() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_050014AC @@ -11168,29 +13485,38 @@ public interface Class_070014AC ///System.Collections.Generic.GenericEqualityComparer public sealed class Class_080014AC : NanoInput.Class_060014AC, NanoInput.Class_000000D1, NanoInput.Class_050014AC { - ///Method: public System.Collections.Generic.GenericEqualityComparer..ctor() - Class_080014AC(); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.DateTime x, System.DateTime y), Token 000015AF + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_000014AC Arg_0, NanoInput.Class_000014AC Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.DateTime x, System.DateTime y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_000014AC Arg_0, NanoInput.Class_000014AC Arg_1); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj), Token 000015B1 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(), Token 000015B2 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.GenericComparer public sealed class Class_090014AC : NanoInput.Class_000000DE, NanoInput.Class_0A0014AC { - ///Method: public System.Collections.Generic.GenericComparer..ctor() - Class_090014AC(); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj), Token 000015AA + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode(), Token 000015AB + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IComparer public interface Class_0A0014AC @@ -11226,68 +13552,89 @@ public struct Class_000014AC : NanoInput.Class_00000130, NanoInput.Class_000001F ///Field: System.DateTime+LeapSecondCache System.DateTime.s_leapSecondCache public static NanoInput.Class_000014AC Field_00001587; - ///Method: private static System.DateTime..cctor() - Class_000014AC(); - - ///Method: public System.DateTime..ctor(System.Int64 ticks) - Class_000014AC(NanoInput.Class_00000016 Arg_0); - - ///Method: private System.DateTime..ctor(System.UInt64 dateData) - Class_000014AC(NanoInput.Class_00000017 Arg_0); - - ///Method: public System.DateTime..ctor(System.Int64 ticks, System.DateTimeKind kind) - Class_000014AC(NanoInput.Class_00000016 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: internal System.DateTime..ctor(System.Int64 ticks, System.DateTimeKind kind, System.Boolean isAmbiguousDst) - Class_000014AC(NanoInput.Class_00000016 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2); - - ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day) - Class_000014AC(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Globalization.Calendar calendar) - Class_000014AC(); - - ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Int32 hour, System.Int32 minute, System.Int32 second) - Class_000014AC(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_00000014 Arg_5); - - ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Int32 hour, System.Int32 minute, System.Int32 second, System.DateTimeKind kind) - Class_000014AC(); - - ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Int32 hour, System.Int32 minute, System.Int32 second, System.Globalization.Calendar calendar) - Class_000014AC(); - - ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Int32 hour, System.Int32 minute, System.Int32 second, System.Int32 millisecond) - Class_000014AC(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_00000014 Arg_5, NanoInput.Class_00000014 Arg_6); - - ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Int32 hour, System.Int32 minute, System.Int32 second, System.Int32 millisecond, System.DateTimeKind kind) - Class_000014AC(); - - ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Int32 hour, System.Int32 minute, System.Int32 second, System.Int32 millisecond, System.Globalization.Calendar calendar) - Class_000014AC(); - - ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Int32 hour, System.Int32 minute, System.Int32 second, System.Int32 millisecond, System.Globalization.Calendar calendar, System.DateTimeKind kind) - Class_000014AC(); - - ///Method: private System.DateTime..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_000014AC(); - - ///Method: public virtual System.Boolean System.DateTime.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Boolean System.DateTime.Equals(System.DateTime value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_000014AC Arg_0); - - ///Method: public virtual System.Int32 System.DateTime.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.DateTime.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.DateTime.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.DateTime.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: private static System.DateTime..cctor(), Token 00001588 + static Class_000014AC() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.DateTime..ctor(System.Int64 ticks), Token 00001589 + public Class_000014AC(NanoInput.Class_00000016 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private System.DateTime..ctor(System.UInt64 dateData), Token 0000158A + public Class_000014AC(NanoInput.Class_00000017 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.DateTime..ctor(System.Int64 ticks, System.DateTimeKind kind), Token 0000158B + public Class_000014AC(NanoInput.Class_00000016 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: internal System.DateTime..ctor(System.Int64 ticks, System.DateTimeKind kind, System.Boolean isAmbiguousDst), Token 0000158C + public Class_000014AC(NanoInput.Class_00000016 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0000021C Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day), Token 0000158D + public Class_000014AC(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Int32 hour, System.Int32 minute, System.Int32 second), Token 0000158F + public Class_000014AC(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_00000014 Arg_5) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.DateTime..ctor(System.Int32 year, System.Int32 month, System.Int32 day, System.Int32 hour, System.Int32 minute, System.Int32 second, System.Int32 millisecond), Token 00001592 + public Class_000014AC(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_00000014 Arg_5, NanoInput.Class_00000014 Arg_6) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.DateTime.Equals(System.Object value), Token 000015BC + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.DateTime.Equals(System.DateTime value), Token 000015BD + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_000014AC Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.DateTime.GetHashCode(), Token 000015BE + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.DateTime.ToString(), Token 000015C0 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.DateTime.ToString(System.String format, System.IFormatProvider provider), Token 00001884 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.DateTime.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00001886 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C0014AC @@ -11302,8 +13649,11 @@ public sealed class Class_000015A9 ///Field: System.UInt64 System.DateTime+LeapSecondCache.DotnetDateDataAtStartOfValidityWindow public NanoInput.Class_000015A9 Field_000015A8; - ///Method: public System.DateTime+LeapSecondCache..ctor() - Class_000015A9(); + ///Method: public System.DateTime+LeapSecondCache..ctor(), Token 000015A2 + public Class_000015A9() + { + throw new System.NotImplementedException(); + } } ///System.DateTimeFormat public abstract class Class_00001805 @@ -11323,8 +13673,11 @@ public abstract class Class_00001805 ///Field: System.Globalization.DateTimeFormatInfo System.DateTimeFormat.InvariantFormatInfo public static readonly NanoInput.Class_00001805 Field_00001803; - ///Method: private static System.DateTimeFormat..cctor() - Class_00001805(); + ///Method: private static System.DateTimeFormat..cctor(), Token 00001804 + static Class_00001805() + { + throw new System.NotImplementedException(); + } } ///System.TimeSpan public struct Class_00001598 : NanoInput.Class_00000130, NanoInput.Class_0C001598, NanoInput.Class_07001598, NanoInput.Class_000001F5, NanoInput.Class_000001F8 @@ -11341,35 +13694,53 @@ public struct Class_00001598 : NanoInput.Class_00000130, NanoInput.Class_0C00159 ///Field: System.Int64 System.TimeSpan._ticks public readonly NanoInput.Class_00001598 Field_000015C3; - ///Method: public System.TimeSpan..ctor(System.Int64 ticks) - Class_00001598(NanoInput.Class_00000016 Arg_0); - - ///Method: public System.TimeSpan..ctor(System.Int32 hours, System.Int32 minutes, System.Int32 seconds) - Class_00001598(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public System.TimeSpan..ctor(System.Int32 days, System.Int32 hours, System.Int32 minutes, System.Int32 seconds) - Class_00001598(); - - ///Method: public System.TimeSpan..ctor(System.Int32 days, System.Int32 hours, System.Int32 minutes, System.Int32 seconds, System.Int32 milliseconds) - Class_00001598(); - - ///Method: private static System.TimeSpan..cctor() - Class_00001598(); - - ///Method: public virtual System.Boolean System.TimeSpan.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.TimeSpan.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.TimeSpan.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.TimeSpan.ToString(System.String format, System.IFormatProvider formatProvider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.TimeSpan.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider formatProvider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: public System.TimeSpan..ctor(System.Int64 ticks), Token 000015C1 + public Class_00001598(NanoInput.Class_00000016 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.TimeSpan..ctor(System.Int32 hours, System.Int32 minutes, System.Int32 seconds), Token 0000164B + public Class_00001598(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.TimeSpan..cctor(), Token 00001809 + static Class_00001598() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.TimeSpan.Equals(System.Object value), Token 00001924 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.TimeSpan.GetHashCode(), Token 00001925 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.TimeSpan.ToString(), Token 00001927 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.TimeSpan.ToString(System.String format, System.IFormatProvider formatProvider), Token 00001938 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.TimeSpan.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider formatProvider), Token 00001941 + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C001598 @@ -11427,26 +13798,41 @@ public sealed class Class_0000162E : NanoInput.Class_0700162E, NanoInput.Class_0 ///Field: System.DateTime System.TimeZoneInfo.s_minDateOnly public static readonly NanoInput.Class_0000162E Field_00001788; - ///Method: private System.TimeZoneInfo..ctor(System.String id, System.TimeSpan baseUtcOffset, System.String displayName, System.String standardDisplayName, System.String daylightDisplayName, System.TimeZoneInfo+AdjustmentRule[] adjustmentRules, System.Boolean disableDaylightSavingTime, System.Boolean hasIanaId) - Class_0000162E(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00001598 Arg_1, NanoInput.Class_00000004 Arg_2, NanoInput.Class_00000004 Arg_3, NanoInput.Class_00000004 Arg_4, NanoInput.Class_00001655 Arg_5, NanoInput.Class_0000021C Arg_6, NanoInput.Class_0000021C Arg_7); - - ///Method: private System.TimeZoneInfo..ctor(Interop+Kernel32+TIME_ZONE_INFORMATION& zone, System.Boolean dstDisabled) - Class_0000162E(NanoInput.Class_0000173B Arg_0, NanoInput.Class_0000021C Arg_1); - - ///Method: private System.TimeZoneInfo..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_0000162E(); - - ///Method: private static System.TimeZoneInfo..cctor() - Class_0000162E(); - - ///Method: public virtual System.Boolean System.TimeZoneInfo.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.TimeZoneInfo.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.TimeZoneInfo.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: private System.TimeZoneInfo..ctor(System.String id, System.TimeSpan baseUtcOffset, System.String displayName, System.String standardDisplayName, System.String daylightDisplayName, System.TimeZoneInfo+AdjustmentRule[] adjustmentRules, System.Boolean disableDaylightSavingTime, System.Boolean hasIanaId), Token 000015DE + public Class_0000162E(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00001598 Arg_1, NanoInput.Class_00000004 Arg_2, NanoInput.Class_00000004 Arg_3, NanoInput.Class_00000004 Arg_4, NanoInput.Class_00001655 Arg_5, NanoInput.Class_0000021C Arg_6, NanoInput.Class_0000021C Arg_7) + { + throw new System.NotImplementedException(); + } + + ///Method: private System.TimeZoneInfo..ctor(Interop+Kernel32+TIME_ZONE_INFORMATION& zone, System.Boolean dstDisabled), Token 0000174D + public Class_0000162E(NanoInput.Class_0000173B Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.TimeZoneInfo..cctor(), Token 00001816 + static Class_0000162E() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.TimeZoneInfo.Equals(System.Object obj), Token 00001943 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.TimeZoneInfo.GetHashCode(), Token 00001965 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.TimeZoneInfo.ToString(), Token 00001967 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_0700162E @@ -11470,8 +13856,11 @@ public sealed class Class_00001819 ///Field: System.Collections.ObjectModel.ReadOnlyCollection System.TimeZoneInfo+CachedData._readOnlySystemTimeZones public NanoInput.Class_00001819 Field_00001817; - ///Method: public System.TimeZoneInfo+CachedData..ctor() - Class_00001819(); + ///Method: public System.TimeZoneInfo+CachedData..ctor(), Token 00001818 + public Class_00001819() + { + throw new System.NotImplementedException(); + } } ///Interop+Kernel32+TIME_DYNAMIC_ZONE_INFORMATION public struct Class_00001821 @@ -11506,17 +13895,11 @@ public struct Class_00001821 ///System.InvalidTimeZoneException public class Class_0000164C : NanoInput.Class_0000001E, NanoInput.Class_00000085 { - ///Method: public System.InvalidTimeZoneException..ctor(System.String message) - Class_0000164C(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.InvalidTimeZoneException..ctor() - Class_0000164C(); - - ///Method: public System.InvalidTimeZoneException..ctor(System.String message, System.Exception innerException) - Class_0000164C(); - - ///Method: protected System.InvalidTimeZoneException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_0000164C(); + ///Method: public System.InvalidTimeZoneException..ctor(System.String message), Token 000015F5 + public Class_0000164C(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.TimeZoneInfo+AdjustmentRule public sealed class Class_00001655 : NanoInput.Class_07001655, NanoInput.Class_00000085 @@ -11548,20 +13931,29 @@ public sealed class Class_00001655 : NanoInput.Class_07001655, NanoInput.Class_0 ///Field: System.Boolean System.TimeZoneInfo+AdjustmentRule._noDaylightTransitions public readonly NanoInput.Class_00001655 Field_00001676; - ///Method: private System.TimeZoneInfo+AdjustmentRule..ctor(System.DateTime dateStart, System.DateTime dateEnd, System.TimeSpan daylightDelta, System.TimeZoneInfo+TransitionTime daylightTransitionStart, System.TimeZoneInfo+TransitionTime daylightTransitionEnd, System.TimeSpan baseUtcOffsetDelta, System.Boolean noDaylightTransitions) - Class_00001655(NanoInput.Class_000014AC Arg_0, NanoInput.Class_000014AC Arg_1, NanoInput.Class_00001598 Arg_2, NanoInput.Class_0000160A Arg_3, NanoInput.Class_0000160A Arg_4, NanoInput.Class_00001598 Arg_5, NanoInput.Class_0000021C Arg_6); - - ///Method: private System.TimeZoneInfo+AdjustmentRule..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001655(); - - ///Method: private static System.TimeZoneInfo+AdjustmentRule..cctor() - Class_00001655(); - - ///Method: public virtual System.Boolean System.TimeZoneInfo+AdjustmentRule.Equals(System.TimeZoneInfo+AdjustmentRule other) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00001655 Arg_0); - - ///Method: public virtual System.Int32 System.TimeZoneInfo+AdjustmentRule.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: private System.TimeZoneInfo+AdjustmentRule..ctor(System.DateTime dateStart, System.DateTime dateEnd, System.TimeSpan daylightDelta, System.TimeZoneInfo+TransitionTime daylightTransitionStart, System.TimeZoneInfo+TransitionTime daylightTransitionEnd, System.TimeSpan baseUtcOffsetDelta, System.Boolean noDaylightTransitions), Token 0000166D + public Class_00001655(NanoInput.Class_000014AC Arg_0, NanoInput.Class_000014AC Arg_1, NanoInput.Class_00001598 Arg_2, NanoInput.Class_0000160A Arg_3, NanoInput.Class_0000160A Arg_4, NanoInput.Class_00001598 Arg_5, NanoInput.Class_0000021C Arg_6) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.TimeZoneInfo+AdjustmentRule..cctor(), Token 00001828 + static Class_00001655() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.TimeZoneInfo+AdjustmentRule.Equals(System.TimeZoneInfo+AdjustmentRule other), Token 00001968 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00001655 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.TimeZoneInfo+AdjustmentRule.GetHashCode(), Token 00001969 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_07001655 @@ -11588,17 +13980,23 @@ public struct Class_0000160A : NanoInput.Class_0700160A, NanoInput.Class_0000008 ///Field: System.Boolean System.TimeZoneInfo+TransitionTime._isFixedDateRule public readonly NanoInput.Class_0000160A Field_00001613; - ///Method: private System.TimeZoneInfo+TransitionTime..ctor(System.DateTime timeOfDay, System.Int32 month, System.Int32 week, System.Int32 day, System.DayOfWeek dayOfWeek, System.Boolean isFixedDateRule) - Class_0000160A(NanoInput.Class_000014AC Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_0000021C Arg_5); + ///Method: private System.TimeZoneInfo+TransitionTime..ctor(System.DateTime timeOfDay, System.Int32 month, System.Int32 week, System.Int32 day, System.DayOfWeek dayOfWeek, System.Boolean isFixedDateRule), Token 00001662 + public Class_0000160A(NanoInput.Class_000014AC Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000014 Arg_4, NanoInput.Class_0000021C Arg_5) + { + throw new System.NotImplementedException(); + } - ///Method: private System.TimeZoneInfo+TransitionTime..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_0000160A(); + ///Method: public virtual System.Boolean System.TimeZoneInfo+TransitionTime.Equals(System.Object obj), Token 0000196A + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.TimeZoneInfo+TransitionTime.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.TimeZoneInfo+TransitionTime.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.TimeZoneInfo+TransitionTime.GetHashCode(), Token 0000196B + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_0700160A @@ -11625,14 +14023,23 @@ public struct Class_1400162E : NanoInput.Class_2F00162E, NanoInput.Class_0000003 ///Field: System.TimeZoneInfo System.Collections.Generic.List+Enumerator._current public NanoInput.Class_1400162E Field_00001739; - ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list) - Class_1400162E(NanoInput.Class_1100162E Arg_0); + ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list), Token 00001735 + public Class_1400162E(NanoInput.Class_1100162E Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext(), Token 0000162D + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose(), Token 00001913 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F00162E : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -11671,32 +14078,17 @@ public class Class_FF001834 : NanoInput.Class_FF001835, NanoInput.Class_FF001837 ///Field: System.Collections.Generic.Dictionary+ValueCollection System.Collections.Generic.Dictionary._values public NanoInput.Class_FF001834 Field_0000182C; - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_FF001834(NanoInput.Class_05000004 Arg_0); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_FF001834(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000004 Arg_1); + ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEqualityComparer comparer), Token 00001642 + public Class_FF001834(NanoInput.Class_05000004 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Collections.Generic.Dictionary..ctor() - Class_FF001834(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity) - Class_FF001834(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary) - Class_FF001834(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary, System.Collections.Generic.IEqualityComparer comparer) - Class_FF001834(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection) - Class_FF001834(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF001834(); - - ///Method: protected System.Collections.Generic.Dictionary..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_FF001834(); + ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer), Token 0000171D + public Class_FF001834(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000004 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IDictionary public interface Class_FF001835 : NanoInput.Class_FF001837, NanoInput.Class_FF001838, NanoInput.Class_000000E8 @@ -11742,8 +14134,11 @@ public abstract class Class_0000183D ///Field: Internal.Win32.RegistryKey Internal.Win32.Registry.CurrentUser public static readonly NanoInput.Class_0000183D Field_0000183B; - ///Method: private static Internal.Win32.Registry..cctor() - Class_0000183D(); + ///Method: private static Internal.Win32.Registry..cctor(), Token 0000183C + static Class_0000183D() + { + throw new System.NotImplementedException(); + } } ///Interop+Kernel32+REG_TZI_FORMAT public struct Class_0000164E @@ -11763,26 +14158,15 @@ public struct Class_0000164E ///Field: Interop+Kernel32+SYSTEMTIME Interop+Kernel32+REG_TZI_FORMAT.DaylightDate public NanoInput.Class_0000164E Field_0000167E; - ///Method: internal Interop+Kernel32+REG_TZI_FORMAT..ctor(Interop+Kernel32+TIME_ZONE_INFORMATION& tzi) - Class_0000164E(NanoInput.Class_0000173B Arg_0); + ///Method: internal Interop+Kernel32+REG_TZI_FORMAT..ctor(Interop+Kernel32+TIME_ZONE_INFORMATION& tzi), Token 0000174E + public Class_0000164E(NanoInput.Class_0000173B Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.InvalidCastException public class Class_00000026 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.InvalidCastException..ctor() - Class_00000026(); - - ///Method: public System.InvalidCastException..ctor(System.String message) - Class_00000026(); - - ///Method: public System.InvalidCastException..ctor(System.String message, System.Exception innerException) - Class_00000026(); - - ///Method: public System.InvalidCastException..ctor(System.String message, System.Int32 errorCode) - Class_00000026(); - - ///Method: protected System.InvalidCastException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00000026(); } ///Interop+Kernel32+SYSTEMTIME public struct Class_00001844 @@ -11820,14 +14204,23 @@ public class Class_2E001655 : NanoInput.Class_2F001655, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E001655 Field_0000169B; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.TimeZoneInfo+AdjustmentRule[] array) - Class_2E001655(NanoInput.Class_00001655 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.TimeZoneInfo+AdjustmentRule[] array), Token 00001699 + public Class_2E001655(NanoInput.Class_00001655 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000018CD + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000018CE + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F001655 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -11848,17 +14241,17 @@ public class Class_11001655 : NanoInput.Class_33001655, NanoInput.Class_17001655 ///Field: System.Int32 System.Collections.Generic.List._size public NanoInput.Class_11001655 Field_0000169F; - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_11001655(NanoInput.Class_00000014 Arg_0); - - ///Method: public System.Collections.Generic.List..ctor() - Class_11001655(); - - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_11001655(); + ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity), Token 00001657 + public Class_11001655(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Collections.Generic.List..cctor() - Class_11001655(); + ///Method: private static System.Collections.Generic.List..cctor(), Token 00001848 + static Class_11001655() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IList public interface Class_33001655 : NanoInput.Class_17001655, NanoInput.Class_01001655, NanoInput.Class_000000E8 @@ -11889,26 +14282,29 @@ public ref struct Class_0E000014 ///Field: System.Int32 System.ReadOnlySpan._length public readonly NanoInput.Class_0E000014 Field_000016D9; - ///Method: internal System.ReadOnlySpan..ctor(System.Int32& ptr, System.Int32 length) - Class_0E000014(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public System.ReadOnlySpan..ctor(System.Int32[] array) - Class_0E000014(); - - ///Method: public System.ReadOnlySpan..ctor(System.Int32[] array, System.Int32 start, System.Int32 length) - Class_0E000014(); - - ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length) - Class_0E000014(); - - ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ReadOnlySpan.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: internal System.ReadOnlySpan..ctor(System.Int32& ptr, System.Int32 length), Token 000016D7 + public Class_0E000014(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj), Token 00001914 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode(), Token 00001915 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ReadOnlySpan.ToString(), Token 00001916 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.ValueListBuilder public ref struct Class_59000014 @@ -11922,8 +14318,11 @@ public ref struct Class_59000014 ///Field: System.Int32 System.Collections.Generic.ValueListBuilder._pos public NanoInput.Class_59000014 Field_000016C1; - ///Method: public System.Collections.Generic.ValueListBuilder..ctor(System.Span initialSpan) - Class_59000014(NanoInput.Class_02000014 Arg_0); + ///Method: public System.Collections.Generic.ValueListBuilder..ctor(System.Span initialSpan), Token 000016B3 + public Class_59000014(NanoInput.Class_02000014 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.String+ProbabilisticMap public struct Class_000016C4 @@ -11935,11 +14334,17 @@ public abstract class Class_32000014 ///Field: System.Buffers.TlsOverPerCoreLockedStacksArrayPool System.Buffers.ArrayPool.s_shared public static readonly NanoInput.Class_32000014 Field_000016CB; - ///Method: protected System.Buffers.ArrayPool..ctor() - Class_32000014(); + ///Method: protected System.Buffers.ArrayPool..ctor(), Token 0000184C + public Class_32000014() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Buffers.ArrayPool..cctor() - Class_32000014(); + ///Method: private static System.Buffers.ArrayPool..cctor(), Token 0000184D + static Class_32000014() + { + throw new System.NotImplementedException(); + } } ///System.IO.Path public abstract class Class_00001854 @@ -11959,8 +14364,11 @@ public abstract class Class_00001854 ///Field: System.Char[] System.IO.Path.InvalidPathChars public static readonly NanoInput.Class_00001854 Field_00001852; - ///Method: private static System.IO.Path..cctor() - Class_00001854(); + ///Method: private static System.IO.Path..cctor(), Token 00001853 + static Class_00001854() + { + throw new System.NotImplementedException(); + } } ///System.IO.Path+<>c public sealed class Class_00001859 @@ -11977,11 +14385,17 @@ public sealed class Class_00001859 ///Field: System.Buffers.SpanAction System.IO.Path+<>c.<>9__41_0 public static NanoInput.Class_00001859 Field_00001856; - ///Method: private static System.IO.Path+<>c..cctor() - Class_00001859(); + ///Method: private static System.IO.Path+<>c..cctor(), Token 00001857 + static Class_00001859() + { + throw new System.NotImplementedException(); + } - ///Method: public System.IO.Path+<>c..ctor() - Class_00001859(); + ///Method: public System.IO.Path+<>c..ctor(), Token 00001858 + public Class_00001859() + { + throw new System.NotImplementedException(); + } } ///System.IO.Path+Join3Payload public struct Class_0000185A @@ -12007,14 +14421,20 @@ public struct Class_0000185A ///Field: System.Byte System.IO.Path+Join3Payload.Separators public readonly NanoInput.Class_0000185A Field_0000170B; - ///Method: public System.IO.Path+Join3Payload..ctor(System.Char* first, System.Int32 firstLength, System.Char* second, System.Int32 secondLength, System.Char* third, System.Int32 thirdLength, System.Byte separators) - Class_0000185A(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000131 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000131 Arg_4, NanoInput.Class_00000014 Arg_5, NanoInput.Class_00000013 Arg_6); + ///Method: public System.IO.Path+Join3Payload..ctor(System.Char* first, System.Int32 firstLength, System.Char* second, System.Int32 secondLength, System.Char* third, System.Int32 thirdLength, System.Byte separators), Token 000016FF + public Class_0000185A(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000131 Arg_2, NanoInput.Class_00000014 Arg_3, NanoInput.Class_00000131 Arg_4, NanoInput.Class_00000014 Arg_5, NanoInput.Class_00000013 Arg_6) + { + throw new System.NotImplementedException(); + } } ///System.Buffers.SpanAction public sealed class Class_FF00185B : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Buffers.SpanAction..ctor(System.Object object, System.IntPtr method) - Class_FF00185B(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Buffers.SpanAction..ctor(System.Object object, System.IntPtr method), Token 00001703 + public Class_FF00185B(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.IO.File public abstract class Class_0000185D @@ -12028,8 +14448,11 @@ public abstract class Class_0000185F ///Field: System.String ArduinoCsCompiler.Runtime.MiniInterop+Sys.s_currentDirectory public static NanoInput.Class_0000185F Field_00001716; - ///Method: private static ArduinoCsCompiler.Runtime.MiniInterop+Sys..cctor() - Class_0000185F(); + ///Method: private static ArduinoCsCompiler.Runtime.MiniInterop+Sys..cctor(), Token 0000185E + static Class_0000185F() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry> public class Class_FF001861 : NanoInput.Class_FF001862, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12040,14 +14463,23 @@ public class Class_FF001861 : NanoInput.Class_FF001862, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF001861 Field_00001722; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.TimeZoneInfo, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001861(NanoInput.Class_FF001638 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.TimeZoneInfo, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001720 + public Class_FF001861(NanoInput.Class_FF001638 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 000018C9 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 000018CA + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF001862 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12068,17 +14500,17 @@ public class Class_1100162E : NanoInput.Class_3300162E, NanoInput.Class_1700162E ///Field: System.Int32 System.Collections.Generic.List._size public NanoInput.Class_1100162E Field_0000172E; - ///Method: public System.Collections.Generic.List..ctor() - Class_1100162E(); - - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_1100162E(); - - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_1100162E(); + ///Method: public System.Collections.Generic.List..ctor(), Token 00001628 + public Class_1100162E() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Collections.Generic.List..cctor() - Class_1100162E(); + ///Method: private static System.Collections.Generic.List..cctor(), Token 00001865 + static Class_1100162E() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IList public interface Class_3300162E : NanoInput.Class_1700162E, NanoInput.Class_0100162E, NanoInput.Class_000000E8 @@ -12109,14 +14541,23 @@ public class Class_2E00162E : NanoInput.Class_2F00162E, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E00162E Field_00001734; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.TimeZoneInfo[] array) - Class_2E00162E(NanoInput.Class_0000162E Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.TimeZoneInfo[] array), Token 00001732 + public Class_2E00162E(NanoInput.Class_0000162E Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 000018CF + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 000018D0 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///Interop+Kernel32+TIME_ZONE_INFORMATION public struct Class_0000173B @@ -12142,8 +14583,11 @@ public struct Class_0000173B ///Field: System.Int32 Interop+Kernel32+TIME_ZONE_INFORMATION.DaylightBias public NanoInput.Class_0000173B Field_00001740; - ///Method: internal Interop+Kernel32+TIME_ZONE_INFORMATION..ctor(Interop+Kernel32+TIME_DYNAMIC_ZONE_INFORMATION& dtzi) - Class_0000173B(NanoInput.Class_00001821 Arg_0); + ///Method: internal Interop+Kernel32+TIME_ZONE_INFORMATION..ctor(Interop+Kernel32+TIME_DYNAMIC_ZONE_INFORMATION& dtzi), Token 000015E5 + public Class_0000173B(NanoInput.Class_00001821 Arg_0) + { + throw new System.NotImplementedException(); + } } ///Interop+Kernel32+TIME_ZONE_INFORMATION+e__FixedBuffer public struct Class_00001867 @@ -12169,8 +14613,11 @@ public struct Class_00001869 ///Field: System.TimeSpan System.Globalization.DaylightTimeStruct.Delta public readonly NanoInput.Class_00001869 Field_0000177A; - ///Method: public System.Globalization.DaylightTimeStruct..ctor(System.DateTime start, System.DateTime end, System.TimeSpan delta) - Class_00001869(NanoInput.Class_000014AC Arg_0, NanoInput.Class_000014AC Arg_1, NanoInput.Class_00001598 Arg_2); + ///Method: public System.Globalization.DaylightTimeStruct..ctor(System.DateTime start, System.DateTime end, System.TimeSpan delta), Token 0000176B + public Class_00001869(NanoInput.Class_000014AC Arg_0, NanoInput.Class_000014AC Arg_1, NanoInput.Class_00001598 Arg_2) + { + throw new System.NotImplementedException(); + } } ///System.Globalization.CalendarData public sealed class Class_0000187F @@ -12235,14 +14682,17 @@ public sealed class Class_0000187F ///Field: System.Boolean System.Globalization.CalendarData.bUseUserOverrides public NanoInput.Class_0000187F Field_0000187B; - ///Method: private System.Globalization.CalendarData..ctor() - Class_0000187F(); + ///Method: private System.Globalization.CalendarData..ctor(), Token 0000187C + public Class_0000187F() + { + throw new System.NotImplementedException(); + } - ///Method: internal System.Globalization.CalendarData..ctor(System.String localeName, System.Globalization.CalendarId calendarId, System.Boolean bUseUserOverrides) - Class_0000187F(); - - ///Method: private static System.Globalization.CalendarData..cctor() - Class_0000187F(); + ///Method: private static System.Globalization.CalendarData..cctor(), Token 0000187E + static Class_0000187F() + { + throw new System.NotImplementedException(); + } } ///System.DayOfWeek public struct Class_000017D5 : NanoInput.Class_00000008, NanoInput.Class_00000130, NanoInput.Class_000001F8 @@ -12283,8 +14733,11 @@ public sealed class Class_00001881 ///Field: System.Int32 System.TimeZoneInfo+OffsetAndRule.Year public readonly NanoInput.Class_00001881 Field_000017F4; - ///Method: public System.TimeZoneInfo+OffsetAndRule..ctor(System.Int32 year, System.TimeSpan offset, System.TimeZoneInfo+AdjustmentRule rule) - Class_00001881(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00001598 Arg_1, NanoInput.Class_00001655 Arg_2); + ///Method: public System.TimeZoneInfo+OffsetAndRule..ctor(System.Int32 year, System.TimeSpan offset, System.TimeZoneInfo+AdjustmentRule rule), Token 000017F6 + public Class_00001881(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00001598 Arg_1, NanoInput.Class_00001655 Arg_2) + { + throw new System.NotImplementedException(); + } } ///System.Text.StringBuilder+AppendInterpolatedStringHandler public struct Class_00001883 @@ -12298,11 +14751,11 @@ public struct Class_00001883 ///Field: System.Boolean System.Text.StringBuilder+AppendInterpolatedStringHandler._hasCustomFormatter public readonly NanoInput.Class_00001883 Field_000017FB; - ///Method: public System.Text.StringBuilder+AppendInterpolatedStringHandler..ctor(System.Int32 literalLength, System.Int32 formattedCount, System.Text.StringBuilder stringBuilder, System.IFormatProvider provider) - Class_00001883(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000B5B Arg_2, NanoInput.Class_00000063 Arg_3); - - ///Method: public System.Text.StringBuilder+AppendInterpolatedStringHandler..ctor(System.Int32 literalLength, System.Int32 formattedCount, System.Text.StringBuilder stringBuilder) - Class_00001883(); + ///Method: public System.Text.StringBuilder+AppendInterpolatedStringHandler..ctor(System.Int32 literalLength, System.Int32 formattedCount, System.Text.StringBuilder stringBuilder, System.IFormatProvider provider), Token 000017E9 + public Class_00001883(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000B5B Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool public sealed class Class_4D000014 : NanoInput.Class_32000014 @@ -12319,14 +14772,23 @@ public sealed class Class_4D000014 : NanoInput.Class_32000014 ///Field: System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] System.Buffers.TlsOverPerCoreLockedStacksArrayPool.t_tlsBuckets public static NanoInput.Class_4D000014 Field_000018A8; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool..ctor() - Class_4D000014(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool..ctor(), Token 00001895 + public Class_4D000014() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Rent(System.Int32 minimumLength) - virtual NanoInput.Class_000009D7 Rent(NanoInput.Class_00000014 Arg_0); + ///Method: public virtual System.Int32[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Rent(System.Int32 minimumLength), Token 000018D8 + public virtual NanoInput.Class_000009D7 Rent(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Return(System.Int32[] array, System.Boolean clearArray) - virtual ? Return(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000021C Arg_1); + ///Method: public virtual void System.Buffers.TlsOverPerCoreLockedStacksArrayPool.Return(System.Int32[] array, System.Boolean clearArray), Token 000018E3 + public virtual void Return(NanoInput.Class_00000014 Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks public sealed class Class_4B000014 @@ -12337,11 +14799,17 @@ public sealed class Class_4B000014 ///Field: System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks.s_lockedStackCount public static readonly NanoInput.Class_4B000014 Field_000018AA; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..ctor() - Class_4B000014(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..ctor(), Token 000018AB + public Class_4B000014() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..cctor() - Class_4B000014(); + ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+PerCoreLockedStacks..cctor(), Token 000018AC + static Class_4B000014() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.ConditionalWeakTable public sealed class Class_FF0018AE : NanoInput.Class_FF0018B0, NanoInput.Class_000000E8 @@ -12355,11 +14823,17 @@ public sealed class Class_FF0018AE : NanoInput.Class_FF0018B0, NanoInput.Class_0 ///Field: System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable._activeEnumeratorRefCount public NanoInput.Class_FF0018AE Field_000018AD; - ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable..ctor() - Class_FF0018AE(); + ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable..ctor(), Token 00001896 + public Class_FF0018AE() + { + throw new System.NotImplementedException(); + } - ///Method: private virtual System.Collections.Generic.IEnumerator> System.Runtime.CompilerServices.ConditionalWeakTable.System.Collections.Generic.IEnumerable>.GetEnumerator() - virtual NanoInput.Class_FF001921 System.Collections.Generic.IEnumerable>.GetEnumerator(); + ///Method: private virtual System.Collections.Generic.IEnumerator> System.Runtime.CompilerServices.ConditionalWeakTable.System.Collections.Generic.IEnumerable>.GetEnumerator(), Token 0000191A + public virtual NanoInput.Class_FF001921 System.Collections.Generic.IEnumerable>.GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerable> public interface Class_FF0018B0 : NanoInput.Class_000000E8 @@ -12389,11 +14863,17 @@ public sealed class Class_FF0018B6 ///Field: System.Object System.Runtime.CompilerServices.ConditionalWeakTable+Container._oldKeepAlive public NanoInput.Class_FF0018B6 Field_000018B4; - ///Method: internal System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent) - Class_FF0018B6(NanoInput.Class_FF0018AE Arg_0); + ///Method: internal System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent), Token 0000189A + public Class_FF0018B6(NanoInput.Class_FF0018AE Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent, System.Int32[] buckets, System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] entries, System.Int32 firstFreeEntry) - Class_FF0018B6(NanoInput.Class_FF0018AE Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_FF00189E Arg_2, NanoInput.Class_00000014 Arg_3); + ///Method: private System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent, System.Int32[] buckets, System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] entries, System.Int32 firstFreeEntry), Token 000018B5 + public Class_FF0018B6(NanoInput.Class_FF0018AE Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_FF00189E Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.ConditionalWeakTable+Entry public struct Class_FF00189E @@ -12416,14 +14896,23 @@ public class Class_FF0018BB : NanoInput.Class_FF0018BC, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF0018BB Field_000018A3; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF0018BB(NanoInput.Class_FF00189E Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000018A1 + public Class_FF0018BB(NanoInput.Class_FF00189E Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 000018CB + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 000018CC + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF0018BC : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12438,14 +14927,23 @@ public class Class_FF0018BE : NanoInput.Class_FF0018BF, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>._current public NanoInput.Class_FF0018BE Field_000018A6; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF0018BE(NanoInput.Class_4B000014 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000018A4 + public Class_FF0018BE(NanoInput.Class_4B000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.MoveNext(), Token 000018C7 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+PerCoreLockedStacks>.Dispose(), Token 000018C8 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+PerCoreLockedStacks> public interface Class_FF0018BF : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12460,8 +14958,11 @@ public struct Class_53000014 ///Field: System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray.MillisecondsTimeStamp public NanoInput.Class_53000014 Field_000018D6; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray..ctor(System.Int32[] array) - Class_53000014(NanoInput.Class_00000014 Arg_0); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+ThreadLocalArray..ctor(System.Int32[] array), Token 000018D7 + public Class_53000014(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack public sealed class Class_54000014 @@ -12475,8 +14976,11 @@ public sealed class Class_54000014 ///Field: System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack._millisecondsTimestamp public NanoInput.Class_54000014 Field_000018DD; - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack..ctor() - Class_54000014(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+LockedStack..ctor(), Token 000018DE + public Class_54000014() + { + throw new System.NotImplementedException(); + } } ///System.Array+EmptyArray public abstract class Class_36000014 @@ -12484,8 +14988,11 @@ public abstract class Class_36000014 ///Field: System.Int32[] System.Array+EmptyArray.Value public static readonly NanoInput.Class_36000014 Field_000018DC; - ///Method: private static System.Array+EmptyArray..cctor() - Class_36000014(); + ///Method: private static System.Array+EmptyArray..cctor(), Token 000018DF + static Class_36000014() + { + throw new System.NotImplementedException(); + } } ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c public sealed class Class_55000014 @@ -12496,11 +15003,17 @@ public sealed class Class_55000014 ///Field: System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c.<>9 public static readonly NanoInput.Class_55000014 Field_000018E6; - ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..cctor() - Class_55000014(); + ///Method: private static System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..cctor(), Token 00001902 + static Class_55000014() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..ctor() - Class_55000014(); + ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool+<>c..ctor(), Token 00001903 + public Class_55000014() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray> public class Class_FF001905 : NanoInput.Class_FF001906, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12511,14 +15024,23 @@ public class Class_FF001905 : NanoInput.Class_FF001906, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>._current public NanoInput.Class_FF001905 Field_000018EA; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001905(NanoInput.Class_53000014 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000018E8 + public Class_FF001905(NanoInput.Class_53000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.MoveNext(), Token 0000197F + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+ThreadLocalArray>.Dispose(), Token 00001980 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+ThreadLocalArray> public interface Class_FF001906 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12527,8 +15049,6 @@ public interface Class_FF001906 : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] public sealed class Class_0000189D : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_FF001908, NanoInput.Class_FF001909, NanoInput.Class_FF00190A, NanoInput.Class_FF00190B, NanoInput.Class_FF00190C { - ///Method: public System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][]..ctor(System.Int32 ) - Class_0000189D(); } ///System.Collections.Generic.IList+ThreadLocalArray> public interface Class_FF001908 : NanoInput.Class_FF001909, NanoInput.Class_FF00190A, NanoInput.Class_000000E8 @@ -12559,11 +15079,17 @@ public struct Class_FF0018AF ///Field: System.Object System.Collections.Generic.KeyValuePair.value public readonly NanoInput.Class_FF0018AF Field_0000190D; - ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] key, System.Object value) - Class_FF0018AF(NanoInput.Class_53000014 Arg_0, NanoInput.Class_00000001 Arg_1); + ///Method: public System.Collections.Generic.KeyValuePair..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] key, System.Object value), Token 0000190E + public Class_FF0018AF(NanoInput.Class_53000014 Arg_0, NanoInput.Class_00000001 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Collections.Generic.KeyValuePair.ToString(), Token 00001987 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack> public class Class_FF001910 : NanoInput.Class_FF001911, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12574,14 +15100,23 @@ public class Class_FF001910 : NanoInput.Class_FF001911, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>._current public NanoInput.Class_FF001910 Field_000018FD; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001910(NanoInput.Class_54000014 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>..ctor(System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000018FB + public Class_FF001910(NanoInput.Class_54000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.MoveNext(), Token 0000197D + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+LockedStack>.Dispose(), Token 0000197E + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+LockedStack> public interface Class_FF001911 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12596,14 +15131,23 @@ public class Class_2E0009D7 : NanoInput.Class_2F0009D7, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E0009D7 Field_00001900; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Int32[][] array) - Class_2E0009D7(NanoInput.Class_000009D7 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Int32[][] array), Token 000018FE + public Class_2E0009D7(NanoInput.Class_000009D7 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00001984 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00001985 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F0009D7 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12624,17 +15168,29 @@ public sealed class Class_FF001920 : NanoInput.Class_FF001921, NanoInput.Class_0 ///Field: System.Collections.Generic.KeyValuePair System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator._current public NanoInput.Class_FF001920 Field_0000191F; - ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator..ctor(System.Runtime.CompilerServices.ConditionalWeakTable table) - Class_FF001920(NanoInput.Class_FF0018AE Arg_0); - - ///Method: public virtual void System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.Dispose() - virtual ? Dispose(); - - ///Method: public virtual System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Collections.Generic.KeyValuePair System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.get_Current() - ; + ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator..ctor(System.Runtime.CompilerServices.ConditionalWeakTable table), Token 00001918 + public Class_FF001920(NanoInput.Class_FF0018AE Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.Dispose(), Token 0000198C + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.MoveNext(), Token 0000198E + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Collections.Generic.KeyValuePair System.Runtime.CompilerServices.ConditionalWeakTable+Enumerator.get_Current(), Token 0000198F + public virtual NanoInput.Class_FF0018AF get_Current() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator> public interface Class_FF001921 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12646,8 +15202,11 @@ public abstract class Class_FF001923 ///Field: System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] System.Array+EmptyArray>.Value public static readonly NanoInput.Class_FF001923 Field_0000191E; - ///Method: private static System.Array+EmptyArray>..cctor() - Class_FF001923(); + ///Method: private static System.Array+EmptyArray>..cctor(), Token 00001922 + static Class_FF001923() + { + throw new System.NotImplementedException(); + } } ///System.Globalization.TimeSpanFormat public abstract class Class_00001933 @@ -12658,8 +15217,11 @@ public abstract class Class_00001933 ///Field: System.Globalization.TimeSpanFormat+FormatLiterals System.Globalization.TimeSpanFormat.NegativeInvariantFormatLiterals public static readonly NanoInput.Class_00001933 Field_00001931; - ///Method: private static System.Globalization.TimeSpanFormat..cctor() - Class_00001933(); + ///Method: private static System.Globalization.TimeSpanFormat..cctor(), Token 00001932 + static Class_00001933() + { + throw new System.NotImplementedException(); + } } ///System.ValueTuple public struct Class_FF001934 : NanoInput.Class_FF001935, NanoInput.Class_000000EA, NanoInput.Class_000000E9, NanoInput.Class_00000130, NanoInput.Class_FF001936, NanoInput.Class_00000788, NanoInput.Class_00000789 @@ -12670,17 +15232,29 @@ public struct Class_FF001934 : NanoInput.Class_FF001935, NanoInput.Class_000000E ///Field: System.UInt64 System.ValueTuple.Item2 public NanoInput.Class_FF001934 Field_0000192B; - ///Method: public System.ValueTuple..ctor(System.UInt64 item1, System.UInt64 item2) - Class_FF001934(NanoInput.Class_00000017 Arg_0, NanoInput.Class_00000017 Arg_1); - - ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ValueTuple.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ValueTuple..ctor(System.UInt64 item1, System.UInt64 item2), Token 0000192F + public Class_FF001934(NanoInput.Class_00000017 Arg_0, NanoInput.Class_00000017 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj), Token 00001994 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode(), Token 0000199C + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ValueTuple.ToString(), Token 0000199D + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF001935 @@ -12699,32 +15273,33 @@ public ref struct Class_02001655 ///Field: System.Int32 System.Span._length public readonly NanoInput.Class_02001655 Field_0000194C; - ///Method: public System.Span..ctor(System.TimeZoneInfo+AdjustmentRule[] array) - Class_02001655(NanoInput.Class_00001655 Arg_0); - - ///Method: public System.Span..ctor(System.TimeZoneInfo+AdjustmentRule[] array, System.Int32 start, System.Int32 length) - Class_02001655(); - - ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length) - Class_02001655(); - - ///Method: internal System.Span..ctor(System.TimeZoneInfo+AdjustmentRule& ptr, System.Int32 length) - Class_02001655(); - - ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Span.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Span.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Span..ctor(System.TimeZoneInfo+AdjustmentRule[] array), Token 00001948 + public Class_02001655(NanoInput.Class_00001655 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj), Token 00001990 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Span.GetHashCode(), Token 00001991 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Span.ToString(), Token 00001992 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.TimeZoneInfo+AdjustmentRule[] public sealed class Class_00001949 : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_33001655, NanoInput.Class_17001655, NanoInput.Class_01001655, NanoInput.Class_34001655, NanoInput.Class_35001655 { - ///Method: public System.TimeZoneInfo+AdjustmentRule[]..ctor(System.Int32 ) - Class_00001949(); } ///System.ByReference public ref struct Class_30001655 @@ -12732,8 +15307,11 @@ public ref struct Class_30001655 ///Field: System.IntPtr System.ByReference._value public readonly NanoInput.Class_30001655 Field_00001960; - ///Method: public System.ByReference..ctor(System.TimeZoneInfo+AdjustmentRule& value) - Class_30001655(NanoInput.Class_00001655 Arg_0); + ///Method: public System.ByReference..ctor(System.TimeZoneInfo+AdjustmentRule& value), Token 0000194A + public Class_30001655(NanoInput.Class_00001655 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.ReadOnlySpan public ref struct Class_0E001655 @@ -12744,26 +15322,29 @@ public ref struct Class_0E001655 ///Field: System.Int32 System.ReadOnlySpan._length public readonly NanoInput.Class_0E001655 Field_0000194F; - ///Method: public System.ReadOnlySpan..ctor(System.TimeZoneInfo+AdjustmentRule[] array) - Class_0E001655(NanoInput.Class_00001655 Arg_0); - - ///Method: public System.ReadOnlySpan..ctor(System.TimeZoneInfo+AdjustmentRule[] array, System.Int32 start, System.Int32 length) - Class_0E001655(); - - ///Method: public System.ReadOnlySpan..ctor(System.Void* pointer, System.Int32 length) - Class_0E001655(); - - ///Method: internal System.ReadOnlySpan..ctor(System.TimeZoneInfo+AdjustmentRule& ptr, System.Int32 length) - Class_0E001655(); - - ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ReadOnlySpan.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ReadOnlySpan..ctor(System.TimeZoneInfo+AdjustmentRule[] array), Token 0000194D + public Class_0E001655(NanoInput.Class_00001655 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ReadOnlySpan.Equals(System.Object obj), Token 00001988 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ReadOnlySpan.GetHashCode(), Token 00001989 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ReadOnlySpan.ToString(), Token 0000198A + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator> public class Class_FF001970 : NanoInput.Class_FF001921, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -12774,17 +15355,29 @@ public class Class_FF001970 : NanoInput.Class_FF001921, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>._current public NanoInput.Class_FF001970 Field_0000196E; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>..ctor(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001970(NanoInput.Class_FF0018AF Arg_0); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Collections.Generic.KeyValuePair ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.get_Current() - ; - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.Dispose() - virtual ? Dispose(); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>..ctor(System.Collections.Generic.KeyValuePair`2[[System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 0000196C + public Class_FF001970(NanoInput.Class_FF0018AF Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.MoveNext(), Token 00001981 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Collections.Generic.KeyValuePair ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.get_Current(), Token 00001982 + public virtual NanoInput.Class_FF0018AF get_Current() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator>.Dispose(), Token 00001983 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Globalization.TimeSpanFormat+FormatLiterals public struct Class_00001972 @@ -12816,11 +15409,11 @@ public abstract class Class_06000017 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06000017 Field_00001997; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06000017(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06000017(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 00001999 + static Class_06000017() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_05000017 @@ -12829,29 +15422,38 @@ public interface Class_05000017 ///System.Collections.Generic.GenericEqualityComparer public sealed class Class_08000017 : NanoInput.Class_06000017, NanoInput.Class_000000D1, NanoInput.Class_05000017 { - ///Method: public System.Collections.Generic.GenericEqualityComparer..ctor() - Class_08000017(); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.UInt64 x, System.UInt64 y), Token 000019A0 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000017 Arg_0, NanoInput.Class_00000017 Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.UInt64 x, System.UInt64 y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000017 Arg_0, NanoInput.Class_00000017 Arg_1); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj), Token 000019A2 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.GenericEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericEqualityComparer.GetHashCode(), Token 000019A3 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.GenericComparer public sealed class Class_09000017 : NanoInput.Class_000000DE, NanoInput.Class_0A000017 { - ///Method: public System.Collections.Generic.GenericComparer..ctor() - Class_09000017(); - - ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.GenericComparer.Equals(System.Object obj), Token 0000199E + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.GenericComparer.GetHashCode(), Token 0000199F + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IComparer public interface Class_0A000017 @@ -12872,8 +15474,11 @@ public abstract class Class_00001B99 ///Field: System.Action System.Threading.ThreadPool.s_invokeAsyncStateMachineBox public static readonly NanoInput.Class_00001B99 Field_00001B97; - ///Method: private static System.Threading.ThreadPool..cctor() - Class_00001B99(); + ///Method: private static System.Threading.ThreadPool..cctor(), Token 00001B98 + static Class_00001B99() + { + throw new System.NotImplementedException(); + } } ///System.Threading.ThreadPoolWorkQueue public sealed class Class_00001B9D @@ -12893,8 +15498,11 @@ public sealed class Class_00001B9D ///Field: System.Collections.Concurrent.ConcurrentQueue System.Threading.ThreadPoolWorkQueue.timeSensitiveWorkQueue public readonly NanoInput.Class_00001B9D Field_00001B9B; - ///Method: public System.Threading.ThreadPoolWorkQueue..ctor() - Class_00001B9D(); + ///Method: public System.Threading.ThreadPoolWorkQueue..ctor(), Token 00001B9C + public Class_00001B9D() + { + throw new System.NotImplementedException(); + } } ///System.Diagnostics.Tracing.FrameworkEventSource public sealed class Class_00001BA1 : NanoInput.Class_0000003A @@ -12902,14 +15510,17 @@ public sealed class Class_00001BA1 : NanoInput.Class_0000003A ///Field: System.Diagnostics.Tracing.FrameworkEventSource System.Diagnostics.Tracing.FrameworkEventSource.Log public static readonly NanoInput.Class_00001BA1 Field_000019AE; - ///Method: private System.Diagnostics.Tracing.FrameworkEventSource..ctor(System.Int32 _) - Class_00001BA1(); + ///Method: private System.Diagnostics.Tracing.FrameworkEventSource..ctor(), Token 00001B9F + public Class_00001BA1() + { + throw new System.NotImplementedException(); + } - ///Method: private System.Diagnostics.Tracing.FrameworkEventSource..ctor() - Class_00001BA1(); - - ///Method: private static System.Diagnostics.Tracing.FrameworkEventSource..cctor() - Class_00001BA1(); + ///Method: private static System.Diagnostics.Tracing.FrameworkEventSource..cctor(), Token 00001BA0 + static Class_00001BA1() + { + throw new System.NotImplementedException(); + } } ///System.Threading.ThreadPoolWorkQueueThreadLocals public sealed class Class_00001BA7 @@ -12932,8 +15543,11 @@ public sealed class Class_00001BA7 ///Field: System.Random+XoshiroImpl System.Threading.ThreadPoolWorkQueueThreadLocals.random public readonly NanoInput.Class_00001BA7 Field_00001BA5; - ///Method: public System.Threading.ThreadPoolWorkQueueThreadLocals..ctor(System.Threading.ThreadPoolWorkQueue tpq) - Class_00001BA7(NanoInput.Class_00001B9D Arg_0); + ///Method: public System.Threading.ThreadPoolWorkQueueThreadLocals..ctor(System.Threading.ThreadPoolWorkQueue tpq), Token 00001BA6 + public Class_00001BA7(NanoInput.Class_00001B9D Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Threading.ThreadPoolWorkQueue+WorkStealingQueue public sealed class Class_00001BA9 @@ -12953,8 +15567,11 @@ public sealed class Class_00001BA9 ///Field: System.Threading.SpinLock System.Threading.ThreadPoolWorkQueue+WorkStealingQueue.m_foreignLock public NanoInput.Class_00001BA9 Field_000019BE; - ///Method: public System.Threading.ThreadPoolWorkQueue+WorkStealingQueue..ctor() - Class_00001BA9(); + ///Method: public System.Threading.ThreadPoolWorkQueue+WorkStealingQueue..ctor(), Token 00001BA8 + public Class_00001BA9() + { + throw new System.NotImplementedException(); + } } ///System.Threading.SpinLock public struct Class_00001BAB @@ -12962,38 +15579,29 @@ public struct Class_00001BAB ///Field: System.Int32 System.Threading.SpinLock._owner public NanoInput.Class_00001BAB Field_000019C1; - ///Method: public System.Threading.SpinLock..ctor(System.Boolean enableThreadOwnerTracking) - Class_00001BAB(NanoInput.Class_0000021C Arg_0); + ///Method: public System.Threading.SpinLock..ctor(System.Boolean enableThreadOwnerTracking), Token 00001BAA + public Class_00001BAB(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Threading.LockRecursionException public class Class_00001BAF : NanoInput.Class_0000001E, NanoInput.Class_00000085 { - ///Method: public System.Threading.LockRecursionException..ctor(System.String message) - Class_00001BAF(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.Threading.LockRecursionException..ctor() - Class_00001BAF(); - - ///Method: public System.Threading.LockRecursionException..ctor(System.String message, System.Exception innerException) - Class_00001BAF(); - - ///Method: protected System.Threading.LockRecursionException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001BAF(); + ///Method: public System.Threading.LockRecursionException..ctor(System.String message), Token 000019CF + public Class_00001BAF(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Threading.SynchronizationLockException public class Class_00001BB3 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: public System.Threading.SynchronizationLockException..ctor(System.String message) - Class_00001BB3(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.Threading.SynchronizationLockException..ctor() - Class_00001BB3(); - - ///Method: public System.Threading.SynchronizationLockException..ctor(System.String message, System.Exception innerException) - Class_00001BB3(); - - ///Method: protected System.Threading.SynchronizationLockException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001BB3(); + ///Method: public System.Threading.SynchronizationLockException..ctor(System.String message), Token 000019D5 + public Class_00001BB3(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Concurrent.ConcurrentQueue public class Class_5C000001 : NanoInput.Class_5D000001, NanoInput.Class_01000001, NanoInput.Class_000000E8, NanoInput.Class_000000E7, NanoInput.Class_35000001 @@ -13007,11 +15615,11 @@ public class Class_5C000001 : NanoInput.Class_5D000001, NanoInput.Class_01000001 ///Field: System.Collections.Concurrent.ConcurrentQueueSegment System.Collections.Concurrent.ConcurrentQueue._head public NanoInput.Class_5C000001 Field_00001BB4; - ///Method: public System.Collections.Concurrent.ConcurrentQueue..ctor() - Class_5C000001(); - - ///Method: public System.Collections.Concurrent.ConcurrentQueue..ctor(System.Collections.Generic.IEnumerable collection) - Class_5C000001(); + ///Method: public System.Collections.Concurrent.ConcurrentQueue..ctor(), Token 00001BB5 + public Class_5C000001() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Concurrent.IProducerConsumerCollection public interface Class_5D000001 : NanoInput.Class_01000001, NanoInput.Class_000000E8, NanoInput.Class_000000E7 @@ -13038,8 +15646,11 @@ public sealed class Class_5E000001 ///Field: System.Boolean System.Collections.Concurrent.ConcurrentQueueSegment._frozenForEnqueues public NanoInput.Class_5E000001 Field_000019E7; - ///Method: internal System.Collections.Concurrent.ConcurrentQueueSegment..ctor(System.Int32 boundedLength) - Class_5E000001(NanoInput.Class_00000014 Arg_0); + ///Method: internal System.Collections.Concurrent.ConcurrentQueueSegment..ctor(System.Int32 boundedLength), Token 000019E5 + public Class_5E000001(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Concurrent.PaddedHeadAndTail public struct Class_00001BB8 @@ -13068,14 +15679,23 @@ public class Class_FF001BBA : NanoInput.Class_FF001BBB, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>._current public NanoInput.Class_FF001BBA Field_000019EB; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>..ctor(System.Collections.Concurrent.ConcurrentQueueSegment`1+Slot[[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001BBA(NanoInput.Class_5B000001 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>..ctor(System.Collections.Concurrent.ConcurrentQueueSegment`1+Slot[[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 000019E9 + public Class_FF001BBA(NanoInput.Class_5B000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>.MoveNext(), Token 00001C63 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>.Dispose(), Token 00001C64 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Slot> public interface Class_FF001BBB : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -13162,11 +15782,17 @@ public sealed class Class_00001BCB ///Field: System.Object System.Threading.PortableThreadPool.t_completionCountObject public static NanoInput.Class_00001BCB Field_00001BC8; - ///Method: private System.Threading.PortableThreadPool..ctor() - Class_00001BCB(); + ///Method: private System.Threading.PortableThreadPool..ctor(), Token 00001BC9 + public Class_00001BCB() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.PortableThreadPool..cctor() - Class_00001BCB(); + ///Method: private static System.Threading.PortableThreadPool..cctor(), Token 00001BCA + static Class_00001BCB() + { + throw new System.NotImplementedException(); + } } ///System.Threading.PortableThreadPool+CacheLineSeparated public struct Class_00001BCF @@ -13204,8 +15830,11 @@ public abstract class Class_00001BD2 ///Field: System.Int16 System.Threading.PortableThreadPool+WorkerThread.ThreadsToKeepAlive public static readonly NanoInput.Class_00001BD2 Field_00001BD0; - ///Method: private static System.Threading.PortableThreadPool+WorkerThread..cctor() - Class_00001BD2(); + ///Method: private static System.Threading.PortableThreadPool+WorkerThread..cctor(), Token 00001BD1 + static Class_00001BD2() + { + throw new System.NotImplementedException(); + } } ///System.Threading.PortableThreadPool+ThreadCounts public struct Class_00001A8C @@ -13213,14 +15842,23 @@ public struct Class_00001A8C ///Field: System.UInt64 System.Threading.PortableThreadPool+ThreadCounts._data public NanoInput.Class_00001A8C Field_00001A05; - ///Method: private System.Threading.PortableThreadPool+ThreadCounts..ctor(System.UInt64 data) - Class_00001A8C(NanoInput.Class_00000017 Arg_0); + ///Method: private System.Threading.PortableThreadPool+ThreadCounts..ctor(System.UInt64 data), Token 00001A08 + public Class_00001A8C(NanoInput.Class_00000017 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Threading.PortableThreadPool+ThreadCounts.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Threading.PortableThreadPool+ThreadCounts.Equals(System.Object obj), Token 00001CED + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Threading.PortableThreadPool+ThreadCounts.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Threading.PortableThreadPool+ThreadCounts.GetHashCode(), Token 00001CEE + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Threading.LowLevelLifoSemaphore public sealed class Class_00001BD7 : NanoInput.Class_0000003A @@ -13240,11 +15878,17 @@ public sealed class Class_00001BD7 : NanoInput.Class_0000003A ///Field: System.Action System.Threading.LowLevelLifoSemaphore._onWait public readonly NanoInput.Class_00001BD7 Field_00001BD5; - ///Method: public System.Threading.LowLevelLifoSemaphore..ctor(System.Int32 initialSignalCount, System.Int32 maximumSignalCount, System.Int32 spinCount, System.Action onWait) - Class_00001BD7(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000F8F Arg_3); + ///Method: public System.Threading.LowLevelLifoSemaphore..ctor(System.Int32 initialSignalCount, System.Int32 maximumSignalCount, System.Int32 spinCount, System.Action onWait), Token 00001BD6 + public Class_00001BD7(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_00000F8F Arg_3) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Threading.LowLevelLifoSemaphore.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Threading.LowLevelLifoSemaphore.Dispose(), Token 00001CE8 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Threading.LowLevelLifoSemaphore+CacheLineSeparatedCounts public struct Class_00001BDA @@ -13264,26 +15908,27 @@ public struct Class_00001BDB ///Field: System.UInt64 System.Threading.LowLevelLifoSemaphore+Counts._data public NanoInput.Class_00001BDB Field_00001A15; - ///Method: private System.Threading.LowLevelLifoSemaphore+Counts..ctor(System.UInt64 data) - Class_00001BDB(NanoInput.Class_00000017 Arg_0); + ///Method: private System.Threading.LowLevelLifoSemaphore+Counts..ctor(System.UInt64 data), Token 00001A19 + public Class_00001BDB(NanoInput.Class_00000017 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Threading.LowLevelLifoSemaphore+Counts.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Threading.LowLevelLifoSemaphore+Counts.Equals(System.Object obj), Token 00001CE9 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Threading.LowLevelLifoSemaphore+Counts.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Threading.LowLevelLifoSemaphore+Counts.GetHashCode(), Token 00001CEA + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Threading.ThreadStartException public sealed class Class_00001A20 : NanoInput.Class_0000010A, NanoInput.Class_00000085 { - ///Method: internal System.Threading.ThreadStartException..ctor() - Class_00001A20(); - - ///Method: internal System.Threading.ThreadStartException..ctor(System.Exception reason) - Class_00001A20(); - - ///Method: private System.Threading.ThreadStartException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001A20(); } ///System.Threading.Thread+StartHelper public sealed class Class_00001BE3 @@ -13309,11 +15954,17 @@ public sealed class Class_00001BE3 ///Field: System.Threading.ContextCallback System.Threading.Thread+StartHelper.s_threadStartContextCallback public static readonly NanoInput.Class_00001BE3 Field_00001BE1; - ///Method: internal System.Threading.Thread+StartHelper..ctor(System.Delegate start) - Class_00001BE3(NanoInput.Class_0000000B Arg_0); + ///Method: internal System.Threading.Thread+StartHelper..ctor(System.Delegate start), Token 00001A22 + public Class_00001BE3(NanoInput.Class_0000000B Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.Thread+StartHelper..cctor() - Class_00001BE3(); + ///Method: private static System.Threading.Thread+StartHelper..cctor(), Token 00001BE2 + static Class_00001BE3() + { + throw new System.NotImplementedException(); + } } ///System.Threading.ThreadHandle public struct Class_00001BE4 @@ -13321,8 +15972,11 @@ public struct Class_00001BE4 ///Field: System.IntPtr System.Threading.ThreadHandle._ptr public readonly NanoInput.Class_00001BE4 Field_00001A2F; - ///Method: internal System.Threading.ThreadHandle..ctor(System.IntPtr pThread) - Class_00001BE4(NanoInput.Class_000005BD Arg_0); + ///Method: internal System.Threading.ThreadHandle..ctor(System.IntPtr pThread), Token 00001A2E + public Class_00001BE4(NanoInput.Class_000005BD Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Threading.PortableThreadPool+GateThread public abstract class Class_00001BE6 @@ -13333,8 +15987,11 @@ public abstract class Class_00001BE6 ///Field: System.Threading.AutoResetEvent System.Threading.PortableThreadPool+GateThread.DelayEvent public static readonly NanoInput.Class_00001BE6 Field_00001A42; - ///Method: private static System.Threading.PortableThreadPool+GateThread..cctor() - Class_00001BE6(); + ///Method: private static System.Threading.PortableThreadPool+GateThread..cctor(), Token 00001BE5 + static Class_00001BE6() + { + throw new System.NotImplementedException(); + } } ///System.Threading.PortableThreadPool+CpuUtilizationReader public struct Class_00001A39 @@ -13384,8 +16041,11 @@ public abstract class Class_00001BE8 ///Field: System.UInt32 System.Threading.PortableThreadPool+BlockingConfig.MaxDelayMs public static readonly NanoInput.Class_00001BE8 Field_00001A8A; - ///Method: private static System.Threading.PortableThreadPool+BlockingConfig..cctor() - Class_00001BE8(); + ///Method: private static System.Threading.PortableThreadPool+BlockingConfig..cctor(), Token 00001BE7 + static Class_00001BE8() + { + throw new System.NotImplementedException(); + } } ///System.Diagnostics.Tracing.NativeRuntimeEventSource public sealed class Class_00001BEC : NanoInput.Class_0000003A @@ -13393,14 +16053,17 @@ public sealed class Class_00001BEC : NanoInput.Class_0000003A ///Field: System.Diagnostics.Tracing.NativeRuntimeEventSource System.Diagnostics.Tracing.NativeRuntimeEventSource.Log public static readonly NanoInput.Class_00001BEC Field_00001A4D; - ///Method: private System.Diagnostics.Tracing.NativeRuntimeEventSource..ctor() - Class_00001BEC(); + ///Method: private System.Diagnostics.Tracing.NativeRuntimeEventSource..ctor(), Token 00001BE9 + public Class_00001BEC() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Diagnostics.Tracing.NativeRuntimeEventSource..cctor() - Class_00001BEC(); - - ///Method: private System.Diagnostics.Tracing.NativeRuntimeEventSource..ctor(System.Int32 _) - Class_00001BEC(); + ///Method: private static System.Diagnostics.Tracing.NativeRuntimeEventSource..cctor(), Token 00001BEA + static Class_00001BEC() + { + throw new System.NotImplementedException(); + } } ///System.Threading.PortableThreadPool+HillClimbing public sealed class Class_00001BFE @@ -13495,20 +16158,23 @@ public sealed class Class_00001BFE ///Field: System.Boolean System.Threading.PortableThreadPool+HillClimbing.IsDisabled public static readonly NanoInput.Class_00001BFE Field_00001BFB; - ///Method: public System.Threading.PortableThreadPool+HillClimbing..ctor() - Class_00001BFE(); + ///Method: public System.Threading.PortableThreadPool+HillClimbing..ctor(), Token 00001BFC + public Class_00001BFE() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.PortableThreadPool+HillClimbing..cctor() - Class_00001BFE(); + ///Method: private static System.Threading.PortableThreadPool+HillClimbing..cctor(), Token 00001BFD + static Class_00001BFE() + { + throw new System.NotImplementedException(); + } } ///System.Threading.SynchronizationContext public class Class_00001B5C { ///Field: System.Boolean System.Threading.SynchronizationContext._requireWaitNotification public NanoInput.Class_00001B5C Field_00001A69; - - ///Method: public System.Threading.SynchronizationContext..ctor() - Class_00001B5C(); } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E0005BD : NanoInput.Class_2F0005BD, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -13519,14 +16185,23 @@ public class Class_2E0005BD : NanoInput.Class_2F0005BD, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E0005BD Field_00001A6C; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.IntPtr[] array) - Class_2E0005BD(NanoInput.Class_000005BD Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.IntPtr[] array), Token 00001A6A + public Class_2E0005BD(NanoInput.Class_000005BD Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00001C66 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00001C67 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F0005BD : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -13541,32 +16216,33 @@ public ref struct Class_020005BD ///Field: System.Int32 System.Span._length public readonly NanoInput.Class_020005BD Field_00001A74; - ///Method: public System.Span..ctor(System.IntPtr[] array) - Class_020005BD(NanoInput.Class_000005BD Arg_0); - - ///Method: public System.Span..ctor(System.IntPtr[] array, System.Int32 start, System.Int32 length) - Class_020005BD(); - - ///Method: public System.Span..ctor(System.Void* pointer, System.Int32 length) - Class_020005BD(); - - ///Method: internal System.Span..ctor(System.IntPtr& ptr, System.Int32 length) - Class_020005BD(); - - ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Span.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Span.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.Span..ctor(System.IntPtr[] array), Token 00001A70 + public Class_020005BD(NanoInput.Class_000005BD Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Span.Equals(System.Object obj), Token 00001CC6 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Span.GetHashCode(), Token 00001CC7 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Span.ToString(), Token 00001CC8 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IntPtr[] public sealed class Class_00001A71 : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_330005BD, NanoInput.Class_170005BD, NanoInput.Class_010005BD, NanoInput.Class_340005BD, NanoInput.Class_350005BD { - ///Method: public System.IntPtr[]..ctor(System.Int32 ) - Class_00001A71(); } ///System.Collections.Generic.IList public interface Class_330005BD : NanoInput.Class_170005BD, NanoInput.Class_010005BD, NanoInput.Class_000000E8 @@ -13594,8 +16270,11 @@ public ref struct Class_300005BD ///Field: System.IntPtr System.ByReference._value public readonly NanoInput.Class_300005BD Field_00001C05; - ///Method: public System.ByReference..ctor(System.IntPtr& value) - Class_300005BD(NanoInput.Class_000005BD Arg_0); + ///Method: public System.ByReference..ctor(System.IntPtr& value), Token 00001A72 + public Class_300005BD(NanoInput.Class_000005BD Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Threading.AbandonedMutexException public class Class_00001C0D : NanoInput.Class_0000010A, NanoInput.Class_00000085 @@ -13606,26 +16285,11 @@ public class Class_00001C0D : NanoInput.Class_0000010A, NanoInput.Class_00000085 ///Field: System.Threading.Mutex System.Threading.AbandonedMutexException._mutex public NanoInput.Class_00001C0D Field_00001C06; - ///Method: public System.Threading.AbandonedMutexException..ctor() - Class_00001C0D(); - - ///Method: public System.Threading.AbandonedMutexException..ctor(System.String message) - Class_00001C0D(); - - ///Method: public System.Threading.AbandonedMutexException..ctor(System.String message, System.Exception inner) - Class_00001C0D(); - - ///Method: public System.Threading.AbandonedMutexException..ctor(System.Int32 location, System.Threading.WaitHandle handle) - Class_00001C0D(); - - ///Method: public System.Threading.AbandonedMutexException..ctor(System.String message, System.Int32 location, System.Threading.WaitHandle handle) - Class_00001C0D(); - - ///Method: public System.Threading.AbandonedMutexException..ctor(System.String message, System.Exception inner, System.Int32 location, System.Threading.WaitHandle handle) - Class_00001C0D(); - - ///Method: protected System.Threading.AbandonedMutexException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001C0D(); + ///Method: public System.Threading.AbandonedMutexException..ctor(), Token 00001A67 + public Class_00001C0D() + { + throw new System.NotImplementedException(); + } } ///System.Random public class Class_00001C13 @@ -13636,17 +16300,23 @@ public class Class_00001C13 ///Field: System.Random System.Random.k__BackingField public static readonly NanoInput.Class_00001C13 Field_00001C0E; - ///Method: public System.Random..ctor() - Class_00001C13(); + ///Method: public System.Random..ctor(), Token 00001C0F + public Class_00001C13() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Random..ctor(System.Int32 Seed) - Class_00001C13(); + ///Method: System.Random..ctor(System.Boolean isThreadSafeRandom), Token 00001C11 + public Class_00001C13(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: System.Random..ctor(System.Boolean isThreadSafeRandom) - Class_00001C13(NanoInput.Class_0000021C Arg_0); - - ///Method: private static System.Random..cctor() - Class_00001C13(); + ///Method: private static System.Random..cctor(), Token 00001C12 + static Class_00001C13() + { + throw new System.NotImplementedException(); + } } ///System.Threading.PortableThreadPool+HillClimbing+LogEntry public struct Class_00001A9E @@ -13672,20 +16342,32 @@ public struct Class_00001C14 ///Field: System.UInt32 System.Threading.PortableThreadPool+CountsOfThreadsProcessingUserCallbacks._data public NanoInput.Class_00001C14 Field_00001AB3; - ///Method: private System.Threading.PortableThreadPool+CountsOfThreadsProcessingUserCallbacks..ctor(System.UInt32 data) - Class_00001C14(NanoInput.Class_00000015 Arg_0); + ///Method: private System.Threading.PortableThreadPool+CountsOfThreadsProcessingUserCallbacks..ctor(System.UInt32 data), Token 00001AB5 + public Class_00001C14(NanoInput.Class_00000015 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Threading.PortableThreadPool+CountsOfThreadsProcessingUserCallbacks.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Threading.PortableThreadPool+CountsOfThreadsProcessingUserCallbacks.Equals(System.Object obj), Token 00001CEB + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Threading.PortableThreadPool+CountsOfThreadsProcessingUserCallbacks.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Threading.PortableThreadPool+CountsOfThreadsProcessingUserCallbacks.GetHashCode(), Token 00001CEC + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Threading.ThreadStart public sealed class Class_00001C15 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Threading.ThreadStart..ctor(System.Object object, System.IntPtr method) - Class_00001C15(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Threading.ThreadStart..ctor(System.Object object, System.IntPtr method), Token 00001A36 + public Class_00001C15(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniTimerQueue+FireAfterTimeout public class Class_00001C16 @@ -13708,8 +16390,11 @@ public class Class_00001C16 ///Field: System.UInt32 ArduinoCsCompiler.Runtime.MiniTimerQueue+FireAfterTimeout.k__BackingField public NanoInput.Class_00001C16 Field_00001AC7; - ///Method: public ArduinoCsCompiler.Runtime.MiniTimerQueue+FireAfterTimeout..ctor(System.UInt32 duration, System.Int32 id) - Class_00001C16(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public ArduinoCsCompiler.Runtime.MiniTimerQueue+FireAfterTimeout..ctor(System.UInt32 duration, System.Int32 id), Token 00001ABD + public Class_00001C16(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.List public class Class_11000628 : NanoInput.Class_33000628, NanoInput.Class_17000628, NanoInput.Class_01000628, NanoInput.Class_000000E8, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_34000628, NanoInput.Class_35000628 @@ -13726,17 +16411,17 @@ public class Class_11000628 : NanoInput.Class_33000628, NanoInput.Class_17000628 ///Field: System.Int32 System.Collections.Generic.List._size public NanoInput.Class_11000628 Field_00001AE3; - ///Method: public System.Collections.Generic.List..ctor() - Class_11000628(); - - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_11000628(); + ///Method: public System.Collections.Generic.List..ctor(), Token 00001ADC + public Class_11000628() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_11000628(); - - ///Method: private static System.Collections.Generic.List..cctor() - Class_11000628(); + ///Method: private static System.Collections.Generic.List..cctor(), Token 00001C19 + static Class_11000628() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IList public interface Class_33000628 : NanoInput.Class_17000628, NanoInput.Class_01000628, NanoInput.Class_000000E8 @@ -13767,14 +16452,23 @@ public class Class_2E000628 : NanoInput.Class_2F000628, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E000628 Field_00001AE9; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.Tasks.Task[] array) - Class_2E000628(NanoInput.Class_00000628 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.Tasks.Task[] array), Token 00001AE7 + public Class_2E000628(NanoInput.Class_00000628 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00001C6B + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00001C6C + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F000628 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -13795,14 +16489,17 @@ public sealed class Class_00001C1F : NanoInput.Class_0000003A ///Field: System.Boolean System.Threading.Tasks.TplEventSource.DebugActivityId public NanoInput.Class_00001C1F Field_00001C1B; - ///Method: private System.Threading.Tasks.TplEventSource..ctor(System.Int32 _) - Class_00001C1F(); - - ///Method: private System.Threading.Tasks.TplEventSource..ctor() - Class_00001C1F(); + ///Method: private System.Threading.Tasks.TplEventSource..ctor(), Token 00001C1D + public Class_00001C1F() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.Tasks.TplEventSource..cctor() - Class_00001C1F(); + ///Method: private static System.Threading.Tasks.TplEventSource..cctor(), Token 00001C1E + static Class_00001C1F() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.List+Enumerator public struct Class_14000628 : NanoInput.Class_2F000628, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -13819,14 +16516,23 @@ public struct Class_14000628 : NanoInput.Class_2F000628, NanoInput.Class_0000003 ///Field: System.Threading.Tasks.Task System.Collections.Generic.List+Enumerator._current public NanoInput.Class_14000628 Field_00001AFD; - ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list) - Class_14000628(NanoInput.Class_11000628 Arg_0); + ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list), Token 00001AF9 + public Class_14000628(NanoInput.Class_11000628 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext(), Token 00001AF8 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose(), Token 00001C8F + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.TaskExceptionHolder public sealed class Class_00001B0E @@ -13843,8 +16549,11 @@ public sealed class Class_00001B0E ///Field: System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Threading.Tasks.TaskExceptionHolder.m_cancellationException public NanoInput.Class_00001B0E Field_00001B11; - ///Method: internal System.Threading.Tasks.TaskExceptionHolder..ctor(System.Threading.Tasks.Task task) - Class_00001B0E(NanoInput.Class_00000628 Arg_0); + ///Method: internal System.Threading.Tasks.TaskExceptionHolder..ctor(System.Threading.Tasks.Task task), Token 00001B08 + public Class_00001B0E(NanoInput.Class_00000628 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.List public class Class_11001488 : NanoInput.Class_33001488, NanoInput.Class_17001488, NanoInput.Class_01001488, NanoInput.Class_000000E8, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_34001488, NanoInput.Class_35001488 @@ -13861,26 +16570,35 @@ public class Class_11001488 : NanoInput.Class_33001488, NanoInput.Class_17001488 ///Field: System.Int32 System.Collections.Generic.List._version public NanoInput.Class_11001488 Field_00001B1B; - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_11001488(NanoInput.Class_00000014 Arg_0); - - ///Method: public System.Collections.Generic.List..ctor() - Class_11001488(); - - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_11001488(); - - ///Method: private static System.Collections.Generic.List..cctor() - Class_11001488(); - - ///Method: public virtual System.Int32 System.Collections.Generic.List.get_Count() - ; - - ///Method: public virtual void System.Collections.Generic.List.CopyTo(System.Runtime.ExceptionServices.ExceptionDispatchInfo[] array, System.Int32 arrayIndex) - virtual ? CopyTo(NanoInput.Class_00001488 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator() - virtual NanoInput.Class_2F001488 System.Collections.Generic.IEnumerable.GetEnumerator(); + ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity), Token 00001B12 + public Class_11001488(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Collections.Generic.List..cctor(), Token 00001C22 + static Class_11001488() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.List.get_Count(), Token 00001B00 + public virtual NanoInput.Class_00000014 get_Count() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Collections.Generic.List.CopyTo(System.Runtime.ExceptionServices.ExceptionDispatchInfo[] array, System.Int32 arrayIndex), Token 00001C88 + public virtual void CopyTo(NanoInput.Class_00001488 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: private virtual System.Collections.Generic.IEnumerator System.Collections.Generic.List.System.Collections.Generic.IEnumerable.GetEnumerator(), Token 00001C8E + public virtual NanoInput.Class_2F001488 System.Collections.Generic.IEnumerable.GetEnumerator() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IList public interface Class_33001488 : NanoInput.Class_17001488, NanoInput.Class_01001488, NanoInput.Class_000000E8 @@ -13911,17 +16629,29 @@ public class Class_2E001488 : NanoInput.Class_2F001488, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E001488 Field_00001B1A; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Runtime.ExceptionServices.ExceptionDispatchInfo[] array) - Class_2E001488(NanoInput.Class_00001488 Arg_0); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Runtime.ExceptionServices.ExceptionDispatchInfo ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current() - ; - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Runtime.ExceptionServices.ExceptionDispatchInfo[] array), Token 00001B18 + public Class_2E001488(NanoInput.Class_00001488 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00001C68 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Runtime.ExceptionServices.ExceptionDispatchInfo ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.get_Current(), Token 00001C69 + public virtual NanoInput.Class_00001488 get_Current() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00001C6A + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F001488 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -13960,32 +16690,17 @@ public class Class_FF001C31 : NanoInput.Class_FF001C32, NanoInput.Class_FF001C34 ///Field: System.Collections.Generic.Dictionary+ValueCollection System.Collections.Generic.Dictionary._values public NanoInput.Class_FF001C31 Field_00001C27; - ///Method: public System.Collections.Generic.Dictionary..ctor() - Class_FF001C31(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity) - Class_FF001C31(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_FF001C31(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_FF001C31(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary) - Class_FF001C31(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IDictionary dictionary, System.Collections.Generic.IEqualityComparer comparer) - Class_FF001C31(); + ///Method: public System.Collections.Generic.Dictionary..ctor(), Token 00001C28 + public Class_FF001C31() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection) - Class_FF001C31(); - - ///Method: public System.Collections.Generic.Dictionary..ctor(System.Collections.Generic.IEnumerable> collection, System.Collections.Generic.IEqualityComparer comparer) - Class_FF001C31(); - - ///Method: protected System.Collections.Generic.Dictionary..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_FF001C31(); + ///Method: public System.Collections.Generic.Dictionary..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer), Token 00001C2B + public Class_FF001C31(NanoInput.Class_00000014 Arg_0, NanoInput.Class_05000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IDictionary public interface Class_FF001C32 : NanoInput.Class_FF001C34, NanoInput.Class_FF001C35, NanoInput.Class_000000E8 @@ -14027,12 +16742,6 @@ public class Class_0F001C3A : NanoInput.Class_000005F6 { ///Field: System.Threading.CancellationTokenRegistration System.Runtime.CompilerServices.StrongBox.Value public NanoInput.Class_0F001C3A Field_00001B3A; - - ///Method: public System.Runtime.CompilerServices.StrongBox..ctor() - Class_0F001C3A(); - - ///Method: public System.Runtime.CompilerServices.StrongBox..ctor(System.Threading.CancellationTokenRegistration value) - Class_0F001C3A(); } ///System.Threading.CancellationTokenRegistration public struct Class_00001C3A : NanoInput.Class_07001C3A, NanoInput.Class_0000003A, NanoInput.Class_000005FA @@ -14043,17 +16752,23 @@ public struct Class_00001C3A : NanoInput.Class_07001C3A, NanoInput.Class_0000003 ///Field: System.Threading.CancellationTokenSource+CallbackNode System.Threading.CancellationTokenRegistration._node public readonly NanoInput.Class_00001C3A Field_00001B3C; - ///Method: internal System.Threading.CancellationTokenRegistration..ctor(System.Int64 id, System.Threading.CancellationTokenSource+CallbackNode node) - Class_00001C3A(); + ///Method: public virtual void System.Threading.CancellationTokenRegistration.Dispose(), Token 00001B3B + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Threading.CancellationTokenRegistration.Dispose() - virtual ? Dispose(); + ///Method: public virtual System.Boolean System.Threading.CancellationTokenRegistration.Equals(System.Object obj), Token 00001CE6 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Threading.CancellationTokenRegistration.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Threading.CancellationTokenRegistration.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Threading.CancellationTokenRegistration.GetHashCode(), Token 00001CE7 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_07001C3A @@ -14072,8 +16787,11 @@ public interface Class_00001B49 ///System.Threading.Tasks.TaskContinuation public abstract class Class_00001B4A { - ///Method: protected System.Threading.Tasks.TaskContinuation..ctor() - Class_00001B4A(); + ///Method: protected System.Threading.Tasks.TaskContinuation..ctor(), Token 00001B66 + public Class_00001B4A() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.ITaskCompletionAction public interface Class_00001B4B @@ -14094,17 +16812,11 @@ public class Class_11000001 : NanoInput.Class_33000001, NanoInput.Class_17000001 ///Field: System.Object[] System.Collections.Generic.List.s_emptyArray public static readonly NanoInput.Class_11000001 Field_00001C3D; - ///Method: public System.Collections.Generic.List..ctor() - Class_11000001(); - - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_11000001(); - - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_11000001(); - - ///Method: private static System.Collections.Generic.List..cctor() - Class_11000001(); + ///Method: private static System.Collections.Generic.List..cctor(), Token 00001C41 + static Class_11000001() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.ContinueWithTaskContinuation public sealed class Class_00001B53 : NanoInput.Class_00001B4A @@ -14118,11 +16830,11 @@ public sealed class Class_00001B53 : NanoInput.Class_00001B4A ///Field: System.Threading.Tasks.TaskScheduler System.Threading.Tasks.ContinueWithTaskContinuation.m_taskScheduler public readonly NanoInput.Class_00001B53 Field_00001C43; - ///Method: internal System.Threading.Tasks.ContinueWithTaskContinuation..ctor(System.Threading.Tasks.Task task, System.Threading.Tasks.TaskContinuationOptions options, System.Threading.Tasks.TaskScheduler scheduler) - Class_00001B53(); - - ///Method: internal virtual void System.Threading.Tasks.ContinueWithTaskContinuation.Run(System.Threading.Tasks.Task completedTask, System.Boolean canInlineContinuationTask) - virtual ? Run(NanoInput.Class_00000628 Arg_0, NanoInput.Class_0000021C Arg_1); + ///Method: internal virtual void System.Threading.Tasks.ContinueWithTaskContinuation.Run(System.Threading.Tasks.Task completedTask, System.Boolean canInlineContinuationTask), Token 00001D00 + public virtual void Run(NanoInput.Class_00000628 Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.AwaitTaskContinuation public class Class_00001C48 : NanoInput.Class_00001B4A, NanoInput.Class_0000145C @@ -14142,14 +16854,23 @@ public class Class_00001C48 : NanoInput.Class_00001B4A, NanoInput.Class_0000145C ///Field: System.Action System.Threading.Tasks.AwaitTaskContinuation.s_invokeAction public static readonly NanoInput.Class_00001C48 Field_00001C46; - ///Method: internal System.Threading.Tasks.AwaitTaskContinuation..ctor(System.Action action, System.Boolean flowExecutionContext) - Class_00001C48(NanoInput.Class_00000F8F Arg_0, NanoInput.Class_0000021C Arg_1); + ///Method: internal System.Threading.Tasks.AwaitTaskContinuation..ctor(System.Action action, System.Boolean flowExecutionContext), Token 00001B62 + public Class_00001C48(NanoInput.Class_00000F8F Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.Tasks.AwaitTaskContinuation..cctor() - Class_00001C48(); + ///Method: private static System.Threading.Tasks.AwaitTaskContinuation..cctor(), Token 00001C47 + static Class_00001C48() + { + throw new System.NotImplementedException(); + } - ///Method: internal virtual void System.Threading.Tasks.AwaitTaskContinuation.Run(System.Threading.Tasks.Task task, System.Boolean canInlineContinuationTask) - virtual ? Run(NanoInput.Class_00000628 Arg_0, NanoInput.Class_0000021C Arg_1); + ///Method: internal virtual void System.Threading.Tasks.AwaitTaskContinuation.Run(System.Threading.Tasks.Task task, System.Boolean canInlineContinuationTask), Token 00001CF1 + public virtual void Run(NanoInput.Class_00000628 Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.TaskScheduler public abstract class Class_00001C4D @@ -14169,11 +16890,17 @@ public abstract class Class_00001C4D ///Field: System.EventHandler System.Threading.Tasks.TaskScheduler.UnobservedTaskException public static NanoInput.Class_00001C4D Field_00001C4A; - ///Method: protected System.Threading.Tasks.TaskScheduler..ctor() - Class_00001C4D(); + ///Method: protected System.Threading.Tasks.TaskScheduler..ctor(), Token 00001C4B + public Class_00001C4D() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.Tasks.TaskScheduler..cctor() - Class_00001C4D(); + ///Method: private static System.Threading.Tasks.TaskScheduler..cctor(), Token 00001C4C + static Class_00001C4D() + { + throw new System.NotImplementedException(); + } } ///System.Threading.SynchronizationContext+<>c public sealed class Class_00001C50 @@ -14184,11 +16911,17 @@ public sealed class Class_00001C50 ///Field: System.Threading.SynchronizationContext+<>c System.Threading.SynchronizationContext+<>c.<>9 public static readonly NanoInput.Class_00001C50 Field_00001B75; - ///Method: private static System.Threading.SynchronizationContext+<>c..cctor() - Class_00001C50(); + ///Method: private static System.Threading.SynchronizationContext+<>c..cctor(), Token 00001C4E + static Class_00001C50() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.SynchronizationContext+<>c..ctor() - Class_00001C50(); + ///Method: public System.Threading.SynchronizationContext+<>c..ctor(), Token 00001C4F + public Class_00001C50() + { + throw new System.NotImplementedException(); + } } ///System.ValueTuple public struct Class_FF001C51 : NanoInput.Class_FF001C52, NanoInput.Class_000000EA, NanoInput.Class_000000E9, NanoInput.Class_00000130, NanoInput.Class_FF001C53, NanoInput.Class_00000788, NanoInput.Class_00000789 @@ -14199,17 +16932,29 @@ public struct Class_FF001C51 : NanoInput.Class_FF001C52, NanoInput.Class_000000E ///Field: System.Object System.ValueTuple.Item2 public NanoInput.Class_FF001C51 Field_00001B7B; - ///Method: public System.ValueTuple..ctor(System.Threading.SendOrPostCallback item1, System.Object item2) - Class_FF001C51(NanoInput.Class_0000148A Arg_0, NanoInput.Class_00000001 Arg_1); - - ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.ValueTuple.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public System.ValueTuple..ctor(System.Threading.SendOrPostCallback item1, System.Object item2), Token 00001B78 + public Class_FF001C51(NanoInput.Class_0000148A Arg_0, NanoInput.Class_00000001 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.ValueTuple.Equals(System.Object obj), Token 00001D3F + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.ValueTuple.GetHashCode(), Token 00001D48 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.ValueTuple.ToString(), Token 00001D49 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable> public interface Class_FF001C52 @@ -14222,8 +16967,11 @@ public interface Class_FF001C53 ///System.Action> public sealed class Class_FF001C54 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Action>..ctor(System.Object object, System.IntPtr method) - Class_FF001C54(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Action>..ctor(System.Object object, System.IntPtr method), Token 00001B77 + public Class_FF001C54(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.QueueUserWorkItemCallback> public sealed class Class_FF001C55 : NanoInput.Class_00001C56, NanoInput.Class_0000145C @@ -14237,14 +16985,20 @@ public sealed class Class_FF001C55 : NanoInput.Class_00001C56, NanoInput.Class_0 ///Field: System.Threading.ExecutionContext System.Threading.QueueUserWorkItemCallback>._context public readonly NanoInput.Class_FF001C55 Field_00001B82; - ///Method: internal System.Threading.QueueUserWorkItemCallback>..ctor(System.Action> callback, System.ValueTuple state, System.Threading.ExecutionContext context) - Class_FF001C55(NanoInput.Class_FF001C54 Arg_0, NanoInput.Class_FF001C51 Arg_1, NanoInput.Class_00001487 Arg_2); + ///Method: internal System.Threading.QueueUserWorkItemCallback>..ctor(System.Action> callback, System.ValueTuple state, System.Threading.ExecutionContext context), Token 00001B7D + public Class_FF001C55(NanoInput.Class_FF001C54 Arg_0, NanoInput.Class_FF001C51 Arg_1, NanoInput.Class_00001487 Arg_2) + { + throw new System.NotImplementedException(); + } } ///System.Threading.QueueUserWorkItemCallbackBase public abstract class Class_00001C56 : NanoInput.Class_0000145C { - ///Method: protected System.Threading.QueueUserWorkItemCallbackBase..ctor() - Class_00001C56(); + ///Method: protected System.Threading.QueueUserWorkItemCallbackBase..ctor(), Token 00001B7F + public Class_00001C56() + { + throw new System.NotImplementedException(); + } } ///System.Threading.QueueUserWorkItemCallbackDefaultContext> public sealed class Class_FF001C57 : NanoInput.Class_00001C56, NanoInput.Class_0000145C @@ -14255,14 +17009,20 @@ public sealed class Class_FF001C57 : NanoInput.Class_00001C56, NanoInput.Class_0 ///Field: System.ValueTuple System.Threading.QueueUserWorkItemCallbackDefaultContext>._state public readonly NanoInput.Class_FF001C57 Field_00001B84; - ///Method: internal System.Threading.QueueUserWorkItemCallbackDefaultContext>..ctor(System.Action> callback, System.ValueTuple state) - Class_FF001C57(NanoInput.Class_FF001C54 Arg_0, NanoInput.Class_FF001C51 Arg_1); + ///Method: internal System.Threading.QueueUserWorkItemCallbackDefaultContext>..ctor(System.Action> callback, System.ValueTuple state), Token 00001B7E + public Class_FF001C57(NanoInput.Class_FF001C54 Arg_0, NanoInput.Class_FF001C51 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.WaitCallback public sealed class Class_00001C58 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Threading.WaitCallback..ctor(System.Object object, System.IntPtr method) - Class_00001C58(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Threading.WaitCallback..ctor(System.Object object, System.IntPtr method), Token 00001B72 + public Class_00001C58(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.QueueUserWorkItemCallback public sealed class Class_00001C5B : NanoInput.Class_00001C56, NanoInput.Class_0000145C @@ -14279,11 +17039,17 @@ public sealed class Class_00001C5B : NanoInput.Class_00001C56, NanoInput.Class_0 ///Field: System.Action System.Threading.QueueUserWorkItemCallback.s_executionContextShim public static readonly NanoInput.Class_00001C5B Field_00001C59; - ///Method: internal System.Threading.QueueUserWorkItemCallback..ctor(System.Threading.WaitCallback callback, System.Object state, System.Threading.ExecutionContext context) - Class_00001C5B(NanoInput.Class_00001C58 Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00001487 Arg_2); + ///Method: internal System.Threading.QueueUserWorkItemCallback..ctor(System.Threading.WaitCallback callback, System.Object state, System.Threading.ExecutionContext context), Token 00001B85 + public Class_00001C5B(NanoInput.Class_00001C58 Arg_0, NanoInput.Class_00000001 Arg_1, NanoInput.Class_00001487 Arg_2) + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.QueueUserWorkItemCallback..cctor() - Class_00001C5B(); + ///Method: private static System.Threading.QueueUserWorkItemCallback..cctor(), Token 00001C5A + static Class_00001C5B() + { + throw new System.NotImplementedException(); + } } ///System.Threading.QueueUserWorkItemCallbackDefaultContext public sealed class Class_00001C5C : NanoInput.Class_00001C56, NanoInput.Class_0000145C @@ -14294,8 +17060,11 @@ public sealed class Class_00001C5C : NanoInput.Class_00001C56, NanoInput.Class_0 ///Field: System.Object System.Threading.QueueUserWorkItemCallbackDefaultContext._state public readonly NanoInput.Class_00001C5C Field_00001B8B; - ///Method: internal System.Threading.QueueUserWorkItemCallbackDefaultContext..ctor(System.Threading.WaitCallback callback, System.Object state) - Class_00001C5C(NanoInput.Class_00001C58 Arg_0, NanoInput.Class_00000001 Arg_1); + ///Method: internal System.Threading.QueueUserWorkItemCallbackDefaultContext..ctor(System.Threading.WaitCallback callback, System.Object state), Token 00001B86 + public Class_00001C5C(NanoInput.Class_00001C58 Arg_0, NanoInput.Class_00000001 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.CompletionActionInvoker public sealed class Class_00001C5D : NanoInput.Class_0000145C @@ -14306,8 +17075,11 @@ public sealed class Class_00001C5D : NanoInput.Class_0000145C ///Field: System.Threading.Tasks.Task System.Threading.Tasks.CompletionActionInvoker.m_completingTask public readonly NanoInput.Class_00001C5D Field_00001B91; - ///Method: internal System.Threading.Tasks.CompletionActionInvoker..ctor(System.Threading.Tasks.ITaskCompletionAction action, System.Threading.Tasks.Task completingTask) - Class_00001C5D(NanoInput.Class_00001B4B Arg_0, NanoInput.Class_00000628 Arg_1); + ///Method: internal System.Threading.Tasks.CompletionActionInvoker..ctor(System.Threading.Tasks.ITaskCompletionAction action, System.Threading.Tasks.Task completingTask), Token 00001B8F + public Class_00001C5D(NanoInput.Class_00001B4B Arg_0, NanoInput.Class_00000628 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.HashSet+Enumerator public struct Class_61000014 : NanoInput.Class_2F000014, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14324,17 +17096,29 @@ public struct Class_61000014 : NanoInput.Class_2F000014, NanoInput.Class_0000003 ///Field: System.Int32 System.Collections.Generic.HashSet+Enumerator._current public NanoInput.Class_61000014 Field_00001C7E; - ///Method: internal System.Collections.Generic.HashSet+Enumerator..ctor(System.Collections.Generic.HashSet hashSet) - Class_61000014(NanoInput.Class_3D000014 Arg_0); - - ///Method: public virtual System.Boolean System.Collections.Generic.HashSet+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Int32 System.Collections.Generic.HashSet+Enumerator.get_Current() - ; - - ///Method: public virtual void System.Collections.Generic.HashSet+Enumerator.Dispose() - virtual ? Dispose(); + ///Method: internal System.Collections.Generic.HashSet+Enumerator..ctor(System.Collections.Generic.HashSet hashSet), Token 00001C7F + public Class_61000014(NanoInput.Class_3D000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.HashSet+Enumerator.MoveNext(), Token 00001F34 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.HashSet+Enumerator.get_Current(), Token 00001F35 + public virtual NanoInput.Class_00000014 get_Current() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Collections.Generic.HashSet+Enumerator.Dispose(), Token 00001F36 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.List+Enumerator public struct Class_14000014 : NanoInput.Class_2F000014, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14351,17 +17135,29 @@ public struct Class_14000014 : NanoInput.Class_2F000014, NanoInput.Class_0000003 ///Field: System.Int32 System.Collections.Generic.List+Enumerator._current public NanoInput.Class_14000014 Field_00001C85; - ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list) - Class_14000014(NanoInput.Class_11000014 Arg_0); - - ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose() - virtual ? Dispose(); - - ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Int32 System.Collections.Generic.List+Enumerator.get_Current() - ; + ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list), Token 00001C81 + public Class_14000014(NanoInput.Class_11000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose(), Token 00001F38 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext(), Token 00001F3A + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.List+Enumerator.get_Current(), Token 00001F3B + public virtual NanoInput.Class_00000014 get_Current() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.List+Enumerator public struct Class_14001488 : NanoInput.Class_2F001488, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14378,17 +17174,29 @@ public struct Class_14001488 : NanoInput.Class_2F001488, NanoInput.Class_0000003 ///Field: System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Collections.Generic.List+Enumerator._current public NanoInput.Class_14001488 Field_00001C8D; - ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list) - Class_14001488(NanoInput.Class_11001488 Arg_0); - - ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose() - virtual ? Dispose(); - - ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Collections.Generic.List+Enumerator.get_Current() - ; + ///Method: internal System.Collections.Generic.List+Enumerator..ctor(System.Collections.Generic.List list), Token 00001C89 + public Class_14001488(NanoInput.Class_11001488 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Collections.Generic.List+Enumerator.Dispose(), Token 00001F3C + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.List+Enumerator.MoveNext(), Token 00001F3E + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Collections.Generic.List+Enumerator.get_Current(), Token 00001F3F + public virtual NanoInput.Class_00001488 get_Current() + { + throw new System.NotImplementedException(); + } } ///System.Globalization.TextInfo+ToUpperConversion public struct Class_00001CA6 @@ -14400,8 +17208,11 @@ public abstract class Class_00001CAF ///Field: System.UInt64 System.Marvin.k__BackingField public static readonly NanoInput.Class_00001CAF Field_00001CAD; - ///Method: private static System.Marvin..cctor() - Class_00001CAF(); + ///Method: private static System.Marvin..cctor(), Token 00001CAE + static Class_00001CAF() + { + throw new System.NotImplementedException(); + } } ///System.Text.EncoderReplacementFallbackBuffer public sealed class Class_00001CDC : NanoInput.Class_00000C11 @@ -14415,50 +17226,65 @@ public sealed class Class_00001CDC : NanoInput.Class_00000C11 ///Field: System.String System.Text.EncoderReplacementFallbackBuffer._strDefault public readonly NanoInput.Class_00001CDC Field_00001CDB; - ///Method: public System.Text.EncoderReplacementFallbackBuffer..ctor(System.Text.EncoderReplacementFallback fallback) - Class_00001CDC(NanoInput.Class_000005EB Arg_0); - - ///Method: public virtual System.Boolean System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char charUnknown, System.Int32 index) - virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public virtual System.Boolean System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char charUnknownHigh, System.Char charUnknownLow, System.Int32 index) - virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000014 Arg_2); - - ///Method: public virtual System.Char System.Text.EncoderReplacementFallbackBuffer.GetNextChar() - virtual NanoInput.Class_00000131 GetNextChar(); - - ///Method: public virtual System.Boolean System.Text.EncoderReplacementFallbackBuffer.MovePrevious() - virtual NanoInput.Class_0000021C MovePrevious(); - - ///Method: public virtual System.Int32 System.Text.EncoderReplacementFallbackBuffer.get_Remaining() - ; - - ///Method: public virtual void System.Text.EncoderReplacementFallbackBuffer.Reset() - virtual ? Reset(); + ///Method: public System.Text.EncoderReplacementFallbackBuffer..ctor(System.Text.EncoderReplacementFallback fallback), Token 00001CD7 + public Class_00001CDC(NanoInput.Class_000005EB Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char charUnknown, System.Int32 index), Token 00001F81 + public virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderReplacementFallbackBuffer.Fallback(System.Char charUnknownHigh, System.Char charUnknownLow, System.Int32 index), Token 00001F82 + public virtual NanoInput.Class_0000021C Fallback(NanoInput.Class_00000131 Arg_0, NanoInput.Class_00000131 Arg_1, NanoInput.Class_00000014 Arg_2) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Char System.Text.EncoderReplacementFallbackBuffer.GetNextChar(), Token 00001F83 + public virtual NanoInput.Class_00000131 GetNextChar() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Text.EncoderReplacementFallbackBuffer.MovePrevious(), Token 00001F84 + public virtual NanoInput.Class_0000021C MovePrevious() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Text.EncoderReplacementFallbackBuffer.get_Remaining(), Token 00001F85 + public virtual NanoInput.Class_00000014 get_Remaining() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void System.Text.EncoderReplacementFallbackBuffer.Reset(), Token 00001F86 + public virtual void Reset() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.TaskSchedulerException public class Class_00001CFA : NanoInput.Class_0000001E, NanoInput.Class_00000085 { - ///Method: public System.Threading.Tasks.TaskSchedulerException..ctor() - Class_00001CFA(); - - ///Method: public System.Threading.Tasks.TaskSchedulerException..ctor(System.String message) - Class_00001CFA(); - - ///Method: public System.Threading.Tasks.TaskSchedulerException..ctor(System.Exception innerException) - Class_00001CFA(NanoInput.Class_0000001E Arg_0); - - ///Method: public System.Threading.Tasks.TaskSchedulerException..ctor(System.String message, System.Exception innerException) - Class_00001CFA(); - - ///Method: protected System.Threading.Tasks.TaskSchedulerException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001CFA(); + ///Method: public System.Threading.Tasks.TaskSchedulerException..ctor(System.Exception innerException), Token 00001CFD + public Class_00001CFA(NanoInput.Class_0000001E Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Predicate public sealed class Class_62000628 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Predicate..ctor(System.Object object, System.IntPtr method) - Class_62000628(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Predicate..ctor(System.Object object, System.IntPtr method), Token 00001D0E + public Class_62000628(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry> public class Class_FF001D32 : NanoInput.Class_FF001D33, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14469,14 +17295,23 @@ public class Class_FF001D32 : NanoInput.Class_FF001D33, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF001D32 Field_00001D1A; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Threading.Tasks.Task, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001D32(NanoInput.Class_FF001B30 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.Dictionary`2+Entry[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Threading.Tasks.Task, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001D18 + public Class_FF001D32(NanoInput.Class_FF001B30 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 00001F28 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 00001F29 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF001D33 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14503,11 +17338,11 @@ public class Class_00001D3A : NanoInput.Class_00000EF4, NanoInput.Class_0000062D ///Field: System.Int32 System.Reflection.ParameterInfo.PositionImpl public NanoInput.Class_00001D3A Field_00001D38; - ///Method: protected System.Reflection.ParameterInfo..ctor() - Class_00001D3A(); - - ///Method: public virtual System.String System.Reflection.ParameterInfo.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Reflection.ParameterInfo.ToString(), Token 00001F80 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.EqualityComparer public abstract class Class_0600148A : NanoInput.Class_000000D1, NanoInput.Class_0500148A @@ -14515,11 +17350,11 @@ public abstract class Class_0600148A : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_0600148A Field_00001D44; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_0600148A(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_0600148A(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 00001D46 + static Class_0600148A() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_0500148A @@ -14532,17 +17367,23 @@ public interface Class_0700148A ///System.Collections.Generic.ObjectEqualityComparer public sealed class Class_0400148A : NanoInput.Class_0600148A, NanoInput.Class_000000D1, NanoInput.Class_0500148A { - ///Method: public System.Collections.Generic.ObjectEqualityComparer..ctor() - Class_0400148A(); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Threading.SendOrPostCallback x, System.Threading.SendOrPostCallback y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_0000148A Arg_0, NanoInput.Class_0000148A Arg_1); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Threading.SendOrPostCallback x, System.Threading.SendOrPostCallback y), Token 00001F40 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_0000148A Arg_0, NanoInput.Class_0000148A Arg_1) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj), Token 00001F42 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode(), Token 00001F43 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Threading.ThreadPool+<>c public sealed class Class_00001D50 @@ -14550,11 +17391,17 @@ public sealed class Class_00001D50 ///Field: System.Threading.ThreadPool+<>c System.Threading.ThreadPool+<>c.<>9 public static readonly NanoInput.Class_00001D50 Field_00001D4C; - ///Method: private static System.Threading.ThreadPool+<>c..cctor() - Class_00001D50(); + ///Method: private static System.Threading.ThreadPool+<>c..cctor(), Token 00001D4E + static Class_00001D50() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.ThreadPool+<>c..ctor() - Class_00001D50(); + ///Method: public System.Threading.ThreadPool+<>c..ctor(), Token 00001D4F + public Class_00001D50() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Concurrent.ConcurrentQueue public class Class_5C00145C : NanoInput.Class_5D00145C, NanoInput.Class_0100145C, NanoInput.Class_000000E8, NanoInput.Class_000000E7, NanoInput.Class_3500145C @@ -14568,11 +17415,11 @@ public class Class_5C00145C : NanoInput.Class_5D00145C, NanoInput.Class_0100145C ///Field: System.Collections.Concurrent.ConcurrentQueueSegment System.Collections.Concurrent.ConcurrentQueue._tail public NanoInput.Class_5C00145C Field_00001D5A; - ///Method: public System.Collections.Concurrent.ConcurrentQueue..ctor() - Class_5C00145C(); - - ///Method: public System.Collections.Concurrent.ConcurrentQueue..ctor(System.Collections.Generic.IEnumerable collection) - Class_5C00145C(); + ///Method: public System.Collections.Concurrent.ConcurrentQueue..ctor(), Token 00001D55 + public Class_5C00145C() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Concurrent.IProducerConsumerCollection public interface Class_5D00145C : NanoInput.Class_0100145C, NanoInput.Class_000000E8, NanoInput.Class_000000E7 @@ -14607,8 +17454,11 @@ public sealed class Class_5E00145C ///Field: System.Collections.Concurrent.ConcurrentQueueSegment System.Collections.Concurrent.ConcurrentQueueSegment._nextSegment public NanoInput.Class_5E00145C Field_00001D66; - ///Method: internal System.Collections.Concurrent.ConcurrentQueueSegment..ctor(System.Int32 boundedLength) - Class_5E00145C(NanoInput.Class_00000014 Arg_0); + ///Method: internal System.Collections.Concurrent.ConcurrentQueueSegment..ctor(System.Int32 boundedLength), Token 00001D58 + public Class_5E00145C(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Concurrent.ConcurrentQueueSegment+Slot public struct Class_5B00145C @@ -14628,14 +17478,23 @@ public class Class_FF001D69 : NanoInput.Class_FF001D6A, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>._current public NanoInput.Class_FF001D69 Field_00001D60; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>..ctor(System.Collections.Concurrent.ConcurrentQueueSegment`1+Slot[[System.Threading.IThreadPoolWorkItem, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001D69(NanoInput.Class_5B00145C Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>..ctor(System.Collections.Concurrent.ConcurrentQueueSegment`1+Slot[[System.Threading.IThreadPoolWorkItem, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001D5E + public Class_FF001D69(NanoInput.Class_5B00145C Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>.MoveNext(), Token 00001F26 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Slot>.Dispose(), Token 00001F27 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Slot> public interface Class_FF001D6A : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14656,8 +17515,11 @@ public abstract class Class_00001D9E ///Field: System.Object System.Convert.DBNull public static readonly NanoInput.Class_00001D9E Field_00001D9C; - ///Method: private static System.Convert..cctor() - Class_00001D9E(); + ///Method: private static System.Convert..cctor(), Token 00001D9D + static Class_00001D9E() + { + throw new System.NotImplementedException(); + } } ///System.Threading.ThreadInt64PersistentCounter public sealed class Class_00001DA3 @@ -14674,11 +17536,17 @@ public sealed class Class_00001DA3 ///Field: System.Collections.Generic.List System.Threading.ThreadInt64PersistentCounter.t_nodeFinalizationHelpers public static NanoInput.Class_00001DA3 Field_00001DA1; - ///Method: public System.Threading.ThreadInt64PersistentCounter..ctor() - Class_00001DA3(); + ///Method: public System.Threading.ThreadInt64PersistentCounter..ctor(), Token 00001D91 + public Class_00001DA3() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Threading.ThreadInt64PersistentCounter..cctor() - Class_00001DA3(); + ///Method: private static System.Threading.ThreadInt64PersistentCounter..cctor(), Token 00001DA2 + static Class_00001DA3() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.HashSet public class Class_3D001D97 : NanoInput.Class_17001D97, NanoInput.Class_01001D97, NanoInput.Class_000000E8, NanoInput.Class_3E001D97, NanoInput.Class_35001D97, NanoInput.Class_3F001D97, NanoInput.Class_00000085 @@ -14707,26 +17575,17 @@ public class Class_3D001D97 : NanoInput.Class_17001D97, NanoInput.Class_01001D97 ///Field: System.Int32 System.Collections.Generic.HashSet._version public NanoInput.Class_3D001D97 Field_00001DAA; - ///Method: public System.Collections.Generic.HashSet..ctor() - Class_3D001D97(); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Collections.Generic.IEqualityComparer comparer) - Class_3D001D97(NanoInput.Class_05001D97 Arg_0); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Int32 capacity) - Class_3D001D97(); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Collections.Generic.IEnumerable collection) - Class_3D001D97(); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Collections.Generic.IEnumerable collection, System.Collections.Generic.IEqualityComparer comparer) - Class_3D001D97(); - - ///Method: public System.Collections.Generic.HashSet..ctor(System.Int32 capacity, System.Collections.Generic.IEqualityComparer comparer) - Class_3D001D97(); + ///Method: public System.Collections.Generic.HashSet..ctor(), Token 00001D92 + public Class_3D001D97() + { + throw new System.NotImplementedException(); + } - ///Method: protected System.Collections.Generic.HashSet..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_3D001D97(); + ///Method: public System.Collections.Generic.HashSet..ctor(System.Collections.Generic.IEqualityComparer comparer), Token 00001D94 + public Class_3D001D97(NanoInput.Class_05001D97 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.ICollection public interface Class_17001D97 : NanoInput.Class_01001D97, NanoInput.Class_000000E8 @@ -14757,8 +17616,11 @@ public sealed class Class_00001D97 ///Field: System.Threading.ThreadInt64PersistentCounter System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode._counter public readonly NanoInput.Class_00001D97 Field_00001DB1; - ///Method: public System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode..ctor(System.Threading.ThreadInt64PersistentCounter counter) - Class_00001D97(NanoInput.Class_00001DA3 Arg_0); + ///Method: public System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode..ctor(System.Threading.ThreadInt64PersistentCounter counter), Token 00001DB2 + public Class_00001D97(NanoInput.Class_00001DA3 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEqualityComparer public interface Class_05001D97 @@ -14770,11 +17632,11 @@ public abstract class Class_06001D97 : NanoInput.Class_000000D1, NanoInput.Class ///Field: System.Collections.Generic.EqualityComparer System.Collections.Generic.EqualityComparer.k__BackingField public static readonly NanoInput.Class_06001D97 Field_00001D98; - ///Method: protected System.Collections.Generic.EqualityComparer..ctor() - Class_06001D97(); - - ///Method: private static System.Collections.Generic.EqualityComparer..cctor() - Class_06001D97(); + ///Method: private static System.Collections.Generic.EqualityComparer..cctor(), Token 00001DB4 + static Class_06001D97() + { + throw new System.NotImplementedException(); + } } ///System.IEquatable public interface Class_07001D97 @@ -14783,20 +17645,29 @@ public interface Class_07001D97 ///System.Collections.Generic.ObjectEqualityComparer public sealed class Class_04001D97 : NanoInput.Class_06001D97, NanoInput.Class_000000D1, NanoInput.Class_05001D97 { - ///Method: public System.Collections.Generic.ObjectEqualityComparer..ctor() - Class_04001D97(); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode x, System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode y) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00001D97 Arg_0, NanoInput.Class_00001D97 Arg_1); - - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode obj) - virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00001D97 Arg_0); - - ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode x, System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode y), Token 00001F44 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00001D97 Arg_0, NanoInput.Class_00001D97 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode obj), Token 00001F45 + public virtual NanoInput.Class_00000014 GetHashCode(NanoInput.Class_00001D97 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Collections.Generic.ObjectEqualityComparer.Equals(System.Object obj), Token 00001F47 + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Collections.Generic.ObjectEqualityComparer.GetHashCode(), Token 00001F48 + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } } ///System.Threading.PortableThreadPool+WorkerThread+<>c public sealed class Class_00001DBC @@ -14804,11 +17675,17 @@ public sealed class Class_00001DBC ///Field: System.Threading.PortableThreadPool+WorkerThread+<>c System.Threading.PortableThreadPool+WorkerThread+<>c.<>9 public static readonly NanoInput.Class_00001DBC Field_00001DB7; - ///Method: private static System.Threading.PortableThreadPool+WorkerThread+<>c..cctor() - Class_00001DBC(); + ///Method: private static System.Threading.PortableThreadPool+WorkerThread+<>c..cctor(), Token 00001DBA + static Class_00001DBC() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.PortableThreadPool+WorkerThread+<>c..ctor() - Class_00001DBC(); + ///Method: public System.Threading.PortableThreadPool+WorkerThread+<>c..ctor(), Token 00001DBB + public Class_00001DBC() + { + throw new System.NotImplementedException(); + } } ///System.Random+XoshiroImpl public sealed class Class_00001E75 : NanoInput.Class_00001E76 @@ -14825,23 +17702,38 @@ public sealed class Class_00001E75 : NanoInput.Class_00001E76 ///Field: System.UInt64 System.Random+XoshiroImpl._s3 public NanoInput.Class_00001E75 Field_00001DE3; - ///Method: public System.Random+XoshiroImpl..ctor() - Class_00001E75(); - - ///Method: public virtual System.Int32 System.Random+XoshiroImpl.Next() - virtual NanoInput.Class_00000014 Next(); - - ///Method: public virtual System.Int32 System.Random+XoshiroImpl.Next(System.Int32 minValue, System.Int32 maxValue) - virtual NanoInput.Class_00000014 Next(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public virtual System.Double System.Random+XoshiroImpl.Sample() - virtual NanoInput.Class_00000C2B Sample(); + ///Method: public System.Random+XoshiroImpl..ctor(), Token 00001DDC + public Class_00001E75() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Random+XoshiroImpl.Next(), Token 00001F78 + public virtual NanoInput.Class_00000014 Next() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Random+XoshiroImpl.Next(System.Int32 minValue, System.Int32 maxValue), Token 00001F7A + public virtual NanoInput.Class_00000014 Next(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Double System.Random+XoshiroImpl.Sample(), Token 00001F7D + public virtual NanoInput.Class_00000C2B Sample() + { + throw new System.NotImplementedException(); + } } ///System.Random+ImplBase public abstract class Class_00001E76 { - ///Method: protected System.Random+ImplBase..ctor() - Class_00001E76(); + ///Method: protected System.Random+ImplBase..ctor(), Token 00001DDF + public Class_00001E76() + { + throw new System.NotImplementedException(); + } } ///System.Threading.ThreadPoolWorkQueue+WorkStealingQueueList public abstract class Class_00001E78 @@ -14849,8 +17741,11 @@ public abstract class Class_00001E78 ///Field: System.Threading.ThreadPoolWorkQueue+WorkStealingQueue[] System.Threading.ThreadPoolWorkQueue+WorkStealingQueueList._queues public static NanoInput.Class_00001E78 Field_00001DE4; - ///Method: private static System.Threading.ThreadPoolWorkQueue+WorkStealingQueueList..cctor() - Class_00001E78(); + ///Method: private static System.Threading.ThreadPoolWorkQueue+WorkStealingQueueList..cctor(), Token 00001E77 + static Class_00001E78() + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E001BA9 : NanoInput.Class_2F001BA9, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14861,14 +17756,23 @@ public class Class_2E001BA9 : NanoInput.Class_2F001BA9, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E001BA9 Field_00001DE8; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.ThreadPoolWorkQueue+WorkStealingQueue[] array) - Class_2E001BA9(NanoInput.Class_00001BA9 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.ThreadPoolWorkQueue+WorkStealingQueue[] array), Token 00001DE6 + public Class_2E001BA9(NanoInput.Class_00001BA9 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00001F32 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00001F33 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F001BA9 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14877,8 +17781,6 @@ public interface Class_2F001BA9 : NanoInput.Class_0000003A, NanoInput.Class_0000 ///System.Threading.ThreadPoolWorkQueue+WorkStealingQueue[] public sealed class Class_00001DE9 : NanoInput.Class_00000009, NanoInput.Class_00000064, NanoInput.Class_000000E6, NanoInput.Class_000000E7, NanoInput.Class_000000E8, NanoInput.Class_000000E9, NanoInput.Class_000000EA, NanoInput.Class_33001BA9, NanoInput.Class_17001BA9, NanoInput.Class_01001BA9, NanoInput.Class_34001BA9, NanoInput.Class_35001BA9 { - ///Method: public System.Threading.ThreadPoolWorkQueue+WorkStealingQueue[]..ctor(System.Int32 ) - Class_00001DE9(); } ///System.Collections.Generic.IList public interface Class_33001BA9 : NanoInput.Class_17001BA9, NanoInput.Class_01001BA9, NanoInput.Class_000000E8 @@ -14915,17 +17817,17 @@ public class Class_11001DF3 : NanoInput.Class_33001DF3, NanoInput.Class_17001DF3 ///Field: System.Int32 System.Collections.Generic.List._size public NanoInput.Class_11001DF3 Field_00001DF9; - ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity) - Class_11001DF3(NanoInput.Class_00000014 Arg_0); + ///Method: public System.Collections.Generic.List..ctor(System.Int32 capacity), Token 00001DED + public Class_11001DF3(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public System.Collections.Generic.List..ctor() - Class_11001DF3(); - - ///Method: public System.Collections.Generic.List..ctor(System.Collections.Generic.IEnumerable collection) - Class_11001DF3(); - - ///Method: private static System.Collections.Generic.List..cctor() - Class_11001DF3(); + ///Method: private static System.Collections.Generic.List..cctor(), Token 00001E7D + static Class_11001DF3() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IList public interface Class_33001DF3 : NanoInput.Class_17001DF3, NanoInput.Class_01001DF3, NanoInput.Class_000000E8 @@ -14953,8 +17855,11 @@ public sealed class Class_00001DF3 ///Field: System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode System.Threading.ThreadInt64PersistentCounter+ThreadLocalNodeFinalizationHelper._node public readonly NanoInput.Class_00001DF3 Field_00001DF7; - ///Method: public System.Threading.ThreadInt64PersistentCounter+ThreadLocalNodeFinalizationHelper..ctor(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode node) - Class_00001DF3(NanoInput.Class_00001D97 Arg_0); + ///Method: public System.Threading.ThreadInt64PersistentCounter+ThreadLocalNodeFinalizationHelper..ctor(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode node), Token 00001DEE + public Class_00001DF3(NanoInput.Class_00001D97 Arg_0) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E001DF3 : NanoInput.Class_2F001DF3, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14965,14 +17870,23 @@ public class Class_2E001DF3 : NanoInput.Class_2F001DF3, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E001DF3 Field_00001DF6; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNodeFinalizationHelper[] array) - Class_2E001DF3(NanoInput.Class_00001DF3 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.ThreadInt64PersistentCounter+ThreadLocalNodeFinalizationHelper[] array), Token 00001DF4 + public Class_2E001DF3(NanoInput.Class_00001DF3 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00001F30 + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00001F31 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F001DF3 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -14999,14 +17913,23 @@ public class Class_FF001E80 : NanoInput.Class_FF001E81, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF001E80 Field_00001E0B; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.HashSet`1+Entry[[System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001E80(NanoInput.Class_41001D97 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Collections.Generic.HashSet`1+Entry[[System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001E09 + public Class_FF001E80(NanoInput.Class_41001D97 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 00001F2A + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 00001F2B + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF001E81 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -15033,14 +17956,23 @@ public struct Class_61001D97 : NanoInput.Class_2F001D97, NanoInput.Class_0000003 ///Field: System.Threading.ThreadInt64PersistentCounter+ThreadLocalNode System.Collections.Generic.HashSet+Enumerator._current public NanoInput.Class_61001D97 Field_00001E4F; - ///Method: internal System.Collections.Generic.HashSet+Enumerator..ctor(System.Collections.Generic.HashSet hashSet) - Class_61001D97(NanoInput.Class_3D001D97 Arg_0); + ///Method: internal System.Collections.Generic.HashSet+Enumerator..ctor(System.Collections.Generic.HashSet hashSet), Token 00001E4B + public Class_61001D97(NanoInput.Class_3D001D97 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean System.Collections.Generic.HashSet+Enumerator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean System.Collections.Generic.HashSet+Enumerator.MoveNext(), Token 00001E4A + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void System.Collections.Generic.HashSet+Enumerator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void System.Collections.Generic.HashSet+Enumerator.Dispose(), Token 00001F37 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F001D97 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -15055,50 +17987,47 @@ public struct Class_00001E51 ///Field: System.Double System.Threading.PortableThreadPool+HillClimbing+Complex.k__BackingField public readonly NanoInput.Class_00001E51 Field_00001E60; - ///Method: public System.Threading.PortableThreadPool+HillClimbing+Complex..ctor(System.Double real, System.Double imaginary) - Class_00001E51(NanoInput.Class_00000C2B Arg_0, NanoInput.Class_00000C2B Arg_1); + ///Method: public System.Threading.PortableThreadPool+HillClimbing+Complex..ctor(System.Double real, System.Double imaginary), Token 00001E59 + public Class_00001E51(NanoInput.Class_00000C2B Arg_0, NanoInput.Class_00000C2B Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.ParameterizedThreadStart public sealed class Class_00001E87 : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Threading.ParameterizedThreadStart..ctor(System.Object object, System.IntPtr method) - Class_00001E87(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Threading.ParameterizedThreadStart..ctor(System.Object object, System.IntPtr method), Token 00001E8B + public Class_00001E87(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.AutoResetEvent public sealed class Class_00001E96 : NanoInput.Class_0000156C, NanoInput.Class_0000003A { - ///Method: public System.Threading.AutoResetEvent..ctor(System.Boolean initialState) - Class_00001E96(NanoInput.Class_0000021C Arg_0); + ///Method: public System.Threading.AutoResetEvent..ctor(System.Boolean initialState), Token 00001E8C + public Class_00001E96(NanoInput.Class_0000021C Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Threading.WaitHandleCannotBeOpenedException public class Class_00001E9A : NanoInput.Class_00001E9E, NanoInput.Class_00000085 { - ///Method: public System.Threading.WaitHandleCannotBeOpenedException..ctor(System.String message) - Class_00001E9A(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.Threading.WaitHandleCannotBeOpenedException..ctor() - Class_00001E9A(); - - ///Method: public System.Threading.WaitHandleCannotBeOpenedException..ctor(System.String message, System.Exception innerException) - Class_00001E9A(); - - ///Method: protected System.Threading.WaitHandleCannotBeOpenedException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001E9A(); + ///Method: public System.Threading.WaitHandleCannotBeOpenedException..ctor(System.String message), Token 00001E91 + public Class_00001E9A(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.ApplicationException public class Class_00001E9E : NanoInput.Class_0000001E, NanoInput.Class_00000085 { - ///Method: public System.ApplicationException..ctor(System.String message) - Class_00001E9E(NanoInput.Class_00000004 Arg_0); - - ///Method: public System.ApplicationException..ctor() - Class_00001E9E(); - - ///Method: public System.ApplicationException..ctor(System.String message, System.Exception innerException) - Class_00001E9E(); - - ///Method: protected System.ApplicationException..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001E9E(); + ///Method: public System.ApplicationException..ctor(System.String message), Token 00001E95 + public Class_00001E9E(NanoInput.Class_00000004 Arg_0) + { + throw new System.NotImplementedException(); + } } ///System.Random+Net5CompatDerivedImpl public sealed class Class_00001EAF : NanoInput.Class_00001E76 @@ -15109,17 +18038,29 @@ public sealed class Class_00001EAF : NanoInput.Class_00001E76 ///Field: System.Random+CompatPrng System.Random+Net5CompatDerivedImpl._prng public NanoInput.Class_00001EAF Field_00001EA6; - ///Method: public System.Random+Net5CompatDerivedImpl..ctor(System.Random parent) - Class_00001EAF(NanoInput.Class_00001C13 Arg_0); - - ///Method: public System.Random+Net5CompatDerivedImpl..ctor(System.Random parent, System.Int32 seed) - Class_00001EAF(NanoInput.Class_00001C13 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: public virtual System.Int32 System.Random+Net5CompatDerivedImpl.Next() - virtual NanoInput.Class_00000014 Next(); - - ///Method: public virtual System.Int32 System.Random+Net5CompatDerivedImpl.Next(System.Int32 minValue, System.Int32 maxValue) - virtual NanoInput.Class_00000014 Next(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); + ///Method: public System.Random+Net5CompatDerivedImpl..ctor(System.Random parent), Token 00001E9F + public Class_00001EAF(NanoInput.Class_00001C13 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Random+Net5CompatDerivedImpl..ctor(System.Random parent, System.Int32 seed), Token 00001EA2 + public Class_00001EAF(NanoInput.Class_00001C13 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Random+Net5CompatDerivedImpl.Next(), Token 00001F6E + public virtual NanoInput.Class_00000014 Next() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Random+Net5CompatDerivedImpl.Next(System.Int32 minValue, System.Int32 maxValue), Token 00001F71 + public virtual NanoInput.Class_00000014 Next(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Random+CompatPrng public struct Class_00001EB0 @@ -15133,8 +18074,11 @@ public struct Class_00001EB0 ///Field: System.Int32 System.Random+CompatPrng._inextp public NanoInput.Class_00001EB0 Field_00001EAA; - ///Method: public System.Random+CompatPrng..ctor(System.Int32 seed) - Class_00001EB0(NanoInput.Class_00000014 Arg_0); + ///Method: public System.Random+CompatPrng..ctor(System.Int32 seed), Token 00001EA5 + public Class_00001EB0(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E001A9E : NanoInput.Class_2F001A9E, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -15145,14 +18089,23 @@ public class Class_2E001A9E : NanoInput.Class_2F001A9E, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E001A9E Field_00001EAE; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.PortableThreadPool+HillClimbing+LogEntry[] array) - Class_2E001A9E(NanoInput.Class_00001A9E Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Threading.PortableThreadPool+HillClimbing+LogEntry[] array), Token 00001EAC + public Class_2E001A9E(NanoInput.Class_00001A9E Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00001F2E + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00001F2F + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F001A9E : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -15164,17 +18117,29 @@ public sealed class Class_00001EB4 : NanoInput.Class_00001C13 ///Field: System.Random+XoshiroImpl System.Random+ThreadSafeRandom.t_random public static NanoInput.Class_00001EB4 Field_00001EB3; - ///Method: public System.Random+ThreadSafeRandom..ctor() - Class_00001EB4(); - - ///Method: public virtual System.Int32 System.Random+ThreadSafeRandom.Next() - virtual NanoInput.Class_00000014 Next(); - - ///Method: public virtual System.Int32 System.Random+ThreadSafeRandom.Next(System.Int32 minValue, System.Int32 maxValue) - virtual NanoInput.Class_00000014 Next(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1); - - ///Method: protected virtual System.Double System.Random+ThreadSafeRandom.Sample() - virtual NanoInput.Class_00000C2B Sample(); + ///Method: public System.Random+ThreadSafeRandom..ctor(), Token 00001EB2 + public Class_00001EB4() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Random+ThreadSafeRandom.Next(), Token 00001F74 + public virtual NanoInput.Class_00000014 Next() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Random+ThreadSafeRandom.Next(System.Int32 minValue, System.Int32 maxValue), Token 00001F76 + public virtual NanoInput.Class_00000014 Next(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual System.Double System.Random+ThreadSafeRandom.Sample(), Token 00001F77 + public virtual NanoInput.Class_00000C2B Sample() + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.AwaitTaskContinuation+<>c public sealed class Class_00001EBB @@ -15182,17 +18147,26 @@ public sealed class Class_00001EBB ///Field: System.Threading.Tasks.AwaitTaskContinuation+<>c System.Threading.Tasks.AwaitTaskContinuation+<>c.<>9 public static readonly NanoInput.Class_00001EBB Field_00001EB5; - ///Method: private static System.Threading.Tasks.AwaitTaskContinuation+<>c..cctor() - Class_00001EBB(); + ///Method: private static System.Threading.Tasks.AwaitTaskContinuation+<>c..cctor(), Token 00001EB9 + static Class_00001EBB() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.AwaitTaskContinuation+<>c..ctor() - Class_00001EBB(); + ///Method: public System.Threading.Tasks.AwaitTaskContinuation+<>c..ctor(), Token 00001EBA + public Class_00001EBB() + { + throw new System.NotImplementedException(); + } } ///System.Action public sealed class Class_50000F8F : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Action..ctor(System.Object object, System.IntPtr method) - Class_50000F8F(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Action..ctor(System.Object object, System.IntPtr method), Token 00001EB8 + public Class_50000F8F(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Threading.Tasks.ThreadPoolTaskScheduler public sealed class Class_00001EDE : NanoInput.Class_00001C4D @@ -15200,23 +18174,41 @@ public sealed class Class_00001EDE : NanoInput.Class_00001C4D ///Field: System.Threading.ParameterizedThreadStart System.Threading.Tasks.ThreadPoolTaskScheduler.s_longRunningThreadWork public static readonly NanoInput.Class_00001EDE Field_00001EDC; - ///Method: internal System.Threading.Tasks.ThreadPoolTaskScheduler..ctor() - Class_00001EDE(); - - ///Method: private static System.Threading.Tasks.ThreadPoolTaskScheduler..cctor() - Class_00001EDE(); - - ///Method: virtual void System.Threading.Tasks.ThreadPoolTaskScheduler.QueueTask(System.Threading.Tasks.Task task) - virtual ? QueueTask(NanoInput.Class_00000628 Arg_0); - - ///Method: protected virtual System.Boolean System.Threading.Tasks.ThreadPoolTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task task, System.Boolean taskWasPreviouslyQueued) - virtual NanoInput.Class_0000021C TryExecuteTaskInline(NanoInput.Class_00000628 Arg_0, NanoInput.Class_0000021C Arg_1); - - ///Method: virtual System.Boolean System.Threading.Tasks.ThreadPoolTaskScheduler.TryDequeue(System.Threading.Tasks.Task task) - virtual NanoInput.Class_0000021C TryDequeue(NanoInput.Class_00000628 Arg_0); - - ///Method: internal virtual void System.Threading.Tasks.ThreadPoolTaskScheduler.NotifyWorkItemProgress() - virtual ? NotifyWorkItemProgress(); + ///Method: internal System.Threading.Tasks.ThreadPoolTaskScheduler..ctor(), Token 00001EBC + public Class_00001EDE() + { + throw new System.NotImplementedException(); + } + + ///Method: private static System.Threading.Tasks.ThreadPoolTaskScheduler..cctor(), Token 00001EDD + static Class_00001EDE() + { + throw new System.NotImplementedException(); + } + + ///Method: virtual void System.Threading.Tasks.ThreadPoolTaskScheduler.QueueTask(System.Threading.Tasks.Task task), Token 00001F89 + public virtual void QueueTask(NanoInput.Class_00000628 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: protected virtual System.Boolean System.Threading.Tasks.ThreadPoolTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task task, System.Boolean taskWasPreviouslyQueued), Token 00001F8E + public virtual NanoInput.Class_0000021C TryExecuteTaskInline(NanoInput.Class_00000628 Arg_0, NanoInput.Class_0000021C Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: virtual System.Boolean System.Threading.Tasks.ThreadPoolTaskScheduler.TryDequeue(System.Threading.Tasks.Task task), Token 00001F91 + public virtual NanoInput.Class_0000021C TryDequeue(NanoInput.Class_00000628 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: internal virtual void System.Threading.Tasks.ThreadPoolTaskScheduler.NotifyWorkItemProgress(), Token 00001F93 + public virtual void NotifyWorkItemProgress() + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.ConditionalWeakTable public sealed class Class_FF001ECC : NanoInput.Class_FF001EE0, NanoInput.Class_000000E8 @@ -15230,8 +18222,11 @@ public sealed class Class_FF001ECC : NanoInput.Class_FF001EE0, NanoInput.Class_0 ///Field: System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable._activeEnumeratorRefCount public NanoInput.Class_FF001ECC Field_00001ED6; - ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable..ctor() - Class_FF001ECC(); + ///Method: public System.Runtime.CompilerServices.ConditionalWeakTable..ctor(), Token 00001EBF + public Class_FF001ECC() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerable> public interface Class_FF001EE0 : NanoInput.Class_000000E8 @@ -15261,11 +18256,17 @@ public sealed class Class_FF001EE2 ///Field: System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable+Container._finalized public NanoInput.Class_FF001EE2 Field_00001EE1; - ///Method: internal System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent) - Class_FF001EE2(NanoInput.Class_FF001ECC Arg_0); + ///Method: internal System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent), Token 00001EC3 + public Class_FF001EE2(NanoInput.Class_FF001ECC Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: private System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent, System.Int32[] buckets, System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Threading.Tasks.TaskScheduler, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] entries, System.Int32 firstFreeEntry) - Class_FF001EE2(NanoInput.Class_FF001ECC Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_FF001EC6 Arg_2, NanoInput.Class_00000014 Arg_3); + ///Method: private System.Runtime.CompilerServices.ConditionalWeakTable+Container..ctor(System.Runtime.CompilerServices.ConditionalWeakTable parent, System.Int32[] buckets, System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Threading.Tasks.TaskScheduler, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] entries, System.Int32 firstFreeEntry), Token 00001ED8 + public Class_FF001EE2(NanoInput.Class_FF001ECC Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_FF001EC6 Arg_2, NanoInput.Class_00000014 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.Runtime.CompilerServices.ConditionalWeakTable+Entry public struct Class_FF001EC6 @@ -15288,14 +18289,23 @@ public class Class_FF001EE4 : NanoInput.Class_FF001EE5, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>._current public NanoInput.Class_FF001EE4 Field_00001ECB; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Threading.Tasks.TaskScheduler, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array) - Class_FF001EE4(NanoInput.Class_FF001EC6 Arg_0); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>..ctor(System.Runtime.CompilerServices.ConditionalWeakTable`2+Entry[[System.Threading.Tasks.TaskScheduler, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]][] array), Token 00001EC9 + public Class_FF001EE4(NanoInput.Class_FF001EC6 Arg_0) + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.MoveNext(), Token 00001F2C + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose() - virtual ? Dispose(); + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator+Entry>.Dispose(), Token 00001F2D + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator+Entry> public interface Class_FF001EE5 : NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -15307,17 +18317,26 @@ public sealed class Class_00001EEB ///Field: System.Threading.QueueUserWorkItemCallback+<>c System.Threading.QueueUserWorkItemCallback+<>c.<>9 public static readonly NanoInput.Class_00001EEB Field_00001EE6; - ///Method: private static System.Threading.QueueUserWorkItemCallback+<>c..cctor() - Class_00001EEB(); + ///Method: private static System.Threading.QueueUserWorkItemCallback+<>c..cctor(), Token 00001EE9 + static Class_00001EEB() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.QueueUserWorkItemCallback+<>c..ctor() - Class_00001EEB(); + ///Method: public System.Threading.QueueUserWorkItemCallback+<>c..ctor(), Token 00001EEA + public Class_00001EEB() + { + throw new System.NotImplementedException(); + } } ///System.Action public sealed class Class_50001C5B : NanoInput.Class_0000000C, NanoInput.Class_00000064, NanoInput.Class_00000085 { - ///Method: public System.Action..ctor(System.Object object, System.IntPtr method) - Class_50001C5B(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1); + ///Method: public System.Action..ctor(System.Object object, System.IntPtr method), Token 00001EE8 + public Class_50001C5B(NanoInput.Class_00000001 Arg_0, NanoInput.Class_000005BD Arg_1) + { + throw new System.NotImplementedException(); + } } ///System.Empty public sealed class Class_00001EEE @@ -15325,14 +18344,23 @@ public sealed class Class_00001EEE ///Field: System.Empty System.Empty.Value public static readonly NanoInput.Class_00001EEE Field_00001EF2; - ///Method: private System.Empty..ctor() - Class_00001EEE(); + ///Method: private System.Empty..ctor(), Token 00001EF3 + public Class_00001EEE() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.Empty..cctor() - Class_00001EEE(); + ///Method: private static System.Empty..cctor(), Token 00001EF4 + static Class_00001EEE() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.Empty.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.Empty.ToString(), Token 00001F6C + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.DBNull public sealed class Class_00001EEF : NanoInput.Class_00000085 @@ -15340,17 +18368,23 @@ public sealed class Class_00001EEF : NanoInput.Class_00000085 ///Field: System.DBNull System.DBNull.Value public static readonly NanoInput.Class_00001EEF Field_00001EF1; - ///Method: private System.DBNull..ctor() - Class_00001EEF(); - - ///Method: private System.DBNull..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001EEF(); + ///Method: private System.DBNull..ctor(), Token 00001EF5 + public Class_00001EEF() + { + throw new System.NotImplementedException(); + } - ///Method: private static System.DBNull..cctor() - Class_00001EEF(); + ///Method: private static System.DBNull..cctor(), Token 00001EF7 + static Class_00001EEF() + { + throw new System.NotImplementedException(); + } - ///Method: public virtual System.String System.DBNull.ToString() - virtual NanoInput.Class_00000004 ToString(); + ///Method: public virtual System.String System.DBNull.ToString(), Token 00001F49 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } } ///System.Decimal public struct Class_00001EF0 : NanoInput.Class_000001F5, NanoInput.Class_000001F8, NanoInput.Class_00000130, NanoInput.Class_0C001EF0, NanoInput.Class_07001EF0, NanoInput.Class_00000085 @@ -15379,62 +18413,53 @@ public struct Class_00001EF0 : NanoInput.Class_000001F5, NanoInput.Class_000001F ///Field: System.UInt64 System.Decimal._lo64 public readonly NanoInput.Class_00001EF0 Field_00001EFF; - ///Method: private static System.Decimal..cctor() - Class_00001EF0(); - - ///Method: internal System.Decimal..ctor(System.Currency value) - Class_00001EF0(); - - ///Method: public System.Decimal..ctor(System.Int32 value) - Class_00001EF0(NanoInput.Class_00000014 Arg_0); - - ///Method: public System.Decimal..ctor(System.UInt32 value) - Class_00001EF0(); - - ///Method: public System.Decimal..ctor(System.Int64 value) - Class_00001EF0(); - - ///Method: public System.Decimal..ctor(System.UInt64 value) - Class_00001EF0(); - - ///Method: public System.Decimal..ctor(System.Single value) - Class_00001EF0(); - - ///Method: public System.Decimal..ctor(System.Double value) - Class_00001EF0(); - - ///Method: private System.Decimal..ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) - Class_00001EF0(); - - ///Method: public System.Decimal..ctor(System.Int32[] bits) - Class_00001EF0(); - - ///Method: public System.Decimal..ctor(System.ReadOnlySpan bits) - Class_00001EF0(); - - ///Method: public System.Decimal..ctor(System.Int32 lo, System.Int32 mid, System.Int32 hi, System.Boolean isNegative, System.Byte scale) - Class_00001EF0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3, NanoInput.Class_00000013 Arg_4); - - ///Method: private System.Decimal..ctor(System.Int32 lo, System.Int32 mid, System.Int32 hi, System.Int32 flags) - Class_00001EF0(); - - ///Method: private System.Decimal..ctor(System.Decimal& d, System.Int32 flags) - Class_00001EF0(); - - ///Method: public virtual System.Boolean System.Decimal.Equals(System.Object value) - virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0); - - ///Method: public virtual System.Int32 System.Decimal.GetHashCode() - virtual NanoInput.Class_00000014 GetHashCode(); - - ///Method: public virtual System.String System.Decimal.ToString() - virtual NanoInput.Class_00000004 ToString(); - - ///Method: public virtual System.String System.Decimal.ToString(System.String format, System.IFormatProvider provider) - virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1); - - ///Method: public virtual System.Boolean System.Decimal.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider) - virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3); + ///Method: private static System.Decimal..cctor(), Token 00001F00 + static Class_00001EF0() + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Decimal..ctor(System.Int32 value), Token 00001F02 + public Class_00001EF0(NanoInput.Class_00000014 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public System.Decimal..ctor(System.Int32 lo, System.Int32 mid, System.Int32 hi, System.Boolean isNegative, System.Byte scale), Token 00001F0B + public Class_00001EF0(NanoInput.Class_00000014 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_00000014 Arg_2, NanoInput.Class_0000021C Arg_3, NanoInput.Class_00000013 Arg_4) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Decimal.Equals(System.Object value), Token 00001F4B + public virtual NanoInput.Class_0000021C Equals(NanoInput.Class_00000001 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Int32 System.Decimal.GetHashCode(), Token 00001F5C + public virtual NanoInput.Class_00000014 GetHashCode() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Decimal.ToString(), Token 00001F62 + public virtual NanoInput.Class_00000004 ToString() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.String System.Decimal.ToString(System.String format, System.IFormatProvider provider), Token 00001F69 + public virtual NanoInput.Class_00000004 ToString(NanoInput.Class_00000004 Arg_0, NanoInput.Class_00000063 Arg_1) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean System.Decimal.TryFormat(System.Span destination, System.Int32& charsWritten, System.ReadOnlySpan format, System.IFormatProvider provider), Token 00001F6B + public virtual NanoInput.Class_0000021C TryFormat(NanoInput.Class_02000131 Arg_0, NanoInput.Class_00000014 Arg_1, NanoInput.Class_0E000131 Arg_2, NanoInput.Class_00000063 Arg_3) + { + throw new System.NotImplementedException(); + } } ///System.IComparable public interface Class_0C001EF0 @@ -15450,11 +18475,17 @@ public sealed class Class_00001F1D ///Field: System.Threading.Tasks.ThreadPoolTaskScheduler+<>c System.Threading.Tasks.ThreadPoolTaskScheduler+<>c.<>9 public static readonly NanoInput.Class_00001F1D Field_00001F19; - ///Method: private static System.Threading.Tasks.ThreadPoolTaskScheduler+<>c..cctor() - Class_00001F1D(); + ///Method: private static System.Threading.Tasks.ThreadPoolTaskScheduler+<>c..cctor(), Token 00001F1B + static Class_00001F1D() + { + throw new System.NotImplementedException(); + } - ///Method: public System.Threading.Tasks.ThreadPoolTaskScheduler+<>c..ctor() - Class_00001F1D(); + ///Method: public System.Threading.Tasks.ThreadPoolTaskScheduler+<>c..ctor(), Token 00001F1C + public Class_00001F1D() + { + throw new System.NotImplementedException(); + } } ///System.Decimal+DecCalc public struct Class_00001F5A @@ -15486,8 +18517,11 @@ public struct Class_00001F5A ///Field: System.Decimal+DecCalc+PowerOvfl[] System.Decimal+DecCalc.PowerOvflValues public static readonly NanoInput.Class_00001F5A Field_00001F58; - ///Method: private static System.Decimal+DecCalc..cctor() - Class_00001F5A(); + ///Method: private static System.Decimal+DecCalc..cctor(), Token 00001F59 + static Class_00001F5A() + { + throw new System.NotImplementedException(); + } } ///System.Decimal+DecCalc+PowerOvfl public struct Class_00001F96 @@ -15498,8 +18532,11 @@ public struct Class_00001F96 ///Field: System.UInt64 System.Decimal+DecCalc+PowerOvfl.MidLo public readonly NanoInput.Class_00001F96 Field_00001F99; - ///Method: public System.Decimal+DecCalc+PowerOvfl..ctor(System.UInt32 hi, System.UInt32 mid, System.UInt32 lo) - Class_00001F96(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000015 Arg_1, NanoInput.Class_00000015 Arg_2); + ///Method: public System.Decimal+DecCalc+PowerOvfl..ctor(System.UInt32 hi, System.UInt32 mid, System.UInt32 lo), Token 00001F97 + public Class_00001F96(NanoInput.Class_00000015 Arg_0, NanoInput.Class_00000015 Arg_1, NanoInput.Class_00000015 Arg_2) + { + throw new System.NotImplementedException(); + } } ///ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator public class Class_2E001F96 : NanoInput.Class_2F001F96, NanoInput.Class_0000003A, NanoInput.Class_00000597 @@ -15510,14 +18547,23 @@ public class Class_2E001F96 : NanoInput.Class_2F001F96, NanoInput.Class_0000003A ///Field: System.Int32 ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator._current public NanoInput.Class_2E001F96 Field_00001F9C; - ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Decimal+DecCalc+PowerOvfl[] array) - Class_2E001F96(NanoInput.Class_00001F96 Arg_0); - - ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext() - virtual NanoInput.Class_0000021C MoveNext(); - - ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose() - virtual ? Dispose(); + ///Method: public ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator..ctor(System.Decimal+DecCalc+PowerOvfl[] array), Token 00001F9A + public Class_2E001F96(NanoInput.Class_00001F96 Arg_0) + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual System.Boolean ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.MoveNext(), Token 00001F9F + public virtual NanoInput.Class_0000021C MoveNext() + { + throw new System.NotImplementedException(); + } + + ///Method: public virtual void ArduinoCsCompiler.Runtime.MiniArray+ArrayIterator.Dispose(), Token 00001FA0 + public virtual void Dispose() + { + throw new System.NotImplementedException(); + } } ///System.Collections.Generic.IEnumerator public interface Class_2F001F96 : NanoInput.Class_0000003A, NanoInput.Class_00000597