From 9cee5066943876dfb9272966d3b79189e43294ae Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 27 Jul 2026 19:45:37 +0200 Subject: [PATCH 01/15] [linker] Trim Export attributes after registration Remove Export, Action, and Outlet attribute instances after managed registration when static analysis proves runtime metadata fallback is unnecessary. Preserve selector access during post-processing through isolated pre-trim assemblies, and disable or reject removal when safety blockers are found. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 7d63bf91-7585-4d3e-9db4-a17531b71907 --- docs/building-apps/build-properties.md | 14 ++ dotnet/targets/Xamarin.Shared.Sdk.targets | 33 +++++ .../Tasks/PrepareAssemblies.cs | 20 ++- msbuild/Xamarin.Shared/Xamarin.Shared.targets | 16 ++- src/ILLink.LinkAttributes.xml.in | 9 ++ .../ComputeExportAttributeRemovalStepTests.cs | 108 ++++++++++++++++ tests/common/DotNet.cs | 4 +- tests/dotnet/MySimpleApp/AppDelegate.cs | 36 ++++++ tests/dotnet/MySimpleApp/shared.csproj | 1 + .../dotnet/UnitTests/PrepareAssembliesTest.cs | 122 ++++++++++++++++++ tools/assembly-preparer/AssemblyPreparer.cs | 60 ++++++--- .../ComputeExportAttributeRemovalStep.cs | 45 +++++++ tools/common/Application.cs | 10 +- tools/common/StaticRegistrar.cs | 113 ++++++++++++---- tools/dotnet-linker/LinkerConfiguration.cs | 5 +- .../Steps/ManagedRegistrarStep.cs | 4 + tools/linker/RegistrarRemovalTrackingStep.cs | 15 +++ tools/mtouch/Errors.designer.cs | 9 ++ tools/mtouch/Errors.resx | 4 + 19 files changed, 574 insertions(+), 54 deletions(-) create mode 100644 tests/assembly-preparer/ComputeExportAttributeRemovalStepTests.cs create mode 100644 tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs diff --git a/docs/building-apps/build-properties.md b/docs/building-apps/build-properties.md index 2861152d4f78..444b13848192 100644 --- a/docs/building-apps/build-properties.md +++ b/docs/building-apps/build-properties.md @@ -500,6 +500,20 @@ Removing the dynamic registrar requires a static registrar (`Registrar=static` o `Registrar=managed-static`) and trimming, so setting this property has no effect (and the build warns) when those conditions aren't met. +## TrimExportAttributes + +Controls whether `Foundation.ExportAttribute`, `Foundation.ActionAttribute`, +and `Foundation.OutletAttribute` instances are removed during trimming. + +If this property is not specified, the build automatically removes these +attributes when assembly preparation and post-processing are enabled, the +trimmable static registrar is selected, dynamic registration is not required, +and no runtime fallback needs the attributes. + +Set this property to `false` to preserve the attributes. Set it to `true` to +require their removal; the build will fail if it detects that the attributes +are needed at runtime. + ## EmbedOnDemandResources If on-demand resources should be embedded in the app bundle. diff --git a/dotnet/targets/Xamarin.Shared.Sdk.targets b/dotnet/targets/Xamarin.Shared.Sdk.targets index 92a833c8baae..440268fb6eb8 100644 --- a/dotnet/targets/Xamarin.Shared.Sdk.targets +++ b/dotnet/targets/Xamarin.Shared.Sdk.targets @@ -282,6 +282,7 @@ _PrepareAssemblies; _SetDynamicRegistrationSupportedFeature; _SetSmartEnumConversionsRootDescriptor; + _SetTrimExportAttributesFeature; _ComputeFrameworkFilesToPublish; _ComputeDynamicLibrariesToPublish; ComputeFilesToPublish; @@ -632,6 +633,30 @@ + + + + + + + <_TrimExportAttributesLine Include="@(_AssemblyPreparerTrimExportAttributesProperty)" Condition="$([System.String]::Copy('%(Identity)').StartsWith('TrimExportAttributes='))" /> + + + <_TrimExportAttributesLineText>@(_TrimExportAttributesLine) + <_TrimExportAttributes>false + <_TrimExportAttributes Condition="'$(_TrimExportAttributesLineText)' != ''">$(_TrimExportAttributesLineText.Replace('TrimExportAttributes=', '')) + + + + + + @@ -644,8 +669,16 @@ /> + + + <_TrimExportAttributes>false + <_TrimExportAttributes Condition="'$(PrepareAssemblies)' == 'true' And '$(PostProcessAssemblies)' == 'true' And '$(Registrar)' == 'trimmable-static'">$(TrimExportAttributes) + <_UseDynamicDependenciesInsteadOfMarking Condition="'$(_UseDynamicDependenciesInsteadOfMarking)' == ''">true <_UseDynamicDependenciesForProtocolPreservation Condition="'$(_UseDynamicDependenciesForProtocolPreservation)' == ''">$(_UseDynamicDependenciesInsteadOfMarking) <_UseDynamicDependenciesForSmartEnumPreservation Condition="'$(_UseDynamicDependenciesForSmartEnumPreservation)' == ''">$(_UseDynamicDependenciesInsteadOfMarking) diff --git a/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs b/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs index 7a3867578538..da7bed4d4f1d 100644 --- a/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs +++ b/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs @@ -30,6 +30,8 @@ public class PrepareAssemblies : XamarinTask { public string MakeReproPath { get; set; } = ""; + public string MSBuildOutputFile { get; set; } = ""; + public string OutputDirectory { get; set; } = ""; [Required] @@ -38,8 +40,10 @@ public class PrepareAssemblies : XamarinTask { public bool PostProcessing { get; set; } - // The pre-trim (untrimmed) assemblies (the trimmer's input), used during post-processing to read - // the [ProtocolMember] attributes the trimmer removed from the post-trim assemblies. + public bool? TrimExportAttributes { get; set; } + + // The original assemblies from before preparation and trimming, used during post-processing to read + // selected registrar attributes removed during trimming. public ITaskItem [] PreTrimAssemblies { get; set; } = []; // When set (to ILC's output object file), the defined symbols in this file are used to determine @@ -71,11 +75,13 @@ public override bool Execute () { // Capture Console usage and show an error if anything uses Console.[Error.]Write* using var consoleToLog = ConsoleToTaskWriter.EnsureNoConsoleUsage (Log); + var success = false; try { var infos = InputAssemblies.Select (GetAssemblyInfo).ToArray (); using var preparer = new AssemblyPreparer (this, infos, OptionsFile?.ItemSpec ?? ""); preparer.MakeReproPath = MakeReproPath; + preparer.TrimExportAttributes = TrimExportAttributes; preparer.PreTrimAssemblies.AddRange (PreTrimAssemblies.Select (v => v.ItemSpec)); bool rv; List exceptions; @@ -121,8 +127,10 @@ public override bool Execute () outputAssemblies.AddRange (preparer.AddedAssemblies.Select (v => { var rv = new TaskItem (v.Path); + var relativePath = preparer.Configuration.AssemblyPublishDir + Path.GetFileName (v.Path); rv.SetMetadata ("PostprocessAssembly", "true"); - rv.SetMetadata ("RelativePath", preparer.Configuration.AssemblyPublishDir + Path.GetFileName (v.Path)); + rv.SetMetadata ("OriginalRelativePath", relativePath); + rv.SetMetadata ("RelativePath", relativePath); if (v.OriginatingAssembly is not null) { var originatingItem = map.SingleOrDefault (kvp => Path.GetFileName (kvp.Key.InputPath) == Path.GetFileName (v.OriginatingAssembly)).Value; if (originatingItem is null) { @@ -141,10 +149,14 @@ public override bool Execute () OutputAssemblies = outputAssemblies.ToArray (); if (!rv && !Log.HasLoggedErrors) Log.LogError (MSBStrings.E0192); - return rv && !Log.HasLoggedErrors; + success = rv && !Log.HasLoggedErrors; + return success; } catch (Exception e) { ((IToolLog) this).LogException (e); return false; + } finally { + if (!success && !string.IsNullOrEmpty (MSBuildOutputFile)) + File.Delete (MSBuildOutputFile); } } } diff --git a/msbuild/Xamarin.Shared/Xamarin.Shared.targets b/msbuild/Xamarin.Shared/Xamarin.Shared.targets index ae7fddc9e539..980d3d39ca60 100644 --- a/msbuild/Xamarin.Shared/Xamarin.Shared.targets +++ b/msbuild/Xamarin.Shared/Xamarin.Shared.targets @@ -3667,22 +3667,31 @@ Copyright (C) 2018 Microsoft. All rights reserved. $([MSBuild]::EnsureTrailingSlash('$(DeviceSpecificIntermediateOutputPath)prepared-assemblies')) + <_AssemblyPreparerConfigurationStamp>$(DeviceSpecificIntermediateOutputPath)assembly-preparer-configuration.txt + @@ -3691,6 +3700,7 @@ Copyright (C) 2018 Microsoft. All rights reserved. + @@ -3728,11 +3738,13 @@ Copyright (C) 2018 Microsoft. All rights reserved. diff --git a/src/ILLink.LinkAttributes.xml.in b/src/ILLink.LinkAttributes.xml.in index 3e20a73e7afe..6e7a5ed39cb7 100644 --- a/src/ILLink.LinkAttributes.xml.in +++ b/src/ILLink.LinkAttributes.xml.in @@ -7,6 +7,15 @@ + + + + + + + + + diff --git a/tests/assembly-preparer/ComputeExportAttributeRemovalStepTests.cs b/tests/assembly-preparer/ComputeExportAttributeRemovalStepTests.cs new file mode 100644 index 000000000000..fb939a989647 --- /dev/null +++ b/tests/assembly-preparer/ComputeExportAttributeRemovalStepTests.cs @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +using MonoTouch.Tuner; + +using Xamarin.Linker; + +namespace AssemblyPreparerTests; + +public class ComputeExportAttributeRemovalStepTests : BaseClass { + [TestCase (false, false, false)] + [TestCase (null, false, true)] + [TestCase (true, false, true)] + [TestCase (null, true, false)] + public void DynamicRegistration (bool? trimExportAttributes, bool dynamicRegistrationSupported, bool expectedRemoval) + { + using var preparer = CreatePreparer (ApplePlatform.iOS, false, preparer => { + preparer.Registrar = RegistrarMode.TrimmableStatic; + preparer.TrimExportAttributes = trimExportAttributes; + preparer.Optimizations.RemoveDynamicRegistrar = !dynamicRegistrationSupported; + preparer.Optimizations.OptimizeBlockLiteralSetupBlock = true; + preparer.Optimizations.StaticBlockToDelegateLookup = true; + }, "public class C {}", out _); + + var context = preparer.Configuration.DerivedLinkContext; + new LoadAssembliesStep ().Process (context); + new ComputeExportAttributeRemovalStep ().Process (context); + + Assert.That (preparer.Configuration.Application.TrimExportAttributes, Is.EqualTo (expectedRemoval), "Removal"); + } + + [TestCase (true, true, true)] + [TestCase (false, true, false)] + [TestCase (true, false, false)] + public void RequiredOptimizations (bool optimizeBlockLiteralSetupBlock, bool staticBlockToDelegateLookup, bool expectedRemoval) + { + using var preparer = CreatePreparer (ApplePlatform.iOS, false, preparer => { + preparer.Registrar = RegistrarMode.TrimmableStatic; + preparer.TrimExportAttributes = true; + preparer.Optimizations.RemoveDynamicRegistrar = true; + preparer.Optimizations.OptimizeBlockLiteralSetupBlock = optimizeBlockLiteralSetupBlock; + preparer.Optimizations.StaticBlockToDelegateLookup = staticBlockToDelegateLookup; + }, "public class C {}", out _); + + var context = preparer.Configuration.DerivedLinkContext; + new LoadAssembliesStep ().Process (context); + new ComputeExportAttributeRemovalStep ().Process (context); + + Assert.That (preparer.Configuration.Application.TrimExportAttributes, Is.EqualTo (expectedRemoval), "Removal"); + } + + [Test] + public void ExplicitBlocker () + { + using var preparer = CreatePreparer (ApplePlatform.iOS, false, preparer => { + preparer.Registrar = RegistrarMode.TrimmableStatic; + preparer.TrimExportAttributes = true; + preparer.Optimizations.RemoveDynamicRegistrar = true; + preparer.Optimizations.OptimizeBlockLiteralSetupBlock = true; + preparer.Optimizations.StaticBlockToDelegateLookup = true; + }, "public class C {}", out _); + + var context = preparer.Configuration.DerivedLinkContext; + new LoadAssembliesStep ().Process (context); + preparer.Configuration.Application.TrimExportAttributesBlockers.Add ("a test blocker is active"); + new ComputeExportAttributeRemovalStep ().Process (context); + + Assert.That (preparer.Configuration.Application.TrimExportAttributes, Is.False, "Removal"); + } + + [Test] + public void NSXpcInterfaceMethodInfoOverload () + { + var code = """ + using System.Reflection; + using Foundation; + using ObjCRuntime; + + public class C { + public void GetAllowedClasses (NSXpcInterface value, MethodInfo method) + { + value.GetAllowedClasses (method, 0, false); + } + + public void SetAllowedClasses (NSXpcInterface value, MethodInfo method, NSSet classes) + { + value.SetAllowedClasses (method, classes, 0, false); + } + } + """; + + using var preparer = CreatePreparer (ApplePlatform.iOS, false, preparer => { + preparer.Registrar = RegistrarMode.TrimmableStatic; + preparer.TrimExportAttributes = true; + preparer.Optimizations.RemoveDynamicRegistrar = true; + preparer.Optimizations.OptimizeBlockLiteralSetupBlock = true; + preparer.Optimizations.StaticBlockToDelegateLookup = true; + }, code, out _); + + var context = preparer.Configuration.DerivedLinkContext; + new LoadAssembliesStep ().Process (context); + new RegistrarRemovalTrackingStep ().Process (context); + new ComputeExportAttributeRemovalStep ().Process (context); + + Assert.That (preparer.Configuration.Application.TrimExportAttributes, Is.False, "Removal"); + Assert.That (preparer.Configuration.Application.TrimExportAttributesBlockers.Single (), Does.Contain ("NSXpcInterface"), "Blocker"); + } +} diff --git a/tests/common/DotNet.cs b/tests/common/DotNet.cs index 9ec6f7def0ac..7784d366b678 100644 --- a/tests/common/DotNet.cs +++ b/tests/common/DotNet.cs @@ -70,9 +70,9 @@ public static ExecutionResult AssertRun (string project, Dictionary? properties = null) + public static ExecutionResult AssertBuildFailure (string project, Dictionary? properties = null, string? target = null) { - var rv = Execute ("build", project, properties, false); + var rv = Execute ("build", project, properties, false, target: target); Assert.That (rv.ExitCode, Is.Not.EqualTo (0), "Unexpected success"); return rv; } diff --git a/tests/dotnet/MySimpleApp/AppDelegate.cs b/tests/dotnet/MySimpleApp/AppDelegate.cs index db627351190b..5fa873275871 100644 --- a/tests/dotnet/MySimpleApp/AppDelegate.cs +++ b/tests/dotnet/MySimpleApp/AppDelegate.cs @@ -1,14 +1,50 @@ using System; +using System.Reflection; using System.Runtime.InteropServices; using Foundation; +using ObjCRuntime; namespace MySimpleApp { +#if EXPORT_ATTRIBUTE_REMOVAL + [Register] + class ExportMetadataApplicationType : NSObject { + [Export ("applicationExport")] + public void ApplicationExport () + { + } + + [Action ("applicationAction:")] + public void ApplicationAction (NSObject sender) + { + } + + [Outlet ("applicationOutlet")] + public NSObject? ApplicationOutlet { get; set; } + + public override string Description => base.Description; + } +#endif + public class Program { +#if EXPORT_ATTRIBUTE_REMOVAL_NSXPC + static void UseNSXpcInterfaceMethodInfoOverload (NSXpcInterface value, MethodInfo method) + { + value.GetAllowedClasses (method, 0, false); + } +#endif + static int Main (string [] args) { GC.KeepAlive (typeof (NSObject)); // prevent linking away the platform assembly +#if EXPORT_ATTRIBUTE_REMOVAL + GC.KeepAlive (typeof (INSUrlSessionDelegate)); + GC.KeepAlive (typeof (ExportMetadataApplicationType)); + Console.WriteLine (NSBundle.MainBundle.BundlePath); + Console.WriteLine (new ExportMetadataApplicationType ().Description); +#endif + Console.WriteLine (Environment.GetEnvironmentVariable ("MAGIC_WORD")); return args.Length; diff --git a/tests/dotnet/MySimpleApp/shared.csproj b/tests/dotnet/MySimpleApp/shared.csproj index c01aa9388251..573c619f9649 100644 --- a/tests/dotnet/MySimpleApp/shared.csproj +++ b/tests/dotnet/MySimpleApp/shared.csproj @@ -6,6 +6,7 @@ MySimpleApp com.xamarin.mysimpleapp 3.14 + $(DefineConstants);$(AdditionalDefineConstants) diff --git a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs index 0a5bb4a3c04a..dd9774857467 100644 --- a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs +++ b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs @@ -1,6 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +using Mono.Cecil; + #nullable enable namespace Xamarin.Tests { @@ -34,5 +36,125 @@ public void IncrementalBuild (ApplePlatform platform, string runtimeIdentifiers, // The second (incremental) build, without any changes, must also succeed. DotNet.AssertBuild (project_path, properties); } + + [TestCase (true, true, "trimmable-static", null, null, true)] + [TestCase (false, true, "trimmable-static", null, null, false)] + [TestCase (true, false, "trimmable-static", null, null, false)] + [TestCase (true, true, "managed-static", null, null, false)] + [TestCase (true, true, "trimmable-static", "false", null, false)] + [TestCase (true, true, "trimmable-static", null, "true", false)] + public void ExportAttributeRemovalEligibility (bool prepareAssemblies, bool postProcessAssemblies, string registrar, string? trimExportAttributes, string? dynamicRegistrationSupported, bool expectedRemoval) + { + var platform = ApplePlatform.iOS; + var runtimeIdentifiers = "iossimulator-arm64"; + var project = "MySimpleApp"; + var configuration = "Release"; + Configuration.IgnoreIfIgnoredPlatform (platform); + Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers); + + var projectPath = GetProjectPath (project, runtimeIdentifiers: runtimeIdentifiers, platform: platform, out _, configuration: configuration); + Clean (projectPath); + var properties = GetDefaultProperties (runtimeIdentifiers); + properties ["AdditionalDefineConstants"] = "EXPORT_ATTRIBUTE_REMOVAL"; + properties ["Configuration"] = configuration; + properties ["EnableAssemblyILStripping"] = "true"; + properties ["MtouchLink"] = registrar == "managed-static" ? "SdkOnly" : "Full"; + properties ["PostProcessAssemblies"] = postProcessAssemblies.ToString (); + properties ["PrepareAssemblies"] = prepareAssemblies.ToString (); + properties ["Registrar"] = registrar; + if (trimExportAttributes is not null) + properties ["TrimExportAttributes"] = trimExportAttributes; + if (dynamicRegistrationSupported is not null) + properties ["DynamicRegistrationSupported"] = dynamicRegistrationSupported; + + string platformAssemblyPath; + string appAssemblyPath; + string? target = null; + if (!prepareAssemblies) { + DotNet.AssertBuild (projectPath, properties, target: "Compile"); + platformAssemblyPath = Configuration.GetBaseLibraryImplementations (platform).First (); + appAssemblyPath = Path.Combine (GetObjDir (projectPath, platform, runtimeIdentifiers, configuration), project + ".dll"); + } else { + target = "Compile;_ComputePublishTrimmed;_ComputeLinkMode;_ComputeLinkerArguments;_PrepareAssemblies;_SetDynamicRegistrationSupportedFeature;_SetTrimExportAttributesFeature;_ComputeFrameworkFilesToPublish;_ComputeDynamicLibrariesToPublish;ComputeFilesToPublish;_ComputeStripAssemblyIL;_StripAssemblyIL"; + var assemblyDirectory = Path.Combine (GetObjDir (projectPath, platform, runtimeIdentifiers, configuration), "stripped"); + DotNet.AssertBuild (projectPath, properties, target: target); + platformAssemblyPath = Path.Combine (assemblyDirectory, Configuration.GetBaseLibraryName (platform)); + appAssemblyPath = Path.Combine (assemblyDirectory, project + ".dll"); + } + + AssertExportMetadata (platformAssemblyPath, appAssemblyPath, !expectedRemoval); + + if (expectedRemoval) { + properties ["DynamicRegistrationSupported"] = "true"; + DotNet.AssertBuild (projectPath, properties, target: target); + AssertExportMetadata (platformAssemblyPath, appAssemblyPath, true); + } + } + + static void AssertExportMetadata (string platformAssemblyPath, string appAssemblyPath, bool expected) + { + using var platformAssembly = AssemblyDefinition.ReadAssembly (platformAssemblyPath); + var bundlePath = platformAssembly.MainModule.GetType ("Foundation.NSBundle").Properties.Single (v => v.Name == "BundlePath"); + AssertExport (bundlePath.GetMethod, expected, "direct-binding NSObject wrapper"); + + var nsObjectDescription = platformAssembly.MainModule.GetType ("Foundation.NSObject").Properties.Single (v => v.Name == "Description"); + AssertExport (nsObjectDescription.GetMethod, expected, "wrapper ancestor with application subclasses"); + + using var appAssembly = AssemblyDefinition.ReadAssembly (appAssemblyPath); + var applicationType = appAssembly.MainModule.GetType ("MySimpleApp.ExportMetadataApplicationType"); + AssertAttribute (applicationType.Methods.Single (v => v.Name == "ApplicationExport"), "ExportAttribute", expected, "application export"); + AssertAttribute (applicationType.Methods.Single (v => v.Name == "ApplicationAction"), "ActionAttribute", expected, "application action"); + AssertAttribute (applicationType.Properties.Single (v => v.Name == "ApplicationOutlet"), "OutletAttribute", expected, "application outlet"); + } + + [TestCase (false)] + [TestCase (true)] + public void ExportAttributeRemovalWithNSXpcInterfaceUsage (bool explicitlyEnabled) + { + var platform = ApplePlatform.iOS; + var runtimeIdentifiers = "iossimulator-arm64"; + var project = "MySimpleApp"; + var configuration = "Release"; + Configuration.IgnoreIfIgnoredPlatform (platform); + Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers); + + var projectPath = GetProjectPath (project, runtimeIdentifiers: runtimeIdentifiers, platform: platform, out _, configuration: configuration); + Clean (projectPath); + var properties = GetDefaultProperties (runtimeIdentifiers); + properties ["AdditionalDefineConstants"] = "EXPORT_ATTRIBUTE_REMOVAL;EXPORT_ATTRIBUTE_REMOVAL_NSXPC"; + properties ["Configuration"] = configuration; + properties ["MtouchLink"] = "Full"; + properties ["PostProcessAssemblies"] = "true"; + properties ["PrepareAssemblies"] = "true"; + properties ["Registrar"] = "trimmable-static"; + properties ["DynamicRegistrationSupported"] = "false"; + if (explicitlyEnabled) + properties ["TrimExportAttributes"] = "true"; + + var target = "Compile;_ComputePublishTrimmed;_ComputeLinkMode;_ComputeLinkerArguments;_PrepareAssemblies"; + var expectedMessage = "Export attributes cannot be removed because the application uses an NSXpcInterface overload that obtains a selector from MethodInfo."; + if (explicitlyEnabled) { + for (var i = 0; i < 2; i++) { + var result = DotNet.AssertBuildFailure (projectPath, properties, target: target); + var errors = BinLog.GetBuildLogErrors (result.BinLogPath).ToArray (); + Assert.That (errors.Select (v => v.Message), Has.Some.Contains (expectedMessage), $"Error #{i + 1}"); + } + } else { + var result = DotNet.AssertBuild (projectPath, properties, target: target); + var warnings = BinLog.GetBuildLogWarnings (result.BinLogPath).ToArray (); + Assert.That (warnings.Select (v => v.Message), Has.Some.Contains (expectedMessage), "Warning"); + } + } + + static void AssertExport (ICustomAttributeProvider provider, bool expected, string message) + { + AssertAttribute (provider, "ExportAttribute", expected, message); + } + + static void AssertAttribute (ICustomAttributeProvider provider, string name, bool expected, string message) + { + var actual = provider.CustomAttributes.Any (v => v.AttributeType.Namespace == "Foundation" && v.AttributeType.Name == name); + Assert.That (actual, Is.EqualTo (expected), message); + } } } diff --git a/tools/assembly-preparer/AssemblyPreparer.cs b/tools/assembly-preparer/AssemblyPreparer.cs index c980c2ef0c03..898b87537dbe 100644 --- a/tools/assembly-preparer/AssemblyPreparer.cs +++ b/tools/assembly-preparer/AssemblyPreparer.cs @@ -24,17 +24,25 @@ public class AssemblyPreparer : IDisposable { AggregateLog log = new AggregateLog (); LinkerConfiguration configuration; + bool? trimExportAttributes; public LinkerConfiguration Configuration => configuration; public string MakeReproPath { get; set; } = ""; - // The pre-trim (untrimmed) assemblies. Used during post-processing with the trimmable static - // registrar to read [ProtocolMember] attributes that the trimmer has removed. This is the complete - // set of assemblies that were fed into the trimmer (ILLink's input), so it forms a self-contained - // metadata universe separate from the post-trim assemblies. + // The original assemblies from before preparation and trimming. Used during post-processing with the + // trimmable static registrar to read selected registrar attributes that were removed during trimming. + // This is a complete metadata universe separate from the post-trim assemblies. public List PreTrimAssemblies { get; } = new List (); + public bool? TrimExportAttributes { + get => trimExportAttributes; + set { + trimExportAttributes = value; + configuration.Application.TrimExportAttributes = value; + } + } + public RegistrarMode Registrar { get => configuration.Application.Registrar; set => configuration.Application.Registrar = value; @@ -72,6 +80,21 @@ LinkerConfiguration.Configurator GetConfigurator (string? reproPath = null, Func }), new LinkerConfiguration.SaveValue ((key, storage) => SaveAssemblies (key, storage, reproPath, Assemblies)) )}, + { "TrimExportAttributes", ( + new LinkerConfiguration.LoadValue ((key, value) => { + if (string.IsNullOrEmpty (value)) { + trimExportAttributes = null; + } else if (bool.TryParse (value, out var parsedValue)) { + trimExportAttributes = parsedValue; + } else { + throw new InvalidOperationException ($"Unable to parse the {key} value: {value}"); + } + }), + new LinkerConfiguration.SaveValue ((key, storage) => { + if (trimExportAttributes.HasValue) + storage.Add ($"{key}={(trimExportAttributes.Value ? "true" : "false")}"); + }) + )}, }; return dict; } @@ -96,6 +119,7 @@ public AssemblyPreparer (IToolLog log, AssemblyPreparerInfo [] assemblies, strin configuration = new LinkerConfiguration (log, lines, linker_file, GetConfigurator (null, assemblies.Length == 0 ? null : (input, output) => assemblies.Single (a => a.InputPath == input && a.OutputPath == output))) { AssemblyInfos = Assemblies, }; + configuration.Application.TrimExportAttributes = trimExportAttributes; } public void AddLog (IAssemblyPreparerLog log) @@ -134,10 +158,10 @@ public bool Prepare (out List exceptions) var steps = new List { // CollectAssembliesStep new LoadAssembliesStep (), - new ComputeMethodOverridesStep (), - new CoreTypeMapStep (), - new CollectFieldsStep (), // ProcessExportedFields }; + steps.Add (new ComputeMethodOverridesStep ()); + steps.Add (new CoreTypeMapStep ()); + steps.Add (new CollectFieldsStep ()); // ProcessExportedFields // These steps only do anything for assemblies that are being trimmed (their IsActiveFor requires // AssemblyAction.Link), so don't even add them to the list when nothing's being trimmed. @@ -154,15 +178,16 @@ public bool Prepare (out List exceptions) steps.Add (new InlineDlfcnMethodsStep ()); // Only add RegistrarRemovalTrackingStep if it's needed: - // * If the user explicitly set $(DynamicRegistrationSupported), we don't need to compute the value (it's - // passed straight through to the trimmer feature switch). + // * If the user explicitly set $(DynamicRegistrationSupported), we don't need to compute the value, but + // Export attribute removal still needs the step to detect NSXpcInterface reflection. // * If nothing is being trimmed, the dynamic registrar (which lives in the platform assembly, an SDK // assembly that's only trimmed when trimming is enabled) can't be removed, so there's nothing to compute. - if (!configuration.DynamicRegistrationSupported.HasValue && configuration.Application.AreAnyAssembliesTrimmed) + if (configuration.Application.AreAnyAssembliesTrimmed && (!configuration.DynamicRegistrationSupported.HasValue || configuration.Application.TrimExportAttributes != false)) steps.Add (new RegistrarRemovalTrackingStep ()); // PreMarkDispatcher: I don't think we need this one steps.Add (new ManagedRegistrarStep ()); + steps.Add (new ComputeExportAttributeRemovalStep ()); steps.Add (new TrimmableRegistrarStep ()); steps.Add (new ManagedRegistrarLookupTablesStep ()); steps.Add (new InlineClassGetHandleStep ()); @@ -171,12 +196,11 @@ public bool Prepare (out List exceptions) return RunSteps (steps, out exceptions); } - // Load the pre-trim (untrimmed) assemblies so the trimmable static registrar can read the - // [ProtocolMember] attributes the trimmer removed from the post-trim assemblies. The pre-trim - // assemblies are loaded into their own resolver (a separate, self-contained metadata universe from - // the post-trim assemblies), and stored on the Application for the registrar to consult. There's no - // fallback to the post-trim resolver: the pre-trim set is complete (it's the trimmer's input), and - // falling back would mix the two universes and resolve trimmed-away references incorrectly. + // Load the original assemblies so the trimmable static registrar can read selected attributes removed + // during trimming. The assemblies are loaded into their own resolver (a separate, self-contained + // metadata universe from the post-trim assemblies), and stored on the Application for the registrar to + // consult. There's no fallback to the post-trim resolver: the original set is complete, and falling back + // would mix the two universes and resolve trimmed-away references incorrectly. void LoadPreTrimAssemblies () { if (PreTrimAssemblies.Count == 0) @@ -255,6 +279,10 @@ bool RunSteps (IList steps, out List e exceptions.Add (ErrorHelper.CreateError (99, "RegistrarMode must be explicitly set.")); return false; } + if (TrimExportAttributes != false && Registrar != RegistrarMode.TrimmableStatic) { + exceptions.Add (ErrorHelper.CreateError (99, "Export attributes can only be trimmed with the trimmable static registrar.")); + return false; + } if (!string.IsNullOrEmpty (MakeReproPath) && !SaveToReproPath (exceptions)) return false; diff --git a/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs b/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs new file mode 100644 index 000000000000..feca3f535c4c --- /dev/null +++ b/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +using System.Linq; + +using Xamarin.Bundler; +using Xamarin.Linker; + +#nullable enable + +namespace Xamarin.Linker; + +public class ComputeExportAttributeRemovalStep : ConfigurationAwareStep { + protected override string Name { get; } = "ComputeExportAttributeRemoval"; + protected override int ErrorCode { get; } = 2530; + + protected override void TryProcess () + { + if (App.TrimExportAttributes == false) { + Configuration.SetOutputForMSBuild ("TrimExportAttributes", "false"); + return; + } + + var explicitlyEnabled = App.TrimExportAttributes == true; + if (App.DynamicRegistrationSupported) + App.TrimExportAttributesBlockers.Add ("dynamic registration is supported"); + if (App.Optimizations.OptimizeBlockLiteralSetupBlock != true) + App.TrimExportAttributesBlockers.Add ("the blockliteral-setupblock optimization is disabled"); + if (App.Optimizations.StaticBlockToDelegateLookup != true) + App.TrimExportAttributesBlockers.Add ("the static-block-to-delegate-lookup optimization is disabled"); + + var trimExportAttributes = App.TrimExportAttributesBlockers.Count == 0; + App.TrimExportAttributes = trimExportAttributes; + Configuration.SetOutputForMSBuild ("TrimExportAttributes", trimExportAttributes ? "true" : "false"); + + if (trimExportAttributes) + return; + + var blockers = string.Join (", ", App.TrimExportAttributesBlockers.OrderBy (v => v)); + var exception = explicitlyEnabled + ? ErrorHelper.CreateError (4192, Errors.MX4192, blockers) + : ErrorHelper.CreateWarning (4192, Errors.MX4192, blockers); + Report (exception); + } +} diff --git a/tools/common/Application.cs b/tools/common/Application.cs index 24085dedda40..7eff1f29677c 100644 --- a/tools/common/Application.cs +++ b/tools/common/Application.cs @@ -81,6 +81,8 @@ public partial class Application : IToolLog { public List? AotOtherArguments = null; public bool? AotFloat32 = null; public bool PrepareAssemblies; // True if '$(PrepareAssemblies)' == 'true' + public bool? TrimExportAttributes; + public HashSet TrimExportAttributesBlockers = new HashSet (); // The set of UnmanagedCallersOnly trampoline symbols (without the leading Mach-O underscore) // that survived the NativeAOT compiler (ILC). This is only set when the native registrar code @@ -103,10 +105,10 @@ public bool DidTrampolineSurviveIlc (string ucoEntryPoint) #if ASSEMBLY_PREPARER public bool InCustomTrimmerStep = false; public bool IsPostProcessingAssemblies; - // When post-processing assemblies with the trimmable static registrar, the [ProtocolMember] attributes - // have been removed by the trimmer, so the registrar reads them from the pre-trim (untrimmed) assemblies - // instead. This resolver provides access to the pre-trim assemblies (a separate metadata universe from - // the post-trim assemblies), and is null when not applicable. + // When post-processing assemblies with the trimmable static registrar, selected registrar attributes + // have been removed during trimming, so the registrar reads them from the original assemblies. + // This resolver provides access to the original assemblies (a separate metadata universe from the + // post-trim assemblies), and is null when not applicable. public Mono.Cecil.IAssemblyResolver? PreTrimAssemblyResolver; #else public bool InCustomTrimmerStep = true; diff --git a/tools/common/StaticRegistrar.cs b/tools/common/StaticRegistrar.cs index de28115c9bd0..19eb3ed14fa1 100644 --- a/tools/common/StaticRegistrar.cs +++ b/tools/common/StaticRegistrar.cs @@ -639,24 +639,108 @@ public Xamarin.Tuner.DerivedLinkContext LinkContext { // Look for linked away attributes as well as attributes on the attribute provider. IEnumerable GetCustomAttributes (ICustomAttributeProvider provider, string @namespace, string name, bool inherits = false) { +#if ASSEMBLY_PREPARER + var found = false; +#endif #if !LEGACY_TOOLS var dict = LinkContext?.Annotations?.GetCustomAnnotations (name); if (dict?.TryGetValue (provider, out var annotations) == true) { var attributes = (IEnumerable) annotations; foreach (var attrib in attributes) { - if (IsAttributeMatch (attrib, @namespace, name, inherits)) + if (IsAttributeMatch (attrib, @namespace, name, inherits)) { +#if ASSEMBLY_PREPARER + found = true; +#endif yield return attrib; + } } } #endif if (provider.HasCustomAttributes) { foreach (var attrib in provider.CustomAttributes) { - if (IsAttributeMatch (attrib, @namespace, name, inherits)) + if (IsAttributeMatch (attrib, @namespace, name, inherits)) { +#if ASSEMBLY_PREPARER + found = true; +#endif yield return attrib; + } } } + +#if ASSEMBLY_PREPARER + if (found || !ShouldReadAttributeFromPreTrimAssembly (@namespace, name)) + yield break; + + var preTrimProvider = GetPreTrimAttributeProvider (provider); + if (preTrimProvider is null) + yield break; + foreach (var attrib in preTrimProvider.CustomAttributes) { + if (IsAttributeMatch (attrib, @namespace, name, inherits)) + yield return attrib; + } +#endif + } + +#if ASSEMBLY_PREPARER + bool ShouldReadAttributeFromPreTrimAssembly (string @namespace, string name) + { + if (!App.IsPostProcessingAssemblies || App.PreTrimAssemblyResolver is null) + return false; + + if (@namespace != Foundation) + return false; + + if (name == StringConstants.ProtocolMemberAttribute) + return true; + + return App.TrimExportAttributes == true && name == StringConstants.ExportAttribute; + } + + ICustomAttributeProvider? GetPreTrimAttributeProvider (ICustomAttributeProvider provider) + { + var resolver = App.PreTrimAssemblyResolver; + if (resolver is null) + throw new InvalidOperationException ("The pre-trim assembly resolver is not available."); + + switch (provider) { + case AssemblyDefinition assembly: + return resolver.Resolve (assembly.Name); + case ModuleDefinition module: + var preTrimAssembly = resolver.Resolve (module.Assembly.Name); + return GetSinglePreTrimProvider (preTrimAssembly.Modules, v => v.Name == module.Name, module); + case TypeDefinition type: + var preTrimModule = (ModuleDefinition?) GetPreTrimAttributeProvider (type.Module); + return preTrimModule?.GetType (type.FullName); + case MethodDefinition method: + var preTrimType = (TypeDefinition?) GetPreTrimAttributeProvider (method.DeclaringType); + return preTrimType is null ? null : GetSinglePreTrimProvider (preTrimType.Methods, v => v.FullName == method.FullName && v.GenericParameters.Count == method.GenericParameters.Count, method); + case PropertyDefinition property: + var preTrimPropertyType = (TypeDefinition?) GetPreTrimAttributeProvider (property.DeclaringType); + return preTrimPropertyType is null ? null : GetSinglePreTrimProvider (preTrimPropertyType.Properties, v => v.FullName == property.FullName, property); + case ParameterDefinition parameter: + var preTrimMethod = (MethodDefinition?) GetPreTrimAttributeProvider ((MethodDefinition) parameter.Method); + if (preTrimMethod is null || parameter.Index < 0 || parameter.Index >= preTrimMethod.Parameters.Count) + return null; + return preTrimMethod.Parameters [parameter.Index]; + case MethodReturnType returnType: + var preTrimReturnMethod = (MethodDefinition?) GetPreTrimAttributeProvider ((MethodDefinition) returnType.Method); + return preTrimReturnMethod?.MethodReturnType; + default: + throw new InvalidOperationException ($"Unable to map the post-trim custom attribute provider '{provider}' ({provider.GetType ().FullName}) to a pre-trim provider."); + } + } + + static T? GetSinglePreTrimProvider (IEnumerable providers, Func predicate, ICustomAttributeProvider postTrimProvider) where T : class, ICustomAttributeProvider + { + var matches = providers.Where (predicate).Take (2).ToArray (); + if (matches.Length == 1) + return matches [0]; + if (matches.Length == 0) + return null; + throw new InvalidOperationException ($"The post-trim custom attribute provider '{postTrimProvider}' maps to multiple pre-trim providers."); } +#endif public bool TryGetAttribute (ICustomAttributeProvider provider, string @namespace, string attributeName, [NotNullWhen (true)] out ICustomAttribute? attribute) { @@ -1540,18 +1624,6 @@ protected override IEnumerable GetProtocolMemberAttribu if (td is null) yield break; -#if ASSEMBLY_PREPARER - // When post-processing assemblies with the trimmable static registrar, the [ProtocolMember] - // attributes have been removed by the trimmer, so read them from the pre-trim (untrimmed) - // assemblies instead. - if (App.IsPostProcessingAssemblies && App.PreTrimAssemblyResolver is not null) { - var preTrimAssembly = App.PreTrimAssemblyResolver.Resolve (td.Module.Assembly.Name); - var preTrimType = preTrimAssembly?.MainModule.GetType (td.FullName); - if (preTrimType is not null) - td = preTrimType; - } -#endif - foreach (var ca in GetCustomAttributes (td, Foundation, StringConstants.ProtocolMemberAttribute)) { var rv = new ProtocolMemberAttribute (); @@ -1878,7 +1950,7 @@ static BindAsAttribute CreateBindAsAttribute (ICustomAttribute attrib, IMemberDe } } - public static ExportAttribute? CreateExportAttribute (IMemberDefinition candidate) + public ExportAttribute? CreateExportAttribute (IMemberDefinition candidate) { bool is_variadic = false; var attribute = GetExportAttribute (candidate); @@ -1911,16 +1983,9 @@ static BindAsAttribute CreateBindAsAttribute (ICustomAttribute attrib, IMemberDe } // [Export] is not sealed anymore - so we cannot simply compare strings - public static ICustomAttribute? GetExportAttribute (ICustomAttributeProvider candidate) + public ICustomAttribute? GetExportAttribute (ICustomAttributeProvider candidate) { - if (!candidate.HasCustomAttributes) - return null; - - foreach (CustomAttribute ca in candidate.CustomAttributes) { - if (ca.Constructor.DeclaringType.Inherits (Foundation, StringConstants.ExportAttribute)) - return ca; - } - return null; + return GetCustomAttributes (candidate, Foundation, StringConstants.ExportAttribute, inherits: true).FirstOrDefault (); } PropertyDefinition GetBasePropertyInTypeHierarchy (PropertyDefinition property) diff --git a/tools/dotnet-linker/LinkerConfiguration.cs b/tools/dotnet-linker/LinkerConfiguration.cs index 7643f5aa22f2..cad209aed7d0 100644 --- a/tools/dotnet-linker/LinkerConfiguration.cs +++ b/tools/dotnet-linker/LinkerConfiguration.cs @@ -31,7 +31,8 @@ public class LinkerConfiguration { public string CacheDirectory { get; private set; } = string.Empty; public Version? DeploymentTarget { get; private set; } // The user-provided value of the $(DynamicRegistrationSupported) MSBuild property (null if not set). - // When set, RegistrarRemovalTrackingStep doesn't need to run in the assembly-preparer. + // When set, RegistrarRemovalTrackingStep doesn't need to compute this value in the assembly-preparer, + // although it may still run to detect blockers for other optimizations. public bool? DynamicRegistrationSupported { get; private set; } public HashSet FrameworkAssemblies { get; private set; } = new HashSet (); public string IntermediateLinkDir { get; private set; } = string.Empty; @@ -306,7 +307,7 @@ Configurator GetConfigurator (string linker_file) // This is the user-overridable $(DynamicRegistrationSupported) MSBuild property. It maps to // the RemoveDynamicRegistrar optimization (inverted): if dynamic registration is supported, // then we're not removing the dynamic registrar. When set, RegistrarRemovalTrackingStep doesn't - // need to run in the assembly-preparer (the value is passed straight through to the trimmer + // need to compute the value in the assembly-preparer (it's passed straight through to the trimmer // feature switch), and it won't recompute the value in the real linker either. new LoadValue ((key, value) => { if (string.IsNullOrEmpty (value)) diff --git a/tools/dotnet-linker/Steps/ManagedRegistrarStep.cs b/tools/dotnet-linker/Steps/ManagedRegistrarStep.cs index fe650eeb2c36..4b838b392edd 100644 --- a/tools/dotnet-linker/Steps/ManagedRegistrarStep.cs +++ b/tools/dotnet-linker/Steps/ManagedRegistrarStep.cs @@ -1147,6 +1147,8 @@ bool EmitConversion (MethodDefinition method, ILProcessor il, TypeReference type if (toManaged) { var createMethod = StaticRegistrar.GetBlockWrapperCreator (objcMethod, parameter); if (createMethod is null) { + if (App.TrimExportAttributes != false) + App.TrimExportAttributesBlockers.Add ("the managed registrar must use Runtime.GetBlockWrapperCreator"); AddException (ErrorHelper.CreateWarning (App, 4174 /* Unable to locate the block to delegate conversion method for the method {0}'s parameter #{1}. */, method, Errors.MT4174, method.FullName, parameter + 1)); // var blockCopy = BlockLiteral.Copy (block); var tmpVariable = il.Body.AddVariable (abr.System_IntPtr); @@ -1203,6 +1205,8 @@ bool EmitConversion (MethodDefinition method, ILProcessor il, TypeReference type il.Emit (OpCodes.Ldstr, signature); il.Emit (OpCodes.Call, abr.BlockLiteral_CreateBlockForDelegate); } else { + if (App.TrimExportAttributes != false) + App.TrimExportAttributesBlockers.Add ("the managed registrar must use RegistrarHelper.GetBlockForDelegate"); il.Emit (OpCodes.Ldtoken, method); il.Emit (OpCodes.Call, abr.RegistrarHelper_GetBlockForDelegate); } diff --git a/tools/linker/RegistrarRemovalTrackingStep.cs b/tools/linker/RegistrarRemovalTrackingStep.cs index 36f9e17306fb..aff82794206c 100644 --- a/tools/linker/RegistrarRemovalTrackingStep.cs +++ b/tools/linker/RegistrarRemovalTrackingStep.cs @@ -87,6 +87,9 @@ bool RequiresDynamicRegistrar (AssemblyDefinition assembly, bool warnIfRequired) if (name != productAssemblyName) continue; + if (App.TrimExportAttributes != false && IsNSXpcInterfaceMethodInfoOverload (mr)) + App.TrimExportAttributesBlockers.Add ("the application uses an NSXpcInterface overload that obtains a selector from MethodInfo"); + switch (mr.DeclaringType.Namespace) { case "ObjCRuntime": switch (mr.DeclaringType.Name) { @@ -155,6 +158,18 @@ bool RequiresDynamicRegistrar (AssemblyDefinition assembly, bool warnIfRequired) return requires; } + static bool IsNSXpcInterfaceMethodInfoOverload (MemberReference member) + { + if (member is not MethodReference method) + return false; + if (method.DeclaringType.Namespace != "Foundation" || method.DeclaringType.Name != "NSXpcInterface") + return false; + if (method.Parameters.Count == 0 || method.Parameters [0].ParameterType.Namespace != "System.Reflection" || method.Parameters [0].ParameterType.Name != "MethodInfo") + return false; + + return method.Name == "GetAllowedClasses" || method.Name == "SetAllowedClasses"; + } + void Warn (AssemblyDefinition assembly, MemberReference mr) { ErrorHelper.Warning (App, WarnCode, Errors.MM2107, assembly.Name.Name, mr.DeclaringType.FullName, mr.Name, string.Join (", ", ((MethodReference) mr).Parameters.Select ((v) => v.ParameterType.FullName))); diff --git a/tools/mtouch/Errors.designer.cs b/tools/mtouch/Errors.designer.cs index 65858c29af01..e00e37b8ddec 100644 --- a/tools/mtouch/Errors.designer.cs +++ b/tools/mtouch/Errors.designer.cs @@ -3668,6 +3668,15 @@ public static string MX4191 { } } + /// + /// Looks up a localized string similar to Export attributes cannot be removed because {0}.. + /// + public static string MX4192 { + get { + return ResourceManager.GetString("MX4192", resourceCulture); + } + } + /// /// Looks up a localized string similar to The native linker failed to execute: {0}. Please file a bug report at https://github.com/dotnet/macios/issues/new /// . diff --git a/tools/mtouch/Errors.resx b/tools/mtouch/Errors.resx index b25ab909b936..a747e680802d 100644 --- a/tools/mtouch/Errors.resx +++ b/tools/mtouch/Errors.resx @@ -1640,6 +1640,10 @@ Could not find the trampoline for the category method {0}. + + Export attributes cannot be removed because {0}. + + Missing '{0}' compiler. Please install Xcode 'Command-Line Tools' component From 788b5aba9459bde60f83829328c2d4a79dbd61b6 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 27 Jul 2026 20:31:39 +0200 Subject: [PATCH 02/15] [tests] Isolate Export attribute removal app Move Export, Action, Outlet, protocol-wrapper, and NSXpc fixtures out of MySimpleApp into a dedicated iOS test application. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 7d63bf91-7585-4d3e-9db4-a17531b71907 --- .../ExportAttributeRemovalApp/AppDelegate.cs | 48 +++++++++++++++++++ .../iOS/ExportAttributeRemovalApp.csproj | 7 +++ .../ExportAttributeRemovalApp/shared.csproj | 16 +++++++ tests/dotnet/MySimpleApp/AppDelegate.cs | 36 -------------- tests/dotnet/MySimpleApp/shared.csproj | 1 - .../dotnet/UnitTests/PrepareAssembliesTest.cs | 9 ++-- 6 files changed, 75 insertions(+), 42 deletions(-) create mode 100644 tests/dotnet/ExportAttributeRemovalApp/AppDelegate.cs create mode 100644 tests/dotnet/ExportAttributeRemovalApp/iOS/ExportAttributeRemovalApp.csproj create mode 100644 tests/dotnet/ExportAttributeRemovalApp/shared.csproj diff --git a/tests/dotnet/ExportAttributeRemovalApp/AppDelegate.cs b/tests/dotnet/ExportAttributeRemovalApp/AppDelegate.cs new file mode 100644 index 000000000000..4926a096c764 --- /dev/null +++ b/tests/dotnet/ExportAttributeRemovalApp/AppDelegate.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +using System; +using System.Reflection; + +using Foundation; +using ObjCRuntime; + +namespace ExportAttributeRemovalApp { + [Register] + class ExportMetadataApplicationType : NSObject { + [Export ("applicationExport")] + public void ApplicationExport () + { + } + + [Action ("applicationAction:")] + public void ApplicationAction (NSObject sender) + { + } + + [Outlet ("applicationOutlet")] + public NSObject? ApplicationOutlet { get; set; } + + public override string Description => base.Description; + } + + public class Program { +#if EXPORT_ATTRIBUTE_REMOVAL_NSXPC + static void UseNSXpcInterfaceMethodInfoOverload (NSXpcInterface value, MethodInfo method) + { + value.GetAllowedClasses (method, 0, false); + } +#endif + + static int Main (string [] args) + { + GC.KeepAlive (typeof (NSObject)); + GC.KeepAlive (typeof (INSUrlSessionDelegate)); + GC.KeepAlive (typeof (ExportMetadataApplicationType)); + Console.WriteLine (NSBundle.MainBundle.BundlePath); + Console.WriteLine (new ExportMetadataApplicationType ().Description); + + return args.Length; + } + } +} diff --git a/tests/dotnet/ExportAttributeRemovalApp/iOS/ExportAttributeRemovalApp.csproj b/tests/dotnet/ExportAttributeRemovalApp/iOS/ExportAttributeRemovalApp.csproj new file mode 100644 index 000000000000..86d408734aa8 --- /dev/null +++ b/tests/dotnet/ExportAttributeRemovalApp/iOS/ExportAttributeRemovalApp.csproj @@ -0,0 +1,7 @@ + + + + net$(BundledNETCoreAppTargetFrameworkVersion)-ios + + + diff --git a/tests/dotnet/ExportAttributeRemovalApp/shared.csproj b/tests/dotnet/ExportAttributeRemovalApp/shared.csproj new file mode 100644 index 000000000000..ee28bc877c78 --- /dev/null +++ b/tests/dotnet/ExportAttributeRemovalApp/shared.csproj @@ -0,0 +1,16 @@ + + + + Exe + + ExportAttributeRemovalApp + com.xamarin.exportattributeremovalapp + $(DefineConstants);$(AdditionalDefineConstants) + + + + + + + + diff --git a/tests/dotnet/MySimpleApp/AppDelegate.cs b/tests/dotnet/MySimpleApp/AppDelegate.cs index 5fa873275871..db627351190b 100644 --- a/tests/dotnet/MySimpleApp/AppDelegate.cs +++ b/tests/dotnet/MySimpleApp/AppDelegate.cs @@ -1,50 +1,14 @@ using System; -using System.Reflection; using System.Runtime.InteropServices; using Foundation; -using ObjCRuntime; namespace MySimpleApp { -#if EXPORT_ATTRIBUTE_REMOVAL - [Register] - class ExportMetadataApplicationType : NSObject { - [Export ("applicationExport")] - public void ApplicationExport () - { - } - - [Action ("applicationAction:")] - public void ApplicationAction (NSObject sender) - { - } - - [Outlet ("applicationOutlet")] - public NSObject? ApplicationOutlet { get; set; } - - public override string Description => base.Description; - } -#endif - public class Program { -#if EXPORT_ATTRIBUTE_REMOVAL_NSXPC - static void UseNSXpcInterfaceMethodInfoOverload (NSXpcInterface value, MethodInfo method) - { - value.GetAllowedClasses (method, 0, false); - } -#endif - static int Main (string [] args) { GC.KeepAlive (typeof (NSObject)); // prevent linking away the platform assembly -#if EXPORT_ATTRIBUTE_REMOVAL - GC.KeepAlive (typeof (INSUrlSessionDelegate)); - GC.KeepAlive (typeof (ExportMetadataApplicationType)); - Console.WriteLine (NSBundle.MainBundle.BundlePath); - Console.WriteLine (new ExportMetadataApplicationType ().Description); -#endif - Console.WriteLine (Environment.GetEnvironmentVariable ("MAGIC_WORD")); return args.Length; diff --git a/tests/dotnet/MySimpleApp/shared.csproj b/tests/dotnet/MySimpleApp/shared.csproj index 573c619f9649..c01aa9388251 100644 --- a/tests/dotnet/MySimpleApp/shared.csproj +++ b/tests/dotnet/MySimpleApp/shared.csproj @@ -6,7 +6,6 @@ MySimpleApp com.xamarin.mysimpleapp 3.14 - $(DefineConstants);$(AdditionalDefineConstants) diff --git a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs index dd9774857467..dcb5da4ffa48 100644 --- a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs +++ b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs @@ -47,7 +47,7 @@ public void ExportAttributeRemovalEligibility (bool prepareAssemblies, bool post { var platform = ApplePlatform.iOS; var runtimeIdentifiers = "iossimulator-arm64"; - var project = "MySimpleApp"; + var project = "ExportAttributeRemovalApp"; var configuration = "Release"; Configuration.IgnoreIfIgnoredPlatform (platform); Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers); @@ -55,7 +55,6 @@ public void ExportAttributeRemovalEligibility (bool prepareAssemblies, bool post var projectPath = GetProjectPath (project, runtimeIdentifiers: runtimeIdentifiers, platform: platform, out _, configuration: configuration); Clean (projectPath); var properties = GetDefaultProperties (runtimeIdentifiers); - properties ["AdditionalDefineConstants"] = "EXPORT_ATTRIBUTE_REMOVAL"; properties ["Configuration"] = configuration; properties ["EnableAssemblyILStripping"] = "true"; properties ["MtouchLink"] = registrar == "managed-static" ? "SdkOnly" : "Full"; @@ -101,7 +100,7 @@ static void AssertExportMetadata (string platformAssemblyPath, string appAssembl AssertExport (nsObjectDescription.GetMethod, expected, "wrapper ancestor with application subclasses"); using var appAssembly = AssemblyDefinition.ReadAssembly (appAssemblyPath); - var applicationType = appAssembly.MainModule.GetType ("MySimpleApp.ExportMetadataApplicationType"); + var applicationType = appAssembly.MainModule.GetType ("ExportAttributeRemovalApp.ExportMetadataApplicationType"); AssertAttribute (applicationType.Methods.Single (v => v.Name == "ApplicationExport"), "ExportAttribute", expected, "application export"); AssertAttribute (applicationType.Methods.Single (v => v.Name == "ApplicationAction"), "ActionAttribute", expected, "application action"); AssertAttribute (applicationType.Properties.Single (v => v.Name == "ApplicationOutlet"), "OutletAttribute", expected, "application outlet"); @@ -113,7 +112,7 @@ public void ExportAttributeRemovalWithNSXpcInterfaceUsage (bool explicitlyEnable { var platform = ApplePlatform.iOS; var runtimeIdentifiers = "iossimulator-arm64"; - var project = "MySimpleApp"; + var project = "ExportAttributeRemovalApp"; var configuration = "Release"; Configuration.IgnoreIfIgnoredPlatform (platform); Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers); @@ -121,7 +120,7 @@ public void ExportAttributeRemovalWithNSXpcInterfaceUsage (bool explicitlyEnable var projectPath = GetProjectPath (project, runtimeIdentifiers: runtimeIdentifiers, platform: platform, out _, configuration: configuration); Clean (projectPath); var properties = GetDefaultProperties (runtimeIdentifiers); - properties ["AdditionalDefineConstants"] = "EXPORT_ATTRIBUTE_REMOVAL;EXPORT_ATTRIBUTE_REMOVAL_NSXPC"; + properties ["AdditionalDefineConstants"] = "EXPORT_ATTRIBUTE_REMOVAL_NSXPC"; properties ["Configuration"] = configuration; properties ["MtouchLink"] = "Full"; properties ["PostProcessAssemblies"] = "true"; From 616fa5dc677cf0a0b9ff021d2b6e49339ef7e0b9 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 28 Jul 2026 13:29:57 +0200 Subject: [PATCH 03/15] [linker] Address Export trimming review feedback Use typed localized blockers, centralize Export trimming state, clarify API detection and MSBuild output ownership, and cover automatic registrar fallback behavior. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 7d63bf91-7585-4d3e-9db4-a17531b71907 --- dotnet/targets/Xamarin.Shared.Sdk.targets | 4 +- .../Tasks/PrepareAssemblies.cs | 8 ++-- msbuild/Xamarin.Shared/Xamarin.Shared.targets | 2 - .../ComputeExportAttributeRemovalStepTests.cs | 28 +++++++++-- .../DynamicRegistrationSupportedTest.cs | 4 +- .../dotnet/UnitTests/PrepareAssembliesTest.cs | 6 +-- tools/assembly-preparer/AssemblyPreparer.cs | 37 ++++----------- .../ComputeExportAttributeRemovalStep.cs | 31 ++++++++---- .../assembly-preparer.csproj | 4 +- tools/common/Application.cs | 11 ++++- tools/common/StaticRegistrar.cs | 6 +-- tools/dotnet-linker/LinkerConfiguration.cs | 16 +++++-- .../Steps/ManagedRegistrarStep.cs | 4 +- tools/dotnet-linker/dotnet-linker.csproj | 4 +- ...lTrackingStep.cs => DetectApiUsageStep.cs} | 11 +++-- tools/mtouch/Errors.designer.cs | 47 ++++++++++++++++++- tools/mtouch/Errors.resx | 22 ++++++++- 17 files changed, 174 insertions(+), 71 deletions(-) rename tools/linker/{RegistrarRemovalTrackingStep.cs => DetectApiUsageStep.cs} (92%) diff --git a/dotnet/targets/Xamarin.Shared.Sdk.targets b/dotnet/targets/Xamarin.Shared.Sdk.targets index 440268fb6eb8..dabeb7fdbe16 100644 --- a/dotnet/targets/Xamarin.Shared.Sdk.targets +++ b/dotnet/targets/Xamarin.Shared.Sdk.targets @@ -576,7 +576,7 @@ - <_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)" BeforeStep="MarkStep" Type="MonoTouch.Tuner.RegistrarRemovalTrackingStep" Condition="'$(PrepareAssemblies)' != 'true'" /> + <_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)" BeforeStep="MarkStep" Type="MonoTouch.Tuner.DetectApiUsageStep" Condition="'$(PrepareAssemblies)' != 'true'" /> <_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)" BeforeStep="MarkStep" Type="Xamarin.Linker.Steps.PreMarkDispatcher" Condition="'$(PrepareAssemblies)' != 'true' And '$(_AreAnyAssembliesTrimmed)' == 'true'" /> <_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)" BeforeStep="MarkStep" Type="Xamarin.Linker.ManagedRegistrarStep" Condition="'$(PrepareAssemblies)' != 'true' And ('$(Registrar)' == 'managed-static' Or '$(Registrar)' == 'trimmable-static')" /> diff --git a/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs b/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs index da7bed4d4f1d..fdc0ac12662d 100644 --- a/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs +++ b/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs @@ -30,8 +30,6 @@ public class PrepareAssemblies : XamarinTask { public string MakeReproPath { get; set; } = ""; - public string MSBuildOutputFile { get; set; } = ""; - public string OutputDirectory { get; set; } = ""; [Required] @@ -76,10 +74,12 @@ public override bool Execute () // Capture Console usage and show an error if anything uses Console.[Error.]Write* using var consoleToLog = ConsoleToTaskWriter.EnsureNoConsoleUsage (Log); var success = false; + var msbuildOutputFile = ""; try { var infos = InputAssemblies.Select (GetAssemblyInfo).ToArray (); using var preparer = new AssemblyPreparer (this, infos, OptionsFile?.ItemSpec ?? ""); + msbuildOutputFile = PostProcessing ? preparer.Configuration.MSBuildPostProcessOutputFile : preparer.Configuration.MSBuildOutputFile; preparer.MakeReproPath = MakeReproPath; preparer.TrimExportAttributes = TrimExportAttributes; preparer.PreTrimAssemblies.AddRange (PreTrimAssemblies.Select (v => v.ItemSpec)); @@ -155,8 +155,8 @@ public override bool Execute () ((IToolLog) this).LogException (e); return false; } finally { - if (!success && !string.IsNullOrEmpty (MSBuildOutputFile)) - File.Delete (MSBuildOutputFile); + if (!success && !string.IsNullOrEmpty (msbuildOutputFile)) + File.Delete (msbuildOutputFile); } } } diff --git a/msbuild/Xamarin.Shared/Xamarin.Shared.targets b/msbuild/Xamarin.Shared/Xamarin.Shared.targets index 980d3d39ca60..4b19789ec401 100644 --- a/msbuild/Xamarin.Shared/Xamarin.Shared.targets +++ b/msbuild/Xamarin.Shared/Xamarin.Shared.targets @@ -3687,7 +3687,6 @@ Copyright (C) 2018 Microsoft. All rights reserved. { + preparer.Registrar = RegistrarMode.ManagedStatic; + preparer.TrimExportAttributes = trimExportAttributes; + }, "public class C {}", out _); + + var success = preparer.Prepare (out var exceptions); + + Assert.That (success, Is.EqualTo (expectedSuccess), "Success"); + if (expectedSuccess) { + Assert.That (exceptions, Is.Empty, "Exceptions"); + Assert.That (preparer.TrimExportAttributes, Is.False, "Removal"); + } else { + Assert.That (exceptions, Has.Count.EqualTo (1), "Exceptions"); + Assert.That (exceptions [0].Message, Is.EqualTo ("Export attributes can only be trimmed with the trimmable static registrar."), "Error message"); + } + } + [TestCase (false, false, false)] [TestCase (null, false, true)] [TestCase (true, false, true)] @@ -62,7 +84,7 @@ public void ExplicitBlocker () var context = preparer.Configuration.DerivedLinkContext; new LoadAssembliesStep ().Process (context); - preparer.Configuration.Application.TrimExportAttributesBlockers.Add ("a test blocker is active"); + preparer.Configuration.Application.TrimExportAttributesBlockers.Add (ExportAttributeRemovalBlocker.RuntimeGetBlockWrapperCreatorRequired); new ComputeExportAttributeRemovalStep ().Process (context); Assert.That (preparer.Configuration.Application.TrimExportAttributes, Is.False, "Removal"); @@ -99,10 +121,10 @@ public void SetAllowedClasses (NSXpcInterface value, MethodInfo method, NSSet v.Message), Has.Some.Contains (expectedMessage), $"Error #{i + 1}"); + AssertErrorMessages (errors, expectedMessage); } } else { var result = DotNet.AssertBuild (projectPath, properties, target: target); - var warnings = BinLog.GetBuildLogWarnings (result.BinLogPath).ToArray (); - Assert.That (warnings.Select (v => v.Message), Has.Some.Contains (expectedMessage), "Warning"); + var warnings = BinLog.GetBuildLogWarnings (result.BinLogPath).FilterWarnings (platform).ToArray (); + AssertWarningMessages (warnings, expectedMessage); } } diff --git a/tools/assembly-preparer/AssemblyPreparer.cs b/tools/assembly-preparer/AssemblyPreparer.cs index 898b87537dbe..beb99a0b2bb0 100644 --- a/tools/assembly-preparer/AssemblyPreparer.cs +++ b/tools/assembly-preparer/AssemblyPreparer.cs @@ -24,7 +24,6 @@ public class AssemblyPreparer : IDisposable { AggregateLog log = new AggregateLog (); LinkerConfiguration configuration; - bool? trimExportAttributes; public LinkerConfiguration Configuration => configuration; @@ -36,11 +35,8 @@ public class AssemblyPreparer : IDisposable { public List PreTrimAssemblies { get; } = new List (); public bool? TrimExportAttributes { - get => trimExportAttributes; - set { - trimExportAttributes = value; - configuration.Application.TrimExportAttributes = value; - } + get => configuration.Application.TrimExportAttributes; + set => configuration.Application.TrimExportAttributes = value; } public RegistrarMode Registrar { @@ -80,21 +76,6 @@ LinkerConfiguration.Configurator GetConfigurator (string? reproPath = null, Func }), new LinkerConfiguration.SaveValue ((key, storage) => SaveAssemblies (key, storage, reproPath, Assemblies)) )}, - { "TrimExportAttributes", ( - new LinkerConfiguration.LoadValue ((key, value) => { - if (string.IsNullOrEmpty (value)) { - trimExportAttributes = null; - } else if (bool.TryParse (value, out var parsedValue)) { - trimExportAttributes = parsedValue; - } else { - throw new InvalidOperationException ($"Unable to parse the {key} value: {value}"); - } - }), - new LinkerConfiguration.SaveValue ((key, storage) => { - if (trimExportAttributes.HasValue) - storage.Add ($"{key}={(trimExportAttributes.Value ? "true" : "false")}"); - }) - )}, }; return dict; } @@ -119,7 +100,6 @@ public AssemblyPreparer (IToolLog log, AssemblyPreparerInfo [] assemblies, strin configuration = new LinkerConfiguration (log, lines, linker_file, GetConfigurator (null, assemblies.Length == 0 ? null : (input, output) => assemblies.Single (a => a.InputPath == input && a.OutputPath == output))) { AssemblyInfos = Assemblies, }; - configuration.Application.TrimExportAttributes = trimExportAttributes; } public void AddLog (IAssemblyPreparerLog log) @@ -177,13 +157,13 @@ public bool Prepare (out List exceptions) steps.Add (new InlineDlfcnMethodsStep ()); - // Only add RegistrarRemovalTrackingStep if it's needed: + // Only add DetectApiUsageStep if it's needed: // * If the user explicitly set $(DynamicRegistrationSupported), we don't need to compute the value, but // Export attribute removal still needs the step to detect NSXpcInterface reflection. // * If nothing is being trimmed, the dynamic registrar (which lives in the platform assembly, an SDK // assembly that's only trimmed when trimming is enabled) can't be removed, so there's nothing to compute. if (configuration.Application.AreAnyAssembliesTrimmed && (!configuration.DynamicRegistrationSupported.HasValue || configuration.Application.TrimExportAttributes != false)) - steps.Add (new RegistrarRemovalTrackingStep ()); + steps.Add (new DetectApiUsageStep ()); // PreMarkDispatcher: I don't think we need this one steps.Add (new ManagedRegistrarStep ()); @@ -279,9 +259,12 @@ bool RunSteps (IList steps, out List e exceptions.Add (ErrorHelper.CreateError (99, "RegistrarMode must be explicitly set.")); return false; } - if (TrimExportAttributes != false && Registrar != RegistrarMode.TrimmableStatic) { - exceptions.Add (ErrorHelper.CreateError (99, "Export attributes can only be trimmed with the trimmable static registrar.")); - return false; + if (Registrar != RegistrarMode.TrimmableStatic) { + if (TrimExportAttributes == true) { + exceptions.Add (ErrorHelper.CreateError (99, "Export attributes can only be trimmed with the trimmable static registrar.")); + return false; + } + TrimExportAttributes = false; } if (!string.IsNullOrEmpty (MakeReproPath) && !SaveToReproPath (exceptions)) diff --git a/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs b/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs index feca3f535c4c..cce82b9d11c3 100644 --- a/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs +++ b/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs @@ -23,11 +23,11 @@ protected override void TryProcess () var explicitlyEnabled = App.TrimExportAttributes == true; if (App.DynamicRegistrationSupported) - App.TrimExportAttributesBlockers.Add ("dynamic registration is supported"); + App.TrimExportAttributesBlockers.Add (ExportAttributeRemovalBlocker.DynamicRegistrationSupported); if (App.Optimizations.OptimizeBlockLiteralSetupBlock != true) - App.TrimExportAttributesBlockers.Add ("the blockliteral-setupblock optimization is disabled"); + App.TrimExportAttributesBlockers.Add (ExportAttributeRemovalBlocker.BlockLiteralSetupBlockOptimizationDisabled); if (App.Optimizations.StaticBlockToDelegateLookup != true) - App.TrimExportAttributesBlockers.Add ("the static-block-to-delegate-lookup optimization is disabled"); + App.TrimExportAttributesBlockers.Add (ExportAttributeRemovalBlocker.StaticBlockToDelegateLookupOptimizationDisabled); var trimExportAttributes = App.TrimExportAttributesBlockers.Count == 0; App.TrimExportAttributes = trimExportAttributes; @@ -36,10 +36,25 @@ protected override void TryProcess () if (trimExportAttributes) return; - var blockers = string.Join (", ", App.TrimExportAttributesBlockers.OrderBy (v => v)); - var exception = explicitlyEnabled - ? ErrorHelper.CreateError (4192, Errors.MX4192, blockers) - : ErrorHelper.CreateWarning (4192, Errors.MX4192, blockers); - Report (exception); + foreach (var blocker in App.TrimExportAttributesBlockers.OrderBy (v => v)) { + var (code, message) = GetDiagnostic (blocker); + var exception = explicitlyEnabled + ? ErrorHelper.CreateError (code, message) + : ErrorHelper.CreateWarning (code, message); + Report (exception); + } + } + + static (int Code, string Message) GetDiagnostic (ExportAttributeRemovalBlocker blocker) + { + return blocker switch { + ExportAttributeRemovalBlocker.DynamicRegistrationSupported => (4192, Errors.MX4192), + ExportAttributeRemovalBlocker.BlockLiteralSetupBlockOptimizationDisabled => (4193, Errors.MX4193), + ExportAttributeRemovalBlocker.StaticBlockToDelegateLookupOptimizationDisabled => (4194, Errors.MX4194), + ExportAttributeRemovalBlocker.RuntimeGetBlockWrapperCreatorRequired => (4195, Errors.MX4195), + ExportAttributeRemovalBlocker.RegistrarHelperGetBlockForDelegateRequired => (4196, Errors.MX4196), + ExportAttributeRemovalBlocker.NSXpcInterfaceMethodInfoOverloadUsed => (4197, Errors.MX4197), + _ => throw new InvalidOperationException ($"Unknown Export attribute removal blocker: {blocker}."), + }; } } diff --git a/tools/assembly-preparer/assembly-preparer.csproj b/tools/assembly-preparer/assembly-preparer.csproj index e416190ff990..f499498858fd 100644 --- a/tools/assembly-preparer/assembly-preparer.csproj +++ b/tools/assembly-preparer/assembly-preparer.csproj @@ -240,8 +240,8 @@ external/tools/linker/OptimizeGeneratedCode.cs - - external/tools/linker/RegistrarRemovalTrackingStep.cs + + external/tools/linker/DetectApiUsageStep.cs external/tools/linker/RemoveUserResourcesSubStep.cs diff --git a/tools/common/Application.cs b/tools/common/Application.cs index 7eff1f29677c..7b24adcf85a8 100644 --- a/tools/common/Application.cs +++ b/tools/common/Application.cs @@ -57,6 +57,15 @@ public enum RegistrarOptions { Trace = 1, } + public enum ExportAttributeRemovalBlocker { + DynamicRegistrationSupported, + BlockLiteralSetupBlockOptimizationDisabled, + StaticBlockToDelegateLookupOptimizationDisabled, + RuntimeGetBlockWrapperCreatorRequired, + RegistrarHelperGetBlockForDelegateRequired, + NSXpcInterfaceMethodInfoOverloadUsed, + } + public partial class Application : IToolLog { public Cache? Cache; public string AppDirectory = "."; @@ -82,7 +91,7 @@ public partial class Application : IToolLog { public bool? AotFloat32 = null; public bool PrepareAssemblies; // True if '$(PrepareAssemblies)' == 'true' public bool? TrimExportAttributes; - public HashSet TrimExportAttributesBlockers = new HashSet (); + public HashSet TrimExportAttributesBlockers = new HashSet (); // The set of UnmanagedCallersOnly trampoline symbols (without the leading Mach-O underscore) // that survived the NativeAOT compiler (ILC). This is only set when the native registrar code diff --git a/tools/common/StaticRegistrar.cs b/tools/common/StaticRegistrar.cs index 19eb3ed14fa1..a958085d784c 100644 --- a/tools/common/StaticRegistrar.cs +++ b/tools/common/StaticRegistrar.cs @@ -697,13 +697,13 @@ bool ShouldReadAttributeFromPreTrimAssembly (string @namespace, string name) return App.TrimExportAttributes == true && name == StringConstants.ExportAttribute; } - ICustomAttributeProvider? GetPreTrimAttributeProvider (ICustomAttributeProvider provider) + ICustomAttributeProvider? GetPreTrimAttributeProvider (ICustomAttributeProvider postTrimProvider) { var resolver = App.PreTrimAssemblyResolver; if (resolver is null) throw new InvalidOperationException ("The pre-trim assembly resolver is not available."); - switch (provider) { + switch (postTrimProvider) { case AssemblyDefinition assembly: return resolver.Resolve (assembly.Name); case ModuleDefinition module: @@ -727,7 +727,7 @@ bool ShouldReadAttributeFromPreTrimAssembly (string @namespace, string name) var preTrimReturnMethod = (MethodDefinition?) GetPreTrimAttributeProvider ((MethodDefinition) returnType.Method); return preTrimReturnMethod?.MethodReturnType; default: - throw new InvalidOperationException ($"Unable to map the post-trim custom attribute provider '{provider}' ({provider.GetType ().FullName}) to a pre-trim provider."); + throw new InvalidOperationException ($"Unable to map the post-trim custom attribute provider '{postTrimProvider}' ({postTrimProvider.GetType ().FullName}) to a pre-trim provider."); } } diff --git a/tools/dotnet-linker/LinkerConfiguration.cs b/tools/dotnet-linker/LinkerConfiguration.cs index cad209aed7d0..642fa0e29c8f 100644 --- a/tools/dotnet-linker/LinkerConfiguration.cs +++ b/tools/dotnet-linker/LinkerConfiguration.cs @@ -31,7 +31,7 @@ public class LinkerConfiguration { public string CacheDirectory { get; private set; } = string.Empty; public Version? DeploymentTarget { get; private set; } // The user-provided value of the $(DynamicRegistrationSupported) MSBuild property (null if not set). - // When set, RegistrarRemovalTrackingStep doesn't need to compute this value in the assembly-preparer, + // When set, DetectApiUsageStep doesn't need to compute this value in the assembly-preparer, // although it may still run to detect blockers for other optimizations. public bool? DynamicRegistrationSupported { get; private set; } public HashSet FrameworkAssemblies { get; private set; } = new HashSet (); @@ -306,12 +306,12 @@ Configurator GetConfigurator (string linker_file) { "DynamicRegistrationSupported", ( // This is the user-overridable $(DynamicRegistrationSupported) MSBuild property. It maps to // the RemoveDynamicRegistrar optimization (inverted): if dynamic registration is supported, - // then we're not removing the dynamic registrar. When set, RegistrarRemovalTrackingStep doesn't + // then we're not removing the dynamic registrar. When set, DetectApiUsageStep doesn't // need to compute the value in the assembly-preparer (it's passed straight through to the trimmer // feature switch), and it won't recompute the value in the real linker either. new LoadValue ((key, value) => { if (string.IsNullOrEmpty (value)) - return; // Not set: RegistrarRemovalTrackingStep will compute a default value. + return; // Not set: DetectApiUsageStep will compute a default value. if (!TryParseOptionalBoolean (value, out var dynamicRegistrationSupported)) throw new InvalidOperationException ($"Unable to parse the {key} value: {value} in {linker_file}"); if (dynamicRegistrationSupported.HasValue) { @@ -606,6 +606,16 @@ Configurator GetConfigurator (string linker_file) new LoadValue ((key, value) => TrimMode = value), new SaveValue ((key, storage) => saveNonEmpty (key, TrimMode, storage)) )}, + { "TrimExportAttributes", ( + new LoadValue ((key, value) => { + if (string.IsNullOrEmpty (value)) { + Application.TrimExportAttributes = null; + } else { + loadNullableBool (key, value, out Application.TrimExportAttributes); + } + }), + new SaveValue ((key, storage) => saveNullableBool (key, Application.TrimExportAttributes, storage)) + )}, { "TypeMapAssemblyName", ( new LoadValue ((key, value) => Application.TypeMapAssemblyName = value), new SaveValue ((key, storage) => saveNonEmpty (key, Application.TypeMapAssemblyName, storage)) diff --git a/tools/dotnet-linker/Steps/ManagedRegistrarStep.cs b/tools/dotnet-linker/Steps/ManagedRegistrarStep.cs index 4b838b392edd..5f814e193553 100644 --- a/tools/dotnet-linker/Steps/ManagedRegistrarStep.cs +++ b/tools/dotnet-linker/Steps/ManagedRegistrarStep.cs @@ -1148,7 +1148,7 @@ bool EmitConversion (MethodDefinition method, ILProcessor il, TypeReference type var createMethod = StaticRegistrar.GetBlockWrapperCreator (objcMethod, parameter); if (createMethod is null) { if (App.TrimExportAttributes != false) - App.TrimExportAttributesBlockers.Add ("the managed registrar must use Runtime.GetBlockWrapperCreator"); + App.TrimExportAttributesBlockers.Add (ExportAttributeRemovalBlocker.RuntimeGetBlockWrapperCreatorRequired); AddException (ErrorHelper.CreateWarning (App, 4174 /* Unable to locate the block to delegate conversion method for the method {0}'s parameter #{1}. */, method, Errors.MT4174, method.FullName, parameter + 1)); // var blockCopy = BlockLiteral.Copy (block); var tmpVariable = il.Body.AddVariable (abr.System_IntPtr); @@ -1206,7 +1206,7 @@ bool EmitConversion (MethodDefinition method, ILProcessor il, TypeReference type il.Emit (OpCodes.Call, abr.BlockLiteral_CreateBlockForDelegate); } else { if (App.TrimExportAttributes != false) - App.TrimExportAttributesBlockers.Add ("the managed registrar must use RegistrarHelper.GetBlockForDelegate"); + App.TrimExportAttributesBlockers.Add (ExportAttributeRemovalBlocker.RegistrarHelperGetBlockForDelegateRequired); il.Emit (OpCodes.Ldtoken, method); il.Emit (OpCodes.Call, abr.RegistrarHelper_GetBlockForDelegate); } diff --git a/tools/dotnet-linker/dotnet-linker.csproj b/tools/dotnet-linker/dotnet-linker.csproj index 9a5d2966bc7b..563b834f1c22 100644 --- a/tools/dotnet-linker/dotnet-linker.csproj +++ b/tools/dotnet-linker/dotnet-linker.csproj @@ -227,8 +227,8 @@ external/tools/common/XamarinRuntime.cs - - external/tools/linker/RegistrarRemovalTrackingStep.cs + + external/tools/linker/DetectApiUsageStep.cs diff --git a/tools/linker/RegistrarRemovalTrackingStep.cs b/tools/linker/DetectApiUsageStep.cs similarity index 92% rename from tools/linker/RegistrarRemovalTrackingStep.cs rename to tools/linker/DetectApiUsageStep.cs index aff82794206c..90ee6a9f01ce 100644 --- a/tools/linker/RegistrarRemovalTrackingStep.cs +++ b/tools/linker/DetectApiUsageStep.cs @@ -3,6 +3,7 @@ using Mono.Cecil; using Mono.Cecil.Cil; using Mono.Linker; +using Mono.Tuner; using Xamarin.Bundler; using Xamarin.Linker; @@ -10,9 +11,9 @@ #nullable enable namespace MonoTouch.Tuner { - public class RegistrarRemovalTrackingStep : ConfigurationAwareStep { + public class DetectApiUsageStep : ConfigurationAwareStep { - protected override string Name { get; } = "RegistrarRemovalTracking"; + protected override string Name { get; } = "DetectApiUsage"; protected override int ErrorCode { get; } = 2380; int WarnCode => ErrorCode + 7; @@ -88,7 +89,7 @@ bool RequiresDynamicRegistrar (AssemblyDefinition assembly, bool warnIfRequired) continue; if (App.TrimExportAttributes != false && IsNSXpcInterfaceMethodInfoOverload (mr)) - App.TrimExportAttributesBlockers.Add ("the application uses an NSXpcInterface overload that obtains a selector from MethodInfo"); + App.TrimExportAttributesBlockers.Add (ExportAttributeRemovalBlocker.NSXpcInterfaceMethodInfoOverloadUsed); switch (mr.DeclaringType.Namespace) { case "ObjCRuntime": @@ -162,9 +163,9 @@ static bool IsNSXpcInterfaceMethodInfoOverload (MemberReference member) { if (member is not MethodReference method) return false; - if (method.DeclaringType.Namespace != "Foundation" || method.DeclaringType.Name != "NSXpcInterface") + if (!method.DeclaringType.Is ("Foundation", "NSXpcInterface")) return false; - if (method.Parameters.Count == 0 || method.Parameters [0].ParameterType.Namespace != "System.Reflection" || method.Parameters [0].ParameterType.Name != "MethodInfo") + if (method.Parameters.Count == 0 || !method.Parameters [0].ParameterType.Is ("System.Reflection", "MethodInfo")) return false; return method.Name == "GetAllowedClasses" || method.Name == "SetAllowedClasses"; diff --git a/tools/mtouch/Errors.designer.cs b/tools/mtouch/Errors.designer.cs index e00e37b8ddec..59c991f9c071 100644 --- a/tools/mtouch/Errors.designer.cs +++ b/tools/mtouch/Errors.designer.cs @@ -3669,7 +3669,7 @@ public static string MX4191 { } /// - /// Looks up a localized string similar to Export attributes cannot be removed because {0}.. + /// Looks up a localized string similar to Export attributes cannot be removed because dynamic registration is supported.. /// public static string MX4192 { get { @@ -3677,6 +3677,51 @@ public static string MX4192 { } } + /// + /// Looks up a localized string similar to Export attributes cannot be removed because the blockliteral-setupblock optimization is disabled.. + /// + public static string MX4193 { + get { + return ResourceManager.GetString("MX4193", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export attributes cannot be removed because the static-block-to-delegate-lookup optimization is disabled.. + /// + public static string MX4194 { + get { + return ResourceManager.GetString("MX4194", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export attributes cannot be removed because the managed registrar must use Runtime.GetBlockWrapperCreator.. + /// + public static string MX4195 { + get { + return ResourceManager.GetString("MX4195", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export attributes cannot be removed because the managed registrar must use RegistrarHelper.GetBlockForDelegate.. + /// + public static string MX4196 { + get { + return ResourceManager.GetString("MX4196", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export attributes cannot be removed because the application uses an NSXpcInterface overload that obtains a selector from MethodInfo.. + /// + public static string MX4197 { + get { + return ResourceManager.GetString("MX4197", resourceCulture); + } + } + /// /// Looks up a localized string similar to The native linker failed to execute: {0}. Please file a bug report at https://github.com/dotnet/macios/issues/new /// . diff --git a/tools/mtouch/Errors.resx b/tools/mtouch/Errors.resx index a747e680802d..92cfa2dd0e5f 100644 --- a/tools/mtouch/Errors.resx +++ b/tools/mtouch/Errors.resx @@ -1641,7 +1641,27 @@ - Export attributes cannot be removed because {0}. + Export attributes cannot be removed because dynamic registration is supported. + + + + Export attributes cannot be removed because the blockliteral-setupblock optimization is disabled. + + + + Export attributes cannot be removed because the static-block-to-delegate-lookup optimization is disabled. + + + + Export attributes cannot be removed because the managed registrar must use Runtime.GetBlockWrapperCreator. + + + + Export attributes cannot be removed because the managed registrar must use RegistrarHelper.GetBlockForDelegate. + + + + Export attributes cannot be removed because the application uses an NSXpcInterface overload that obtains a selector from MethodInfo. From 169bf9b3ed20e0ac3c4852b6c1e66bf2dc424067 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 29 Jul 2026 16:16:01 +0200 Subject: [PATCH 04/15] [msbuild] Parse TrimExportAttributes task input MSBuild cannot bind textual boolean values to nullable Boolean task parameters. Accept the property as text at the task boundary and preserve nullable semantics when passing it to the assembly preparer. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 7d63bf91-7585-4d3e-9db4-a17531b71907 --- .../Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs b/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs index fdc0ac12662d..c3755e43f218 100644 --- a/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs +++ b/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs @@ -38,7 +38,7 @@ public class PrepareAssemblies : XamarinTask { public bool PostProcessing { get; set; } - public bool? TrimExportAttributes { get; set; } + public string? TrimExportAttributes { get; set; } // The original assemblies from before preparation and trimming, used during post-processing to read // selected registrar attributes removed during trimming. @@ -77,11 +77,20 @@ public override bool Execute () var msbuildOutputFile = ""; try { + bool? trimExportAttributes = null; + if (!string.IsNullOrEmpty (TrimExportAttributes)) { + if (!bool.TryParse (TrimExportAttributes, out var parsedTrimExportAttributes)) { + Log.LogError ($"Unable to parse the TrimExportAttributes value: {TrimExportAttributes}"); + return false; + } + trimExportAttributes = parsedTrimExportAttributes; + } + var infos = InputAssemblies.Select (GetAssemblyInfo).ToArray (); using var preparer = new AssemblyPreparer (this, infos, OptionsFile?.ItemSpec ?? ""); msbuildOutputFile = PostProcessing ? preparer.Configuration.MSBuildPostProcessOutputFile : preparer.Configuration.MSBuildOutputFile; preparer.MakeReproPath = MakeReproPath; - preparer.TrimExportAttributes = TrimExportAttributes; + preparer.TrimExportAttributes = trimExportAttributes; preparer.PreTrimAssemblies.AddRange (PreTrimAssemblies.Select (v => v.ItemSpec)); bool rv; List exceptions; From 839492b9496ac542a9adb88f3a7ade26ef2e7aa8 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 2 Sep 2026 13:29:53 +0200 Subject: [PATCH 05/15] [tests] Update expected sizes. --- ...cCatalyst-CoreCLR-Interpreter-preservedapis.txt | 14 -------------- .../MacCatalyst-CoreCLR-R2R-preservedapis.txt | 14 -------------- .../TVOS-CoreCLR-Interpreter-preservedapis.txt | 14 -------------- .../expected/TVOS-CoreCLR-R2R-preservedapis.txt | 14 -------------- .../iOS-CoreCLR-Interpreter-preservedapis.txt | 14 -------------- .../expected/iOS-CoreCLR-R2R-preservedapis.txt | 14 -------------- 6 files changed, 84 deletions(-) diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt index 30b049b61a40..ad7122b0b4f4 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt @@ -401,9 +401,6 @@ Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.ToString() -Microsoft.MacCatalyst.dll:Foundation.ExportAttribute -Microsoft.MacCatalyst.dll:Foundation.ExportAttribute..ctor(System.String, ObjCRuntime.ArgumentSemantic) -Microsoft.MacCatalyst.dll:Foundation.ExportAttribute..ctor(System.String) Microsoft.MacCatalyst.dll:Foundation.INSCoding Microsoft.MacCatalyst.dll:Foundation.INSCopying Microsoft.MacCatalyst.dll:Foundation.INSExtensionRequestHandling @@ -671,15 +668,6 @@ Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute.get_IsWrapper() Microsoft.MacCatalyst.dll:Foundation.TrackedMemory Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method..ctor() -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic Foundation.ExportAttribute::semantic -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Assign -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Copy -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::None -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Retain -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Strong -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::UnsafeUnretained -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Weak Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper.Release() @@ -1372,7 +1360,6 @@ Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSDictionary::System.Collectio Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSDictionary/d__66::<>1__state Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSDictionary/d__66::<>7__wrap2 Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSObjectFlag::value__ -Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.ArgumentSemantic::value__ Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.BlockCollector::count Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Dlfcn/Mode::value__ Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.MarshalManagedExceptionMode::value__ @@ -1555,7 +1542,6 @@ Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGR Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::y Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal/UnhandledExceptionPropagationHandler ObjCRuntime.Runtime/<>O::<0>__UnhandledExceptionPropagationHandler Microsoft.MacCatalyst.dll:System.String CoreFoundation.CFString::str -Microsoft.MacCatalyst.dll:System.String Foundation.ExportAttribute::selector Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Name() Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Reason() Microsoft.MacCatalyst.dll:System.String Foundation.NSNumber::StringValue() diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt index 30b049b61a40..ad7122b0b4f4 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt @@ -401,9 +401,6 @@ Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.ToString() -Microsoft.MacCatalyst.dll:Foundation.ExportAttribute -Microsoft.MacCatalyst.dll:Foundation.ExportAttribute..ctor(System.String, ObjCRuntime.ArgumentSemantic) -Microsoft.MacCatalyst.dll:Foundation.ExportAttribute..ctor(System.String) Microsoft.MacCatalyst.dll:Foundation.INSCoding Microsoft.MacCatalyst.dll:Foundation.INSCopying Microsoft.MacCatalyst.dll:Foundation.INSExtensionRequestHandling @@ -671,15 +668,6 @@ Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute.get_IsWrapper() Microsoft.MacCatalyst.dll:Foundation.TrackedMemory Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method..ctor() -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic Foundation.ExportAttribute::semantic -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Assign -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Copy -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::None -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Retain -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Strong -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::UnsafeUnretained -Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Weak Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper.Release() @@ -1372,7 +1360,6 @@ Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSDictionary::System.Collectio Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSDictionary/d__66::<>1__state Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSDictionary/d__66::<>7__wrap2 Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSObjectFlag::value__ -Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.ArgumentSemantic::value__ Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.BlockCollector::count Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Dlfcn/Mode::value__ Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.MarshalManagedExceptionMode::value__ @@ -1555,7 +1542,6 @@ Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGR Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::y Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal/UnhandledExceptionPropagationHandler ObjCRuntime.Runtime/<>O::<0>__UnhandledExceptionPropagationHandler Microsoft.MacCatalyst.dll:System.String CoreFoundation.CFString::str -Microsoft.MacCatalyst.dll:System.String Foundation.ExportAttribute::selector Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Name() Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Reason() Microsoft.MacCatalyst.dll:System.String Foundation.NSNumber::StringValue() diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt index e5813b9d5109..5e1c88190525 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt @@ -344,9 +344,6 @@ Microsoft.tvOS.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.tvOS.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.tvOS.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.tvOS.dll:CoreGraphics.CGRect.ToString() -Microsoft.tvOS.dll:Foundation.ExportAttribute -Microsoft.tvOS.dll:Foundation.ExportAttribute..ctor(System.String, ObjCRuntime.ArgumentSemantic) -Microsoft.tvOS.dll:Foundation.ExportAttribute..ctor(System.String) Microsoft.tvOS.dll:Foundation.INSCoding Microsoft.tvOS.dll:Foundation.INSCopying Microsoft.tvOS.dll:Foundation.INSExtensionRequestHandling @@ -618,15 +615,6 @@ Microsoft.tvOS.dll:ObjCRuntime.Arch Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::DEVICE Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::SIMULATOR Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Runtime::Arch -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic Foundation.ExportAttribute::semantic -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Assign -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Copy -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::None -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Retain -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Strong -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::UnsafeUnretained -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Weak Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper.Release() @@ -1316,7 +1304,6 @@ Microsoft.tvOS.dll:System.Int32 Foundation.NSDictionary/d__66::<> Microsoft.tvOS.dll:System.Int32 Foundation.NSDictionary/d__66::<>7__wrap2 Microsoft.tvOS.dll:System.Int32 Foundation.NSObjectFlag::value__ Microsoft.tvOS.dll:System.Int32 ObjCRuntime.Arch::value__ -Microsoft.tvOS.dll:System.Int32 ObjCRuntime.ArgumentSemantic::value__ Microsoft.tvOS.dll:System.Int32 ObjCRuntime.BlockCollector::count Microsoft.tvOS.dll:System.Int32 ObjCRuntime.Dlfcn/Mode::value__ Microsoft.tvOS.dll:System.Int32 ObjCRuntime.MarshalManagedExceptionMode::value__ @@ -1497,7 +1484,6 @@ Microsoft.tvOS.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::x Microsoft.tvOS.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::y Microsoft.tvOS.dll:System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal/UnhandledExceptionPropagationHandler ObjCRuntime.Runtime/<>O::<0>__UnhandledExceptionPropagationHandler Microsoft.tvOS.dll:System.String CoreFoundation.CFString::str -Microsoft.tvOS.dll:System.String Foundation.ExportAttribute::selector Microsoft.tvOS.dll:System.String Foundation.NSException::Name() Microsoft.tvOS.dll:System.String Foundation.NSException::Reason() Microsoft.tvOS.dll:System.String Foundation.NSNumber::StringValue() diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt index e5813b9d5109..5e1c88190525 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt @@ -344,9 +344,6 @@ Microsoft.tvOS.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.tvOS.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.tvOS.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.tvOS.dll:CoreGraphics.CGRect.ToString() -Microsoft.tvOS.dll:Foundation.ExportAttribute -Microsoft.tvOS.dll:Foundation.ExportAttribute..ctor(System.String, ObjCRuntime.ArgumentSemantic) -Microsoft.tvOS.dll:Foundation.ExportAttribute..ctor(System.String) Microsoft.tvOS.dll:Foundation.INSCoding Microsoft.tvOS.dll:Foundation.INSCopying Microsoft.tvOS.dll:Foundation.INSExtensionRequestHandling @@ -618,15 +615,6 @@ Microsoft.tvOS.dll:ObjCRuntime.Arch Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::DEVICE Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::SIMULATOR Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Runtime::Arch -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic Foundation.ExportAttribute::semantic -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Assign -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Copy -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::None -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Retain -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Strong -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::UnsafeUnretained -Microsoft.tvOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Weak Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper.Release() @@ -1316,7 +1304,6 @@ Microsoft.tvOS.dll:System.Int32 Foundation.NSDictionary/d__66::<> Microsoft.tvOS.dll:System.Int32 Foundation.NSDictionary/d__66::<>7__wrap2 Microsoft.tvOS.dll:System.Int32 Foundation.NSObjectFlag::value__ Microsoft.tvOS.dll:System.Int32 ObjCRuntime.Arch::value__ -Microsoft.tvOS.dll:System.Int32 ObjCRuntime.ArgumentSemantic::value__ Microsoft.tvOS.dll:System.Int32 ObjCRuntime.BlockCollector::count Microsoft.tvOS.dll:System.Int32 ObjCRuntime.Dlfcn/Mode::value__ Microsoft.tvOS.dll:System.Int32 ObjCRuntime.MarshalManagedExceptionMode::value__ @@ -1497,7 +1484,6 @@ Microsoft.tvOS.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::x Microsoft.tvOS.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::y Microsoft.tvOS.dll:System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal/UnhandledExceptionPropagationHandler ObjCRuntime.Runtime/<>O::<0>__UnhandledExceptionPropagationHandler Microsoft.tvOS.dll:System.String CoreFoundation.CFString::str -Microsoft.tvOS.dll:System.String Foundation.ExportAttribute::selector Microsoft.tvOS.dll:System.String Foundation.NSException::Name() Microsoft.tvOS.dll:System.String Foundation.NSException::Reason() Microsoft.tvOS.dll:System.String Foundation.NSNumber::StringValue() diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt index 7da67782fc27..af8445d725d1 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt @@ -374,9 +374,6 @@ Microsoft.iOS.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.iOS.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.iOS.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.iOS.dll:CoreGraphics.CGRect.ToString() -Microsoft.iOS.dll:Foundation.ExportAttribute -Microsoft.iOS.dll:Foundation.ExportAttribute..ctor(System.String, ObjCRuntime.ArgumentSemantic) -Microsoft.iOS.dll:Foundation.ExportAttribute..ctor(System.String) Microsoft.iOS.dll:Foundation.INSCoding Microsoft.iOS.dll:Foundation.INSCopying Microsoft.iOS.dll:Foundation.INSExtensionRequestHandling @@ -648,15 +645,6 @@ Microsoft.iOS.dll:ObjCRuntime.Arch Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::DEVICE Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::SIMULATOR Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Runtime::Arch -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic Foundation.ExportAttribute::semantic -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Assign -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Copy -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::None -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Retain -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Strong -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::UnsafeUnretained -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Weak Microsoft.iOS.dll:ObjCRuntime.BaseWrapper Microsoft.iOS.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:ObjCRuntime.BaseWrapper.Release() @@ -1346,7 +1334,6 @@ Microsoft.iOS.dll:System.Int32 Foundation.NSDictionary/d__66::<>1 Microsoft.iOS.dll:System.Int32 Foundation.NSDictionary/d__66::<>7__wrap2 Microsoft.iOS.dll:System.Int32 Foundation.NSObjectFlag::value__ Microsoft.iOS.dll:System.Int32 ObjCRuntime.Arch::value__ -Microsoft.iOS.dll:System.Int32 ObjCRuntime.ArgumentSemantic::value__ Microsoft.iOS.dll:System.Int32 ObjCRuntime.BlockCollector::count Microsoft.iOS.dll:System.Int32 ObjCRuntime.Dlfcn/Mode::value__ Microsoft.iOS.dll:System.Int32 ObjCRuntime.MarshalManagedExceptionMode::value__ @@ -1527,7 +1514,6 @@ Microsoft.iOS.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::x Microsoft.iOS.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::y Microsoft.iOS.dll:System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal/UnhandledExceptionPropagationHandler ObjCRuntime.Runtime/<>O::<0>__UnhandledExceptionPropagationHandler Microsoft.iOS.dll:System.String CoreFoundation.CFString::str -Microsoft.iOS.dll:System.String Foundation.ExportAttribute::selector Microsoft.iOS.dll:System.String Foundation.NSException::Name() Microsoft.iOS.dll:System.String Foundation.NSException::Reason() Microsoft.iOS.dll:System.String Foundation.NSNumber::StringValue() diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt index 7da67782fc27..af8445d725d1 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt @@ -374,9 +374,6 @@ Microsoft.iOS.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.iOS.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.iOS.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.iOS.dll:CoreGraphics.CGRect.ToString() -Microsoft.iOS.dll:Foundation.ExportAttribute -Microsoft.iOS.dll:Foundation.ExportAttribute..ctor(System.String, ObjCRuntime.ArgumentSemantic) -Microsoft.iOS.dll:Foundation.ExportAttribute..ctor(System.String) Microsoft.iOS.dll:Foundation.INSCoding Microsoft.iOS.dll:Foundation.INSCopying Microsoft.iOS.dll:Foundation.INSExtensionRequestHandling @@ -648,15 +645,6 @@ Microsoft.iOS.dll:ObjCRuntime.Arch Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::DEVICE Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::SIMULATOR Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Runtime::Arch -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic Foundation.ExportAttribute::semantic -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Assign -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Copy -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::None -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Retain -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Strong -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::UnsafeUnretained -Microsoft.iOS.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Weak Microsoft.iOS.dll:ObjCRuntime.BaseWrapper Microsoft.iOS.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:ObjCRuntime.BaseWrapper.Release() @@ -1346,7 +1334,6 @@ Microsoft.iOS.dll:System.Int32 Foundation.NSDictionary/d__66::<>1 Microsoft.iOS.dll:System.Int32 Foundation.NSDictionary/d__66::<>7__wrap2 Microsoft.iOS.dll:System.Int32 Foundation.NSObjectFlag::value__ Microsoft.iOS.dll:System.Int32 ObjCRuntime.Arch::value__ -Microsoft.iOS.dll:System.Int32 ObjCRuntime.ArgumentSemantic::value__ Microsoft.iOS.dll:System.Int32 ObjCRuntime.BlockCollector::count Microsoft.iOS.dll:System.Int32 ObjCRuntime.Dlfcn/Mode::value__ Microsoft.iOS.dll:System.Int32 ObjCRuntime.MarshalManagedExceptionMode::value__ @@ -1527,7 +1514,6 @@ Microsoft.iOS.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::x Microsoft.iOS.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::y Microsoft.iOS.dll:System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal/UnhandledExceptionPropagationHandler ObjCRuntime.Runtime/<>O::<0>__UnhandledExceptionPropagationHandler Microsoft.iOS.dll:System.String CoreFoundation.CFString::str -Microsoft.iOS.dll:System.String Foundation.ExportAttribute::selector Microsoft.iOS.dll:System.String Foundation.NSException::Name() Microsoft.iOS.dll:System.String Foundation.NSException::Reason() Microsoft.iOS.dll:System.String Foundation.NSNumber::StringValue() From 8191c4feaa0f96aa36e90daa48ded8f5c6785e58 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 2 Sep 2026 13:52:51 +0200 Subject: [PATCH 06/15] [tests] Expect export trimming blocker warnings Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- tests/dotnet/UnitTests/ProjectTest.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/dotnet/UnitTests/ProjectTest.cs b/tests/dotnet/UnitTests/ProjectTest.cs index 590ac1144128..d3a826ee120e 100644 --- a/tests/dotnet/UnitTests/ProjectTest.cs +++ b/tests/dotnet/UnitTests/ProjectTest.cs @@ -2821,6 +2821,8 @@ public void PublishAotMonoTouchTest_NoIL2009 (ApplePlatform platform, string run new ExpectedBuildMessage ($"MSBuild", $"It's not safe to remove the dynamic registrar, because monotouchtest references 'ObjCRuntime.Runtime.ConnectMethod (System.Type, System.Reflection.MethodInfo, Foundation.ExportAttribute)'."), new ExpectedBuildMessage ($"MSBuild", $"It's not safe to remove the dynamic registrar, because monotouchtest references 'ObjCRuntime.Runtime.ConnectMethod (System.Type, System.Reflection.MethodInfo, ObjCRuntime.Selector)'."), new ExpectedBuildMessage ($"MSBuild", $"It's not safe to remove the dynamic registrar, because monotouchtest references 'ObjCRuntime.Runtime.RegisterAssembly (System.Reflection.Assembly)'."), + new ExpectedBuildMessage ($"MSBuild", $"Export attributes cannot be removed because the managed registrar must use Runtime.GetBlockWrapperCreator."), + new ExpectedBuildMessage ($"MSBuild", $"Export attributes cannot be removed because the managed registrar must use RegistrarHelper.GetBlockForDelegate."), new ExpectedBuildMessage ($"tests/bindings-test/RegistrarBindingTest.cs", $"Unable to locate the block to delegate conversion method for the method System.Void Xamarin.BindingTests.RegistrarBindingTest/FakePropertyBlock::set_MyOptionalProperty(Bindings.Test.SimpleCallback)'s parameter #1."), new ExpectedBuildMessage ($"tests/bindings-test/RegistrarBindingTest.cs", $"Unable to locate the block to delegate conversion method for the method System.Void Xamarin.BindingTests.RegistrarBindingTest/FakePropertyBlock::set_MyOptionalStaticProperty(Bindings.Test.SimpleCallback)'s parameter #1."), new ExpectedBuildMessage ($"tests/bindings-test/RegistrarBindingTest.cs", $"Unable to locate the block to delegate conversion method for the method System.Void Xamarin.BindingTests.RegistrarBindingTest/FakePropertyBlock::set_MyRequiredProperty(Bindings.Test.SimpleCallback)'s parameter #1."), From 5a7a5a7a75e649d82d15a2bdf15c21b3a199f7f2 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 2 Sep 2026 18:43:56 +0200 Subject: [PATCH 07/15] [tests] Fix Export removal and template tests Skip automatic Export attribute removal silently when dynamic registration is supported, isolate IL stripping from R2R in its eligibility test, and execute generated templates from their actual target framework output. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- tests/dotnet/UnitTests/PrepareAssembliesTest.cs | 1 + tests/dotnet/UnitTests/TemplateTest.cs | 13 +++++++++++-- .../ComputeExportAttributeRemovalStep.cs | 11 +++++++++-- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs index e6405fa7da9a..42bb161abe14 100644 --- a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs +++ b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs @@ -58,6 +58,7 @@ public void ExportAttributeRemovalEligibility (bool prepareAssemblies, bool post properties ["Configuration"] = configuration; properties ["EnableAssemblyILStripping"] = "true"; properties ["MtouchLink"] = registrar == "managed-static" ? "SdkOnly" : "Full"; + properties ["PublishReadyToRun"] = "false"; properties ["PostProcessAssemblies"] = postProcessAssemblies.ToString (); properties ["PrepareAssemblies"] = prepareAssemblies.ToString (); properties ["Registrar"] = registrar; diff --git a/tests/dotnet/UnitTests/TemplateTest.cs b/tests/dotnet/UnitTests/TemplateTest.cs index 6cb5304d136b..294a1fb22fe1 100644 --- a/tests/dotnet/UnitTests/TemplateTest.cs +++ b/tests/dotnet/UnitTests/TemplateTest.cs @@ -1,4 +1,5 @@ using System.Text.Json; +using System.Xml.Linq; #nullable enable @@ -237,13 +238,14 @@ public void CreateAndBuildProjectTemplate (TemplateInfo info) InsertCodeToExitAppAfterLaunch (language, outputDir); // Build the sample + SetRuntimeIdentifiers (properties, runtimeIdentifiers); rv = DotNet.AssertBuild (proj, properties); // There should still not be any warnings warnings = BinLog.GetBuildLogWarnings (rv.BinLogPath).FilterWarnings (info.Platform).Select (v => v.Message); Assert.That (warnings, Is.Empty, $"Build warnings (2):\n\t{string.Join ("\n\t", warnings)}"); - var appPath = GetAppPath (proj, platform, runtimeIdentifiers); + var appPath = GetTemplateAppPath (proj, runtimeIdentifiers); var appExecutable = GetNativeExecutable (platform, appPath); ExecuteWithMagicWordAndAssert (appExecutable); } @@ -296,18 +298,25 @@ bool IsMatching (TemplateLanguage lang, TemplateLanguage? value) InsertCodeToExitAppAfterLaunch (language, outputDir); // Build the sample + SetRuntimeIdentifiers (properties, runtimeIdentifiers); rv = DotNet.AssertBuild (proj, properties); // There should still not be any warnings warnings = BinLog.GetBuildLogWarnings (rv.BinLogPath).FilterWarnings (platform).Select (v => v.Message); Assert.That (warnings, Is.Empty, $"Build warnings (2):\n\t{string.Join ("\n\t", warnings)}"); - var appPath = GetAppPath (proj, platform, runtimeIdentifiers); + var appPath = GetTemplateAppPath (proj, runtimeIdentifiers); var appExecutable = GetNativeExecutable (platform, appPath); ExecuteWithMagicWordAndAssert (appExecutable); } } + static string GetTemplateAppPath (string projectPath, string runtimeIdentifier) + { + var targetFramework = XDocument.Load (projectPath).Descendants ("TargetFramework").Single ().Value; + return Path.Combine (Path.GetDirectoryName (projectPath)!, "bin", "Debug", targetFramework, runtimeIdentifier, Path.GetFileNameWithoutExtension (projectPath) + ".app"); + } + static void InsertCodeToExitAppAfterLaunch (TemplateLanguage language, string outputDir) { switch (language) { diff --git a/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs b/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs index cce82b9d11c3..2877718426eb 100644 --- a/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs +++ b/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs @@ -22,8 +22,15 @@ protected override void TryProcess () } var explicitlyEnabled = App.TrimExportAttributes == true; - if (App.DynamicRegistrationSupported) - App.TrimExportAttributesBlockers.Add (ExportAttributeRemovalBlocker.DynamicRegistrationSupported); + if (App.DynamicRegistrationSupported) { + App.TrimExportAttributes = false; + Configuration.SetOutputForMSBuild ("TrimExportAttributes", "false"); + if (explicitlyEnabled) { + var (code, message) = GetDiagnostic (ExportAttributeRemovalBlocker.DynamicRegistrationSupported); + Report (ErrorHelper.CreateError (code, message)); + } + return; + } if (App.Optimizations.OptimizeBlockLiteralSetupBlock != true) App.TrimExportAttributesBlockers.Add (ExportAttributeRemovalBlocker.BlockLiteralSetupBlockOptimizationDisabled); if (App.Optimizations.StaticBlockToDelegateLookup != true) From 51b336d3141a6925b33476cbf20bec46af169ce0 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 2 Sep 2026 18:53:37 +0200 Subject: [PATCH 08/15] Let's try without these changes. --- tests/dotnet/UnitTests/PrepareAssembliesTest.cs | 1 - tests/dotnet/UnitTests/TemplateTest.cs | 13 ++----------- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs index 42bb161abe14..e6405fa7da9a 100644 --- a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs +++ b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs @@ -58,7 +58,6 @@ public void ExportAttributeRemovalEligibility (bool prepareAssemblies, bool post properties ["Configuration"] = configuration; properties ["EnableAssemblyILStripping"] = "true"; properties ["MtouchLink"] = registrar == "managed-static" ? "SdkOnly" : "Full"; - properties ["PublishReadyToRun"] = "false"; properties ["PostProcessAssemblies"] = postProcessAssemblies.ToString (); properties ["PrepareAssemblies"] = prepareAssemblies.ToString (); properties ["Registrar"] = registrar; diff --git a/tests/dotnet/UnitTests/TemplateTest.cs b/tests/dotnet/UnitTests/TemplateTest.cs index 294a1fb22fe1..6cb5304d136b 100644 --- a/tests/dotnet/UnitTests/TemplateTest.cs +++ b/tests/dotnet/UnitTests/TemplateTest.cs @@ -1,5 +1,4 @@ using System.Text.Json; -using System.Xml.Linq; #nullable enable @@ -238,14 +237,13 @@ public void CreateAndBuildProjectTemplate (TemplateInfo info) InsertCodeToExitAppAfterLaunch (language, outputDir); // Build the sample - SetRuntimeIdentifiers (properties, runtimeIdentifiers); rv = DotNet.AssertBuild (proj, properties); // There should still not be any warnings warnings = BinLog.GetBuildLogWarnings (rv.BinLogPath).FilterWarnings (info.Platform).Select (v => v.Message); Assert.That (warnings, Is.Empty, $"Build warnings (2):\n\t{string.Join ("\n\t", warnings)}"); - var appPath = GetTemplateAppPath (proj, runtimeIdentifiers); + var appPath = GetAppPath (proj, platform, runtimeIdentifiers); var appExecutable = GetNativeExecutable (platform, appPath); ExecuteWithMagicWordAndAssert (appExecutable); } @@ -298,25 +296,18 @@ bool IsMatching (TemplateLanguage lang, TemplateLanguage? value) InsertCodeToExitAppAfterLaunch (language, outputDir); // Build the sample - SetRuntimeIdentifiers (properties, runtimeIdentifiers); rv = DotNet.AssertBuild (proj, properties); // There should still not be any warnings warnings = BinLog.GetBuildLogWarnings (rv.BinLogPath).FilterWarnings (platform).Select (v => v.Message); Assert.That (warnings, Is.Empty, $"Build warnings (2):\n\t{string.Join ("\n\t", warnings)}"); - var appPath = GetTemplateAppPath (proj, runtimeIdentifiers); + var appPath = GetAppPath (proj, platform, runtimeIdentifiers); var appExecutable = GetNativeExecutable (platform, appPath); ExecuteWithMagicWordAndAssert (appExecutable); } } - static string GetTemplateAppPath (string projectPath, string runtimeIdentifier) - { - var targetFramework = XDocument.Load (projectPath).Descendants ("TargetFramework").Single ().Value; - return Path.Combine (Path.GetDirectoryName (projectPath)!, "bin", "Debug", targetFramework, runtimeIdentifier, Path.GetFileNameWithoutExtension (projectPath) + ".app"); - } - static void InsertCodeToExitAppAfterLaunch (TemplateLanguage language, string outputDir) { switch (language) { From bcca68f8100024b67ae27bc9f7ad065d5303e08a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 3 Sep 2026 04:17:22 +0000 Subject: [PATCH 09/15] [tests] Update expected app size files Applied from gist: https://gist.github.com/vs-mobiletools-engineering-service2/0ce222692eb35485baaf2758d779241b --- .../UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt index 1eaafbf66fff..5014596161a1 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 331,621,659 bytes (323,849.3 KB = 316.3 MB) +AppBundleSize: 331,634,202 bytes (323,861.5 KB = 316.3 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 750 bytes (0.7 KB = 0.0 MB) + 717 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 7,351,304 bytes (7,179.0 KB = 7.0 MB) + 7,350,568 bytes (7,178.3 KB = 7.0 MB) Contents/MonoBundle/_Microsoft.macOS.TypeMaps.dll: 2,560 bytes (2.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/_Microsoft.macOS.TypeMap.dll: @@ -31,7 +31,7 @@ Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Primitives.dll: 90,408 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.macOS.dll: - 74,466,304 bytes (72,721.0 KB = 71.0 MB) + 74,473,472 bytes (72,728.0 KB = 71.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: 1,337,168 bytes (1,305.8 KB = 1.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.dll: @@ -401,7 +401,7 @@ Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Primitives.dll: 83,240 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.macOS.dll: - 63,569,408 bytes (62,079.5 KB = 60.6 MB) + 63,575,552 bytes (62,085.5 KB = 60.6 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: 1,191,760 bytes (1,163.8 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.dll: From 29100352ae9e1c93d7f58765515e22f2901081e7 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 3 Sep 2026 06:43:46 +0200 Subject: [PATCH 10/15] [msbuild] Pass Export trimming in linker options Pass the effective TrimExportAttributes value through the shared custom linker options file instead of duplicating it as a PrepareAssemblies task input. Append the preparation result so post-processing reads the resolved value from the same configuration source. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 7d63bf91-7585-4d3e-9db4-a17531b71907 --- dotnet/targets/Xamarin.Shared.Sdk.targets | 14 ++++++++++++++ .../Tasks/PrepareAssemblies.cs | 12 ------------ msbuild/Xamarin.Shared/Xamarin.Shared.targets | 2 -- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/dotnet/targets/Xamarin.Shared.Sdk.targets b/dotnet/targets/Xamarin.Shared.Sdk.targets index 33c23cb4f237..80119e75831c 100644 --- a/dotnet/targets/Xamarin.Shared.Sdk.targets +++ b/dotnet/targets/Xamarin.Shared.Sdk.targets @@ -725,6 +725,19 @@ <_TrimExportAttributes>false <_TrimExportAttributes Condition="'$(_TrimExportAttributesLineText)' != ''">$(_TrimExportAttributesLineText.Replace('TrimExportAttributes=', '')) + + + @@ -914,6 +927,7 @@ SkipMarkingNSObjectsInUserAssemblies=$(_SkipMarkingNSObjectsInUserAssemblies) TargetArchitectures=$(TargetArchitectures) TargetFramework=$(_ComputedTargetFrameworkMoniker) + TrimExportAttributes=$(_TrimExportAttributes) TrimMode=$(TrimMode) TypeMapAssemblyName=$(_TypeMapAssemblyName) TypeMapFilePath=$(_TypeMapFilePath) diff --git a/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs b/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs index 12460a291bd2..5d360855e883 100644 --- a/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs +++ b/msbuild/Xamarin.MacDev.Tasks/Tasks/PrepareAssemblies.cs @@ -44,8 +44,6 @@ public class PrepareAssemblies : XamarinTask { public bool PostProcessing { get; set; } - public string? TrimExportAttributes { get; set; } - // The original assemblies from before preparation and trimming, used during post-processing to read // selected registrar attributes removed during trimming. public ITaskItem [] PreTrimAssemblies { get; set; } = []; @@ -84,20 +82,10 @@ public override bool Execute () var msbuildOutputFile = ""; try { - bool? trimExportAttributes = null; - if (!string.IsNullOrEmpty (TrimExportAttributes)) { - if (!bool.TryParse (TrimExportAttributes, out var parsedTrimExportAttributes)) { - Log.LogError ($"Unable to parse the TrimExportAttributes value: {TrimExportAttributes}"); - return false; - } - trimExportAttributes = parsedTrimExportAttributes; - } - var infos = InputAssemblies.Select (GetAssemblyInfo).ToArray (); using var preparer = new AssemblyPreparer (this, infos, OptionsFile?.ItemSpec ?? ""); msbuildOutputFile = PostProcessing ? preparer.Configuration.MSBuildPostProcessOutputFile : preparer.Configuration.MSBuildOutputFile; preparer.MakeReproPath = MakeReproPath; - preparer.TrimExportAttributes = trimExportAttributes; preparer.PreTrimAssemblies.AddRange (PreTrimAssemblies.Select (v => v.ItemSpec)); if (!string.IsNullOrEmpty (DynamicRegistrationSupported)) { diff --git a/msbuild/Xamarin.Shared/Xamarin.Shared.targets b/msbuild/Xamarin.Shared/Xamarin.Shared.targets index db513cec0103..96584743f73e 100644 --- a/msbuild/Xamarin.Shared/Xamarin.Shared.targets +++ b/msbuild/Xamarin.Shared/Xamarin.Shared.targets @@ -3738,7 +3738,6 @@ Copyright (C) 2018 Microsoft. All rights reserved. OptionsFile="$(_CustomLinkerOptionsFile)" OutputDirectory="$(PreparedAssembliesDirectory)" TargetFrameworkMoniker="$(_ComputedTargetFrameworkMoniker)" - TrimExportAttributes="$(_TrimExportAttributes)" > @@ -3791,7 +3790,6 @@ Copyright (C) 2018 Microsoft. All rights reserved. Postprocessing="true" PreTrimAssemblies="@(_AssembliesToPrepare)" TargetFrameworkMoniker="$(_ComputedTargetFrameworkMoniker)" - TrimExportAttributes="$(_TrimExportAttributes)" > From bfe3583b2a959b8ffabc6d0cf3051e84f09b3907 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 3 Sep 2026 06:57:58 +0200 Subject: [PATCH 11/15] [msbuild] Copy written files back to Windows Add CopyToWindows support to the remoted WriteLinesToFile task and use it for the custom linker options file, eliminating duplicate local writes during Windows builds. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 7d63bf91-7585-4d3e-9db4-a17531b71907 --- dotnet/targets/Xamarin.Shared.Sdk.targets | 19 ++----------------- .../MsBuildTasks/WriteLinesToFile.cs | 13 +++++++++++-- 2 files changed, 13 insertions(+), 19 deletions(-) diff --git a/dotnet/targets/Xamarin.Shared.Sdk.targets b/dotnet/targets/Xamarin.Shared.Sdk.targets index 80119e75831c..5d4a8ecc7818 100644 --- a/dotnet/targets/Xamarin.Shared.Sdk.targets +++ b/dotnet/targets/Xamarin.Shared.Sdk.targets @@ -730,11 +730,7 @@ - @@ -1133,18 +1129,7 @@ - - - diff --git a/msbuild/Xamarin.MacDev.Tasks/MsBuildTasks/WriteLinesToFile.cs b/msbuild/Xamarin.MacDev.Tasks/MsBuildTasks/WriteLinesToFile.cs index 03558405c255..9a206c51ef1f 100644 --- a/msbuild/Xamarin.MacDev.Tasks/MsBuildTasks/WriteLinesToFile.cs +++ b/msbuild/Xamarin.MacDev.Tasks/MsBuildTasks/WriteLinesToFile.cs @@ -6,10 +6,19 @@ namespace Microsoft.Build.Tasks { public class WriteLinesToFile : Microsoft_Build_Tasks_Core::Microsoft.Build.Tasks.WriteLinesToFile, IHasSessionId { public string SessionId { get; set; } = string.Empty; + public bool CopyToWindows { get; set; } + public override bool Execute () { - if (this.ShouldExecuteRemotely (SessionId)) - return XamarinTask.ExecuteRemotely (this); + if (this.ShouldExecuteRemotely (SessionId)) { + if (!XamarinTask.ExecuteRemotely (this, out var taskRunner)) + return false; + + if (CopyToWindows) + XamarinTask.CopyFilesToWindowsAsync (this, taskRunner, new [] { File }).Wait (); + + return true; + } return base.Execute (); } From d4ebb738301e42a3800a2c36f0e3e1f30d0562e8 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 4 Sep 2026 07:39:53 +0200 Subject: [PATCH 12/15] [tests] Update expected sizes. --- .../expected/MacOSX-CoreCLR-R2R-size.txt | 370 +++++++++--------- .../MacOSX-NativeAOT-TrimmableStatic-size.txt | 6 +- .../expected/MacOSX-NativeAOT-size.txt | 6 +- 3 files changed, 191 insertions(+), 191 deletions(-) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt index 5014596161a1..6f75535492ef 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 331,634,202 bytes (323,861.5 KB = 316.3 MB) +AppBundleSize: 331,789,349 bytes (324,013.0 KB = 316.4 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 717 bytes (0.7 KB = 0.0 MB) + 752 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 7,350,568 bytes (7,178.3 KB = 7.0 MB) + 7,351,288 bytes (7,179.0 KB = 7.0 MB) Contents/MonoBundle/_Microsoft.macOS.TypeMaps.dll: 2,560 bytes (2.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/_Microsoft.macOS.TypeMap.dll: @@ -13,17 +13,17 @@ Contents/MonoBundle/.xamarin/osx-arm64/_SizeTestApp.TypeMap.dll: Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.CSharp.dll: 882,984 bytes (862.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Caching.Abstractions.dll: - 81,192 bytes (79.3 KB = 0.1 MB) + 81,232 bytes (79.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Configuration.Abstractions.dll: 38,224 bytes (37.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: 156,968 bytes (153.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Diagnostics.Abstractions.dll: - 39,248 bytes (38.3 KB = 0.0 MB) + 39,208 bytes (38.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.FileProviders.Abstractions.dll: 25,384 bytes (24.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Hosting.Abstractions.dll: - 48,424 bytes (47.3 KB = 0.0 MB) + 48,936 bytes (47.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll: 159,528 bytes (155.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: @@ -31,9 +31,9 @@ Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Primitives.dll: 90,408 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.macOS.dll: - 74,473,472 bytes (72,728.0 KB = 71.0 MB) + 74,473,984 bytes (72,728.5 KB = 71.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: - 1,337,168 bytes (1,305.8 KB = 1.3 MB) + 1,337,128 bytes (1,305.8 KB = 1.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.dll: 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Primitives.dll: @@ -41,7 +41,7 @@ Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Primitives.dll: Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Registry.dll: 33,576 bytes (32.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/mscorlib.dll: - 59,728 bytes (58.3 KB = 0.1 MB) + 59,688 bytes (58.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/netstandard.dll: 101,160 bytes (98.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/SizeTestApp.dll: @@ -51,7 +51,7 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.AppContext.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Buffers.dll: 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Concurrent.dll: - 145,704 bytes (142.3 KB = 0.1 MB) + 145,744 bytes (142.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.dll: 323,880 bytes (316.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Immutable.dll: @@ -61,23 +61,23 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.NonGeneric.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Specialized.dll: 104,232 bytes (101.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Annotations.dll: - 253,264 bytes (247.3 KB = 0.2 MB) + 254,760 bytes (248.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.DataAnnotations.dll: 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.dll: - 17,232 bytes (16.8 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.EventBasedAsync.dll: 38,696 bytes (37.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Primitives.dll: - 78,160 bytes (76.3 KB = 0.1 MB) + 78,120 bytes (76.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.TypeConverter.dll: 864,552 bytes (844.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Configuration.dll: - 19,240 bytes (18.8 KB = 0.0 MB) + 19,280 bytes (18.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Console.dll: - 224,080 bytes (218.8 KB = 0.2 MB) + 224,040 bytes (218.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Core.dll: - 23,376 bytes (22.8 KB = 0.0 MB) + 23,336 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Data.Common.dll: 3,178,280 bytes (3,103.8 KB = 3.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Data.DataSetExtensions.dll: @@ -87,63 +87,63 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.Data.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Contracts.dll: 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Debug.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.DiagnosticSource.dll: - 569,128 bytes (555.8 KB = 0.5 MB) + 568,616 bytes (555.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.FileVersionInfo.dll: - 45,864 bytes (44.8 KB = 0.0 MB) + 45,904 bytes (44.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Process.dll: 397,608 bytes (388.3 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.StackTrace.dll: - 29,992 bytes (29.3 KB = 0.0 MB) + 30,032 bytes (29.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TextWriterTraceListener.dll: - 64,848 bytes (63.3 KB = 0.1 MB) + 64,808 bytes (63.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Tools.dll: - 15,144 bytes (14.8 KB = 0.0 MB) + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TraceSource.dll: - 150,312 bytes (146.8 KB = 0.1 MB) + 150,352 bytes (146.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Tracing.dll: 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.dll: 50,472 bytes (49.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.dll: - 20,264 bytes (19.8 KB = 0.0 MB) + 20,304 bytes (19.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.Primitives.dll: - 126,248 bytes (123.3 KB = 0.1 MB) + 126,288 bytes (123.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Dynamic.Runtime.dll: - 16,168 bytes (15.8 KB = 0.0 MB) + 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Asn1.dll: 276,304 bytes (269.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Tar.dll: 370,984 bytes (362.3 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.Calendars.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.Extensions.dll: - 15,144 bytes (14.8 KB = 0.0 MB) + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.Brotli.dll: 82,728 bytes (80.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.dll: - 668,456 bytes (652.8 KB = 0.6 MB) + 667,432 bytes (651.8 KB = 0.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.FileSystem.dll: 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.ZipFile.dll: 134,440 bytes (131.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.AccessControl.dll: 32,592 bytes (31.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.DriveInfo.dll: 87,848 bytes (85.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Primitives.dll: - 15,144 bytes (14.8 KB = 0.0 MB) + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Watcher.dll: 120,616 bytes (117.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.IsolatedStorage.dll: - 83,280 bytes (81.3 KB = 0.1 MB) + 83,240 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.MemoryMappedFiles.dll: 93,480 bytes (91.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipelines.dll: @@ -157,27 +157,27 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.IO.UnmanagedMemoryStream.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.AsyncEnumerable.dll: 1,641,808 bytes (1,603.3 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.dll: - 861,008 bytes (840.8 KB = 0.8 MB) + 860,968 bytes (840.8 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Expressions.dll: 4,861,736 bytes (4,747.8 KB = 4.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Parallel.dll: - 1,009,960 bytes (986.3 KB = 1.0 MB) + 1,010,000 bytes (986.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Queryable.dll: - 222,504 bytes (217.3 KB = 0.2 MB) + 222,544 bytes (217.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Memory.dll: 176,424 bytes (172.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.dll: - 17,232 bytes (16.8 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.dll: - 1,909,032 bytes (1,864.3 KB = 1.8 MB) + 1,909,544 bytes (1,864.8 KB = 1.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.Json.dll: - 127,824 bytes (124.8 KB = 0.1 MB) + 127,784 bytes (124.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.HttpListener.dll: - 322,344 bytes (314.8 KB = 0.3 MB) + 322,384 bytes (314.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Mail.dll: 530,728 bytes (518.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NameResolution.dll: - 273,192 bytes (266.8 KB = 0.3 MB) + 273,232 bytes (266.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NetworkInformation.dll: 151,336 bytes (147.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Ping.dll: @@ -185,15 +185,15 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Ping.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Primitives.dll: 248,616 bytes (242.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Quic.dll: - 375,592 bytes (366.8 KB = 0.4 MB) + 375,632 bytes (366.8 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Requests.dll: - 408,400 bytes (398.8 KB = 0.4 MB) + 408,360 bytes (398.8 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Security.dll: 889,128 bytes (868.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServerSentEvents.dll: 79,144 bytes (77.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServicePoint.dll: - 15,184 bytes (14.8 KB = 0.0 MB) + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Sockets.dll: 702,760 bytes (686.3 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebClient.dll: @@ -201,9 +201,9 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebClient.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebHeaderCollection.dll: 60,200 bytes (58.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebProxy.dll: - 36,136 bytes (35.3 KB = 0.0 MB) + 36,176 bytes (35.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.Client.dll: - 98,088 bytes (95.8 KB = 0.1 MB) + 98,128 bytes (95.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.dll: 259,368 bytes (253.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Numerics.dll: @@ -211,43 +211,43 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.Numerics.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Numerics.Vectors.dll: 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ObjectModel.dll: - 76,624 bytes (74.8 KB = 0.1 MB) + 76,584 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.CoreLib.dll: - 18,983,720 bytes (18,538.8 KB = 18.1 MB) + 18,970,920 bytes (18,526.3 KB = 18.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.DataContractSerialization.dll: - 2,352,424 bytes (2,297.3 KB = 2.2 MB) + 2,352,464 bytes (2,297.3 KB = 2.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Uri.dll: 259,368 bytes (253.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.dll: 8,694,056 bytes (8,490.3 KB = 8.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.Linq.dll: - 414,032 bytes (404.3 KB = 0.4 MB) + 413,992 bytes (404.3 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.DispatchProxy.dll: 72,488 bytes (70.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.dll: - 16,208 bytes (15.8 KB = 0.0 MB) + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.dll: - 341,800 bytes (333.8 KB = 0.3 MB) + 341,840 bytes (333.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.ILGeneration.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.Lightweight.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Extensions.dll: - 15,144 bytes (14.8 KB = 0.0 MB) + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Metadata.dll: - 1,276,712 bytes (1,246.8 KB = 1.2 MB) + 1,276,752 bytes (1,246.8 KB = 1.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Primitives.dll: 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.TypeExtensions.dll: - 33,576 bytes (32.8 KB = 0.0 MB) + 33,616 bytes (32.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Reader.dll: - 15,184 bytes (14.8 KB = 0.0 MB) + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.ResourceManager.dll: 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Writer.dll: - 45,392 bytes (44.3 KB = 0.0 MB) + 45,352 bytes (44.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.Unsafe.dll: - 15,184 bytes (14.8 KB = 0.0 MB) + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.VisualC.dll: 18,728 bytes (18.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.dll: @@ -263,15 +263,15 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.JavaScript Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.RuntimeInformation.dll: 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Intrinsics.dll: - 18,768 bytes (18.3 KB = 0.0 MB) + 18,728 bytes (18.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Loader.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Numerics.dll: - 564,560 bytes (551.3 KB = 0.5 MB) + 570,192 bytes (556.8 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.dll: - 17,232 bytes (16.8 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Formatters.dll: - 126,800 bytes (123.8 KB = 0.1 MB) + 126,760 bytes (123.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Json.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Primitives.dll: @@ -281,31 +281,31 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Xml.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Security.AccessControl.dll: 55,080 bytes (53.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Claims.dll: - 101,200 bytes (98.8 KB = 0.1 MB) + 101,160 bytes (98.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Algorithms.dll: 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Cng.dll: 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Csp.dll: - 16,168 bytes (15.8 KB = 0.0 MB) + 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.dll: - 2,472,744 bytes (2,414.8 KB = 2.4 MB) + 2,526,032 bytes (2,466.8 KB = 2.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Encoding.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.OpenSsl.dll: 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Primitives.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.X509Certificates.dll: - 17,232 bytes (16.8 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.dll: - 18,256 bytes (17.8 KB = 0.0 MB) + 18,216 bytes (17.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.dll: 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.Windows.dll: 37,672 bytes (36.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.SecureString.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ServiceModel.Web.dll: 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ServiceProcess.dll: @@ -313,15 +313,15 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.ServiceProcess.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.CodePages.dll: 864,552 bytes (844.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.Extensions.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encodings.Web.dll: - 122,664 bytes (119.8 KB = 0.1 MB) + 122,704 bytes (119.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Json.dll: - 2,753,360 bytes (2,688.8 KB = 2.6 MB) + 2,783,056 bytes (2,717.8 KB = 2.7 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.RegularExpressions.dll: - 1,187,112 bytes (1,159.3 KB = 1.1 MB) + 1,187,152 bytes (1,159.3 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.AccessControl.dll: 33,576 bytes (32.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Channels.dll: @@ -329,11 +329,11 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Channels.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.dll: 80,680 bytes (78.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Overlapped.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Dataflow.dll: 526,632 bytes (514.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.dll: - 16,720 bytes (16.3 KB = 0.0 MB) + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Extensions.dll: 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Parallel.dll: @@ -343,37 +343,37 @@ Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Thread.dll: Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.ThreadPool.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Timer.dll: - 15,184 bytes (14.8 KB = 0.0 MB) + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.dll: 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.Local.dll: - 389,968 bytes (380.8 KB = 0.4 MB) + 389,928 bytes (380.8 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ValueTuple.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Web.dll: - 15,144 bytes (14.8 KB = 0.0 MB) + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Web.HttpUtility.dll: 56,616 bytes (55.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Windows.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.dll: - 23,336 bytes (22.8 KB = 0.0 MB) + 23,376 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.Linq.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.ReaderWriter.dll: 21,800 bytes (21.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.Serialization.dll: 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XDocument.dll: - 16,208 bytes (15.8 KB = 0.0 MB) + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XmlDocument.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XmlSerializer.dll: - 17,744 bytes (17.3 KB = 0.0 MB) + 17,704 bytes (17.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.XDocument.dll: - 17,232 bytes (16.8 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/WindowsBase.dll: 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/_Microsoft.macOS.TypeMap.dll: @@ -389,21 +389,21 @@ Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Configuration.Abstract Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: 140,584 bytes (137.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll: - 37,200 bytes (36.3 KB = 0.0 MB) + 37,160 bytes (36.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.FileProviders.Abstractions.dll: - 24,872 bytes (24.3 KB = 0.0 MB) + 24,912 bytes (24.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Hosting.Abstractions.dll: 46,928 bytes (45.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll: - 146,216 bytes (142.8 KB = 0.1 MB) + 146,256 bytes (142.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: 205,608 bytes (200.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Primitives.dll: 83,240 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.macOS.dll: - 63,575,552 bytes (62,085.5 KB = 60.6 MB) + 63,576,064 bytes (62,086.0 KB = 60.6 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: - 1,191,760 bytes (1,163.8 KB = 1.1 MB) + 1,191,720 bytes (1,163.8 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.dll: 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Primitives.dll: @@ -417,13 +417,13 @@ Contents/MonoBundle/.xamarin/osx-x64/netstandard.dll: Contents/MonoBundle/.xamarin/osx-x64/SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.AppContext.dll: - 15,184 bytes (14.8 KB = 0.0 MB) + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Buffers.dll: 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Concurrent.dll: - 132,392 bytes (129.3 KB = 0.1 MB) + 132,432 bytes (129.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.dll: - 288,552 bytes (281.8 KB = 0.3 MB) + 288,592 bytes (281.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Immutable.dll: 1,055,016 bytes (1,030.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.NonGeneric.dll: @@ -431,7 +431,7 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Collections.NonGeneric.dll: Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Specialized.dll: 91,984 bytes (89.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Annotations.dll: - 229,160 bytes (223.8 KB = 0.2 MB) + 230,184 bytes (224.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.DataAnnotations.dll: 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.dll: @@ -443,91 +443,91 @@ Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Primitives.dll: Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.TypeConverter.dll: 764,200 bytes (746.3 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Configuration.dll: - 19,280 bytes (18.8 KB = 0.0 MB) + 19,240 bytes (18.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Console.dll: - 198,952 bytes (194.3 KB = 0.2 MB) + 198,992 bytes (194.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Core.dll: 23,336 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Data.Common.dll: - 2,802,472 bytes (2,736.8 KB = 2.7 MB) + 2,802,512 bytes (2,736.8 KB = 2.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Data.DataSetExtensions.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Data.dll: - 25,424 bytes (24.8 KB = 0.0 MB) + 25,384 bytes (24.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Contracts.dll: 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Debug.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.DiagnosticSource.dll: - 515,920 bytes (503.8 KB = 0.5 MB) + 515,880 bytes (503.8 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.FileVersionInfo.dll: 43,304 bytes (42.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Process.dll: - 353,064 bytes (344.8 KB = 0.3 MB) + 353,104 bytes (344.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.StackTrace.dll: - 29,992 bytes (29.3 KB = 0.0 MB) + 30,032 bytes (29.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TextWriterTraceListener.dll: - 59,216 bytes (57.8 KB = 0.1 MB) + 59,176 bytes (57.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Tools.dll: 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TraceSource.dll: - 130,856 bytes (127.8 KB = 0.1 MB) + 130,896 bytes (127.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Tracing.dll: - 16,208 bytes (15.8 KB = 0.0 MB) + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.dll: - 50,472 bytes (49.3 KB = 0.0 MB) + 50,512 bytes (49.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.dll: - 20,304 bytes (19.8 KB = 0.0 MB) + 20,264 bytes (19.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.Primitives.dll: - 123,176 bytes (120.3 KB = 0.1 MB) + 123,216 bytes (120.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Dynamic.Runtime.dll: - 16,208 bytes (15.8 KB = 0.0 MB) + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Asn1.dll: - 250,664 bytes (244.8 KB = 0.2 MB) + 250,704 bytes (244.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Tar.dll: - 331,560 bytes (323.8 KB = 0.3 MB) + 331,600 bytes (323.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.Calendars.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.Extensions.dll: - 15,144 bytes (14.8 KB = 0.0 MB) + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.Brotli.dll: - 73,512 bytes (71.8 KB = 0.1 MB) + 73,552 bytes (71.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.dll: - 592,208 bytes (578.3 KB = 0.6 MB) + 591,656 bytes (577.8 KB = 0.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.FileSystem.dll: - 15,184 bytes (14.8 KB = 0.0 MB) + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.ZipFile.dll: - 123,176 bytes (120.3 KB = 0.1 MB) + 123,216 bytes (120.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.AccessControl.dll: - 32,552 bytes (31.8 KB = 0.0 MB) + 32,592 bytes (31.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.dll: 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.DriveInfo.dll: 79,696 bytes (77.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Primitives.dll: - 15,144 bytes (14.8 KB = 0.0 MB) + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Watcher.dll: 108,840 bytes (106.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.IsolatedStorage.dll: 76,584 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.MemoryMappedFiles.dll: - 82,768 bytes (80.8 KB = 0.1 MB) + 82,728 bytes (80.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipelines.dll: - 194,856 bytes (190.3 KB = 0.2 MB) + 194,896 bytes (190.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.AccessControl.dll: 23,848 bytes (23.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.dll: 129,320 bytes (126.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.UnmanagedMemoryStream.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.AsyncEnumerable.dll: 1,513,768 bytes (1,478.3 KB = 1.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.dll: - 763,216 bytes (745.3 KB = 0.7 MB) + 763,176 bytes (745.3 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Expressions.dll: 3,970,856 bytes (3,877.8 KB = 3.8 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Parallel.dll: @@ -539,15 +539,15 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Memory.dll: Contents/MonoBundle/.xamarin/osx-x64/System.Net.dll: 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.dll: - 1,719,632 bytes (1,679.3 KB = 1.6 MB) + 1,720,656 bytes (1,680.3 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.Json.dll: 120,104 bytes (117.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.HttpListener.dll: 289,064 bytes (282.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Mail.dll: - 474,408 bytes (463.3 KB = 0.5 MB) + 474,448 bytes (463.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NameResolution.dll: - 252,240 bytes (246.3 KB = 0.2 MB) + 252,200 bytes (246.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NetworkInformation.dll: 134,440 bytes (131.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Ping.dll: @@ -557,47 +557,47 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Net.Primitives.dll: Contents/MonoBundle/.xamarin/osx-x64/System.Net.Quic.dll: 340,776 bytes (332.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Requests.dll: - 362,320 bytes (353.8 KB = 0.3 MB) + 362,280 bytes (353.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Security.dll: - 786,216 bytes (767.8 KB = 0.7 MB) + 786,256 bytes (767.8 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServerSentEvents.dll: 74,536 bytes (72.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServicePoint.dll: 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Sockets.dll: - 616,784 bytes (602.3 KB = 0.6 MB) + 616,744 bytes (602.3 KB = 0.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebClient.dll: - 157,992 bytes (154.3 KB = 0.2 MB) + 158,032 bytes (154.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebHeaderCollection.dll: - 54,608 bytes (53.3 KB = 0.1 MB) + 54,568 bytes (53.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebProxy.dll: 34,128 bytes (33.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.Client.dll: - 90,408 bytes (88.3 KB = 0.1 MB) + 90,448 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.dll: 237,864 bytes (232.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Numerics.dll: - 15,144 bytes (14.8 KB = 0.0 MB) + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Numerics.Vectors.dll: 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ObjectModel.dll: - 68,944 bytes (67.3 KB = 0.1 MB) + 68,904 bytes (67.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.CoreLib.dll: - 17,670,440 bytes (17,256.3 KB = 16.9 MB) + 17,660,240 bytes (17,246.3 KB = 16.8 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.DataContractSerialization.dll: 2,060,584 bytes (2,012.3 KB = 2.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Uri.dll: - 239,952 bytes (234.3 KB = 0.2 MB) + 239,912 bytes (234.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.dll: 7,713,104 bytes (7,532.3 KB = 7.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.Linq.dll: 366,888 bytes (358.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.DispatchProxy.dll: - 67,408 bytes (65.8 KB = 0.1 MB) + 67,368 bytes (65.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.dll: 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.dll: - 304,976 bytes (297.8 KB = 0.3 MB) + 304,936 bytes (297.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.ILGeneration.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.Lightweight.dll: @@ -607,29 +607,29 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Extensions.dll: Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Metadata.dll: 1,155,408 bytes (1,128.3 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Primitives.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.TypeExtensions.dll: - 31,528 bytes (30.8 KB = 0.0 MB) + 31,568 bytes (30.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Reader.dll: - 15,144 bytes (14.8 KB = 0.0 MB) + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Resources.ResourceManager.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Writer.dll: - 42,280 bytes (41.3 KB = 0.0 MB) + 42,320 bytes (41.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.Unsafe.dll: 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.VisualC.dll: - 18,728 bytes (18.3 KB = 0.0 MB) + 18,768 bytes (18.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.dll: 45,904 bytes (44.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Extensions.dll: - 17,744 bytes (17.3 KB = 0.0 MB) + 17,704 bytes (17.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Handles.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.dll: 102,184 bytes (99.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.JavaScript.dll: - 37,160 bytes (36.3 KB = 0.0 MB) + 37,200 bytes (36.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Intrinsics.dll: @@ -637,45 +637,45 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Intrinsics.dll: Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Loader.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Numerics.dll: - 524,072 bytes (511.8 KB = 0.5 MB) + 530,216 bytes (517.8 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.dll: - 17,232 bytes (16.8 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Formatters.dll: - 115,496 bytes (112.8 KB = 0.1 MB) + 115,536 bytes (112.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Json.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Primitives.dll: - 28,496 bytes (27.8 KB = 0.0 MB) + 28,456 bytes (27.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Xml.dll: - 16,720 bytes (16.3 KB = 0.0 MB) + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.AccessControl.dll: 55,080 bytes (53.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Claims.dll: - 92,456 bytes (90.3 KB = 0.1 MB) + 92,496 bytes (90.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Algorithms.dll: - 17,232 bytes (16.8 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Cng.dll: - 16,208 bytes (15.8 KB = 0.0 MB) + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Csp.dll: 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.dll: - 2,177,832 bytes (2,126.8 KB = 2.1 MB) + 2,228,008 bytes (2,175.8 KB = 2.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Encoding.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.OpenSsl.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Primitives.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.X509Certificates.dll: - 17,232 bytes (16.8 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.dll: - 18,256 bytes (17.8 KB = 0.0 MB) + 18,216 bytes (17.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.dll: 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.Windows.dll: 37,672 bytes (36.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.SecureString.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ServiceModel.Web.dll: 16,720 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ServiceProcess.dll: @@ -685,19 +685,19 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.CodePages.dll: Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.Extensions.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encodings.Web.dll: 114,472 bytes (111.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Json.dll: - 2,473,768 bytes (2,415.8 KB = 2.4 MB) + 2,501,416 bytes (2,442.8 KB = 2.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.RegularExpressions.dll: - 1,074,472 bytes (1,049.3 KB = 1.0 MB) + 1,074,512 bytes (1,049.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.AccessControl.dll: - 33,064 bytes (32.3 KB = 0.0 MB) + 33,104 bytes (32.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Channels.dll: - 150,824 bytes (147.3 KB = 0.1 MB) + 151,336 bytes (147.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.dll: - 74,576 bytes (72.8 KB = 0.1 MB) + 74,536 bytes (72.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Overlapped.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Dataflow.dll: @@ -705,35 +705,35 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Dataflow.dll: Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.dll: 16,720 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Extensions.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Parallel.dll: 124,200 bytes (121.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Thread.dll: - 15,696 bytes (15.3 KB = 0.0 MB) + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.ThreadPool.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Timer.dll: 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.dll: - 16,720 bytes (16.3 KB = 0.0 MB) + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.Local.dll: - 350,032 bytes (341.8 KB = 0.3 MB) + 349,992 bytes (341.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ValueTuple.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Web.dll: - 15,184 bytes (14.8 KB = 0.0 MB) + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Web.HttpUtility.dll: - 53,032 bytes (51.8 KB = 0.1 MB) + 53,072 bytes (51.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Windows.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.dll: - 23,376 bytes (22.8 KB = 0.0 MB) + 23,336 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.Linq.dll: 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.ReaderWriter.dll: - 21,800 bytes (21.3 KB = 0.0 MB) + 21,840 bytes (21.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.Serialization.dll: - 16,168 bytes (15.8 KB = 0.0 MB) + 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XDocument.dll: 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XmlDocument.dll: @@ -741,7 +741,7 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XmlDocument.dll: Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XmlSerializer.dll: 17,704 bytes (17.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.dll: - 15,656 bytes (15.3 KB = 0.0 MB) + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.XDocument.dll: 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/WindowsBase.dll: @@ -753,15 +753,15 @@ Contents/MonoBundle/libclrgcexp.dylib: Contents/MonoBundle/libclrjit.dylib: 5,981,248 bytes (5,841.1 KB = 5.7 MB) Contents/MonoBundle/libcoreclr.dylib: - 11,185,600 bytes (10,923.4 KB = 10.7 MB) + 11,185,536 bytes (10,923.4 KB = 10.7 MB) Contents/MonoBundle/libhostfxr.dylib: 861,280 bytes (841.1 KB = 0.8 MB) Contents/MonoBundle/libhostpolicy.dylib: 817,680 bytes (798.5 KB = 0.8 MB) Contents/MonoBundle/libmscordaccore.dylib: - 3,744,848 bytes (3,657.1 KB = 3.6 MB) + 3,744,784 bytes (3,657.0 KB = 3.6 MB) Contents/MonoBundle/libmscordbi.dylib: - 3,030,720 bytes (2,959.7 KB = 2.9 MB) + 3,030,656 bytes (2,959.6 KB = 2.9 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: 302,528 bytes (295.4 KB = 0.3 MB) Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: @@ -771,7 +771,7 @@ Contents/MonoBundle/libSystem.Native.dylib: Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 152,128 bytes (148.6 KB = 0.1 MB) Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: - 510,064 bytes (498.1 KB = 0.5 MB) + 511,248 bytes (499.3 KB = 0.5 MB) Contents/MonoBundle/runtimeconfig.bin: 1,445 bytes (1.4 KB = 0.0 MB) Contents/PkgInfo: diff --git a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt index 4a4f65664879..19cdf5c88059 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 4,716,949 bytes (4,606.4 KB = 4.5 MB) +AppBundleSize: 4,700,600 bytes (4,590.4 KB = 4.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 717 bytes (0.7 KB = 0.0 MB) + 752 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 4,714,376 bytes (4,603.9 KB = 4.5 MB) + 4,697,992 bytes (4,587.9 KB = 4.5 MB) Contents/MonoBundle/runtimeconfig.bin: 1,848 bytes (1.8 KB = 0.0 MB) Contents/PkgInfo: diff --git a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt index 4a4f65664879..19cdf5c88059 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 4,716,949 bytes (4,606.4 KB = 4.5 MB) +AppBundleSize: 4,700,600 bytes (4,590.4 KB = 4.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 717 bytes (0.7 KB = 0.0 MB) + 752 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 4,714,376 bytes (4,603.9 KB = 4.5 MB) + 4,697,992 bytes (4,587.9 KB = 4.5 MB) Contents/MonoBundle/runtimeconfig.bin: 1,848 bytes (1.8 KB = 0.0 MB) Contents/PkgInfo: From a65f57e77d483717864c9c7895a7b37151b17e0d Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 4 Sep 2026 07:48:50 +0200 Subject: [PATCH 13/15] [tests] Disable R2R in export removal eligibility test The test invokes MobileILStrip directly, which cannot process ReadyToRun images. Keep the test focused on export attribute removal by producing regular IL assemblies. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- tests/dotnet/UnitTests/PrepareAssembliesTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs index e6405fa7da9a..42bb161abe14 100644 --- a/tests/dotnet/UnitTests/PrepareAssembliesTest.cs +++ b/tests/dotnet/UnitTests/PrepareAssembliesTest.cs @@ -58,6 +58,7 @@ public void ExportAttributeRemovalEligibility (bool prepareAssemblies, bool post properties ["Configuration"] = configuration; properties ["EnableAssemblyILStripping"] = "true"; properties ["MtouchLink"] = registrar == "managed-static" ? "SdkOnly" : "Full"; + properties ["PublishReadyToRun"] = "false"; properties ["PostProcessAssemblies"] = postProcessAssemblies.ToString (); properties ["PrepareAssemblies"] = prepareAssemblies.ToString (); properties ["Registrar"] = registrar; From 635b5b286703f1a0f83dba5bf745447de2c5b7d0 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 7 Sep 2026 18:21:45 +0200 Subject: [PATCH 14/15] Renumber MX error codes to avoid collision with origin/main's MT4192 Merging origin/main introduced MT4192, which collided (by number) with this branch's MX4192-MX4197 range and broke the resx sort-order check. Shifted this branch's codes to MX4193-MX4198. --- .../ComputeExportAttributeRemovalStep.cs | 12 +++++----- tools/mtouch/Errors.designer.cs | 24 +++++++++---------- tools/mtouch/Errors.resx | 18 +++++++------- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs b/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs index 2877718426eb..5ead9636a435 100644 --- a/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs +++ b/tools/assembly-preparer/ComputeExportAttributeRemovalStep.cs @@ -55,12 +55,12 @@ protected override void TryProcess () static (int Code, string Message) GetDiagnostic (ExportAttributeRemovalBlocker blocker) { return blocker switch { - ExportAttributeRemovalBlocker.DynamicRegistrationSupported => (4192, Errors.MX4192), - ExportAttributeRemovalBlocker.BlockLiteralSetupBlockOptimizationDisabled => (4193, Errors.MX4193), - ExportAttributeRemovalBlocker.StaticBlockToDelegateLookupOptimizationDisabled => (4194, Errors.MX4194), - ExportAttributeRemovalBlocker.RuntimeGetBlockWrapperCreatorRequired => (4195, Errors.MX4195), - ExportAttributeRemovalBlocker.RegistrarHelperGetBlockForDelegateRequired => (4196, Errors.MX4196), - ExportAttributeRemovalBlocker.NSXpcInterfaceMethodInfoOverloadUsed => (4197, Errors.MX4197), + ExportAttributeRemovalBlocker.DynamicRegistrationSupported => (4193, Errors.MX4193), + ExportAttributeRemovalBlocker.BlockLiteralSetupBlockOptimizationDisabled => (4194, Errors.MX4194), + ExportAttributeRemovalBlocker.StaticBlockToDelegateLookupOptimizationDisabled => (4195, Errors.MX4195), + ExportAttributeRemovalBlocker.RuntimeGetBlockWrapperCreatorRequired => (4196, Errors.MX4196), + ExportAttributeRemovalBlocker.RegistrarHelperGetBlockForDelegateRequired => (4197, Errors.MX4197), + ExportAttributeRemovalBlocker.NSXpcInterfaceMethodInfoOverloadUsed => (4198, Errors.MX4198), _ => throw new InvalidOperationException ($"Unknown Export attribute removal blocker: {blocker}."), }; } diff --git a/tools/mtouch/Errors.designer.cs b/tools/mtouch/Errors.designer.cs index f643d99ced9a..77d077170643 100644 --- a/tools/mtouch/Errors.designer.cs +++ b/tools/mtouch/Errors.designer.cs @@ -3680,54 +3680,54 @@ public static string MX4191 { /// /// Looks up a localized string similar to Export attributes cannot be removed because dynamic registration is supported.. /// - public static string MX4192 { + public static string MX4193 { get { - return ResourceManager.GetString("MX4192", resourceCulture); + return ResourceManager.GetString("MX4193", resourceCulture); } } /// /// Looks up a localized string similar to Export attributes cannot be removed because the blockliteral-setupblock optimization is disabled.. /// - public static string MX4193 { + public static string MX4194 { get { - return ResourceManager.GetString("MX4193", resourceCulture); + return ResourceManager.GetString("MX4194", resourceCulture); } } /// /// Looks up a localized string similar to Export attributes cannot be removed because the static-block-to-delegate-lookup optimization is disabled.. /// - public static string MX4194 { + public static string MX4195 { get { - return ResourceManager.GetString("MX4194", resourceCulture); + return ResourceManager.GetString("MX4195", resourceCulture); } } /// /// Looks up a localized string similar to Export attributes cannot be removed because the managed registrar must use Runtime.GetBlockWrapperCreator.. /// - public static string MX4195 { + public static string MX4196 { get { - return ResourceManager.GetString("MX4195", resourceCulture); + return ResourceManager.GetString("MX4196", resourceCulture); } } /// /// Looks up a localized string similar to Export attributes cannot be removed because the managed registrar must use RegistrarHelper.GetBlockForDelegate.. /// - public static string MX4196 { + public static string MX4197 { get { - return ResourceManager.GetString("MX4196", resourceCulture); + return ResourceManager.GetString("MX4197", resourceCulture); } } /// /// Looks up a localized string similar to Export attributes cannot be removed because the application uses an NSXpcInterface overload that obtains a selector from MethodInfo.. /// - public static string MX4197 { + public static string MX4198 { get { - return ResourceManager.GetString("MX4197", resourceCulture); + return ResourceManager.GetString("MX4198", resourceCulture); } } diff --git a/tools/mtouch/Errors.resx b/tools/mtouch/Errors.resx index 4447c3fb9644..b9ef8941c4dc 100644 --- a/tools/mtouch/Errors.resx +++ b/tools/mtouch/Errors.resx @@ -1640,32 +1640,32 @@ Could not find the trampoline for the category method {0}. - - Export attributes cannot be removed because dynamic registration is supported. + + The registrar cannot use the model class '{0}' as a generic type argument in the generic type '{1}'. Use the protocol interface instead of the model class. - Export attributes cannot be removed because the blockliteral-setupblock optimization is disabled. + Export attributes cannot be removed because dynamic registration is supported. - Export attributes cannot be removed because the static-block-to-delegate-lookup optimization is disabled. + Export attributes cannot be removed because the blockliteral-setupblock optimization is disabled. - Export attributes cannot be removed because the managed registrar must use Runtime.GetBlockWrapperCreator. + Export attributes cannot be removed because the static-block-to-delegate-lookup optimization is disabled. - Export attributes cannot be removed because the managed registrar must use RegistrarHelper.GetBlockForDelegate. + Export attributes cannot be removed because the managed registrar must use Runtime.GetBlockWrapperCreator. - Export attributes cannot be removed because the application uses an NSXpcInterface overload that obtains a selector from MethodInfo. + Export attributes cannot be removed because the managed registrar must use RegistrarHelper.GetBlockForDelegate. - - The registrar cannot use the model class '{0}' as a generic type argument in the generic type '{1}'. Use the protocol interface instead of the model class. + + Export attributes cannot be removed because the application uses an NSXpcInterface overload that obtains a selector from MethodInfo. From 7fda88acb555c61b70bf48c3bea5ffa2182a14ef Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 7 Sep 2026 19:58:30 +0200 Subject: [PATCH 15/15] [tests] Update expected sizes. --- ...lyst-CoreCLR-Interpreter-preservedapis.txt | 1752 +++++++++++++---- .../MacCatalyst-CoreCLR-R2R-preservedapis.txt | 1752 +++++++++++++---- .../expected/MacOSX-CoreCLR-R2R-size.txt | 12 +- .../MacOSX-NativeAOT-TrimmableStatic-size.txt | 8 +- .../expected/MacOSX-NativeAOT-size.txt | 8 +- ...TVOS-CoreCLR-Interpreter-preservedapis.txt | 1684 ++++++++++++---- .../TVOS-CoreCLR-R2R-preservedapis.txt | 1684 ++++++++++++---- .../iOS-CoreCLR-Interpreter-preservedapis.txt | 1739 ++++++++++++---- .../iOS-CoreCLR-R2R-preservedapis.txt | 1739 ++++++++++++---- 9 files changed, 8145 insertions(+), 2233 deletions(-) diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt index ae1deefbc94a..3f7565cf4043 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt @@ -4,30 +4,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy.GetClassHandle(System.Boolean&) _Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarProvider_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarProvider_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarProvider_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarProviderWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarProviderWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKRecordValue_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKRecordValue_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKRecordValue_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFArray_Proxy _Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFArray_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFArray_Proxy.CreateObject(System.IntPtr, System.Boolean) @@ -39,30 +15,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy. _Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.GetClassHandle(System.Boolean&) _Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCoding_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCoding_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCopying_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCopying_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderReading_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderReading_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderReading_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMutableCopying_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMutableCopying_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMutableCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSObjectProtocol_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSObjectProtocol_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSObjectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSSecureCoding_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSSecureCoding_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSSecureCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy.CreateObject(System.IntPtr) @@ -77,12 +29,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCodingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCodingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy.CreateObject(System.IntPtr) @@ -96,18 +42,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy.CreateObject(System.IntPtr) @@ -116,16 +50,10 @@ _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy.CreateObject(System.IntPtr) @@ -147,84 +75,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Selector_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Selector_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute _Microsoft.MacCatalyst.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearance_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearance_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearance_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentContainer_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentContainer_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicItem_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicItem_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItem_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItem_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy.CreateObject(System.IntPtr) @@ -234,70 +84,22 @@ _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.GetClassHandle(System.Boolean&) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy.CreateObject(System.IntPtr) @@ -332,26 +134,6 @@ Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callba Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callback_3135_AppKit_ActionDispatcher_OnActivated2(System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callback_3136_AppKit_ActionDispatcher__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*) Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callback_3137_AppKit_ActionDispatcher_get_WorksWhenModal(System.IntPtr, System.IntPtr, System.IntPtr*) -Microsoft.MacCatalyst.dll:AppKit.INSTouchBarProvider -Microsoft.MacCatalyst.dll:AppKit.NSTouchBarProviderWrapper -Microsoft.MacCatalyst.dll:AppKit.NSTouchBarProviderWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:AppKit.NSTouchBarProviderWrapper..cctor() -Microsoft.MacCatalyst.dll:AppKit.NSTouchBarProviderWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CloudKit.CKRecordValueWrapper -Microsoft.MacCatalyst.dll:CloudKit.CKRecordValueWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CloudKit.CKRecordValueWrapper..cctor() -Microsoft.MacCatalyst.dll:CloudKit.CKRecordValueWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CloudKit.ICKRecordValue -Microsoft.MacCatalyst.dll:CoreAnimation.CALayerDelegateWrapper -Microsoft.MacCatalyst.dll:CoreAnimation.CALayerDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CoreAnimation.CALayerDelegateWrapper..cctor() -Microsoft.MacCatalyst.dll:CoreAnimation.CALayerDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CoreAnimation.ICALayerDelegate -Microsoft.MacCatalyst.dll:CoreData.INSFetchRequestResult -Microsoft.MacCatalyst.dll:CoreData.NSFetchRequestResultWrapper -Microsoft.MacCatalyst.dll:CoreData.NSFetchRequestResultWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CoreData.NSFetchRequestResultWrapper..cctor() -Microsoft.MacCatalyst.dll:CoreData.NSFetchRequestResultWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:CoreFoundation.CFArray Microsoft.MacCatalyst.dll:CoreFoundation.CFArray._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:CoreFoundation.CFArray..cctor() @@ -401,16 +183,8 @@ Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.ToString() -Microsoft.MacCatalyst.dll:Foundation.INSCoding -Microsoft.MacCatalyst.dll:Foundation.INSCopying -Microsoft.MacCatalyst.dll:Foundation.INSExtensionRequestHandling -Microsoft.MacCatalyst.dll:Foundation.INSItemProviderReading -Microsoft.MacCatalyst.dll:Foundation.INSItemProviderWriting -Microsoft.MacCatalyst.dll:Foundation.INSMutableCopying Microsoft.MacCatalyst.dll:Foundation.INSObjectFactory Microsoft.MacCatalyst.dll:Foundation.INSObjectFactory._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) -Microsoft.MacCatalyst.dll:Foundation.INSObjectProtocol -Microsoft.MacCatalyst.dll:Foundation.INSSecureCoding Microsoft.MacCatalyst.dll:Foundation.ModelAttribute Microsoft.MacCatalyst.dll:Foundation.ModelAttribute..ctor() Microsoft.MacCatalyst.dll:Foundation.NSAsyncDispatcher @@ -428,28 +202,18 @@ Microsoft.MacCatalyst.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__R Microsoft.MacCatalyst.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_3028_Foundation_NSAsyncSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool..cctor() Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool..ctor() Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool.get_ClassHandle() -Microsoft.MacCatalyst.dll:Foundation.NSCodingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSCodingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSComparisonResult Microsoft.MacCatalyst.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Ascending Microsoft.MacCatalyst.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Descending Microsoft.MacCatalyst.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Same -Microsoft.MacCatalyst.dll:Foundation.NSCopyingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSCopyingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSDictionary Microsoft.MacCatalyst.dll:Foundation.NSDictionary Foundation.NSDictionary/d__66::<>4__this Microsoft.MacCatalyst.dll:Foundation.NSDictionary._ObjectForKey(System.IntPtr) Microsoft.MacCatalyst.dll:Foundation.NSDictionary._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSDictionary._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSDictionary..cctor() Microsoft.MacCatalyst.dll:Foundation.NSDictionary..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSDictionary.ContainsKeyValuePair(System.Collections.Generic.KeyValuePair`2) @@ -486,32 +250,14 @@ Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.MarshalObjectiveCEx Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.ObjCException::native_exc Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.ObjCException::NSException() Microsoft.MacCatalyst.dll:Foundation.NSException._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSException._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSException..cctor() Microsoft.MacCatalyst.dll:Foundation.NSException..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSException.get_CallStackSymbols() Microsoft.MacCatalyst.dll:Foundation.NSException.get_ClassHandle() Microsoft.MacCatalyst.dll:Foundation.NSException.get_Name() Microsoft.MacCatalyst.dll:Foundation.NSException.get_Reason() -Microsoft.MacCatalyst.dll:Foundation.NSExtensionRequestHandlingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSExtensionRequestHandlingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSExtensionRequestHandlingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSExtensionRequestHandlingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderReadingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderReadingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderReadingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderReadingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderWritingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderWritingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderWritingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderWritingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSMutableCopyingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSMutableCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSMutableCopyingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSMutableCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSNumber Microsoft.MacCatalyst.dll:Foundation.NSNumber._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSNumber._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSNumber..cctor() Microsoft.MacCatalyst.dll:Foundation.NSNumber..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSNumber.Compare(Foundation.NSNumber) @@ -610,26 +356,16 @@ Microsoft.MacCatalyst.dll:Foundation.NSObject/XamarinGCHandleFlags Foundation.NS Microsoft.MacCatalyst.dll:Foundation.NSObjectData Microsoft.MacCatalyst.dll:Foundation.NSObjectFlag Microsoft.MacCatalyst.dll:Foundation.NSObjectFlag Foundation.NSObjectFlag::Empty -Microsoft.MacCatalyst.dll:Foundation.NSObjectProtocolWrapper -Microsoft.MacCatalyst.dll:Foundation.NSObjectProtocolWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSObjectProtocolWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSObjectProtocolWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSRunLoop Microsoft.MacCatalyst.dll:Foundation.NSRunLoop Foundation.NSRunLoop::Main() Microsoft.MacCatalyst.dll:Foundation.NSRunLoop._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSRunLoop._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSRunLoop..cctor() Microsoft.MacCatalyst.dll:Foundation.NSRunLoop..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSRunLoop.get_ClassHandle() Microsoft.MacCatalyst.dll:Foundation.NSRunLoop.get_Main() -Microsoft.MacCatalyst.dll:Foundation.NSSecureCodingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSSecureCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSSecureCodingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSSecureCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSString Microsoft.MacCatalyst.dll:Foundation.NSString Foundation.NSString::Empty Microsoft.MacCatalyst.dll:Foundation.NSString._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSString._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSString..cctor() Microsoft.MacCatalyst.dll:Foundation.NSString..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSString..ctor(System.String) @@ -651,16 +387,12 @@ Microsoft.MacCatalyst.dll:Foundation.NSSynchronizationContextDispatcher/__Regist Microsoft.MacCatalyst.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_3023_Foundation_NSSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.MacCatalyst.dll:Foundation.NSValue Microsoft.MacCatalyst.dll:Foundation.NSValue._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSValue._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSValue..cctor() Microsoft.MacCatalyst.dll:Foundation.NSValue..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSValue.get_ClassHandle() Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute..ctor() Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute.get_WrapperType() -Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute.set_FormalSince(System.String) -Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute.set_Name(System.String) -Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute.set_WrapperType(System.Type) Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute..ctor(System.String, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute..ctor(System.String) @@ -668,10 +400,6 @@ Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute.get_IsWrapper() Microsoft.MacCatalyst.dll:Foundation.TrackedMemory Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method..ctor() -Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper -Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper.Release() -Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper.Retain() Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector..ctor(System.IntPtr) Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector.Add(System.IntPtr) @@ -919,7 +647,6 @@ Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException.ToString() Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCSuper Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCSuper..ctor(Foundation.NSObject) Microsoft.MacCatalyst.dll:ObjCRuntime.ProtocolProxyAttribute -Microsoft.MacCatalyst.dll:ObjCRuntime.ProtocolProxyAttribute..ctor() Microsoft.MacCatalyst.dll:ObjCRuntime.ProtocolProxyAttribute.CreateObject(System.IntPtr, System.Boolean) Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.GetMapEntry(System.IntPtr) @@ -1546,10 +1273,6 @@ Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Name() Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Reason() Microsoft.MacCatalyst.dll:System.String Foundation.NSNumber::StringValue() Microsoft.MacCatalyst.dll:System.String Foundation.NSObject::Description() -Microsoft.MacCatalyst.dll:System.String Foundation.ProtocolAttribute::k__BackingField -Microsoft.MacCatalyst.dll:System.String Foundation.ProtocolAttribute::FormalSince() -Microsoft.MacCatalyst.dll:System.String Foundation.ProtocolAttribute::informal_until -Microsoft.MacCatalyst.dll:System.String Foundation.ProtocolAttribute::Name() Microsoft.MacCatalyst.dll:System.String Foundation.RegisterAttribute::name Microsoft.MacCatalyst.dll:System.String ObjCRuntime.Class::Name() Microsoft.MacCatalyst.dll:System.String ObjCRuntime.ObjCException::Message() @@ -1577,50 +1300,8 @@ Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTTypeFlags::value__ Microsoft.MacCatalyst.dll:System.UInt32* ObjCRuntime.Runtime/MTProtocolMap::protocol_tokens Microsoft.MacCatalyst.dll:System.UInt64 UIKit.UIControlState::value__ Microsoft.MacCatalyst.dll:System.UIntPtr Foundation.NSDictionary::Count() -Microsoft.MacCatalyst.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting -Microsoft.MacCatalyst.dll:UIKit.IUIAccessibilityIdentification -Microsoft.MacCatalyst.dll:UIKit.IUIActivityItemsConfigurationProviding -Microsoft.MacCatalyst.dll:UIKit.IUIAppearance -Microsoft.MacCatalyst.dll:UIKit.IUIAppearanceContainer -Microsoft.MacCatalyst.dll:UIKit.IUIApplicationDelegate -Microsoft.MacCatalyst.dll:UIKit.IUIContentContainer -Microsoft.MacCatalyst.dll:UIKit.IUIContextMenuInteractionDelegate -Microsoft.MacCatalyst.dll:UIKit.IUICoordinateSpace -Microsoft.MacCatalyst.dll:UIKit.IUIDynamicItem -Microsoft.MacCatalyst.dll:UIKit.IUIFocusEnvironment -Microsoft.MacCatalyst.dll:UIKit.IUIFocusItem -Microsoft.MacCatalyst.dll:UIKit.IUIFocusItemContainer -Microsoft.MacCatalyst.dll:UIKit.IUILargeContentViewerItem -Microsoft.MacCatalyst.dll:UIKit.IUIPasteConfigurationSupporting -Microsoft.MacCatalyst.dll:UIKit.IUIPopoverPresentationControllerSourceItem -Microsoft.MacCatalyst.dll:UIKit.IUIResponderStandardEditActions -Microsoft.MacCatalyst.dll:UIKit.IUISpringLoadedInteractionSupporting -Microsoft.MacCatalyst.dll:UIKit.IUITraitChangeObservable -Microsoft.MacCatalyst.dll:UIKit.IUITraitEnvironment -Microsoft.MacCatalyst.dll:UIKit.IUIUserActivityRestoring -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityIdentificationWrapper -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityIdentificationWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityIdentificationWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityIdentificationWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper -Microsoft.MacCatalyst.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceContainerWrapper -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceContainerWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceWrapper -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIApplication Microsoft.MacCatalyst.dll:UIKit.UIApplication._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIApplication._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIApplication..cctor() Microsoft.MacCatalyst.dll:UIKit.UIApplication..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIApplication.Dispose(System.Boolean) @@ -1632,7 +1313,6 @@ Microsoft.MacCatalyst.dll:UIKit.UIApplication.UIApplicationMain(System.Int32, Sy Microsoft.MacCatalyst.dll:UIKit.UIApplication.xamarin_UIApplicationMain(System.Int32, System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..cctor() Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..ctor() Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..ctor(ObjCRuntime.NativeHandle) @@ -1640,29 +1320,15 @@ Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..ctor(System.IntPtr, ObjCR Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate.FinishedLaunching(UIKit.UIApplication, Foundation.NSDictionary) Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__ Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__.callback_566_UIKit_UIApplicationDelegate__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*) -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegateWrapper -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegateWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIButton Microsoft.MacCatalyst.dll:UIKit.UIButton._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIButton._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIButton..cctor() Microsoft.MacCatalyst.dll:UIKit.UIButton..ctor(CoreGraphics.CGRect) Microsoft.MacCatalyst.dll:UIKit.UIButton..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIButton.get_ClassHandle() Microsoft.MacCatalyst.dll:UIKit.UIButton.SetTitle(System.String, UIKit.UIControlState) -Microsoft.MacCatalyst.dll:UIKit.UIContentContainerWrapper -Microsoft.MacCatalyst.dll:UIKit.UIContentContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIContentContainerWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIContentContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIContextMenuInteractionDelegateWrapper -Microsoft.MacCatalyst.dll:UIKit.UIContextMenuInteractionDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIContextMenuInteractionDelegateWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIContextMenuInteractionDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIControl Microsoft.MacCatalyst.dll:UIKit.UIControl._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIControl._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIControl..cctor() Microsoft.MacCatalyst.dll:UIKit.UIControl..ctor(Foundation.NSObjectFlag) Microsoft.MacCatalyst.dll:UIKit.UIControl..ctor(ObjCRuntime.NativeHandle) @@ -1675,83 +1341,28 @@ Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Highlighted Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Normal Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Reserved Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Selected -Microsoft.MacCatalyst.dll:UIKit.UICoordinateSpaceWrapper -Microsoft.MacCatalyst.dll:UIKit.UICoordinateSpaceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UICoordinateSpaceWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UICoordinateSpaceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIDynamicItemWrapper -Microsoft.MacCatalyst.dll:UIKit.UIDynamicItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIDynamicItemWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIDynamicItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusEnvironmentWrapper -Microsoft.MacCatalyst.dll:UIKit.UIFocusEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusEnvironmentWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIFocusEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemContainerWrapper -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemContainerWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemWrapper -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext..ctor() Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext.Post(System.Threading.SendOrPostCallback, System.Object) Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext.Send(System.Threading.SendOrPostCallback, System.Object) -Microsoft.MacCatalyst.dll:UIKit.UILargeContentViewerItemWrapper -Microsoft.MacCatalyst.dll:UIKit.UILargeContentViewerItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UILargeContentViewerItemWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UILargeContentViewerItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIPasteConfigurationSupportingWrapper -Microsoft.MacCatalyst.dll:UIKit.UIPasteConfigurationSupportingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIPasteConfigurationSupportingWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIPasteConfigurationSupportingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper -Microsoft.MacCatalyst.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIResponder Microsoft.MacCatalyst.dll:UIKit.UIResponder._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIResponder._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIResponder..cctor() Microsoft.MacCatalyst.dll:UIKit.UIResponder..ctor(Foundation.NSObjectFlag) Microsoft.MacCatalyst.dll:UIKit.UIResponder..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIResponder.get_ClassHandle() -Microsoft.MacCatalyst.dll:UIKit.UIResponderStandardEditActionsWrapper -Microsoft.MacCatalyst.dll:UIKit.UIResponderStandardEditActionsWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIResponderStandardEditActionsWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIResponderStandardEditActionsWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIScreen Microsoft.MacCatalyst.dll:UIKit.UIScreen UIKit.UIScreen::MainScreen() Microsoft.MacCatalyst.dll:UIKit.UIScreen._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIScreen._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIScreen..cctor() Microsoft.MacCatalyst.dll:UIKit.UIScreen..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIScreen.Dispose(System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIScreen.get_Bounds() Microsoft.MacCatalyst.dll:UIKit.UIScreen.get_ClassHandle() Microsoft.MacCatalyst.dll:UIKit.UIScreen.get_MainScreen() -Microsoft.MacCatalyst.dll:UIKit.UISpringLoadedInteractionSupportingWrapper -Microsoft.MacCatalyst.dll:UIKit.UISpringLoadedInteractionSupportingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UISpringLoadedInteractionSupportingWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UISpringLoadedInteractionSupportingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UITraitChangeObservableWrapper -Microsoft.MacCatalyst.dll:UIKit.UITraitChangeObservableWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UITraitChangeObservableWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UITraitChangeObservableWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UITraitEnvironmentWrapper -Microsoft.MacCatalyst.dll:UIKit.UITraitEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UITraitEnvironmentWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UITraitEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIUserActivityRestoringWrapper -Microsoft.MacCatalyst.dll:UIKit.UIUserActivityRestoringWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIUserActivityRestoringWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIUserActivityRestoringWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIView Microsoft.MacCatalyst.dll:UIKit.UIView UIKit.UIViewController::View() Microsoft.MacCatalyst.dll:UIKit.UIView._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIView._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIView..cctor() Microsoft.MacCatalyst.dll:UIKit.UIView..ctor(Foundation.NSObjectFlag) Microsoft.MacCatalyst.dll:UIKit.UIView..ctor(ObjCRuntime.NativeHandle) @@ -1762,7 +1373,6 @@ Microsoft.MacCatalyst.dll:UIKit.UIView.get_ClassHandle() Microsoft.MacCatalyst.dll:UIKit.UIViewController Microsoft.MacCatalyst.dll:UIKit.UIViewController UIKit.UIWindow::RootViewController() Microsoft.MacCatalyst.dll:UIKit.UIViewController._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIViewController._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIViewController..cctor() Microsoft.MacCatalyst.dll:UIKit.UIViewController..ctor() Microsoft.MacCatalyst.dll:UIKit.UIViewController..ctor(ObjCRuntime.NativeHandle) @@ -1772,7 +1382,6 @@ Microsoft.MacCatalyst.dll:UIKit.UIViewController.get_ClassHandle() Microsoft.MacCatalyst.dll:UIKit.UIViewController.get_View() Microsoft.MacCatalyst.dll:UIKit.UIWindow Microsoft.MacCatalyst.dll:UIKit.UIWindow._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIWindow._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIWindow..cctor() Microsoft.MacCatalyst.dll:UIKit.UIWindow..ctor(CoreGraphics.CGRect) Microsoft.MacCatalyst.dll:UIKit.UIWindow..ctor(ObjCRuntime.NativeHandle) @@ -3576,6 +3185,22 @@ System.Private.CoreLib.dll:System.Boolean System.ReadOnlyMemory`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.ReadOnlySpan`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::IsDynamic() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::s_loadFromHandlerSet +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::IsDynamic() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::t_allowDynamicCode +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_initLocals +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_restrictedSkipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_skipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::InitLocals() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsByRefLike() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsConstructedGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericParameter() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_bIsGenParam +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_hasBeenCreated +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_isHiddenGlobalType +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SignatureHelper::m_sigDone System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::_isSzArray System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsConstructedGenericType() System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsSZArray() @@ -3719,6 +3344,8 @@ System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.Nullab System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeAsyncMethodGenerationAttribute::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3775,6 +3402,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3941,6 +3569,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3984,6 +3613,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -4044,11 +3674,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4311,6 +3946,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4450,6 +4086,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4816,6 +4458,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -5001,6 +4644,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -5014,6 +4659,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -6044,6 +5690,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6492,6 +6139,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8240,6 +7888,7 @@ System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracke System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracker/ActivityInfo::m_guid System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.EventSource::CurrentThreadActivityId() System.Private.CoreLib.dll:System.Guid System.Guid::Empty +System.Private.CoreLib.dll:System.Guid System.Reflection.Emit.RuntimeModuleBuilder::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Reflection.Module::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Reflection.RuntimeModule::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Runtime.InteropServices.ComWrappers::IID_IFindReferenceTargetsCallback @@ -8757,6 +8406,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9362,6 +9012,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9445,6 +9135,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9469,6 +9165,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9849,6 +9546,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9928,6 +9626,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10932,6 +10631,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11178,9 +10878,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12217,8 +11920,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12577,6 +12286,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12643,11 +12356,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12776,6 +12491,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12800,6 +12517,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12807,6 +12526,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -13022,21 +12742,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -13046,10 +12861,940 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ModuleVersionId() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -13100,6 +13845,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13190,6 +13945,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13262,6 +14020,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13287,19 +14046,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13341,6 +14107,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13349,6 +14119,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13381,14 +14160,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13638,7 +14436,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13672,6 +14476,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13725,10 +14530,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13770,12 +14578,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13802,6 +14619,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13855,7 +14679,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13871,6 +14698,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13983,11 +14812,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13995,6 +14827,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -14012,6 +14845,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -14077,7 +14911,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14150,6 +14986,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14162,6 +14999,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14172,10 +15010,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14194,6 +15034,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14209,6 +15050,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14217,6 +15059,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14237,6 +15081,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14252,14 +15097,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14473,6 +15322,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14541,6 +15391,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14586,6 +15437,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -15079,6 +15931,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15207,6 +16073,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15248,6 +16115,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15261,10 +16131,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15938,6 +16810,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -17022,6 +17895,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -17067,7 +17946,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -17075,6 +17960,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17129,6 +18015,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17141,6 +18028,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17220,6 +18110,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17250,6 +18141,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17318,6 +18210,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17474,6 +18367,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17567,6 +18463,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17720,6 +18617,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17730,6 +18629,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17737,6 +18637,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17954,6 +18859,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18239,7 +19145,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18448,6 +19377,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18461,6 +19391,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18469,6 +19401,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18571,6 +19504,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.String/SearchValuesStorage System.Private.CoreLib.dll:System.String/SearchValuesStorage..cctor() System.Private.CoreLib.dll:System.StringComparer @@ -19152,6 +20086,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21520,8 +22455,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::g__ThrowArgumentException|35_0`1(System.String) -System.Private.CoreLib.dll:System.Version.g__ThrowFailure|49_0`1(System.Number/ParsingStatus, System.Int32, System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Version.CompareTo(System.Object) System.Private.CoreLib.dll:System.Version.CompareTo(System.Version) System.Private.CoreLib.dll:System.Version.Equals(System.Object) @@ -22629,15 +23594,12 @@ System.Private.CoreLib.dll:System.Version.get_Revision() System.Private.CoreLib.dll:System.Version.GetHashCode() System.Private.CoreLib.dll:System.Version.op_Equality(System.Version, System.Version) System.Private.CoreLib.dll:System.Version.op_Inequality(System.Version, System.Version) -System.Private.CoreLib.dll:System.Version.Parse(System.String) -System.Private.CoreLib.dll:System.Version.ParseVersion`1(System.ReadOnlySpan`1, System.Boolean) System.Private.CoreLib.dll:System.Version.System.IFormattable.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.ToString() System.Private.CoreLib.dll:System.Version.ToString(System.Int32) System.Private.CoreLib.dll:System.Version.TryFormat(System.Span`1, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Version.TryFormatCore`1(System.Span`1, System.Int32, out System.Int32&) -System.Private.CoreLib.dll:System.Version.TryParseComponent`1(System.ReadOnlySpan`1, System.String, System.Boolean, System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Void System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::_pointer System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::Pointer() diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt index ae1deefbc94a..3f7565cf4043 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt @@ -4,30 +4,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy.GetClassHandle(System.Boolean&) _Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarProvider_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarProvider_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarProvider_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarProviderWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarProviderWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKRecordValue_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKRecordValue_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKRecordValue_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFArray_Proxy _Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFArray_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFArray_Proxy.CreateObject(System.IntPtr, System.Boolean) @@ -39,30 +15,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy. _Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.GetClassHandle(System.Boolean&) _Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCoding_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCoding_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCopying_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCopying_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderReading_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderReading_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderReading_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMutableCopying_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMutableCopying_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMutableCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSObjectProtocol_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSObjectProtocol_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSObjectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSSecureCoding_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSSecureCoding_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSSecureCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy.CreateObject(System.IntPtr) @@ -77,12 +29,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCodingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCodingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy.CreateObject(System.IntPtr) @@ -96,18 +42,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy.CreateObject(System.IntPtr) @@ -116,16 +50,10 @@ _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy.CreateObject(System.IntPtr) @@ -147,84 +75,6 @@ _Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Selector_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Selector_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute _Microsoft.MacCatalyst.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearance_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearance_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearance_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentContainer_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentContainer_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicItem_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicItem_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItem_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItem_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy.CreateObject(System.IntPtr) @@ -234,70 +84,22 @@ _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.GetClassHandle(System.Boolean&) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy.CreateObject(System.IntPtr) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy..ctor() -_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy..ctor() _Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy.CreateObject(System.IntPtr) @@ -332,26 +134,6 @@ Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callba Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callback_3135_AppKit_ActionDispatcher_OnActivated2(System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callback_3136_AppKit_ActionDispatcher__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*) Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callback_3137_AppKit_ActionDispatcher_get_WorksWhenModal(System.IntPtr, System.IntPtr, System.IntPtr*) -Microsoft.MacCatalyst.dll:AppKit.INSTouchBarProvider -Microsoft.MacCatalyst.dll:AppKit.NSTouchBarProviderWrapper -Microsoft.MacCatalyst.dll:AppKit.NSTouchBarProviderWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:AppKit.NSTouchBarProviderWrapper..cctor() -Microsoft.MacCatalyst.dll:AppKit.NSTouchBarProviderWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CloudKit.CKRecordValueWrapper -Microsoft.MacCatalyst.dll:CloudKit.CKRecordValueWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CloudKit.CKRecordValueWrapper..cctor() -Microsoft.MacCatalyst.dll:CloudKit.CKRecordValueWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CloudKit.ICKRecordValue -Microsoft.MacCatalyst.dll:CoreAnimation.CALayerDelegateWrapper -Microsoft.MacCatalyst.dll:CoreAnimation.CALayerDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CoreAnimation.CALayerDelegateWrapper..cctor() -Microsoft.MacCatalyst.dll:CoreAnimation.CALayerDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CoreAnimation.ICALayerDelegate -Microsoft.MacCatalyst.dll:CoreData.INSFetchRequestResult -Microsoft.MacCatalyst.dll:CoreData.NSFetchRequestResultWrapper -Microsoft.MacCatalyst.dll:CoreData.NSFetchRequestResultWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:CoreData.NSFetchRequestResultWrapper..cctor() -Microsoft.MacCatalyst.dll:CoreData.NSFetchRequestResultWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:CoreFoundation.CFArray Microsoft.MacCatalyst.dll:CoreFoundation.CFArray._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:CoreFoundation.CFArray..cctor() @@ -401,16 +183,8 @@ Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.ToString() -Microsoft.MacCatalyst.dll:Foundation.INSCoding -Microsoft.MacCatalyst.dll:Foundation.INSCopying -Microsoft.MacCatalyst.dll:Foundation.INSExtensionRequestHandling -Microsoft.MacCatalyst.dll:Foundation.INSItemProviderReading -Microsoft.MacCatalyst.dll:Foundation.INSItemProviderWriting -Microsoft.MacCatalyst.dll:Foundation.INSMutableCopying Microsoft.MacCatalyst.dll:Foundation.INSObjectFactory Microsoft.MacCatalyst.dll:Foundation.INSObjectFactory._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) -Microsoft.MacCatalyst.dll:Foundation.INSObjectProtocol -Microsoft.MacCatalyst.dll:Foundation.INSSecureCoding Microsoft.MacCatalyst.dll:Foundation.ModelAttribute Microsoft.MacCatalyst.dll:Foundation.ModelAttribute..ctor() Microsoft.MacCatalyst.dll:Foundation.NSAsyncDispatcher @@ -428,28 +202,18 @@ Microsoft.MacCatalyst.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__R Microsoft.MacCatalyst.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_3028_Foundation_NSAsyncSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool..cctor() Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool..ctor() Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool.get_ClassHandle() -Microsoft.MacCatalyst.dll:Foundation.NSCodingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSCodingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSComparisonResult Microsoft.MacCatalyst.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Ascending Microsoft.MacCatalyst.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Descending Microsoft.MacCatalyst.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Same -Microsoft.MacCatalyst.dll:Foundation.NSCopyingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSCopyingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSDictionary Microsoft.MacCatalyst.dll:Foundation.NSDictionary Foundation.NSDictionary/d__66::<>4__this Microsoft.MacCatalyst.dll:Foundation.NSDictionary._ObjectForKey(System.IntPtr) Microsoft.MacCatalyst.dll:Foundation.NSDictionary._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSDictionary._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSDictionary..cctor() Microsoft.MacCatalyst.dll:Foundation.NSDictionary..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSDictionary.ContainsKeyValuePair(System.Collections.Generic.KeyValuePair`2) @@ -486,32 +250,14 @@ Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.MarshalObjectiveCEx Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.ObjCException::native_exc Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.ObjCException::NSException() Microsoft.MacCatalyst.dll:Foundation.NSException._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSException._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSException..cctor() Microsoft.MacCatalyst.dll:Foundation.NSException..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSException.get_CallStackSymbols() Microsoft.MacCatalyst.dll:Foundation.NSException.get_ClassHandle() Microsoft.MacCatalyst.dll:Foundation.NSException.get_Name() Microsoft.MacCatalyst.dll:Foundation.NSException.get_Reason() -Microsoft.MacCatalyst.dll:Foundation.NSExtensionRequestHandlingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSExtensionRequestHandlingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSExtensionRequestHandlingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSExtensionRequestHandlingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderReadingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderReadingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderReadingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderReadingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderWritingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderWritingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderWritingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSItemProviderWritingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSMutableCopyingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSMutableCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSMutableCopyingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSMutableCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSNumber Microsoft.MacCatalyst.dll:Foundation.NSNumber._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSNumber._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSNumber..cctor() Microsoft.MacCatalyst.dll:Foundation.NSNumber..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSNumber.Compare(Foundation.NSNumber) @@ -610,26 +356,16 @@ Microsoft.MacCatalyst.dll:Foundation.NSObject/XamarinGCHandleFlags Foundation.NS Microsoft.MacCatalyst.dll:Foundation.NSObjectData Microsoft.MacCatalyst.dll:Foundation.NSObjectFlag Microsoft.MacCatalyst.dll:Foundation.NSObjectFlag Foundation.NSObjectFlag::Empty -Microsoft.MacCatalyst.dll:Foundation.NSObjectProtocolWrapper -Microsoft.MacCatalyst.dll:Foundation.NSObjectProtocolWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSObjectProtocolWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSObjectProtocolWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSRunLoop Microsoft.MacCatalyst.dll:Foundation.NSRunLoop Foundation.NSRunLoop::Main() Microsoft.MacCatalyst.dll:Foundation.NSRunLoop._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSRunLoop._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSRunLoop..cctor() Microsoft.MacCatalyst.dll:Foundation.NSRunLoop..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSRunLoop.get_ClassHandle() Microsoft.MacCatalyst.dll:Foundation.NSRunLoop.get_Main() -Microsoft.MacCatalyst.dll:Foundation.NSSecureCodingWrapper -Microsoft.MacCatalyst.dll:Foundation.NSSecureCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSSecureCodingWrapper..cctor() -Microsoft.MacCatalyst.dll:Foundation.NSSecureCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.NSString Microsoft.MacCatalyst.dll:Foundation.NSString Foundation.NSString::Empty Microsoft.MacCatalyst.dll:Foundation.NSString._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSString._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSString..cctor() Microsoft.MacCatalyst.dll:Foundation.NSString..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSString..ctor(System.String) @@ -651,16 +387,12 @@ Microsoft.MacCatalyst.dll:Foundation.NSSynchronizationContextDispatcher/__Regist Microsoft.MacCatalyst.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_3023_Foundation_NSSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.MacCatalyst.dll:Foundation.NSValue Microsoft.MacCatalyst.dll:Foundation.NSValue._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:Foundation.NSValue._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSValue..cctor() Microsoft.MacCatalyst.dll:Foundation.NSValue..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:Foundation.NSValue.get_ClassHandle() Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute..ctor() Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute.get_WrapperType() -Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute.set_FormalSince(System.String) -Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute.set_Name(System.String) -Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute.set_WrapperType(System.Type) Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute..ctor(System.String, System.Boolean) Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute..ctor(System.String) @@ -668,10 +400,6 @@ Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute.get_IsWrapper() Microsoft.MacCatalyst.dll:Foundation.TrackedMemory Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method..ctor() -Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper -Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper.Release() -Microsoft.MacCatalyst.dll:ObjCRuntime.BaseWrapper.Retain() Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector..ctor(System.IntPtr) Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector.Add(System.IntPtr) @@ -919,7 +647,6 @@ Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException.ToString() Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCSuper Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCSuper..ctor(Foundation.NSObject) Microsoft.MacCatalyst.dll:ObjCRuntime.ProtocolProxyAttribute -Microsoft.MacCatalyst.dll:ObjCRuntime.ProtocolProxyAttribute..ctor() Microsoft.MacCatalyst.dll:ObjCRuntime.ProtocolProxyAttribute.CreateObject(System.IntPtr, System.Boolean) Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.GetMapEntry(System.IntPtr) @@ -1546,10 +1273,6 @@ Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Name() Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Reason() Microsoft.MacCatalyst.dll:System.String Foundation.NSNumber::StringValue() Microsoft.MacCatalyst.dll:System.String Foundation.NSObject::Description() -Microsoft.MacCatalyst.dll:System.String Foundation.ProtocolAttribute::k__BackingField -Microsoft.MacCatalyst.dll:System.String Foundation.ProtocolAttribute::FormalSince() -Microsoft.MacCatalyst.dll:System.String Foundation.ProtocolAttribute::informal_until -Microsoft.MacCatalyst.dll:System.String Foundation.ProtocolAttribute::Name() Microsoft.MacCatalyst.dll:System.String Foundation.RegisterAttribute::name Microsoft.MacCatalyst.dll:System.String ObjCRuntime.Class::Name() Microsoft.MacCatalyst.dll:System.String ObjCRuntime.ObjCException::Message() @@ -1577,50 +1300,8 @@ Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTTypeFlags::value__ Microsoft.MacCatalyst.dll:System.UInt32* ObjCRuntime.Runtime/MTProtocolMap::protocol_tokens Microsoft.MacCatalyst.dll:System.UInt64 UIKit.UIControlState::value__ Microsoft.MacCatalyst.dll:System.UIntPtr Foundation.NSDictionary::Count() -Microsoft.MacCatalyst.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting -Microsoft.MacCatalyst.dll:UIKit.IUIAccessibilityIdentification -Microsoft.MacCatalyst.dll:UIKit.IUIActivityItemsConfigurationProviding -Microsoft.MacCatalyst.dll:UIKit.IUIAppearance -Microsoft.MacCatalyst.dll:UIKit.IUIAppearanceContainer -Microsoft.MacCatalyst.dll:UIKit.IUIApplicationDelegate -Microsoft.MacCatalyst.dll:UIKit.IUIContentContainer -Microsoft.MacCatalyst.dll:UIKit.IUIContextMenuInteractionDelegate -Microsoft.MacCatalyst.dll:UIKit.IUICoordinateSpace -Microsoft.MacCatalyst.dll:UIKit.IUIDynamicItem -Microsoft.MacCatalyst.dll:UIKit.IUIFocusEnvironment -Microsoft.MacCatalyst.dll:UIKit.IUIFocusItem -Microsoft.MacCatalyst.dll:UIKit.IUIFocusItemContainer -Microsoft.MacCatalyst.dll:UIKit.IUILargeContentViewerItem -Microsoft.MacCatalyst.dll:UIKit.IUIPasteConfigurationSupporting -Microsoft.MacCatalyst.dll:UIKit.IUIPopoverPresentationControllerSourceItem -Microsoft.MacCatalyst.dll:UIKit.IUIResponderStandardEditActions -Microsoft.MacCatalyst.dll:UIKit.IUISpringLoadedInteractionSupporting -Microsoft.MacCatalyst.dll:UIKit.IUITraitChangeObservable -Microsoft.MacCatalyst.dll:UIKit.IUITraitEnvironment -Microsoft.MacCatalyst.dll:UIKit.IUIUserActivityRestoring -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityIdentificationWrapper -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityIdentificationWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityIdentificationWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIAccessibilityIdentificationWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper -Microsoft.MacCatalyst.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceContainerWrapper -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceContainerWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceWrapper -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIAppearanceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIApplication Microsoft.MacCatalyst.dll:UIKit.UIApplication._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIApplication._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIApplication..cctor() Microsoft.MacCatalyst.dll:UIKit.UIApplication..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIApplication.Dispose(System.Boolean) @@ -1632,7 +1313,6 @@ Microsoft.MacCatalyst.dll:UIKit.UIApplication.UIApplicationMain(System.Int32, Sy Microsoft.MacCatalyst.dll:UIKit.UIApplication.xamarin_UIApplicationMain(System.Int32, System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..cctor() Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..ctor() Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..ctor(ObjCRuntime.NativeHandle) @@ -1640,29 +1320,15 @@ Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..ctor(System.IntPtr, ObjCR Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate.FinishedLaunching(UIKit.UIApplication, Foundation.NSDictionary) Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__ Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__.callback_566_UIKit_UIApplicationDelegate__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*) -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegateWrapper -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegateWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIButton Microsoft.MacCatalyst.dll:UIKit.UIButton._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIButton._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIButton..cctor() Microsoft.MacCatalyst.dll:UIKit.UIButton..ctor(CoreGraphics.CGRect) Microsoft.MacCatalyst.dll:UIKit.UIButton..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIButton.get_ClassHandle() Microsoft.MacCatalyst.dll:UIKit.UIButton.SetTitle(System.String, UIKit.UIControlState) -Microsoft.MacCatalyst.dll:UIKit.UIContentContainerWrapper -Microsoft.MacCatalyst.dll:UIKit.UIContentContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIContentContainerWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIContentContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIContextMenuInteractionDelegateWrapper -Microsoft.MacCatalyst.dll:UIKit.UIContextMenuInteractionDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIContextMenuInteractionDelegateWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIContextMenuInteractionDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIControl Microsoft.MacCatalyst.dll:UIKit.UIControl._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIControl._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIControl..cctor() Microsoft.MacCatalyst.dll:UIKit.UIControl..ctor(Foundation.NSObjectFlag) Microsoft.MacCatalyst.dll:UIKit.UIControl..ctor(ObjCRuntime.NativeHandle) @@ -1675,83 +1341,28 @@ Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Highlighted Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Normal Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Reserved Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Selected -Microsoft.MacCatalyst.dll:UIKit.UICoordinateSpaceWrapper -Microsoft.MacCatalyst.dll:UIKit.UICoordinateSpaceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UICoordinateSpaceWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UICoordinateSpaceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIDynamicItemWrapper -Microsoft.MacCatalyst.dll:UIKit.UIDynamicItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIDynamicItemWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIDynamicItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusEnvironmentWrapper -Microsoft.MacCatalyst.dll:UIKit.UIFocusEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusEnvironmentWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIFocusEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemContainerWrapper -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemContainerWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemWrapper -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIFocusItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext..ctor() Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext.Post(System.Threading.SendOrPostCallback, System.Object) Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext.Send(System.Threading.SendOrPostCallback, System.Object) -Microsoft.MacCatalyst.dll:UIKit.UILargeContentViewerItemWrapper -Microsoft.MacCatalyst.dll:UIKit.UILargeContentViewerItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UILargeContentViewerItemWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UILargeContentViewerItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIPasteConfigurationSupportingWrapper -Microsoft.MacCatalyst.dll:UIKit.UIPasteConfigurationSupportingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIPasteConfigurationSupportingWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIPasteConfigurationSupportingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper -Microsoft.MacCatalyst.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIResponder Microsoft.MacCatalyst.dll:UIKit.UIResponder._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIResponder._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIResponder..cctor() Microsoft.MacCatalyst.dll:UIKit.UIResponder..ctor(Foundation.NSObjectFlag) Microsoft.MacCatalyst.dll:UIKit.UIResponder..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIResponder.get_ClassHandle() -Microsoft.MacCatalyst.dll:UIKit.UIResponderStandardEditActionsWrapper -Microsoft.MacCatalyst.dll:UIKit.UIResponderStandardEditActionsWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIResponderStandardEditActionsWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIResponderStandardEditActionsWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIScreen Microsoft.MacCatalyst.dll:UIKit.UIScreen UIKit.UIScreen::MainScreen() Microsoft.MacCatalyst.dll:UIKit.UIScreen._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIScreen._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIScreen..cctor() Microsoft.MacCatalyst.dll:UIKit.UIScreen..ctor(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIScreen.Dispose(System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIScreen.get_Bounds() Microsoft.MacCatalyst.dll:UIKit.UIScreen.get_ClassHandle() Microsoft.MacCatalyst.dll:UIKit.UIScreen.get_MainScreen() -Microsoft.MacCatalyst.dll:UIKit.UISpringLoadedInteractionSupportingWrapper -Microsoft.MacCatalyst.dll:UIKit.UISpringLoadedInteractionSupportingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UISpringLoadedInteractionSupportingWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UISpringLoadedInteractionSupportingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UITraitChangeObservableWrapper -Microsoft.MacCatalyst.dll:UIKit.UITraitChangeObservableWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UITraitChangeObservableWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UITraitChangeObservableWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UITraitEnvironmentWrapper -Microsoft.MacCatalyst.dll:UIKit.UITraitEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UITraitEnvironmentWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UITraitEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIUserActivityRestoringWrapper -Microsoft.MacCatalyst.dll:UIKit.UIUserActivityRestoringWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIUserActivityRestoringWrapper..cctor() -Microsoft.MacCatalyst.dll:UIKit.UIUserActivityRestoringWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.MacCatalyst.dll:UIKit.UIView Microsoft.MacCatalyst.dll:UIKit.UIView UIKit.UIViewController::View() Microsoft.MacCatalyst.dll:UIKit.UIView._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIView._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIView..cctor() Microsoft.MacCatalyst.dll:UIKit.UIView..ctor(Foundation.NSObjectFlag) Microsoft.MacCatalyst.dll:UIKit.UIView..ctor(ObjCRuntime.NativeHandle) @@ -1762,7 +1373,6 @@ Microsoft.MacCatalyst.dll:UIKit.UIView.get_ClassHandle() Microsoft.MacCatalyst.dll:UIKit.UIViewController Microsoft.MacCatalyst.dll:UIKit.UIViewController UIKit.UIWindow::RootViewController() Microsoft.MacCatalyst.dll:UIKit.UIViewController._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIViewController._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIViewController..cctor() Microsoft.MacCatalyst.dll:UIKit.UIViewController..ctor() Microsoft.MacCatalyst.dll:UIKit.UIViewController..ctor(ObjCRuntime.NativeHandle) @@ -1772,7 +1382,6 @@ Microsoft.MacCatalyst.dll:UIKit.UIViewController.get_ClassHandle() Microsoft.MacCatalyst.dll:UIKit.UIViewController.get_View() Microsoft.MacCatalyst.dll:UIKit.UIWindow Microsoft.MacCatalyst.dll:UIKit.UIWindow._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.MacCatalyst.dll:UIKit.UIWindow._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.MacCatalyst.dll:UIKit.UIWindow..cctor() Microsoft.MacCatalyst.dll:UIKit.UIWindow..ctor(CoreGraphics.CGRect) Microsoft.MacCatalyst.dll:UIKit.UIWindow..ctor(ObjCRuntime.NativeHandle) @@ -3576,6 +3185,22 @@ System.Private.CoreLib.dll:System.Boolean System.ReadOnlyMemory`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.ReadOnlySpan`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::IsDynamic() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::s_loadFromHandlerSet +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::IsDynamic() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::t_allowDynamicCode +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_initLocals +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_restrictedSkipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_skipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::InitLocals() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsByRefLike() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsConstructedGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericParameter() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_bIsGenParam +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_hasBeenCreated +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_isHiddenGlobalType +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SignatureHelper::m_sigDone System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::_isSzArray System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsConstructedGenericType() System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsSZArray() @@ -3719,6 +3344,8 @@ System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.Nullab System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeAsyncMethodGenerationAttribute::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3775,6 +3402,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3941,6 +3569,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3984,6 +3613,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -4044,11 +3674,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4311,6 +3946,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4450,6 +4086,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4816,6 +4458,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -5001,6 +4644,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -5014,6 +4659,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -6044,6 +5690,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6492,6 +6139,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8240,6 +7888,7 @@ System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracke System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracker/ActivityInfo::m_guid System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.EventSource::CurrentThreadActivityId() System.Private.CoreLib.dll:System.Guid System.Guid::Empty +System.Private.CoreLib.dll:System.Guid System.Reflection.Emit.RuntimeModuleBuilder::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Reflection.Module::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Reflection.RuntimeModule::ModuleVersionId() System.Private.CoreLib.dll:System.Guid System.Runtime.InteropServices.ComWrappers::IID_IFindReferenceTargetsCallback @@ -8757,6 +8406,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9362,6 +9012,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9445,6 +9135,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9469,6 +9165,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9849,6 +9546,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9928,6 +9626,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10932,6 +10631,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11178,9 +10878,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12217,8 +11920,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12577,6 +12286,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12643,11 +12356,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12776,6 +12491,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12800,6 +12517,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12807,6 +12526,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -13022,21 +12742,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -13046,10 +12861,940 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ModuleVersionId() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -13100,6 +13845,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13190,6 +13945,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13262,6 +14020,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13287,19 +14046,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13341,6 +14107,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13349,6 +14119,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13381,14 +14160,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13638,7 +14436,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13672,6 +14476,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13725,10 +14530,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13770,12 +14578,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13802,6 +14619,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13855,7 +14679,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13871,6 +14698,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13983,11 +14812,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13995,6 +14827,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -14012,6 +14845,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -14077,7 +14911,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14150,6 +14986,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14162,6 +14999,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14172,10 +15010,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14194,6 +15034,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14209,6 +15050,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14217,6 +15059,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14237,6 +15081,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14252,14 +15097,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14473,6 +15322,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14541,6 +15391,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14586,6 +15437,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -15079,6 +15931,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15207,6 +16073,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15248,6 +16115,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15261,10 +16131,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15938,6 +16810,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -17022,6 +17895,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -17067,7 +17946,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -17075,6 +17960,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17129,6 +18015,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17141,6 +18028,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17220,6 +18110,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17250,6 +18141,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17318,6 +18210,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17474,6 +18367,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17567,6 +18463,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17720,6 +18617,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17730,6 +18629,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17737,6 +18637,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17954,6 +18859,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18239,7 +19145,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18448,6 +19377,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18461,6 +19391,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18469,6 +19401,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18571,6 +19504,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.String/SearchValuesStorage System.Private.CoreLib.dll:System.String/SearchValuesStorage..cctor() System.Private.CoreLib.dll:System.StringComparer @@ -19152,6 +20086,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21520,8 +22455,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::g__ThrowArgumentException|35_0`1(System.String) -System.Private.CoreLib.dll:System.Version.g__ThrowFailure|49_0`1(System.Number/ParsingStatus, System.Int32, System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Version.CompareTo(System.Object) System.Private.CoreLib.dll:System.Version.CompareTo(System.Version) System.Private.CoreLib.dll:System.Version.Equals(System.Object) @@ -22629,15 +23594,12 @@ System.Private.CoreLib.dll:System.Version.get_Revision() System.Private.CoreLib.dll:System.Version.GetHashCode() System.Private.CoreLib.dll:System.Version.op_Equality(System.Version, System.Version) System.Private.CoreLib.dll:System.Version.op_Inequality(System.Version, System.Version) -System.Private.CoreLib.dll:System.Version.Parse(System.String) -System.Private.CoreLib.dll:System.Version.ParseVersion`1(System.ReadOnlySpan`1, System.Boolean) System.Private.CoreLib.dll:System.Version.System.IFormattable.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.ToString() System.Private.CoreLib.dll:System.Version.ToString(System.Int32) System.Private.CoreLib.dll:System.Version.TryFormat(System.Span`1, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Version.TryFormatCore`1(System.Span`1, System.Int32, out System.Int32&) -System.Private.CoreLib.dll:System.Version.TryParseComponent`1(System.ReadOnlySpan`1, System.String, System.Boolean, System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Void System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::_pointer System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::Pointer() diff --git a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt index 6f75535492ef..e25f6a8d50d0 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 331,789,349 bytes (324,013.0 KB = 316.4 MB) +AppBundleSize: 329,715,517 bytes (321,987.8 KB = 314.4 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 752 bytes (0.7 KB = 0.0 MB) + 749 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 7,351,288 bytes (7,179.0 KB = 7.0 MB) + 7,351,480 bytes (7,179.2 KB = 7.0 MB) Contents/MonoBundle/_Microsoft.macOS.TypeMaps.dll: 2,560 bytes (2.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/_Microsoft.macOS.TypeMap.dll: @@ -31,7 +31,7 @@ Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Primitives.dll: 90,408 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.macOS.dll: - 74,473,984 bytes (72,728.5 KB = 71.0 MB) + 73,308,672 bytes (71,590.5 KB = 69.9 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: 1,337,128 bytes (1,305.8 KB = 1.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.dll: @@ -401,7 +401,7 @@ Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Primitives.dll: 83,240 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.macOS.dll: - 63,576,064 bytes (62,086.0 KB = 60.6 MB) + 62,668,800 bytes (61,200.0 KB = 59.8 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: 1,191,720 bytes (1,163.8 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.dll: @@ -772,7 +772,5 @@ Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 152,128 bytes (148.6 KB = 0.1 MB) Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: 511,248 bytes (499.3 KB = 0.5 MB) -Contents/MonoBundle/runtimeconfig.bin: - 1,445 bytes (1.4 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt index 19cdf5c88059..55dfcf5120cb 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt @@ -1,10 +1,8 @@ -AppBundleSize: 4,700,600 bytes (4,590.4 KB = 4.5 MB) +AppBundleSize: 4,599,917 bytes (4,492.1 KB = 4.4 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 752 bytes (0.7 KB = 0.0 MB) + 749 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 4,697,992 bytes (4,587.9 KB = 4.5 MB) -Contents/MonoBundle/runtimeconfig.bin: - 1,848 bytes (1.8 KB = 0.0 MB) + 4,599,160 bytes (4,491.4 KB = 4.4 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt index 19cdf5c88059..55dfcf5120cb 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt @@ -1,10 +1,8 @@ -AppBundleSize: 4,700,600 bytes (4,590.4 KB = 4.5 MB) +AppBundleSize: 4,599,917 bytes (4,492.1 KB = 4.4 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 752 bytes (0.7 KB = 0.0 MB) + 749 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 4,697,992 bytes (4,587.9 KB = 4.5 MB) -Contents/MonoBundle/runtimeconfig.bin: - 1,848 bytes (1.8 KB = 0.0 MB) + 4,599,160 bytes (4,491.4 KB = 4.4 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt index a4663305eb30..06c01435b0cf 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt @@ -1,22 +1,4 @@ _Microsoft.tvOS.TypeMap.dll: -_Microsoft.tvOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy -_Microsoft.tvOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy -_Microsoft.tvOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:CoreFoundation.CFArray_Proxy _Microsoft.tvOS.TypeMap.dll:CoreFoundation.CFArray_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:CoreFoundation.CFArray_Proxy.CreateObject(System.IntPtr, System.Boolean) @@ -28,30 +10,6 @@ _Microsoft.tvOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.GetClassHandle(System.Boolean&) _Microsoft.tvOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCoding_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCoding_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCopying_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCopying_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy.CreateObject(System.IntPtr) @@ -66,12 +24,6 @@ _Microsoft.tvOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSDictionary_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSDictionary_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSDictionary_Proxy.CreateObject(System.IntPtr) @@ -85,18 +37,6 @@ _Microsoft.tvOS.TypeMap.dll:Foundation.NSException_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSException_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSException_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation.NSException_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSNumber_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSNumber_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSNumber_Proxy.CreateObject(System.IntPtr) @@ -105,16 +45,10 @@ _Microsoft.tvOS.TypeMap.dll:Foundation.NSObject_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSObject_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSObject_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation.NSObject_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSRunLoop_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSRunLoop_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSRunLoop_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation.NSRunLoop_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSString_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSString_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSString_Proxy.CreateObject(System.IntPtr) @@ -136,66 +70,6 @@ _Microsoft.tvOS.TypeMap.dll:ObjCRuntime.Selector_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:ObjCRuntime.Selector_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute _Microsoft.tvOS.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearance_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearance_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearance_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplication_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplication_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplication_Proxy.CreateObject(System.IntPtr) @@ -205,58 +79,22 @@ _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.GetClassHandle(System.Boolean&) _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIButton_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIButton_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIButton_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIButton_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIControl_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIControl_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIControl_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIControl_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIResponder_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIResponder_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIResponder_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIResponder_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIScreen_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIScreen_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIScreen_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIScreen_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIView_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIView_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIView_Proxy.CreateObject(System.IntPtr) @@ -280,21 +118,6 @@ _SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAt _SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) Microsoft.tvOS.dll: Microsoft.tvOS.dll:..cctor() -Microsoft.tvOS.dll:CloudKit.CKRecordValueWrapper -Microsoft.tvOS.dll:CloudKit.CKRecordValueWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CloudKit.CKRecordValueWrapper..cctor() -Microsoft.tvOS.dll:CloudKit.CKRecordValueWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CloudKit.ICKRecordValue -Microsoft.tvOS.dll:CoreAnimation.CALayerDelegateWrapper -Microsoft.tvOS.dll:CoreAnimation.CALayerDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CoreAnimation.CALayerDelegateWrapper..cctor() -Microsoft.tvOS.dll:CoreAnimation.CALayerDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CoreAnimation.ICALayerDelegate -Microsoft.tvOS.dll:CoreData.INSFetchRequestResult -Microsoft.tvOS.dll:CoreData.NSFetchRequestResultWrapper -Microsoft.tvOS.dll:CoreData.NSFetchRequestResultWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CoreData.NSFetchRequestResultWrapper..cctor() -Microsoft.tvOS.dll:CoreData.NSFetchRequestResultWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:CoreFoundation.CFArray Microsoft.tvOS.dll:CoreFoundation.CFArray._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:CoreFoundation.CFArray..cctor() @@ -344,16 +167,8 @@ Microsoft.tvOS.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.tvOS.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.tvOS.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.tvOS.dll:CoreGraphics.CGRect.ToString() -Microsoft.tvOS.dll:Foundation.INSCoding -Microsoft.tvOS.dll:Foundation.INSCopying -Microsoft.tvOS.dll:Foundation.INSExtensionRequestHandling -Microsoft.tvOS.dll:Foundation.INSItemProviderReading -Microsoft.tvOS.dll:Foundation.INSItemProviderWriting -Microsoft.tvOS.dll:Foundation.INSMutableCopying Microsoft.tvOS.dll:Foundation.INSObjectFactory Microsoft.tvOS.dll:Foundation.INSObjectFactory._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) -Microsoft.tvOS.dll:Foundation.INSObjectProtocol -Microsoft.tvOS.dll:Foundation.INSSecureCoding Microsoft.tvOS.dll:Foundation.ModelAttribute Microsoft.tvOS.dll:Foundation.ModelAttribute..ctor() Microsoft.tvOS.dll:Foundation.NSAsyncDispatcher @@ -371,28 +186,18 @@ Microsoft.tvOS.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registra Microsoft.tvOS.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_2645_Foundation_NSAsyncSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.tvOS.dll:Foundation.NSAutoreleasePool Microsoft.tvOS.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSAutoreleasePool..cctor() Microsoft.tvOS.dll:Foundation.NSAutoreleasePool..ctor() Microsoft.tvOS.dll:Foundation.NSAutoreleasePool..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSAutoreleasePool.get_ClassHandle() -Microsoft.tvOS.dll:Foundation.NSCodingWrapper -Microsoft.tvOS.dll:Foundation.NSCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSCodingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSComparisonResult Microsoft.tvOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Ascending Microsoft.tvOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Descending Microsoft.tvOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Same -Microsoft.tvOS.dll:Foundation.NSCopyingWrapper -Microsoft.tvOS.dll:Foundation.NSCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSCopyingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSDictionary Microsoft.tvOS.dll:Foundation.NSDictionary Foundation.NSDictionary/d__66::<>4__this Microsoft.tvOS.dll:Foundation.NSDictionary._ObjectForKey(System.IntPtr) Microsoft.tvOS.dll:Foundation.NSDictionary._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSDictionary._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSDictionary..cctor() Microsoft.tvOS.dll:Foundation.NSDictionary..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSDictionary.ContainsKeyValuePair(System.Collections.Generic.KeyValuePair`2) @@ -429,32 +234,14 @@ Microsoft.tvOS.dll:Foundation.NSException ObjCRuntime.MarshalObjectiveCException Microsoft.tvOS.dll:Foundation.NSException ObjCRuntime.ObjCException::native_exc Microsoft.tvOS.dll:Foundation.NSException ObjCRuntime.ObjCException::NSException() Microsoft.tvOS.dll:Foundation.NSException._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSException._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSException..cctor() Microsoft.tvOS.dll:Foundation.NSException..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSException.get_CallStackSymbols() Microsoft.tvOS.dll:Foundation.NSException.get_ClassHandle() Microsoft.tvOS.dll:Foundation.NSException.get_Name() Microsoft.tvOS.dll:Foundation.NSException.get_Reason() -Microsoft.tvOS.dll:Foundation.NSExtensionRequestHandlingWrapper -Microsoft.tvOS.dll:Foundation.NSExtensionRequestHandlingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSExtensionRequestHandlingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSExtensionRequestHandlingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSItemProviderReadingWrapper -Microsoft.tvOS.dll:Foundation.NSItemProviderReadingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSItemProviderReadingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSItemProviderReadingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSItemProviderWritingWrapper -Microsoft.tvOS.dll:Foundation.NSItemProviderWritingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSItemProviderWritingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSItemProviderWritingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSMutableCopyingWrapper -Microsoft.tvOS.dll:Foundation.NSMutableCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSMutableCopyingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSMutableCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSNumber Microsoft.tvOS.dll:Foundation.NSNumber._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSNumber._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSNumber..cctor() Microsoft.tvOS.dll:Foundation.NSNumber..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSNumber.Compare(Foundation.NSNumber) @@ -553,26 +340,16 @@ Microsoft.tvOS.dll:Foundation.NSObject/XamarinGCHandleFlags Foundation.NSObject/ Microsoft.tvOS.dll:Foundation.NSObjectData Microsoft.tvOS.dll:Foundation.NSObjectFlag Microsoft.tvOS.dll:Foundation.NSObjectFlag Foundation.NSObjectFlag::Empty -Microsoft.tvOS.dll:Foundation.NSObjectProtocolWrapper -Microsoft.tvOS.dll:Foundation.NSObjectProtocolWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSObjectProtocolWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSObjectProtocolWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSRunLoop Microsoft.tvOS.dll:Foundation.NSRunLoop Foundation.NSRunLoop::Main() Microsoft.tvOS.dll:Foundation.NSRunLoop._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSRunLoop._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSRunLoop..cctor() Microsoft.tvOS.dll:Foundation.NSRunLoop..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSRunLoop.get_ClassHandle() Microsoft.tvOS.dll:Foundation.NSRunLoop.get_Main() -Microsoft.tvOS.dll:Foundation.NSSecureCodingWrapper -Microsoft.tvOS.dll:Foundation.NSSecureCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSSecureCodingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSSecureCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSString Microsoft.tvOS.dll:Foundation.NSString Foundation.NSString::Empty Microsoft.tvOS.dll:Foundation.NSString._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSString._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSString..cctor() Microsoft.tvOS.dll:Foundation.NSString..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSString..ctor(System.String) @@ -594,16 +371,12 @@ Microsoft.tvOS.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Cal Microsoft.tvOS.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_2640_Foundation_NSSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.tvOS.dll:Foundation.NSValue Microsoft.tvOS.dll:Foundation.NSValue._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSValue._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSValue..cctor() Microsoft.tvOS.dll:Foundation.NSValue..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSValue.get_ClassHandle() Microsoft.tvOS.dll:Foundation.ProtocolAttribute Microsoft.tvOS.dll:Foundation.ProtocolAttribute..ctor() Microsoft.tvOS.dll:Foundation.ProtocolAttribute.get_WrapperType() -Microsoft.tvOS.dll:Foundation.ProtocolAttribute.set_FormalSince(System.String) -Microsoft.tvOS.dll:Foundation.ProtocolAttribute.set_Name(System.String) -Microsoft.tvOS.dll:Foundation.ProtocolAttribute.set_WrapperType(System.Type) Microsoft.tvOS.dll:Foundation.RegisterAttribute Microsoft.tvOS.dll:Foundation.RegisterAttribute..ctor(System.String, System.Boolean) Microsoft.tvOS.dll:Foundation.RegisterAttribute..ctor(System.String) @@ -615,10 +388,6 @@ Microsoft.tvOS.dll:ObjCRuntime.Arch Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::DEVICE Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::SIMULATOR Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Runtime::Arch -Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper -Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper.Release() -Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper.Retain() Microsoft.tvOS.dll:ObjCRuntime.BlockCollector Microsoft.tvOS.dll:ObjCRuntime.BlockCollector..ctor(System.IntPtr) Microsoft.tvOS.dll:ObjCRuntime.BlockCollector.Add(System.IntPtr) @@ -865,7 +634,6 @@ Microsoft.tvOS.dll:ObjCRuntime.ObjCException.ToString() Microsoft.tvOS.dll:ObjCRuntime.ObjCSuper Microsoft.tvOS.dll:ObjCRuntime.ObjCSuper..ctor(Foundation.NSObject) Microsoft.tvOS.dll:ObjCRuntime.ProtocolProxyAttribute -Microsoft.tvOS.dll:ObjCRuntime.ProtocolProxyAttribute..ctor() Microsoft.tvOS.dll:ObjCRuntime.ProtocolProxyAttribute.CreateObject(System.IntPtr, System.Boolean) Microsoft.tvOS.dll:ObjCRuntime.RegistrarHelper Microsoft.tvOS.dll:ObjCRuntime.RegistrarHelper.GetMapEntry(System.IntPtr) @@ -1488,10 +1256,6 @@ Microsoft.tvOS.dll:System.String Foundation.NSException::Name() Microsoft.tvOS.dll:System.String Foundation.NSException::Reason() Microsoft.tvOS.dll:System.String Foundation.NSNumber::StringValue() Microsoft.tvOS.dll:System.String Foundation.NSObject::Description() -Microsoft.tvOS.dll:System.String Foundation.ProtocolAttribute::k__BackingField -Microsoft.tvOS.dll:System.String Foundation.ProtocolAttribute::FormalSince() -Microsoft.tvOS.dll:System.String Foundation.ProtocolAttribute::informal_until -Microsoft.tvOS.dll:System.String Foundation.ProtocolAttribute::Name() Microsoft.tvOS.dll:System.String Foundation.RegisterAttribute::name Microsoft.tvOS.dll:System.String ObjCRuntime.Class::Name() Microsoft.tvOS.dll:System.String ObjCRuntime.ObjCException::Message() @@ -1519,41 +1283,8 @@ Microsoft.tvOS.dll:System.UInt32 ObjCRuntime.Runtime/MTTypeFlags::value__ Microsoft.tvOS.dll:System.UInt32* ObjCRuntime.Runtime/MTProtocolMap::protocol_tokens Microsoft.tvOS.dll:System.UInt64 UIKit.UIControlState::value__ Microsoft.tvOS.dll:System.UIntPtr Foundation.NSDictionary::Count() -Microsoft.tvOS.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting -Microsoft.tvOS.dll:UIKit.IUIAccessibilityIdentification -Microsoft.tvOS.dll:UIKit.IUIAppearance -Microsoft.tvOS.dll:UIKit.IUIAppearanceContainer -Microsoft.tvOS.dll:UIKit.IUIApplicationDelegate -Microsoft.tvOS.dll:UIKit.IUIContentContainer -Microsoft.tvOS.dll:UIKit.IUIContextMenuInteractionDelegate -Microsoft.tvOS.dll:UIKit.IUICoordinateSpace -Microsoft.tvOS.dll:UIKit.IUIDynamicItem -Microsoft.tvOS.dll:UIKit.IUIFocusEnvironment -Microsoft.tvOS.dll:UIKit.IUIFocusItem -Microsoft.tvOS.dll:UIKit.IUIFocusItemContainer -Microsoft.tvOS.dll:UIKit.IUIResponderStandardEditActions -Microsoft.tvOS.dll:UIKit.IUITraitChangeObservable -Microsoft.tvOS.dll:UIKit.IUITraitEnvironment -Microsoft.tvOS.dll:UIKit.IUIUserActivityRestoring -Microsoft.tvOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper -Microsoft.tvOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAccessibilityIdentificationWrapper -Microsoft.tvOS.dll:UIKit.UIAccessibilityIdentificationWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAccessibilityIdentificationWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIAccessibilityIdentificationWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAppearanceContainerWrapper -Microsoft.tvOS.dll:UIKit.UIAppearanceContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAppearanceContainerWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIAppearanceContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAppearanceWrapper -Microsoft.tvOS.dll:UIKit.UIAppearanceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAppearanceWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIAppearanceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIApplication Microsoft.tvOS.dll:UIKit.UIApplication._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIApplication._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIApplication..cctor() Microsoft.tvOS.dll:UIKit.UIApplication..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIApplication.Dispose(System.Boolean) @@ -1565,7 +1296,6 @@ Microsoft.tvOS.dll:UIKit.UIApplication.UIApplicationMain(System.Int32, System.St Microsoft.tvOS.dll:UIKit.UIApplication.xamarin_UIApplicationMain(System.Int32, System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.tvOS.dll:UIKit.UIApplicationDelegate Microsoft.tvOS.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIApplicationDelegate..cctor() Microsoft.tvOS.dll:UIKit.UIApplicationDelegate..ctor() Microsoft.tvOS.dll:UIKit.UIApplicationDelegate..ctor(ObjCRuntime.NativeHandle) @@ -1573,29 +1303,15 @@ Microsoft.tvOS.dll:UIKit.UIApplicationDelegate..ctor(System.IntPtr, ObjCRuntime. Microsoft.tvOS.dll:UIKit.UIApplicationDelegate.FinishedLaunching(UIKit.UIApplication, Foundation.NSDictionary) Microsoft.tvOS.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__ Microsoft.tvOS.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__.callback_361_UIKit_UIApplicationDelegate__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*) -Microsoft.tvOS.dll:UIKit.UIApplicationDelegateWrapper -Microsoft.tvOS.dll:UIKit.UIApplicationDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIApplicationDelegateWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIApplicationDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIButton Microsoft.tvOS.dll:UIKit.UIButton._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIButton._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIButton..cctor() Microsoft.tvOS.dll:UIKit.UIButton..ctor(CoreGraphics.CGRect) Microsoft.tvOS.dll:UIKit.UIButton..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIButton.get_ClassHandle() Microsoft.tvOS.dll:UIKit.UIButton.SetTitle(System.String, UIKit.UIControlState) -Microsoft.tvOS.dll:UIKit.UIContentContainerWrapper -Microsoft.tvOS.dll:UIKit.UIContentContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIContentContainerWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIContentContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper -Microsoft.tvOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIControl Microsoft.tvOS.dll:UIKit.UIControl._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIControl._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIControl..cctor() Microsoft.tvOS.dll:UIKit.UIControl..ctor(Foundation.NSObjectFlag) Microsoft.tvOS.dll:UIKit.UIControl..ctor(ObjCRuntime.NativeHandle) @@ -1608,67 +1324,28 @@ Microsoft.tvOS.dll:UIKit.UIControlState UIKit.UIControlState::Highlighted Microsoft.tvOS.dll:UIKit.UIControlState UIKit.UIControlState::Normal Microsoft.tvOS.dll:UIKit.UIControlState UIKit.UIControlState::Reserved Microsoft.tvOS.dll:UIKit.UIControlState UIKit.UIControlState::Selected -Microsoft.tvOS.dll:UIKit.UICoordinateSpaceWrapper -Microsoft.tvOS.dll:UIKit.UICoordinateSpaceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UICoordinateSpaceWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UICoordinateSpaceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIDynamicItemWrapper -Microsoft.tvOS.dll:UIKit.UIDynamicItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIDynamicItemWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIDynamicItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusEnvironmentWrapper -Microsoft.tvOS.dll:UIKit.UIFocusEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusEnvironmentWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIFocusEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusItemContainerWrapper -Microsoft.tvOS.dll:UIKit.UIFocusItemContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusItemContainerWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIFocusItemContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusItemWrapper -Microsoft.tvOS.dll:UIKit.UIFocusItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusItemWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIFocusItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIKitSynchronizationContext Microsoft.tvOS.dll:UIKit.UIKitSynchronizationContext..ctor() Microsoft.tvOS.dll:UIKit.UIKitSynchronizationContext.Post(System.Threading.SendOrPostCallback, System.Object) Microsoft.tvOS.dll:UIKit.UIKitSynchronizationContext.Send(System.Threading.SendOrPostCallback, System.Object) Microsoft.tvOS.dll:UIKit.UIResponder Microsoft.tvOS.dll:UIKit.UIResponder._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIResponder._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIResponder..cctor() Microsoft.tvOS.dll:UIKit.UIResponder..ctor(Foundation.NSObjectFlag) Microsoft.tvOS.dll:UIKit.UIResponder..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIResponder.get_ClassHandle() -Microsoft.tvOS.dll:UIKit.UIResponderStandardEditActionsWrapper -Microsoft.tvOS.dll:UIKit.UIResponderStandardEditActionsWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIResponderStandardEditActionsWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIResponderStandardEditActionsWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIScreen Microsoft.tvOS.dll:UIKit.UIScreen UIKit.UIScreen::MainScreen() Microsoft.tvOS.dll:UIKit.UIScreen._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIScreen._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIScreen..cctor() Microsoft.tvOS.dll:UIKit.UIScreen..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIScreen.Dispose(System.Boolean) Microsoft.tvOS.dll:UIKit.UIScreen.get_Bounds() Microsoft.tvOS.dll:UIKit.UIScreen.get_ClassHandle() Microsoft.tvOS.dll:UIKit.UIScreen.get_MainScreen() -Microsoft.tvOS.dll:UIKit.UITraitChangeObservableWrapper -Microsoft.tvOS.dll:UIKit.UITraitChangeObservableWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UITraitChangeObservableWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UITraitChangeObservableWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UITraitEnvironmentWrapper -Microsoft.tvOS.dll:UIKit.UITraitEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UITraitEnvironmentWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UITraitEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIUserActivityRestoringWrapper -Microsoft.tvOS.dll:UIKit.UIUserActivityRestoringWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIUserActivityRestoringWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIUserActivityRestoringWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIView Microsoft.tvOS.dll:UIKit.UIView UIKit.UIViewController::View() Microsoft.tvOS.dll:UIKit.UIView._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIView._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIView..cctor() Microsoft.tvOS.dll:UIKit.UIView..ctor(Foundation.NSObjectFlag) Microsoft.tvOS.dll:UIKit.UIView..ctor(ObjCRuntime.NativeHandle) @@ -1679,7 +1356,6 @@ Microsoft.tvOS.dll:UIKit.UIView.get_ClassHandle() Microsoft.tvOS.dll:UIKit.UIViewController Microsoft.tvOS.dll:UIKit.UIViewController UIKit.UIWindow::RootViewController() Microsoft.tvOS.dll:UIKit.UIViewController._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIViewController._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIViewController..cctor() Microsoft.tvOS.dll:UIKit.UIViewController..ctor() Microsoft.tvOS.dll:UIKit.UIViewController..ctor(ObjCRuntime.NativeHandle) @@ -1689,7 +1365,6 @@ Microsoft.tvOS.dll:UIKit.UIViewController.get_ClassHandle() Microsoft.tvOS.dll:UIKit.UIViewController.get_View() Microsoft.tvOS.dll:UIKit.UIWindow Microsoft.tvOS.dll:UIKit.UIWindow._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIWindow._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIWindow..cctor() Microsoft.tvOS.dll:UIKit.UIWindow..ctor(CoreGraphics.CGRect) Microsoft.tvOS.dll:UIKit.UIWindow..ctor(ObjCRuntime.NativeHandle) @@ -3493,6 +3168,22 @@ System.Private.CoreLib.dll:System.Boolean System.ReadOnlyMemory`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.ReadOnlySpan`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::IsDynamic() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::s_loadFromHandlerSet +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::IsDynamic() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::t_allowDynamicCode +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_initLocals +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_restrictedSkipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_skipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::InitLocals() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsByRefLike() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsConstructedGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericParameter() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_bIsGenParam +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_hasBeenCreated +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_isHiddenGlobalType +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SignatureHelper::m_sigDone System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::_isSzArray System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsConstructedGenericType() System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsSZArray() @@ -3636,6 +3327,8 @@ System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.Nullab System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeAsyncMethodGenerationAttribute::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3692,6 +3385,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3858,6 +3552,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3901,6 +3596,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -3961,11 +3657,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4222,6 +3923,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4361,6 +4063,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4727,6 +4435,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -4912,6 +4621,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -4925,6 +4636,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -5955,6 +5667,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6403,6 +6116,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8629,6 +8343,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9233,6 +8948,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9316,6 +9071,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9340,6 +9101,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9720,6 +9482,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9799,6 +9562,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10803,6 +10567,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11044,9 +10809,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12082,8 +11850,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12442,6 +12216,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12508,11 +12286,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12641,6 +12421,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12665,6 +12447,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12672,6 +12456,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -12887,21 +12672,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -12911,10 +12791,939 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -12965,6 +13774,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13055,6 +13874,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13127,6 +13949,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13152,19 +13975,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13206,6 +14036,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13214,6 +14048,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13246,14 +14089,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13501,7 +14363,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13535,6 +14403,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13588,10 +14457,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13633,12 +14505,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13665,6 +14546,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13717,7 +14605,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13733,6 +14624,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13845,11 +14738,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13857,6 +14753,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -13874,6 +14771,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -13939,7 +14837,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14012,6 +14912,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14024,6 +14925,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14034,10 +14936,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14056,6 +14960,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14071,6 +14976,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14079,6 +14985,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14098,6 +15006,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14113,14 +15022,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14334,6 +15247,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14402,6 +15316,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14447,6 +15362,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -14940,6 +15856,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15068,6 +15998,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15109,6 +16040,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15122,10 +16056,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15799,6 +16735,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -16883,6 +17820,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -16928,7 +17871,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -16936,6 +17885,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -16990,6 +17940,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17002,6 +17953,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17081,6 +18035,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17111,6 +18066,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17179,6 +18135,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17335,6 +18292,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17428,6 +18388,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17581,6 +18542,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17591,6 +18554,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17598,6 +18562,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17814,6 +18783,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18099,7 +19069,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18308,6 +19301,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18321,6 +19315,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18329,6 +19325,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18431,6 +19428,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -19010,6 +20008,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21378,8 +22377,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::g__ThrowArgumentException|35_0`1(System.String) -System.Private.CoreLib.dll:System.Version.g__ThrowFailure|49_0`1(System.Number/ParsingStatus, System.Int32, System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Version.CompareTo(System.Object) System.Private.CoreLib.dll:System.Version.CompareTo(System.Version) System.Private.CoreLib.dll:System.Version.Equals(System.Object) @@ -22479,15 +23508,12 @@ System.Private.CoreLib.dll:System.Version.get_Revision() System.Private.CoreLib.dll:System.Version.GetHashCode() System.Private.CoreLib.dll:System.Version.op_Equality(System.Version, System.Version) System.Private.CoreLib.dll:System.Version.op_Inequality(System.Version, System.Version) -System.Private.CoreLib.dll:System.Version.Parse(System.String) -System.Private.CoreLib.dll:System.Version.ParseVersion`1(System.ReadOnlySpan`1, System.Boolean) System.Private.CoreLib.dll:System.Version.System.IFormattable.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.ToString() System.Private.CoreLib.dll:System.Version.ToString(System.Int32) System.Private.CoreLib.dll:System.Version.TryFormat(System.Span`1, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Version.TryFormatCore`1(System.Span`1, System.Int32, out System.Int32&) -System.Private.CoreLib.dll:System.Version.TryParseComponent`1(System.ReadOnlySpan`1, System.String, System.Boolean, System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Void System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::_pointer System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::Pointer() diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt index a4663305eb30..06c01435b0cf 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt @@ -1,22 +1,4 @@ _Microsoft.tvOS.TypeMap.dll: -_Microsoft.tvOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy -_Microsoft.tvOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy -_Microsoft.tvOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:CoreFoundation.CFArray_Proxy _Microsoft.tvOS.TypeMap.dll:CoreFoundation.CFArray_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:CoreFoundation.CFArray_Proxy.CreateObject(System.IntPtr, System.Boolean) @@ -28,30 +10,6 @@ _Microsoft.tvOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.GetClassHandle(System.Boolean&) _Microsoft.tvOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCoding_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCoding_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCopying_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCopying_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy.CreateObject(System.IntPtr) @@ -66,12 +24,6 @@ _Microsoft.tvOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSDictionary_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSDictionary_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSDictionary_Proxy.CreateObject(System.IntPtr) @@ -85,18 +37,6 @@ _Microsoft.tvOS.TypeMap.dll:Foundation.NSException_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSException_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSException_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation.NSException_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSNumber_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSNumber_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSNumber_Proxy.CreateObject(System.IntPtr) @@ -105,16 +45,10 @@ _Microsoft.tvOS.TypeMap.dll:Foundation.NSObject_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSObject_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSObject_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation.NSObject_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSRunLoop_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSRunLoop_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSRunLoop_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:Foundation.NSRunLoop_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:Foundation.NSString_Proxy _Microsoft.tvOS.TypeMap.dll:Foundation.NSString_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:Foundation.NSString_Proxy.CreateObject(System.IntPtr) @@ -136,66 +70,6 @@ _Microsoft.tvOS.TypeMap.dll:ObjCRuntime.Selector_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:ObjCRuntime.Selector_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute _Microsoft.tvOS.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearance_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearance_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearance_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplication_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplication_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplication_Proxy.CreateObject(System.IntPtr) @@ -205,58 +79,22 @@ _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.GetClassHandle(System.Boolean&) _Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIButton_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIButton_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIButton_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIButton_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIControl_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIControl_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIControl_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIControl_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIResponder_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIResponder_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIResponder_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIResponder_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIScreen_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIScreen_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIScreen_Proxy.CreateObject(System.IntPtr) _Microsoft.tvOS.TypeMap.dll:UIKit.UIScreen_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.tvOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy -_Microsoft.tvOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy..ctor() -_Microsoft.tvOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.tvOS.TypeMap.dll:UIKit.UIView_Proxy _Microsoft.tvOS.TypeMap.dll:UIKit.UIView_Proxy..ctor() _Microsoft.tvOS.TypeMap.dll:UIKit.UIView_Proxy.CreateObject(System.IntPtr) @@ -280,21 +118,6 @@ _SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAt _SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) Microsoft.tvOS.dll: Microsoft.tvOS.dll:..cctor() -Microsoft.tvOS.dll:CloudKit.CKRecordValueWrapper -Microsoft.tvOS.dll:CloudKit.CKRecordValueWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CloudKit.CKRecordValueWrapper..cctor() -Microsoft.tvOS.dll:CloudKit.CKRecordValueWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CloudKit.ICKRecordValue -Microsoft.tvOS.dll:CoreAnimation.CALayerDelegateWrapper -Microsoft.tvOS.dll:CoreAnimation.CALayerDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CoreAnimation.CALayerDelegateWrapper..cctor() -Microsoft.tvOS.dll:CoreAnimation.CALayerDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CoreAnimation.ICALayerDelegate -Microsoft.tvOS.dll:CoreData.INSFetchRequestResult -Microsoft.tvOS.dll:CoreData.NSFetchRequestResultWrapper -Microsoft.tvOS.dll:CoreData.NSFetchRequestResultWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:CoreData.NSFetchRequestResultWrapper..cctor() -Microsoft.tvOS.dll:CoreData.NSFetchRequestResultWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:CoreFoundation.CFArray Microsoft.tvOS.dll:CoreFoundation.CFArray._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:CoreFoundation.CFArray..cctor() @@ -344,16 +167,8 @@ Microsoft.tvOS.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.tvOS.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.tvOS.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.tvOS.dll:CoreGraphics.CGRect.ToString() -Microsoft.tvOS.dll:Foundation.INSCoding -Microsoft.tvOS.dll:Foundation.INSCopying -Microsoft.tvOS.dll:Foundation.INSExtensionRequestHandling -Microsoft.tvOS.dll:Foundation.INSItemProviderReading -Microsoft.tvOS.dll:Foundation.INSItemProviderWriting -Microsoft.tvOS.dll:Foundation.INSMutableCopying Microsoft.tvOS.dll:Foundation.INSObjectFactory Microsoft.tvOS.dll:Foundation.INSObjectFactory._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) -Microsoft.tvOS.dll:Foundation.INSObjectProtocol -Microsoft.tvOS.dll:Foundation.INSSecureCoding Microsoft.tvOS.dll:Foundation.ModelAttribute Microsoft.tvOS.dll:Foundation.ModelAttribute..ctor() Microsoft.tvOS.dll:Foundation.NSAsyncDispatcher @@ -371,28 +186,18 @@ Microsoft.tvOS.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registra Microsoft.tvOS.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_2645_Foundation_NSAsyncSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.tvOS.dll:Foundation.NSAutoreleasePool Microsoft.tvOS.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSAutoreleasePool..cctor() Microsoft.tvOS.dll:Foundation.NSAutoreleasePool..ctor() Microsoft.tvOS.dll:Foundation.NSAutoreleasePool..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSAutoreleasePool.get_ClassHandle() -Microsoft.tvOS.dll:Foundation.NSCodingWrapper -Microsoft.tvOS.dll:Foundation.NSCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSCodingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSComparisonResult Microsoft.tvOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Ascending Microsoft.tvOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Descending Microsoft.tvOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Same -Microsoft.tvOS.dll:Foundation.NSCopyingWrapper -Microsoft.tvOS.dll:Foundation.NSCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSCopyingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSDictionary Microsoft.tvOS.dll:Foundation.NSDictionary Foundation.NSDictionary/d__66::<>4__this Microsoft.tvOS.dll:Foundation.NSDictionary._ObjectForKey(System.IntPtr) Microsoft.tvOS.dll:Foundation.NSDictionary._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSDictionary._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSDictionary..cctor() Microsoft.tvOS.dll:Foundation.NSDictionary..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSDictionary.ContainsKeyValuePair(System.Collections.Generic.KeyValuePair`2) @@ -429,32 +234,14 @@ Microsoft.tvOS.dll:Foundation.NSException ObjCRuntime.MarshalObjectiveCException Microsoft.tvOS.dll:Foundation.NSException ObjCRuntime.ObjCException::native_exc Microsoft.tvOS.dll:Foundation.NSException ObjCRuntime.ObjCException::NSException() Microsoft.tvOS.dll:Foundation.NSException._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSException._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSException..cctor() Microsoft.tvOS.dll:Foundation.NSException..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSException.get_CallStackSymbols() Microsoft.tvOS.dll:Foundation.NSException.get_ClassHandle() Microsoft.tvOS.dll:Foundation.NSException.get_Name() Microsoft.tvOS.dll:Foundation.NSException.get_Reason() -Microsoft.tvOS.dll:Foundation.NSExtensionRequestHandlingWrapper -Microsoft.tvOS.dll:Foundation.NSExtensionRequestHandlingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSExtensionRequestHandlingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSExtensionRequestHandlingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSItemProviderReadingWrapper -Microsoft.tvOS.dll:Foundation.NSItemProviderReadingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSItemProviderReadingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSItemProviderReadingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSItemProviderWritingWrapper -Microsoft.tvOS.dll:Foundation.NSItemProviderWritingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSItemProviderWritingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSItemProviderWritingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSMutableCopyingWrapper -Microsoft.tvOS.dll:Foundation.NSMutableCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSMutableCopyingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSMutableCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSNumber Microsoft.tvOS.dll:Foundation.NSNumber._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSNumber._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSNumber..cctor() Microsoft.tvOS.dll:Foundation.NSNumber..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSNumber.Compare(Foundation.NSNumber) @@ -553,26 +340,16 @@ Microsoft.tvOS.dll:Foundation.NSObject/XamarinGCHandleFlags Foundation.NSObject/ Microsoft.tvOS.dll:Foundation.NSObjectData Microsoft.tvOS.dll:Foundation.NSObjectFlag Microsoft.tvOS.dll:Foundation.NSObjectFlag Foundation.NSObjectFlag::Empty -Microsoft.tvOS.dll:Foundation.NSObjectProtocolWrapper -Microsoft.tvOS.dll:Foundation.NSObjectProtocolWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSObjectProtocolWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSObjectProtocolWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSRunLoop Microsoft.tvOS.dll:Foundation.NSRunLoop Foundation.NSRunLoop::Main() Microsoft.tvOS.dll:Foundation.NSRunLoop._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSRunLoop._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSRunLoop..cctor() Microsoft.tvOS.dll:Foundation.NSRunLoop..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSRunLoop.get_ClassHandle() Microsoft.tvOS.dll:Foundation.NSRunLoop.get_Main() -Microsoft.tvOS.dll:Foundation.NSSecureCodingWrapper -Microsoft.tvOS.dll:Foundation.NSSecureCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSSecureCodingWrapper..cctor() -Microsoft.tvOS.dll:Foundation.NSSecureCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:Foundation.NSString Microsoft.tvOS.dll:Foundation.NSString Foundation.NSString::Empty Microsoft.tvOS.dll:Foundation.NSString._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSString._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSString..cctor() Microsoft.tvOS.dll:Foundation.NSString..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSString..ctor(System.String) @@ -594,16 +371,12 @@ Microsoft.tvOS.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Cal Microsoft.tvOS.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_2640_Foundation_NSSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.tvOS.dll:Foundation.NSValue Microsoft.tvOS.dll:Foundation.NSValue._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:Foundation.NSValue._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSValue..cctor() Microsoft.tvOS.dll:Foundation.NSValue..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:Foundation.NSValue.get_ClassHandle() Microsoft.tvOS.dll:Foundation.ProtocolAttribute Microsoft.tvOS.dll:Foundation.ProtocolAttribute..ctor() Microsoft.tvOS.dll:Foundation.ProtocolAttribute.get_WrapperType() -Microsoft.tvOS.dll:Foundation.ProtocolAttribute.set_FormalSince(System.String) -Microsoft.tvOS.dll:Foundation.ProtocolAttribute.set_Name(System.String) -Microsoft.tvOS.dll:Foundation.ProtocolAttribute.set_WrapperType(System.Type) Microsoft.tvOS.dll:Foundation.RegisterAttribute Microsoft.tvOS.dll:Foundation.RegisterAttribute..ctor(System.String, System.Boolean) Microsoft.tvOS.dll:Foundation.RegisterAttribute..ctor(System.String) @@ -615,10 +388,6 @@ Microsoft.tvOS.dll:ObjCRuntime.Arch Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::DEVICE Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::SIMULATOR Microsoft.tvOS.dll:ObjCRuntime.Arch ObjCRuntime.Runtime::Arch -Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper -Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper.Release() -Microsoft.tvOS.dll:ObjCRuntime.BaseWrapper.Retain() Microsoft.tvOS.dll:ObjCRuntime.BlockCollector Microsoft.tvOS.dll:ObjCRuntime.BlockCollector..ctor(System.IntPtr) Microsoft.tvOS.dll:ObjCRuntime.BlockCollector.Add(System.IntPtr) @@ -865,7 +634,6 @@ Microsoft.tvOS.dll:ObjCRuntime.ObjCException.ToString() Microsoft.tvOS.dll:ObjCRuntime.ObjCSuper Microsoft.tvOS.dll:ObjCRuntime.ObjCSuper..ctor(Foundation.NSObject) Microsoft.tvOS.dll:ObjCRuntime.ProtocolProxyAttribute -Microsoft.tvOS.dll:ObjCRuntime.ProtocolProxyAttribute..ctor() Microsoft.tvOS.dll:ObjCRuntime.ProtocolProxyAttribute.CreateObject(System.IntPtr, System.Boolean) Microsoft.tvOS.dll:ObjCRuntime.RegistrarHelper Microsoft.tvOS.dll:ObjCRuntime.RegistrarHelper.GetMapEntry(System.IntPtr) @@ -1488,10 +1256,6 @@ Microsoft.tvOS.dll:System.String Foundation.NSException::Name() Microsoft.tvOS.dll:System.String Foundation.NSException::Reason() Microsoft.tvOS.dll:System.String Foundation.NSNumber::StringValue() Microsoft.tvOS.dll:System.String Foundation.NSObject::Description() -Microsoft.tvOS.dll:System.String Foundation.ProtocolAttribute::k__BackingField -Microsoft.tvOS.dll:System.String Foundation.ProtocolAttribute::FormalSince() -Microsoft.tvOS.dll:System.String Foundation.ProtocolAttribute::informal_until -Microsoft.tvOS.dll:System.String Foundation.ProtocolAttribute::Name() Microsoft.tvOS.dll:System.String Foundation.RegisterAttribute::name Microsoft.tvOS.dll:System.String ObjCRuntime.Class::Name() Microsoft.tvOS.dll:System.String ObjCRuntime.ObjCException::Message() @@ -1519,41 +1283,8 @@ Microsoft.tvOS.dll:System.UInt32 ObjCRuntime.Runtime/MTTypeFlags::value__ Microsoft.tvOS.dll:System.UInt32* ObjCRuntime.Runtime/MTProtocolMap::protocol_tokens Microsoft.tvOS.dll:System.UInt64 UIKit.UIControlState::value__ Microsoft.tvOS.dll:System.UIntPtr Foundation.NSDictionary::Count() -Microsoft.tvOS.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting -Microsoft.tvOS.dll:UIKit.IUIAccessibilityIdentification -Microsoft.tvOS.dll:UIKit.IUIAppearance -Microsoft.tvOS.dll:UIKit.IUIAppearanceContainer -Microsoft.tvOS.dll:UIKit.IUIApplicationDelegate -Microsoft.tvOS.dll:UIKit.IUIContentContainer -Microsoft.tvOS.dll:UIKit.IUIContextMenuInteractionDelegate -Microsoft.tvOS.dll:UIKit.IUICoordinateSpace -Microsoft.tvOS.dll:UIKit.IUIDynamicItem -Microsoft.tvOS.dll:UIKit.IUIFocusEnvironment -Microsoft.tvOS.dll:UIKit.IUIFocusItem -Microsoft.tvOS.dll:UIKit.IUIFocusItemContainer -Microsoft.tvOS.dll:UIKit.IUIResponderStandardEditActions -Microsoft.tvOS.dll:UIKit.IUITraitChangeObservable -Microsoft.tvOS.dll:UIKit.IUITraitEnvironment -Microsoft.tvOS.dll:UIKit.IUIUserActivityRestoring -Microsoft.tvOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper -Microsoft.tvOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAccessibilityIdentificationWrapper -Microsoft.tvOS.dll:UIKit.UIAccessibilityIdentificationWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAccessibilityIdentificationWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIAccessibilityIdentificationWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAppearanceContainerWrapper -Microsoft.tvOS.dll:UIKit.UIAppearanceContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAppearanceContainerWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIAppearanceContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAppearanceWrapper -Microsoft.tvOS.dll:UIKit.UIAppearanceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIAppearanceWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIAppearanceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIApplication Microsoft.tvOS.dll:UIKit.UIApplication._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIApplication._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIApplication..cctor() Microsoft.tvOS.dll:UIKit.UIApplication..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIApplication.Dispose(System.Boolean) @@ -1565,7 +1296,6 @@ Microsoft.tvOS.dll:UIKit.UIApplication.UIApplicationMain(System.Int32, System.St Microsoft.tvOS.dll:UIKit.UIApplication.xamarin_UIApplicationMain(System.Int32, System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.tvOS.dll:UIKit.UIApplicationDelegate Microsoft.tvOS.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIApplicationDelegate..cctor() Microsoft.tvOS.dll:UIKit.UIApplicationDelegate..ctor() Microsoft.tvOS.dll:UIKit.UIApplicationDelegate..ctor(ObjCRuntime.NativeHandle) @@ -1573,29 +1303,15 @@ Microsoft.tvOS.dll:UIKit.UIApplicationDelegate..ctor(System.IntPtr, ObjCRuntime. Microsoft.tvOS.dll:UIKit.UIApplicationDelegate.FinishedLaunching(UIKit.UIApplication, Foundation.NSDictionary) Microsoft.tvOS.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__ Microsoft.tvOS.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__.callback_361_UIKit_UIApplicationDelegate__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*) -Microsoft.tvOS.dll:UIKit.UIApplicationDelegateWrapper -Microsoft.tvOS.dll:UIKit.UIApplicationDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIApplicationDelegateWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIApplicationDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIButton Microsoft.tvOS.dll:UIKit.UIButton._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIButton._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIButton..cctor() Microsoft.tvOS.dll:UIKit.UIButton..ctor(CoreGraphics.CGRect) Microsoft.tvOS.dll:UIKit.UIButton..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIButton.get_ClassHandle() Microsoft.tvOS.dll:UIKit.UIButton.SetTitle(System.String, UIKit.UIControlState) -Microsoft.tvOS.dll:UIKit.UIContentContainerWrapper -Microsoft.tvOS.dll:UIKit.UIContentContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIContentContainerWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIContentContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper -Microsoft.tvOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIControl Microsoft.tvOS.dll:UIKit.UIControl._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIControl._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIControl..cctor() Microsoft.tvOS.dll:UIKit.UIControl..ctor(Foundation.NSObjectFlag) Microsoft.tvOS.dll:UIKit.UIControl..ctor(ObjCRuntime.NativeHandle) @@ -1608,67 +1324,28 @@ Microsoft.tvOS.dll:UIKit.UIControlState UIKit.UIControlState::Highlighted Microsoft.tvOS.dll:UIKit.UIControlState UIKit.UIControlState::Normal Microsoft.tvOS.dll:UIKit.UIControlState UIKit.UIControlState::Reserved Microsoft.tvOS.dll:UIKit.UIControlState UIKit.UIControlState::Selected -Microsoft.tvOS.dll:UIKit.UICoordinateSpaceWrapper -Microsoft.tvOS.dll:UIKit.UICoordinateSpaceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UICoordinateSpaceWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UICoordinateSpaceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIDynamicItemWrapper -Microsoft.tvOS.dll:UIKit.UIDynamicItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIDynamicItemWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIDynamicItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusEnvironmentWrapper -Microsoft.tvOS.dll:UIKit.UIFocusEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusEnvironmentWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIFocusEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusItemContainerWrapper -Microsoft.tvOS.dll:UIKit.UIFocusItemContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusItemContainerWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIFocusItemContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusItemWrapper -Microsoft.tvOS.dll:UIKit.UIFocusItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIFocusItemWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIFocusItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIKitSynchronizationContext Microsoft.tvOS.dll:UIKit.UIKitSynchronizationContext..ctor() Microsoft.tvOS.dll:UIKit.UIKitSynchronizationContext.Post(System.Threading.SendOrPostCallback, System.Object) Microsoft.tvOS.dll:UIKit.UIKitSynchronizationContext.Send(System.Threading.SendOrPostCallback, System.Object) Microsoft.tvOS.dll:UIKit.UIResponder Microsoft.tvOS.dll:UIKit.UIResponder._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIResponder._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIResponder..cctor() Microsoft.tvOS.dll:UIKit.UIResponder..ctor(Foundation.NSObjectFlag) Microsoft.tvOS.dll:UIKit.UIResponder..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIResponder.get_ClassHandle() -Microsoft.tvOS.dll:UIKit.UIResponderStandardEditActionsWrapper -Microsoft.tvOS.dll:UIKit.UIResponderStandardEditActionsWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIResponderStandardEditActionsWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIResponderStandardEditActionsWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIScreen Microsoft.tvOS.dll:UIKit.UIScreen UIKit.UIScreen::MainScreen() Microsoft.tvOS.dll:UIKit.UIScreen._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIScreen._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIScreen..cctor() Microsoft.tvOS.dll:UIKit.UIScreen..ctor(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIScreen.Dispose(System.Boolean) Microsoft.tvOS.dll:UIKit.UIScreen.get_Bounds() Microsoft.tvOS.dll:UIKit.UIScreen.get_ClassHandle() Microsoft.tvOS.dll:UIKit.UIScreen.get_MainScreen() -Microsoft.tvOS.dll:UIKit.UITraitChangeObservableWrapper -Microsoft.tvOS.dll:UIKit.UITraitChangeObservableWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UITraitChangeObservableWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UITraitChangeObservableWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UITraitEnvironmentWrapper -Microsoft.tvOS.dll:UIKit.UITraitEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UITraitEnvironmentWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UITraitEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIUserActivityRestoringWrapper -Microsoft.tvOS.dll:UIKit.UIUserActivityRestoringWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIUserActivityRestoringWrapper..cctor() -Microsoft.tvOS.dll:UIKit.UIUserActivityRestoringWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.tvOS.dll:UIKit.UIView Microsoft.tvOS.dll:UIKit.UIView UIKit.UIViewController::View() Microsoft.tvOS.dll:UIKit.UIView._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIView._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIView..cctor() Microsoft.tvOS.dll:UIKit.UIView..ctor(Foundation.NSObjectFlag) Microsoft.tvOS.dll:UIKit.UIView..ctor(ObjCRuntime.NativeHandle) @@ -1679,7 +1356,6 @@ Microsoft.tvOS.dll:UIKit.UIView.get_ClassHandle() Microsoft.tvOS.dll:UIKit.UIViewController Microsoft.tvOS.dll:UIKit.UIViewController UIKit.UIWindow::RootViewController() Microsoft.tvOS.dll:UIKit.UIViewController._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIViewController._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIViewController..cctor() Microsoft.tvOS.dll:UIKit.UIViewController..ctor() Microsoft.tvOS.dll:UIKit.UIViewController..ctor(ObjCRuntime.NativeHandle) @@ -1689,7 +1365,6 @@ Microsoft.tvOS.dll:UIKit.UIViewController.get_ClassHandle() Microsoft.tvOS.dll:UIKit.UIViewController.get_View() Microsoft.tvOS.dll:UIKit.UIWindow Microsoft.tvOS.dll:UIKit.UIWindow._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.tvOS.dll:UIKit.UIWindow._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.tvOS.dll:UIKit.UIWindow..cctor() Microsoft.tvOS.dll:UIKit.UIWindow..ctor(CoreGraphics.CGRect) Microsoft.tvOS.dll:UIKit.UIWindow..ctor(ObjCRuntime.NativeHandle) @@ -3493,6 +3168,22 @@ System.Private.CoreLib.dll:System.Boolean System.ReadOnlyMemory`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.ReadOnlySpan`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::IsDynamic() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::s_loadFromHandlerSet +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::IsDynamic() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::t_allowDynamicCode +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_initLocals +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_restrictedSkipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_skipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::InitLocals() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsByRefLike() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsConstructedGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericParameter() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_bIsGenParam +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_hasBeenCreated +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_isHiddenGlobalType +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SignatureHelper::m_sigDone System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::_isSzArray System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsConstructedGenericType() System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsSZArray() @@ -3636,6 +3327,8 @@ System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.Nullab System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeAsyncMethodGenerationAttribute::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3692,6 +3385,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3858,6 +3552,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3901,6 +3596,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -3961,11 +3657,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4222,6 +3923,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4361,6 +4063,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4727,6 +4435,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -4912,6 +4621,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -4925,6 +4636,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -5955,6 +5667,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6403,6 +6116,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8629,6 +8343,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9233,6 +8948,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9316,6 +9071,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9340,6 +9101,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9720,6 +9482,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9799,6 +9562,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10803,6 +10567,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11044,9 +10809,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12082,8 +11850,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12442,6 +12216,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12508,11 +12286,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12641,6 +12421,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12665,6 +12447,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12672,6 +12456,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -12887,21 +12672,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -12911,10 +12791,939 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -12965,6 +13774,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13055,6 +13874,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13127,6 +13949,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13152,19 +13975,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13206,6 +14036,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13214,6 +14048,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13246,14 +14089,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13501,7 +14363,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13535,6 +14403,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13588,10 +14457,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13633,12 +14505,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13665,6 +14546,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13717,7 +14605,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13733,6 +14624,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13845,11 +14738,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13857,6 +14753,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -13874,6 +14771,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -13939,7 +14837,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14012,6 +14912,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14024,6 +14925,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14034,10 +14936,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14056,6 +14960,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14071,6 +14976,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14079,6 +14985,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14098,6 +15006,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14113,14 +15022,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14334,6 +15247,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14402,6 +15316,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14447,6 +15362,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -14940,6 +15856,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15068,6 +15998,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15109,6 +16040,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15122,10 +16056,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15799,6 +16735,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -16883,6 +17820,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -16928,7 +17871,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -16936,6 +17885,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -16990,6 +17940,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17002,6 +17953,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17081,6 +18035,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17111,6 +18066,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17179,6 +18135,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17335,6 +18292,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17428,6 +18388,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17581,6 +18542,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17591,6 +18554,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17598,6 +18562,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17814,6 +18783,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18099,7 +19069,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18308,6 +19301,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18321,6 +19315,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18329,6 +19325,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18431,6 +19428,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -19010,6 +20008,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21378,8 +22377,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::g__ThrowArgumentException|35_0`1(System.String) -System.Private.CoreLib.dll:System.Version.g__ThrowFailure|49_0`1(System.Number/ParsingStatus, System.Int32, System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Version.CompareTo(System.Object) System.Private.CoreLib.dll:System.Version.CompareTo(System.Version) System.Private.CoreLib.dll:System.Version.Equals(System.Object) @@ -22479,15 +23508,12 @@ System.Private.CoreLib.dll:System.Version.get_Revision() System.Private.CoreLib.dll:System.Version.GetHashCode() System.Private.CoreLib.dll:System.Version.op_Equality(System.Version, System.Version) System.Private.CoreLib.dll:System.Version.op_Inequality(System.Version, System.Version) -System.Private.CoreLib.dll:System.Version.Parse(System.String) -System.Private.CoreLib.dll:System.Version.ParseVersion`1(System.ReadOnlySpan`1, System.Boolean) System.Private.CoreLib.dll:System.Version.System.IFormattable.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.ToString() System.Private.CoreLib.dll:System.Version.ToString(System.Int32) System.Private.CoreLib.dll:System.Version.TryFormat(System.Span`1, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Version.TryFormatCore`1(System.Span`1, System.Int32, out System.Int32&) -System.Private.CoreLib.dll:System.Version.TryParseComponent`1(System.ReadOnlySpan`1, System.String, System.Boolean, System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Void System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::_pointer System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::Pointer() diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt index f6be8edd7fc9..51bafb9b050c 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt @@ -1,22 +1,4 @@ _Microsoft.iOS.TypeMap.dll: -_Microsoft.iOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy -_Microsoft.iOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy -_Microsoft.iOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy -_Microsoft.iOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:CoreFoundation.CFArray_Proxy _Microsoft.iOS.TypeMap.dll:CoreFoundation.CFArray_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:CoreFoundation.CFArray_Proxy.CreateObject(System.IntPtr, System.Boolean) @@ -28,30 +10,6 @@ _Microsoft.iOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.GetClassHandle(System.Boolean&) _Microsoft.iOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.iOS.TypeMap.dll:Foundation.INSCoding_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSCoding_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSCopying_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSCopying_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy.CreateObject(System.IntPtr) @@ -66,12 +24,6 @@ _Microsoft.iOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSDictionary_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSDictionary_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSDictionary_Proxy.CreateObject(System.IntPtr) @@ -85,18 +37,6 @@ _Microsoft.iOS.TypeMap.dll:Foundation.NSException_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSException_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSException_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation.NSException_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSNumber_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSNumber_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSNumber_Proxy.CreateObject(System.IntPtr) @@ -105,16 +45,10 @@ _Microsoft.iOS.TypeMap.dll:Foundation.NSObject_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSObject_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSObject_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation.NSObject_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSRunLoop_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSRunLoop_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSRunLoop_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation.NSRunLoop_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSString_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSString_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSString_Proxy.CreateObject(System.IntPtr) @@ -136,84 +70,6 @@ _Microsoft.iOS.TypeMap.dll:ObjCRuntime.Selector_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:ObjCRuntime.Selector_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute _Microsoft.iOS.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearance_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearance_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearance_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIApplication_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIApplication_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIApplication_Proxy.CreateObject(System.IntPtr) @@ -223,70 +79,22 @@ _Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.GetClassHandle(System.Boolean&) _Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIButton_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIButton_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIButton_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIButton_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIControl_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIControl_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIControl_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIControl_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIResponder_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIResponder_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIResponder_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIResponder_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIScreen_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIScreen_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIScreen_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIScreen_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIView_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIView_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIView_Proxy.CreateObject(System.IntPtr) @@ -310,21 +118,6 @@ _SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAt _SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) Microsoft.iOS.dll: Microsoft.iOS.dll:..cctor() -Microsoft.iOS.dll:CloudKit.CKRecordValueWrapper -Microsoft.iOS.dll:CloudKit.CKRecordValueWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CloudKit.CKRecordValueWrapper..cctor() -Microsoft.iOS.dll:CloudKit.CKRecordValueWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CloudKit.ICKRecordValue -Microsoft.iOS.dll:CoreAnimation.CALayerDelegateWrapper -Microsoft.iOS.dll:CoreAnimation.CALayerDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CoreAnimation.CALayerDelegateWrapper..cctor() -Microsoft.iOS.dll:CoreAnimation.CALayerDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CoreAnimation.ICALayerDelegate -Microsoft.iOS.dll:CoreData.INSFetchRequestResult -Microsoft.iOS.dll:CoreData.NSFetchRequestResultWrapper -Microsoft.iOS.dll:CoreData.NSFetchRequestResultWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CoreData.NSFetchRequestResultWrapper..cctor() -Microsoft.iOS.dll:CoreData.NSFetchRequestResultWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:CoreFoundation.CFArray Microsoft.iOS.dll:CoreFoundation.CFArray._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:CoreFoundation.CFArray..cctor() @@ -374,16 +167,8 @@ Microsoft.iOS.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.iOS.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.iOS.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.iOS.dll:CoreGraphics.CGRect.ToString() -Microsoft.iOS.dll:Foundation.INSCoding -Microsoft.iOS.dll:Foundation.INSCopying -Microsoft.iOS.dll:Foundation.INSExtensionRequestHandling -Microsoft.iOS.dll:Foundation.INSItemProviderReading -Microsoft.iOS.dll:Foundation.INSItemProviderWriting -Microsoft.iOS.dll:Foundation.INSMutableCopying Microsoft.iOS.dll:Foundation.INSObjectFactory Microsoft.iOS.dll:Foundation.INSObjectFactory._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) -Microsoft.iOS.dll:Foundation.INSObjectProtocol -Microsoft.iOS.dll:Foundation.INSSecureCoding Microsoft.iOS.dll:Foundation.ModelAttribute Microsoft.iOS.dll:Foundation.ModelAttribute..ctor() Microsoft.iOS.dll:Foundation.NSAsyncDispatcher @@ -401,28 +186,18 @@ Microsoft.iOS.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registrar Microsoft.iOS.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_3063_Foundation_NSAsyncSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.iOS.dll:Foundation.NSAutoreleasePool Microsoft.iOS.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSAutoreleasePool..cctor() Microsoft.iOS.dll:Foundation.NSAutoreleasePool..ctor() Microsoft.iOS.dll:Foundation.NSAutoreleasePool..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSAutoreleasePool.get_ClassHandle() -Microsoft.iOS.dll:Foundation.NSCodingWrapper -Microsoft.iOS.dll:Foundation.NSCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSCodingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSComparisonResult Microsoft.iOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Ascending Microsoft.iOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Descending Microsoft.iOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Same -Microsoft.iOS.dll:Foundation.NSCopyingWrapper -Microsoft.iOS.dll:Foundation.NSCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSCopyingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSDictionary Microsoft.iOS.dll:Foundation.NSDictionary Foundation.NSDictionary/d__66::<>4__this Microsoft.iOS.dll:Foundation.NSDictionary._ObjectForKey(System.IntPtr) Microsoft.iOS.dll:Foundation.NSDictionary._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSDictionary._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSDictionary..cctor() Microsoft.iOS.dll:Foundation.NSDictionary..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSDictionary.ContainsKeyValuePair(System.Collections.Generic.KeyValuePair`2) @@ -459,32 +234,14 @@ Microsoft.iOS.dll:Foundation.NSException ObjCRuntime.MarshalObjectiveCExceptionE Microsoft.iOS.dll:Foundation.NSException ObjCRuntime.ObjCException::native_exc Microsoft.iOS.dll:Foundation.NSException ObjCRuntime.ObjCException::NSException() Microsoft.iOS.dll:Foundation.NSException._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSException._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSException..cctor() Microsoft.iOS.dll:Foundation.NSException..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSException.get_CallStackSymbols() Microsoft.iOS.dll:Foundation.NSException.get_ClassHandle() Microsoft.iOS.dll:Foundation.NSException.get_Name() Microsoft.iOS.dll:Foundation.NSException.get_Reason() -Microsoft.iOS.dll:Foundation.NSExtensionRequestHandlingWrapper -Microsoft.iOS.dll:Foundation.NSExtensionRequestHandlingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSExtensionRequestHandlingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSExtensionRequestHandlingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSItemProviderReadingWrapper -Microsoft.iOS.dll:Foundation.NSItemProviderReadingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSItemProviderReadingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSItemProviderReadingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSItemProviderWritingWrapper -Microsoft.iOS.dll:Foundation.NSItemProviderWritingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSItemProviderWritingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSItemProviderWritingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSMutableCopyingWrapper -Microsoft.iOS.dll:Foundation.NSMutableCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSMutableCopyingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSMutableCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSNumber Microsoft.iOS.dll:Foundation.NSNumber._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSNumber._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSNumber..cctor() Microsoft.iOS.dll:Foundation.NSNumber..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSNumber.Compare(Foundation.NSNumber) @@ -583,26 +340,16 @@ Microsoft.iOS.dll:Foundation.NSObject/XamarinGCHandleFlags Foundation.NSObject/X Microsoft.iOS.dll:Foundation.NSObjectData Microsoft.iOS.dll:Foundation.NSObjectFlag Microsoft.iOS.dll:Foundation.NSObjectFlag Foundation.NSObjectFlag::Empty -Microsoft.iOS.dll:Foundation.NSObjectProtocolWrapper -Microsoft.iOS.dll:Foundation.NSObjectProtocolWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSObjectProtocolWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSObjectProtocolWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSRunLoop Microsoft.iOS.dll:Foundation.NSRunLoop Foundation.NSRunLoop::Main() Microsoft.iOS.dll:Foundation.NSRunLoop._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSRunLoop._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSRunLoop..cctor() Microsoft.iOS.dll:Foundation.NSRunLoop..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSRunLoop.get_ClassHandle() Microsoft.iOS.dll:Foundation.NSRunLoop.get_Main() -Microsoft.iOS.dll:Foundation.NSSecureCodingWrapper -Microsoft.iOS.dll:Foundation.NSSecureCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSSecureCodingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSSecureCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSString Microsoft.iOS.dll:Foundation.NSString Foundation.NSString::Empty Microsoft.iOS.dll:Foundation.NSString._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSString._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSString..cctor() Microsoft.iOS.dll:Foundation.NSString..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSString..ctor(System.String) @@ -624,16 +371,12 @@ Microsoft.iOS.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Call Microsoft.iOS.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_3058_Foundation_NSSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.iOS.dll:Foundation.NSValue Microsoft.iOS.dll:Foundation.NSValue._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSValue._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSValue..cctor() Microsoft.iOS.dll:Foundation.NSValue..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSValue.get_ClassHandle() Microsoft.iOS.dll:Foundation.ProtocolAttribute Microsoft.iOS.dll:Foundation.ProtocolAttribute..ctor() Microsoft.iOS.dll:Foundation.ProtocolAttribute.get_WrapperType() -Microsoft.iOS.dll:Foundation.ProtocolAttribute.set_FormalSince(System.String) -Microsoft.iOS.dll:Foundation.ProtocolAttribute.set_Name(System.String) -Microsoft.iOS.dll:Foundation.ProtocolAttribute.set_WrapperType(System.Type) Microsoft.iOS.dll:Foundation.RegisterAttribute Microsoft.iOS.dll:Foundation.RegisterAttribute..ctor(System.String, System.Boolean) Microsoft.iOS.dll:Foundation.RegisterAttribute..ctor(System.String) @@ -645,10 +388,6 @@ Microsoft.iOS.dll:ObjCRuntime.Arch Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::DEVICE Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::SIMULATOR Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Runtime::Arch -Microsoft.iOS.dll:ObjCRuntime.BaseWrapper -Microsoft.iOS.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:ObjCRuntime.BaseWrapper.Release() -Microsoft.iOS.dll:ObjCRuntime.BaseWrapper.Retain() Microsoft.iOS.dll:ObjCRuntime.BlockCollector Microsoft.iOS.dll:ObjCRuntime.BlockCollector..ctor(System.IntPtr) Microsoft.iOS.dll:ObjCRuntime.BlockCollector.Add(System.IntPtr) @@ -895,7 +634,6 @@ Microsoft.iOS.dll:ObjCRuntime.ObjCException.ToString() Microsoft.iOS.dll:ObjCRuntime.ObjCSuper Microsoft.iOS.dll:ObjCRuntime.ObjCSuper..ctor(Foundation.NSObject) Microsoft.iOS.dll:ObjCRuntime.ProtocolProxyAttribute -Microsoft.iOS.dll:ObjCRuntime.ProtocolProxyAttribute..ctor() Microsoft.iOS.dll:ObjCRuntime.ProtocolProxyAttribute.CreateObject(System.IntPtr, System.Boolean) Microsoft.iOS.dll:ObjCRuntime.RegistrarHelper Microsoft.iOS.dll:ObjCRuntime.RegistrarHelper.GetMapEntry(System.IntPtr) @@ -1518,10 +1256,6 @@ Microsoft.iOS.dll:System.String Foundation.NSException::Name() Microsoft.iOS.dll:System.String Foundation.NSException::Reason() Microsoft.iOS.dll:System.String Foundation.NSNumber::StringValue() Microsoft.iOS.dll:System.String Foundation.NSObject::Description() -Microsoft.iOS.dll:System.String Foundation.ProtocolAttribute::k__BackingField -Microsoft.iOS.dll:System.String Foundation.ProtocolAttribute::FormalSince() -Microsoft.iOS.dll:System.String Foundation.ProtocolAttribute::informal_until -Microsoft.iOS.dll:System.String Foundation.ProtocolAttribute::Name() Microsoft.iOS.dll:System.String Foundation.RegisterAttribute::name Microsoft.iOS.dll:System.String ObjCRuntime.Class::Name() Microsoft.iOS.dll:System.String ObjCRuntime.ObjCException::Message() @@ -1549,50 +1283,8 @@ Microsoft.iOS.dll:System.UInt32 ObjCRuntime.Runtime/MTTypeFlags::value__ Microsoft.iOS.dll:System.UInt32* ObjCRuntime.Runtime/MTProtocolMap::protocol_tokens Microsoft.iOS.dll:System.UInt64 UIKit.UIControlState::value__ Microsoft.iOS.dll:System.UIntPtr Foundation.NSDictionary::Count() -Microsoft.iOS.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting -Microsoft.iOS.dll:UIKit.IUIAccessibilityIdentification -Microsoft.iOS.dll:UIKit.IUIActivityItemsConfigurationProviding -Microsoft.iOS.dll:UIKit.IUIAppearance -Microsoft.iOS.dll:UIKit.IUIAppearanceContainer -Microsoft.iOS.dll:UIKit.IUIApplicationDelegate -Microsoft.iOS.dll:UIKit.IUIContentContainer -Microsoft.iOS.dll:UIKit.IUIContextMenuInteractionDelegate -Microsoft.iOS.dll:UIKit.IUICoordinateSpace -Microsoft.iOS.dll:UIKit.IUIDynamicItem -Microsoft.iOS.dll:UIKit.IUIFocusEnvironment -Microsoft.iOS.dll:UIKit.IUIFocusItem -Microsoft.iOS.dll:UIKit.IUIFocusItemContainer -Microsoft.iOS.dll:UIKit.IUILargeContentViewerItem -Microsoft.iOS.dll:UIKit.IUIPasteConfigurationSupporting -Microsoft.iOS.dll:UIKit.IUIPopoverPresentationControllerSourceItem -Microsoft.iOS.dll:UIKit.IUIResponderStandardEditActions -Microsoft.iOS.dll:UIKit.IUISpringLoadedInteractionSupporting -Microsoft.iOS.dll:UIKit.IUITraitChangeObservable -Microsoft.iOS.dll:UIKit.IUITraitEnvironment -Microsoft.iOS.dll:UIKit.IUIUserActivityRestoring -Microsoft.iOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper -Microsoft.iOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAccessibilityIdentificationWrapper -Microsoft.iOS.dll:UIKit.UIAccessibilityIdentificationWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAccessibilityIdentificationWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIAccessibilityIdentificationWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper -Microsoft.iOS.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAppearanceContainerWrapper -Microsoft.iOS.dll:UIKit.UIAppearanceContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAppearanceContainerWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIAppearanceContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAppearanceWrapper -Microsoft.iOS.dll:UIKit.UIAppearanceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAppearanceWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIAppearanceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIApplication Microsoft.iOS.dll:UIKit.UIApplication._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIApplication._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIApplication..cctor() Microsoft.iOS.dll:UIKit.UIApplication..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIApplication.Dispose(System.Boolean) @@ -1604,7 +1296,6 @@ Microsoft.iOS.dll:UIKit.UIApplication.UIApplicationMain(System.Int32, System.Str Microsoft.iOS.dll:UIKit.UIApplication.xamarin_UIApplicationMain(System.Int32, System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.iOS.dll:UIKit.UIApplicationDelegate Microsoft.iOS.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIApplicationDelegate..cctor() Microsoft.iOS.dll:UIKit.UIApplicationDelegate..ctor() Microsoft.iOS.dll:UIKit.UIApplicationDelegate..ctor(ObjCRuntime.NativeHandle) @@ -1612,29 +1303,15 @@ Microsoft.iOS.dll:UIKit.UIApplicationDelegate..ctor(System.IntPtr, ObjCRuntime.I Microsoft.iOS.dll:UIKit.UIApplicationDelegate.FinishedLaunching(UIKit.UIApplication, Foundation.NSDictionary) Microsoft.iOS.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__ Microsoft.iOS.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__.callback_593_UIKit_UIApplicationDelegate__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*) -Microsoft.iOS.dll:UIKit.UIApplicationDelegateWrapper -Microsoft.iOS.dll:UIKit.UIApplicationDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIApplicationDelegateWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIApplicationDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIButton Microsoft.iOS.dll:UIKit.UIButton._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIButton._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIButton..cctor() Microsoft.iOS.dll:UIKit.UIButton..ctor(CoreGraphics.CGRect) Microsoft.iOS.dll:UIKit.UIButton..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIButton.get_ClassHandle() Microsoft.iOS.dll:UIKit.UIButton.SetTitle(System.String, UIKit.UIControlState) -Microsoft.iOS.dll:UIKit.UIContentContainerWrapper -Microsoft.iOS.dll:UIKit.UIContentContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIContentContainerWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIContentContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper -Microsoft.iOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIControl Microsoft.iOS.dll:UIKit.UIControl._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIControl._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIControl..cctor() Microsoft.iOS.dll:UIKit.UIControl..ctor(Foundation.NSObjectFlag) Microsoft.iOS.dll:UIKit.UIControl..ctor(ObjCRuntime.NativeHandle) @@ -1647,83 +1324,28 @@ Microsoft.iOS.dll:UIKit.UIControlState UIKit.UIControlState::Highlighted Microsoft.iOS.dll:UIKit.UIControlState UIKit.UIControlState::Normal Microsoft.iOS.dll:UIKit.UIControlState UIKit.UIControlState::Reserved Microsoft.iOS.dll:UIKit.UIControlState UIKit.UIControlState::Selected -Microsoft.iOS.dll:UIKit.UICoordinateSpaceWrapper -Microsoft.iOS.dll:UIKit.UICoordinateSpaceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UICoordinateSpaceWrapper..cctor() -Microsoft.iOS.dll:UIKit.UICoordinateSpaceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIDynamicItemWrapper -Microsoft.iOS.dll:UIKit.UIDynamicItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIDynamicItemWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIDynamicItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusEnvironmentWrapper -Microsoft.iOS.dll:UIKit.UIFocusEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusEnvironmentWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIFocusEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusItemContainerWrapper -Microsoft.iOS.dll:UIKit.UIFocusItemContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusItemContainerWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIFocusItemContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusItemWrapper -Microsoft.iOS.dll:UIKit.UIFocusItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusItemWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIFocusItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIKitSynchronizationContext Microsoft.iOS.dll:UIKit.UIKitSynchronizationContext..ctor() Microsoft.iOS.dll:UIKit.UIKitSynchronizationContext.Post(System.Threading.SendOrPostCallback, System.Object) Microsoft.iOS.dll:UIKit.UIKitSynchronizationContext.Send(System.Threading.SendOrPostCallback, System.Object) -Microsoft.iOS.dll:UIKit.UILargeContentViewerItemWrapper -Microsoft.iOS.dll:UIKit.UILargeContentViewerItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UILargeContentViewerItemWrapper..cctor() -Microsoft.iOS.dll:UIKit.UILargeContentViewerItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIPasteConfigurationSupportingWrapper -Microsoft.iOS.dll:UIKit.UIPasteConfigurationSupportingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIPasteConfigurationSupportingWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIPasteConfigurationSupportingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper -Microsoft.iOS.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIResponder Microsoft.iOS.dll:UIKit.UIResponder._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIResponder._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIResponder..cctor() Microsoft.iOS.dll:UIKit.UIResponder..ctor(Foundation.NSObjectFlag) Microsoft.iOS.dll:UIKit.UIResponder..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIResponder.get_ClassHandle() -Microsoft.iOS.dll:UIKit.UIResponderStandardEditActionsWrapper -Microsoft.iOS.dll:UIKit.UIResponderStandardEditActionsWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIResponderStandardEditActionsWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIResponderStandardEditActionsWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIScreen Microsoft.iOS.dll:UIKit.UIScreen UIKit.UIScreen::MainScreen() Microsoft.iOS.dll:UIKit.UIScreen._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIScreen._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIScreen..cctor() Microsoft.iOS.dll:UIKit.UIScreen..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIScreen.Dispose(System.Boolean) Microsoft.iOS.dll:UIKit.UIScreen.get_Bounds() Microsoft.iOS.dll:UIKit.UIScreen.get_ClassHandle() Microsoft.iOS.dll:UIKit.UIScreen.get_MainScreen() -Microsoft.iOS.dll:UIKit.UISpringLoadedInteractionSupportingWrapper -Microsoft.iOS.dll:UIKit.UISpringLoadedInteractionSupportingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UISpringLoadedInteractionSupportingWrapper..cctor() -Microsoft.iOS.dll:UIKit.UISpringLoadedInteractionSupportingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UITraitChangeObservableWrapper -Microsoft.iOS.dll:UIKit.UITraitChangeObservableWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UITraitChangeObservableWrapper..cctor() -Microsoft.iOS.dll:UIKit.UITraitChangeObservableWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UITraitEnvironmentWrapper -Microsoft.iOS.dll:UIKit.UITraitEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UITraitEnvironmentWrapper..cctor() -Microsoft.iOS.dll:UIKit.UITraitEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIUserActivityRestoringWrapper -Microsoft.iOS.dll:UIKit.UIUserActivityRestoringWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIUserActivityRestoringWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIUserActivityRestoringWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIView Microsoft.iOS.dll:UIKit.UIView UIKit.UIViewController::View() Microsoft.iOS.dll:UIKit.UIView._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIView._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIView..cctor() Microsoft.iOS.dll:UIKit.UIView..ctor(Foundation.NSObjectFlag) Microsoft.iOS.dll:UIKit.UIView..ctor(ObjCRuntime.NativeHandle) @@ -1734,7 +1356,6 @@ Microsoft.iOS.dll:UIKit.UIView.get_ClassHandle() Microsoft.iOS.dll:UIKit.UIViewController Microsoft.iOS.dll:UIKit.UIViewController UIKit.UIWindow::RootViewController() Microsoft.iOS.dll:UIKit.UIViewController._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIViewController._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIViewController..cctor() Microsoft.iOS.dll:UIKit.UIViewController..ctor() Microsoft.iOS.dll:UIKit.UIViewController..ctor(ObjCRuntime.NativeHandle) @@ -1744,7 +1365,6 @@ Microsoft.iOS.dll:UIKit.UIViewController.get_ClassHandle() Microsoft.iOS.dll:UIKit.UIViewController.get_View() Microsoft.iOS.dll:UIKit.UIWindow Microsoft.iOS.dll:UIKit.UIWindow._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIWindow._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIWindow..cctor() Microsoft.iOS.dll:UIKit.UIWindow..ctor(CoreGraphics.CGRect) Microsoft.iOS.dll:UIKit.UIWindow..ctor(ObjCRuntime.NativeHandle) @@ -3548,6 +3168,22 @@ System.Private.CoreLib.dll:System.Boolean System.ReadOnlyMemory`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.ReadOnlySpan`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::IsDynamic() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::s_loadFromHandlerSet +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::IsDynamic() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::t_allowDynamicCode +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_initLocals +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_restrictedSkipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_skipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::InitLocals() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsByRefLike() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsConstructedGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericParameter() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_bIsGenParam +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_hasBeenCreated +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_isHiddenGlobalType +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SignatureHelper::m_sigDone System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::_isSzArray System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsConstructedGenericType() System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsSZArray() @@ -3691,6 +3327,8 @@ System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.Nullab System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeAsyncMethodGenerationAttribute::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3747,6 +3385,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3913,6 +3552,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3956,6 +3596,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -4016,11 +3657,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4277,6 +3923,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4416,6 +4063,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4782,6 +4435,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -4967,6 +4621,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -4980,6 +4636,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -6010,6 +5667,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6458,6 +6116,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8684,6 +8343,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9288,6 +8948,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9371,6 +9071,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9395,6 +9101,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9775,6 +9482,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9854,6 +9562,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10858,6 +10567,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11099,9 +10809,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12137,8 +11850,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12497,6 +12216,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12563,11 +12286,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12696,6 +12421,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12720,6 +12447,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12727,6 +12456,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -12942,21 +12672,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -12966,10 +12791,939 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -13020,6 +13774,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13110,6 +13874,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13182,6 +13949,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13207,19 +13975,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13261,6 +14036,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13269,6 +14048,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13301,14 +14089,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13556,7 +14363,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13590,6 +14403,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13643,10 +14457,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13688,12 +14505,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13720,6 +14546,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13772,7 +14605,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13788,6 +14624,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13900,11 +14738,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13912,6 +14753,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -13929,6 +14771,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -13994,7 +14837,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14067,6 +14912,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14079,6 +14925,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14089,10 +14936,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14111,6 +14960,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14126,6 +14976,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14134,6 +14985,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14153,6 +15006,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14168,14 +15022,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14389,6 +15247,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14457,6 +15316,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14502,6 +15362,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -14995,6 +15856,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15123,6 +15998,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15164,6 +16040,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15177,10 +16056,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15854,6 +16735,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -16938,6 +17820,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -16983,7 +17871,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -16991,6 +17885,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17045,6 +17940,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17057,6 +17953,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17136,6 +18035,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17166,6 +18066,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17234,6 +18135,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17390,6 +18292,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17483,6 +18388,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17636,6 +18542,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17646,6 +18554,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17653,6 +18562,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17869,6 +18783,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18154,7 +19069,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18363,6 +19301,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18376,6 +19315,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18384,6 +19325,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18486,6 +19428,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -19065,6 +20008,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21433,8 +22377,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::g__ThrowArgumentException|35_0`1(System.String) -System.Private.CoreLib.dll:System.Version.g__ThrowFailure|49_0`1(System.Number/ParsingStatus, System.Int32, System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Version.CompareTo(System.Object) System.Private.CoreLib.dll:System.Version.CompareTo(System.Version) System.Private.CoreLib.dll:System.Version.Equals(System.Object) @@ -22534,15 +23508,12 @@ System.Private.CoreLib.dll:System.Version.get_Revision() System.Private.CoreLib.dll:System.Version.GetHashCode() System.Private.CoreLib.dll:System.Version.op_Equality(System.Version, System.Version) System.Private.CoreLib.dll:System.Version.op_Inequality(System.Version, System.Version) -System.Private.CoreLib.dll:System.Version.Parse(System.String) -System.Private.CoreLib.dll:System.Version.ParseVersion`1(System.ReadOnlySpan`1, System.Boolean) System.Private.CoreLib.dll:System.Version.System.IFormattable.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.ToString() System.Private.CoreLib.dll:System.Version.ToString(System.Int32) System.Private.CoreLib.dll:System.Version.TryFormat(System.Span`1, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Version.TryFormatCore`1(System.Span`1, System.Int32, out System.Int32&) -System.Private.CoreLib.dll:System.Version.TryParseComponent`1(System.ReadOnlySpan`1, System.String, System.Boolean, System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Void System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::_pointer System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::Pointer() diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt index f6be8edd7fc9..51bafb9b050c 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt @@ -1,22 +1,4 @@ _Microsoft.iOS.TypeMap.dll: -_Microsoft.iOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy -_Microsoft.iOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CloudKit.ICKRecordValue_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy -_Microsoft.iOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy -_Microsoft.iOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:CoreFoundation.CFArray_Proxy _Microsoft.iOS.TypeMap.dll:CoreFoundation.CFArray_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:CoreFoundation.CFArray_Proxy.CreateObject(System.IntPtr, System.Boolean) @@ -28,30 +10,6 @@ _Microsoft.iOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.GetClassHandle(System.Boolean&) _Microsoft.iOS.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.iOS.TypeMap.dll:Foundation.INSCoding_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSCoding_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSCopying_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSCopying_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderReading_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSMutableCopying_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSObjectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.INSSecureCoding_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy.CreateObject(System.IntPtr) @@ -66,12 +24,6 @@ _Microsoft.iOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSDictionary_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSDictionary_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSDictionary_Proxy.CreateObject(System.IntPtr) @@ -85,18 +37,6 @@ _Microsoft.iOS.TypeMap.dll:Foundation.NSException_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSException_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSException_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation.NSException_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSNumber_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSNumber_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSNumber_Proxy.CreateObject(System.IntPtr) @@ -105,16 +45,10 @@ _Microsoft.iOS.TypeMap.dll:Foundation.NSObject_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSObject_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSObject_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation.NSObject_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSRunLoop_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSRunLoop_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSRunLoop_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:Foundation.NSRunLoop_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:Foundation.NSString_Proxy _Microsoft.iOS.TypeMap.dll:Foundation.NSString_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:Foundation.NSString_Proxy.CreateObject(System.IntPtr) @@ -136,84 +70,6 @@ _Microsoft.iOS.TypeMap.dll:ObjCRuntime.Selector_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:ObjCRuntime.Selector_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute _Microsoft.iOS.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearance_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearance_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearance_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContentContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIDynamicItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIApplication_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIApplication_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIApplication_Proxy.CreateObject(System.IntPtr) @@ -223,70 +79,22 @@ _Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.GetClassHandle(System.Boolean&) _Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.LookupUnmanagedFunction(System.String) -_Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIButton_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIButton_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIButton_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIButton_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIControl_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIControl_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIControl_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIControl_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIResponder_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIResponder_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIResponder_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIResponder_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIScreen_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIScreen_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIScreen_Proxy.CreateObject(System.IntPtr) _Microsoft.iOS.TypeMap.dll:UIKit.UIScreen_Proxy.GetClassHandle(System.Boolean&) -_Microsoft.iOS.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) -_Microsoft.iOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy -_Microsoft.iOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy..ctor() -_Microsoft.iOS.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean) _Microsoft.iOS.TypeMap.dll:UIKit.UIView_Proxy _Microsoft.iOS.TypeMap.dll:UIKit.UIView_Proxy..ctor() _Microsoft.iOS.TypeMap.dll:UIKit.UIView_Proxy.CreateObject(System.IntPtr) @@ -310,21 +118,6 @@ _SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAt _SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String) Microsoft.iOS.dll: Microsoft.iOS.dll:..cctor() -Microsoft.iOS.dll:CloudKit.CKRecordValueWrapper -Microsoft.iOS.dll:CloudKit.CKRecordValueWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CloudKit.CKRecordValueWrapper..cctor() -Microsoft.iOS.dll:CloudKit.CKRecordValueWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CloudKit.ICKRecordValue -Microsoft.iOS.dll:CoreAnimation.CALayerDelegateWrapper -Microsoft.iOS.dll:CoreAnimation.CALayerDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CoreAnimation.CALayerDelegateWrapper..cctor() -Microsoft.iOS.dll:CoreAnimation.CALayerDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CoreAnimation.ICALayerDelegate -Microsoft.iOS.dll:CoreData.INSFetchRequestResult -Microsoft.iOS.dll:CoreData.NSFetchRequestResultWrapper -Microsoft.iOS.dll:CoreData.NSFetchRequestResultWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:CoreData.NSFetchRequestResultWrapper..cctor() -Microsoft.iOS.dll:CoreData.NSFetchRequestResultWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:CoreFoundation.CFArray Microsoft.iOS.dll:CoreFoundation.CFArray._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:CoreFoundation.CFArray..cctor() @@ -374,16 +167,8 @@ Microsoft.iOS.dll:CoreGraphics.CGRect.Equals(System.Object) Microsoft.iOS.dll:CoreGraphics.CGRect.GetHashCode() Microsoft.iOS.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect) Microsoft.iOS.dll:CoreGraphics.CGRect.ToString() -Microsoft.iOS.dll:Foundation.INSCoding -Microsoft.iOS.dll:Foundation.INSCopying -Microsoft.iOS.dll:Foundation.INSExtensionRequestHandling -Microsoft.iOS.dll:Foundation.INSItemProviderReading -Microsoft.iOS.dll:Foundation.INSItemProviderWriting -Microsoft.iOS.dll:Foundation.INSMutableCopying Microsoft.iOS.dll:Foundation.INSObjectFactory Microsoft.iOS.dll:Foundation.INSObjectFactory._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) -Microsoft.iOS.dll:Foundation.INSObjectProtocol -Microsoft.iOS.dll:Foundation.INSSecureCoding Microsoft.iOS.dll:Foundation.ModelAttribute Microsoft.iOS.dll:Foundation.ModelAttribute..ctor() Microsoft.iOS.dll:Foundation.NSAsyncDispatcher @@ -401,28 +186,18 @@ Microsoft.iOS.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registrar Microsoft.iOS.dll:Foundation.NSAsyncSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_3063_Foundation_NSAsyncSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.iOS.dll:Foundation.NSAutoreleasePool Microsoft.iOS.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSAutoreleasePool._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSAutoreleasePool..cctor() Microsoft.iOS.dll:Foundation.NSAutoreleasePool..ctor() Microsoft.iOS.dll:Foundation.NSAutoreleasePool..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSAutoreleasePool.get_ClassHandle() -Microsoft.iOS.dll:Foundation.NSCodingWrapper -Microsoft.iOS.dll:Foundation.NSCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSCodingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSComparisonResult Microsoft.iOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Ascending Microsoft.iOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Descending Microsoft.iOS.dll:Foundation.NSComparisonResult Foundation.NSComparisonResult::Same -Microsoft.iOS.dll:Foundation.NSCopyingWrapper -Microsoft.iOS.dll:Foundation.NSCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSCopyingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSDictionary Microsoft.iOS.dll:Foundation.NSDictionary Foundation.NSDictionary/d__66::<>4__this Microsoft.iOS.dll:Foundation.NSDictionary._ObjectForKey(System.IntPtr) Microsoft.iOS.dll:Foundation.NSDictionary._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSDictionary._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSDictionary..cctor() Microsoft.iOS.dll:Foundation.NSDictionary..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSDictionary.ContainsKeyValuePair(System.Collections.Generic.KeyValuePair`2) @@ -459,32 +234,14 @@ Microsoft.iOS.dll:Foundation.NSException ObjCRuntime.MarshalObjectiveCExceptionE Microsoft.iOS.dll:Foundation.NSException ObjCRuntime.ObjCException::native_exc Microsoft.iOS.dll:Foundation.NSException ObjCRuntime.ObjCException::NSException() Microsoft.iOS.dll:Foundation.NSException._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSException._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSException..cctor() Microsoft.iOS.dll:Foundation.NSException..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSException.get_CallStackSymbols() Microsoft.iOS.dll:Foundation.NSException.get_ClassHandle() Microsoft.iOS.dll:Foundation.NSException.get_Name() Microsoft.iOS.dll:Foundation.NSException.get_Reason() -Microsoft.iOS.dll:Foundation.NSExtensionRequestHandlingWrapper -Microsoft.iOS.dll:Foundation.NSExtensionRequestHandlingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSExtensionRequestHandlingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSExtensionRequestHandlingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSItemProviderReadingWrapper -Microsoft.iOS.dll:Foundation.NSItemProviderReadingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSItemProviderReadingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSItemProviderReadingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSItemProviderWritingWrapper -Microsoft.iOS.dll:Foundation.NSItemProviderWritingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSItemProviderWritingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSItemProviderWritingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSMutableCopyingWrapper -Microsoft.iOS.dll:Foundation.NSMutableCopyingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSMutableCopyingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSMutableCopyingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSNumber Microsoft.iOS.dll:Foundation.NSNumber._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSNumber._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSNumber..cctor() Microsoft.iOS.dll:Foundation.NSNumber..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSNumber.Compare(Foundation.NSNumber) @@ -583,26 +340,16 @@ Microsoft.iOS.dll:Foundation.NSObject/XamarinGCHandleFlags Foundation.NSObject/X Microsoft.iOS.dll:Foundation.NSObjectData Microsoft.iOS.dll:Foundation.NSObjectFlag Microsoft.iOS.dll:Foundation.NSObjectFlag Foundation.NSObjectFlag::Empty -Microsoft.iOS.dll:Foundation.NSObjectProtocolWrapper -Microsoft.iOS.dll:Foundation.NSObjectProtocolWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSObjectProtocolWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSObjectProtocolWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSRunLoop Microsoft.iOS.dll:Foundation.NSRunLoop Foundation.NSRunLoop::Main() Microsoft.iOS.dll:Foundation.NSRunLoop._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSRunLoop._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSRunLoop..cctor() Microsoft.iOS.dll:Foundation.NSRunLoop..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSRunLoop.get_ClassHandle() Microsoft.iOS.dll:Foundation.NSRunLoop.get_Main() -Microsoft.iOS.dll:Foundation.NSSecureCodingWrapper -Microsoft.iOS.dll:Foundation.NSSecureCodingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSSecureCodingWrapper..cctor() -Microsoft.iOS.dll:Foundation.NSSecureCodingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:Foundation.NSString Microsoft.iOS.dll:Foundation.NSString Foundation.NSString::Empty Microsoft.iOS.dll:Foundation.NSString._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSString._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSString..cctor() Microsoft.iOS.dll:Foundation.NSString..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSString..ctor(System.String) @@ -624,16 +371,12 @@ Microsoft.iOS.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Call Microsoft.iOS.dll:Foundation.NSSynchronizationContextDispatcher/__Registrar_Callbacks__.callback_3058_Foundation_NSSynchronizationContextDispatcher_Apply(System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.iOS.dll:Foundation.NSValue Microsoft.iOS.dll:Foundation.NSValue._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:Foundation.NSValue._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSValue..cctor() Microsoft.iOS.dll:Foundation.NSValue..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:Foundation.NSValue.get_ClassHandle() Microsoft.iOS.dll:Foundation.ProtocolAttribute Microsoft.iOS.dll:Foundation.ProtocolAttribute..ctor() Microsoft.iOS.dll:Foundation.ProtocolAttribute.get_WrapperType() -Microsoft.iOS.dll:Foundation.ProtocolAttribute.set_FormalSince(System.String) -Microsoft.iOS.dll:Foundation.ProtocolAttribute.set_Name(System.String) -Microsoft.iOS.dll:Foundation.ProtocolAttribute.set_WrapperType(System.Type) Microsoft.iOS.dll:Foundation.RegisterAttribute Microsoft.iOS.dll:Foundation.RegisterAttribute..ctor(System.String, System.Boolean) Microsoft.iOS.dll:Foundation.RegisterAttribute..ctor(System.String) @@ -645,10 +388,6 @@ Microsoft.iOS.dll:ObjCRuntime.Arch Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::DEVICE Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Arch::SIMULATOR Microsoft.iOS.dll:ObjCRuntime.Arch ObjCRuntime.Runtime::Arch -Microsoft.iOS.dll:ObjCRuntime.BaseWrapper -Microsoft.iOS.dll:ObjCRuntime.BaseWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:ObjCRuntime.BaseWrapper.Release() -Microsoft.iOS.dll:ObjCRuntime.BaseWrapper.Retain() Microsoft.iOS.dll:ObjCRuntime.BlockCollector Microsoft.iOS.dll:ObjCRuntime.BlockCollector..ctor(System.IntPtr) Microsoft.iOS.dll:ObjCRuntime.BlockCollector.Add(System.IntPtr) @@ -895,7 +634,6 @@ Microsoft.iOS.dll:ObjCRuntime.ObjCException.ToString() Microsoft.iOS.dll:ObjCRuntime.ObjCSuper Microsoft.iOS.dll:ObjCRuntime.ObjCSuper..ctor(Foundation.NSObject) Microsoft.iOS.dll:ObjCRuntime.ProtocolProxyAttribute -Microsoft.iOS.dll:ObjCRuntime.ProtocolProxyAttribute..ctor() Microsoft.iOS.dll:ObjCRuntime.ProtocolProxyAttribute.CreateObject(System.IntPtr, System.Boolean) Microsoft.iOS.dll:ObjCRuntime.RegistrarHelper Microsoft.iOS.dll:ObjCRuntime.RegistrarHelper.GetMapEntry(System.IntPtr) @@ -1518,10 +1256,6 @@ Microsoft.iOS.dll:System.String Foundation.NSException::Name() Microsoft.iOS.dll:System.String Foundation.NSException::Reason() Microsoft.iOS.dll:System.String Foundation.NSNumber::StringValue() Microsoft.iOS.dll:System.String Foundation.NSObject::Description() -Microsoft.iOS.dll:System.String Foundation.ProtocolAttribute::k__BackingField -Microsoft.iOS.dll:System.String Foundation.ProtocolAttribute::FormalSince() -Microsoft.iOS.dll:System.String Foundation.ProtocolAttribute::informal_until -Microsoft.iOS.dll:System.String Foundation.ProtocolAttribute::Name() Microsoft.iOS.dll:System.String Foundation.RegisterAttribute::name Microsoft.iOS.dll:System.String ObjCRuntime.Class::Name() Microsoft.iOS.dll:System.String ObjCRuntime.ObjCException::Message() @@ -1549,50 +1283,8 @@ Microsoft.iOS.dll:System.UInt32 ObjCRuntime.Runtime/MTTypeFlags::value__ Microsoft.iOS.dll:System.UInt32* ObjCRuntime.Runtime/MTProtocolMap::protocol_tokens Microsoft.iOS.dll:System.UInt64 UIKit.UIControlState::value__ Microsoft.iOS.dll:System.UIntPtr Foundation.NSDictionary::Count() -Microsoft.iOS.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting -Microsoft.iOS.dll:UIKit.IUIAccessibilityIdentification -Microsoft.iOS.dll:UIKit.IUIActivityItemsConfigurationProviding -Microsoft.iOS.dll:UIKit.IUIAppearance -Microsoft.iOS.dll:UIKit.IUIAppearanceContainer -Microsoft.iOS.dll:UIKit.IUIApplicationDelegate -Microsoft.iOS.dll:UIKit.IUIContentContainer -Microsoft.iOS.dll:UIKit.IUIContextMenuInteractionDelegate -Microsoft.iOS.dll:UIKit.IUICoordinateSpace -Microsoft.iOS.dll:UIKit.IUIDynamicItem -Microsoft.iOS.dll:UIKit.IUIFocusEnvironment -Microsoft.iOS.dll:UIKit.IUIFocusItem -Microsoft.iOS.dll:UIKit.IUIFocusItemContainer -Microsoft.iOS.dll:UIKit.IUILargeContentViewerItem -Microsoft.iOS.dll:UIKit.IUIPasteConfigurationSupporting -Microsoft.iOS.dll:UIKit.IUIPopoverPresentationControllerSourceItem -Microsoft.iOS.dll:UIKit.IUIResponderStandardEditActions -Microsoft.iOS.dll:UIKit.IUISpringLoadedInteractionSupporting -Microsoft.iOS.dll:UIKit.IUITraitChangeObservable -Microsoft.iOS.dll:UIKit.IUITraitEnvironment -Microsoft.iOS.dll:UIKit.IUIUserActivityRestoring -Microsoft.iOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper -Microsoft.iOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAccessibilityIdentificationWrapper -Microsoft.iOS.dll:UIKit.UIAccessibilityIdentificationWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAccessibilityIdentificationWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIAccessibilityIdentificationWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper -Microsoft.iOS.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAppearanceContainerWrapper -Microsoft.iOS.dll:UIKit.UIAppearanceContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAppearanceContainerWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIAppearanceContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAppearanceWrapper -Microsoft.iOS.dll:UIKit.UIAppearanceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIAppearanceWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIAppearanceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIApplication Microsoft.iOS.dll:UIKit.UIApplication._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIApplication._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIApplication..cctor() Microsoft.iOS.dll:UIKit.UIApplication..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIApplication.Dispose(System.Boolean) @@ -1604,7 +1296,6 @@ Microsoft.iOS.dll:UIKit.UIApplication.UIApplicationMain(System.Int32, System.Str Microsoft.iOS.dll:UIKit.UIApplication.xamarin_UIApplicationMain(System.Int32, System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*) Microsoft.iOS.dll:UIKit.UIApplicationDelegate Microsoft.iOS.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIApplicationDelegate._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIApplicationDelegate..cctor() Microsoft.iOS.dll:UIKit.UIApplicationDelegate..ctor() Microsoft.iOS.dll:UIKit.UIApplicationDelegate..ctor(ObjCRuntime.NativeHandle) @@ -1612,29 +1303,15 @@ Microsoft.iOS.dll:UIKit.UIApplicationDelegate..ctor(System.IntPtr, ObjCRuntime.I Microsoft.iOS.dll:UIKit.UIApplicationDelegate.FinishedLaunching(UIKit.UIApplication, Foundation.NSDictionary) Microsoft.iOS.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__ Microsoft.iOS.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__.callback_593_UIKit_UIApplicationDelegate__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*) -Microsoft.iOS.dll:UIKit.UIApplicationDelegateWrapper -Microsoft.iOS.dll:UIKit.UIApplicationDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIApplicationDelegateWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIApplicationDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIButton Microsoft.iOS.dll:UIKit.UIButton._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIButton._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIButton..cctor() Microsoft.iOS.dll:UIKit.UIButton..ctor(CoreGraphics.CGRect) Microsoft.iOS.dll:UIKit.UIButton..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIButton.get_ClassHandle() Microsoft.iOS.dll:UIKit.UIButton.SetTitle(System.String, UIKit.UIControlState) -Microsoft.iOS.dll:UIKit.UIContentContainerWrapper -Microsoft.iOS.dll:UIKit.UIContentContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIContentContainerWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIContentContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper -Microsoft.iOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIContextMenuInteractionDelegateWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIControl Microsoft.iOS.dll:UIKit.UIControl._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIControl._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIControl..cctor() Microsoft.iOS.dll:UIKit.UIControl..ctor(Foundation.NSObjectFlag) Microsoft.iOS.dll:UIKit.UIControl..ctor(ObjCRuntime.NativeHandle) @@ -1647,83 +1324,28 @@ Microsoft.iOS.dll:UIKit.UIControlState UIKit.UIControlState::Highlighted Microsoft.iOS.dll:UIKit.UIControlState UIKit.UIControlState::Normal Microsoft.iOS.dll:UIKit.UIControlState UIKit.UIControlState::Reserved Microsoft.iOS.dll:UIKit.UIControlState UIKit.UIControlState::Selected -Microsoft.iOS.dll:UIKit.UICoordinateSpaceWrapper -Microsoft.iOS.dll:UIKit.UICoordinateSpaceWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UICoordinateSpaceWrapper..cctor() -Microsoft.iOS.dll:UIKit.UICoordinateSpaceWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIDynamicItemWrapper -Microsoft.iOS.dll:UIKit.UIDynamicItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIDynamicItemWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIDynamicItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusEnvironmentWrapper -Microsoft.iOS.dll:UIKit.UIFocusEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusEnvironmentWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIFocusEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusItemContainerWrapper -Microsoft.iOS.dll:UIKit.UIFocusItemContainerWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusItemContainerWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIFocusItemContainerWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusItemWrapper -Microsoft.iOS.dll:UIKit.UIFocusItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIFocusItemWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIFocusItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIKitSynchronizationContext Microsoft.iOS.dll:UIKit.UIKitSynchronizationContext..ctor() Microsoft.iOS.dll:UIKit.UIKitSynchronizationContext.Post(System.Threading.SendOrPostCallback, System.Object) Microsoft.iOS.dll:UIKit.UIKitSynchronizationContext.Send(System.Threading.SendOrPostCallback, System.Object) -Microsoft.iOS.dll:UIKit.UILargeContentViewerItemWrapper -Microsoft.iOS.dll:UIKit.UILargeContentViewerItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UILargeContentViewerItemWrapper..cctor() -Microsoft.iOS.dll:UIKit.UILargeContentViewerItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIPasteConfigurationSupportingWrapper -Microsoft.iOS.dll:UIKit.UIPasteConfigurationSupportingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIPasteConfigurationSupportingWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIPasteConfigurationSupportingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper -Microsoft.iOS.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIResponder Microsoft.iOS.dll:UIKit.UIResponder._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIResponder._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIResponder..cctor() Microsoft.iOS.dll:UIKit.UIResponder..ctor(Foundation.NSObjectFlag) Microsoft.iOS.dll:UIKit.UIResponder..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIResponder.get_ClassHandle() -Microsoft.iOS.dll:UIKit.UIResponderStandardEditActionsWrapper -Microsoft.iOS.dll:UIKit.UIResponderStandardEditActionsWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIResponderStandardEditActionsWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIResponderStandardEditActionsWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIScreen Microsoft.iOS.dll:UIKit.UIScreen UIKit.UIScreen::MainScreen() Microsoft.iOS.dll:UIKit.UIScreen._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIScreen._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIScreen..cctor() Microsoft.iOS.dll:UIKit.UIScreen..ctor(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIScreen.Dispose(System.Boolean) Microsoft.iOS.dll:UIKit.UIScreen.get_Bounds() Microsoft.iOS.dll:UIKit.UIScreen.get_ClassHandle() Microsoft.iOS.dll:UIKit.UIScreen.get_MainScreen() -Microsoft.iOS.dll:UIKit.UISpringLoadedInteractionSupportingWrapper -Microsoft.iOS.dll:UIKit.UISpringLoadedInteractionSupportingWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UISpringLoadedInteractionSupportingWrapper..cctor() -Microsoft.iOS.dll:UIKit.UISpringLoadedInteractionSupportingWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UITraitChangeObservableWrapper -Microsoft.iOS.dll:UIKit.UITraitChangeObservableWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UITraitChangeObservableWrapper..cctor() -Microsoft.iOS.dll:UIKit.UITraitChangeObservableWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UITraitEnvironmentWrapper -Microsoft.iOS.dll:UIKit.UITraitEnvironmentWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UITraitEnvironmentWrapper..cctor() -Microsoft.iOS.dll:UIKit.UITraitEnvironmentWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIUserActivityRestoringWrapper -Microsoft.iOS.dll:UIKit.UIUserActivityRestoringWrapper._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIUserActivityRestoringWrapper..cctor() -Microsoft.iOS.dll:UIKit.UIUserActivityRestoringWrapper..ctor(ObjCRuntime.NativeHandle, System.Boolean) Microsoft.iOS.dll:UIKit.UIView Microsoft.iOS.dll:UIKit.UIView UIKit.UIViewController::View() Microsoft.iOS.dll:UIKit.UIView._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIView._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIView..cctor() Microsoft.iOS.dll:UIKit.UIView..ctor(Foundation.NSObjectFlag) Microsoft.iOS.dll:UIKit.UIView..ctor(ObjCRuntime.NativeHandle) @@ -1734,7 +1356,6 @@ Microsoft.iOS.dll:UIKit.UIView.get_ClassHandle() Microsoft.iOS.dll:UIKit.UIViewController Microsoft.iOS.dll:UIKit.UIViewController UIKit.UIWindow::RootViewController() Microsoft.iOS.dll:UIKit.UIViewController._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIViewController._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIViewController..cctor() Microsoft.iOS.dll:UIKit.UIViewController..ctor() Microsoft.iOS.dll:UIKit.UIViewController..ctor(ObjCRuntime.NativeHandle) @@ -1744,7 +1365,6 @@ Microsoft.iOS.dll:UIKit.UIViewController.get_ClassHandle() Microsoft.iOS.dll:UIKit.UIViewController.get_View() Microsoft.iOS.dll:UIKit.UIWindow Microsoft.iOS.dll:UIKit.UIWindow._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean) -Microsoft.iOS.dll:UIKit.UIWindow._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle) Microsoft.iOS.dll:UIKit.UIWindow..cctor() Microsoft.iOS.dll:UIKit.UIWindow..ctor(CoreGraphics.CGRect) Microsoft.iOS.dll:UIKit.UIWindow..ctor(ObjCRuntime.NativeHandle) @@ -3548,6 +3168,22 @@ System.Private.CoreLib.dll:System.Boolean System.ReadOnlyMemory`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.ReadOnlySpan`1::IsEmpty() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::IsDynamic() System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::s_loadFromHandlerSet +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::IsDynamic() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::t_allowDynamicCode +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_initLocals +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_restrictedSkipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_skipVisibility +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::InitLocals() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsByRefLike() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsConstructedGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericParameter() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericType() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_bIsGenParam +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_hasBeenCreated +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_isHiddenGlobalType +System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SignatureHelper::m_sigDone System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::_isSzArray System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsConstructedGenericType() System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsSZArray() @@ -3691,6 +3327,8 @@ System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.Nullab System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeAsyncMethodGenerationAttribute::P System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows() +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc() System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated() System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry @@ -3747,6 +3385,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT() System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic() System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal() @@ -3913,6 +3552,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic() System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed() System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType() System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray() +System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType() System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray() System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned() @@ -3956,6 +3596,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper: System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef System.Private.CoreLib.dll:System.Buffer +System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr) @@ -4016,11 +3657,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64) @@ -4277,6 +3923,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent() System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__ System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32) System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__ +System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__ System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex @@ -4416,6 +4063,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data() +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream +System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken() System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL @@ -4782,6 +4435,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects +System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1 System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor() @@ -4967,6 +4621,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose( System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current() System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext() System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions @@ -4980,6 +4636,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones +System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer @@ -6010,6 +5667,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) +System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) @@ -6458,6 +6116,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System. System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL) System.Private.CoreLib.dll:System.Enum.GetHashCode() System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum) System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage) System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&) System.Private.CoreLib.dll:System.Enum.GetTypeCode() @@ -8684,6 +8343,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version() System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex @@ -9288,6 +8948,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length() System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__ +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken() +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc +System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__ System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__ @@ -9371,6 +9071,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition() System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength +System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize @@ -9395,6 +9101,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank() System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField @@ -9775,6 +9482,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras() System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras() +System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult @@ -9854,6 +9562,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length() System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position() +System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8 System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8 @@ -10858,6 +10567,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo +System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable @@ -11099,9 +10809,12 @@ System.Private.CoreLib.dll:System.ModuleHandle System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle() System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0() System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle) System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver) +System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode() System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule) @@ -12137,8 +11850,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32) +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot() +System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot +System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot() System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2 System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3 @@ -12497,6 +12216,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.Assembly System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly() +System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly() System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly() @@ -12563,11 +12286,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken() System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version() +System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey() System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*) System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String) @@ -12696,6 +12421,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention +System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention() System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention() @@ -12720,6 +12447,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length() System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor() @@ -12727,6 +12456,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo) @@ -12942,21 +12672,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean) System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress() +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo +System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported() +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect +System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*) @@ -12966,10 +12791,939 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo() System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle) +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo +System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle) System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label +System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel +System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id() +System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3 +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_ +System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType() +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8 +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR +System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName() System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[]) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree +System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray() +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush() +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8 +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop +System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters() +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32) @@ -13020,6 +13774,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType() +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[]) +System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType() System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[]) System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly() @@ -13110,6 +13874,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper) +System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper) System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask @@ -13182,6 +13949,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4 System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8 System.Private.CoreLib.dll:System.Reflection.FieldAttributes +System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family @@ -13207,19 +13975,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes System.Private.CoreLib.dll:System.Reflection.FieldInfo +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo() +System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor() System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic() System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object) System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes() +System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant @@ -13261,6 +14036,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags() System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr) @@ -13269,6 +14048,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*) +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle() +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper +System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned() System.Private.CoreLib.dll:System.Reflection.InvokeUtils System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType) System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType) @@ -13301,14 +14089,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object) System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged +System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName @@ -13556,7 +14363,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec System.Private.CoreLib.dll:System.Reflection.MethodAttributes +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes() +System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes() System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride @@ -13590,6 +14403,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite() +System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod() System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase @@ -13643,10 +14457,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker() System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker +System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[]) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo) System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo) @@ -13688,12 +14505,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method() +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned +System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1() System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType() +System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments() System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition() @@ -13720,6 +14546,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor() System.Private.CoreLib.dll:System.Reflection.Missing..ctor() System.Private.CoreLib.dll:System.Reflection.Module System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module() +System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module() System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module() @@ -13772,7 +14605,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl System.Private.CoreLib.dll:System.Reflection.ParameterInfo +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter +System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter() System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue() @@ -13788,6 +14624,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString() System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters @@ -13900,11 +14738,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object) @@ -13912,6 +14753,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType() System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly @@ -13929,6 +14771,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase() System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean) @@ -13994,7 +14837,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode( System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) @@ -14067,6 +14912,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString() @@ -14079,6 +14925,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod @@ -14089,10 +14936,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags() @@ -14111,6 +14960,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle( System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean) @@ -14126,6 +14976,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) @@ -14134,6 +14985,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule +System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule() System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor() System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[]) @@ -14153,6 +15006,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[]) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo) @@ -14168,14 +15022,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers() +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule() System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&) +System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&) System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object) @@ -14389,6 +15247,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String) System.Private.CoreLib.dll:System.Reflection.TypeAttributes +System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass @@ -14457,6 +15316,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl() System.Private.CoreLib.dll:System.Reflection.TypeInfo System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor() System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType() +System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32) System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo) System.Private.CoreLib.dll:System.Reflection.TypeNameResolver System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32) @@ -14502,6 +15362,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&) System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*) +System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor() System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -14995,6 +15856,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers() @@ -15123,6 +15998,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule +System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&) @@ -15164,6 +16040,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported() System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object) @@ -15177,10 +16056,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object) @@ -15854,6 +16735,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference() +System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged() System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1 @@ -16938,6 +17820,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String) System.Private.CoreLib.dll:System.RuntimeArgumentHandle System.Private.CoreLib.dll:System.RuntimeFieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle() +System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*) @@ -16983,7 +17871,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeMethodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle() +System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle() @@ -16991,6 +17885,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack) +System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object) System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle) @@ -17045,6 +17940,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal +System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() @@ -17057,6 +17953,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) System.Private.CoreLib.dll:System.RuntimeType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner +System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType @@ -17136,6 +18035,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType() System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition() System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT() System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray() +System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer() System.Private.CoreLib.dll:System.RuntimeType.get_MemberType() System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken() System.Private.CoreLib.dll:System.RuntimeType.get_Module() @@ -17166,6 +18066,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean) System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags) System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo) +System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes() System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType() System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments() @@ -17234,6 +18135,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&) System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception) System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes +System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes() System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes() @@ -17390,6 +18292,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache System.Private.CoreLib.dll:System.RuntimeTypeHandle +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context +System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle() @@ -17483,6 +18388,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType) +System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef() @@ -17636,6 +18542,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature +System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature() System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature() @@ -17646,6 +18554,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature() System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType) System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType) +System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions) System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature) System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle) @@ -17653,6 +18562,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments() System.Private.CoreLib.dll:System.Signature.get_CallingConvention() System.Private.CoreLib.dll:System.Signature.get_FieldType() System.Private.CoreLib.dll:System.Signature.get_ReturnType() +System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32) +System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single @@ -17869,6 +18783,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32) @@ -18154,7 +19069,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue() System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField +System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace() +System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName() System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name() @@ -18363,6 +19301,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.GetPinnableReference() System.Private.CoreLib.dll:System.String.GetRawStringData() +System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16() System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8() System.Private.CoreLib.dll:System.String.GetTypeCode() System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32) @@ -18376,6 +19315,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String) System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[]) System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32) System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char) System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&) @@ -18384,6 +19325,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String) System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1 System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String) +System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char) System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions) System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions) @@ -18486,6 +19428,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value +System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -19065,6 +20008,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String) System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder) System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean) +System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char) System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32) @@ -21433,8 +22377,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::g__ThrowArgumentException|35_0`1(System.String) -System.Private.CoreLib.dll:System.Version.g__ThrowFailure|49_0`1(System.Number/ParsingStatus, System.Int32, System.String, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Version.CompareTo(System.Object) System.Private.CoreLib.dll:System.Version.CompareTo(System.Version) System.Private.CoreLib.dll:System.Version.Equals(System.Object) @@ -22534,15 +23508,12 @@ System.Private.CoreLib.dll:System.Version.get_Revision() System.Private.CoreLib.dll:System.Version.GetHashCode() System.Private.CoreLib.dll:System.Version.op_Equality(System.Version, System.Version) System.Private.CoreLib.dll:System.Version.op_Inequality(System.Version, System.Version) -System.Private.CoreLib.dll:System.Version.Parse(System.String) -System.Private.CoreLib.dll:System.Version.ParseVersion`1(System.ReadOnlySpan`1, System.Boolean) System.Private.CoreLib.dll:System.Version.System.IFormattable.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Version.ToString() System.Private.CoreLib.dll:System.Version.ToString(System.Int32) System.Private.CoreLib.dll:System.Version.TryFormat(System.Span`1, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Version.TryFormatCore`1(System.Span`1, System.Int32, out System.Int32&) -System.Private.CoreLib.dll:System.Version.TryParseComponent`1(System.ReadOnlySpan`1, System.String, System.Boolean, System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Void System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::_pointer System.Private.CoreLib.dll:System.Void* System.Buffers.MemoryHandle::Pointer()