summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorjiseob.jang <jiseob.jang@samsung.com>2017-09-06 20:40:24 +0900
committerjiseob.jang <jiseob.jang@samsung.com>2017-09-07 11:55:42 +0900
commitcb9516da9df966079e5a34490139eec68c38dafa (patch)
tree39d5565943e78c35dd013cc771ed2980788fff38 /tests
parent61d6a817e39d3bae0f47dbc09838d51db22a5d30 (diff)
downloadcoreclr-upstream/2.0.0.12082.tar.gz
coreclr-upstream/2.0.0.12082.tar.bz2
coreclr-upstream/2.0.0.12082.zip
Imported Upstream version 2.0.0.12082upstream/2.0.0.12082
Diffstat (limited to 'tests')
-rw-r--r--tests/dir.props8
-rwxr-xr-xtests/runtest.sh12
-rwxr-xr-xtests/scripts/arm32_ci_script.sh7
-rwxr-xr-xtests/scripts/perf-prep.sh22
-rw-r--r--tests/setup-stress-dependencies.cmd117
-rwxr-xr-xtests/setup-stress-dependencies.sh133
-rw-r--r--tests/src/CLRTest.CrossGen.targets2
-rw-r--r--tests/src/CLRTest.Execute.Bash.targets8
-rw-r--r--tests/src/CLRTest.Execute.Batch.targets8
-rw-r--r--tests/src/Common/stress_dependencies/stress_dependencies.csproj28
-rw-r--r--tests/src/Common/test_dependencies/test_dependencies.csproj7
-rw-r--r--tests/src/Common/test_runtime/test_runtime.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj3
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj3
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj3
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj3
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj3
-rw-r--r--tests/src/JIT/Directed/nullabletypes/isinst.cs7680
-rw-r--r--tests/src/JIT/Directed/nullabletypes/isinst2.cs8640
-rw-r--r--tests/src/JIT/Directed/nullabletypes/isinstboxed.cs7200
-rw-r--r--tests/src/JIT/Directed/nullabletypes/isinstenum.cs360
-rw-r--r--tests/src/JIT/Directed/nullabletypes/isinstgenerics.cs8160
-rw-r--r--tests/src/JIT/Directed/nullabletypes/isinstinterface.cs3456
-rw-r--r--tests/src/JIT/Directed/nullabletypes/isinstvaluetype.cs9792
-rw-r--r--tests/src/JIT/Regression/CLR-x86-JIT/V1-M10/b08944/b08944b.csproj3
-rw-r--r--tests/src/JIT/Regression/JitBlue/DevDiv_461649/DevDiv_461649.cs54
-rw-r--r--tests/src/JIT/Regression/JitBlue/DevDiv_461649/DevDiv_461649.csproj44
-rw-r--r--tests/src/JIT/Regression/JitBlue/DevDiv_461649/Input.xml4
-rw-r--r--tests/src/JIT/Regression/JitBlue/DevDiv_461649/Transform.xsl30
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_12037/GitHub_12037.cs109
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_12037/GitHub_12037.csproj38
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_12392/GitHub_12392.cs108
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_12392/GitHub_12392.csproj38
-rw-r--r--tests/src/Regressions/coreclr/GitHub_12224/Test12224.csproj39
-rw-r--r--tests/src/Regressions/coreclr/GitHub_12224/test12224.cs43
-rw-r--r--tests/src/dir.props8
36 files changed, 23504 insertions, 22671 deletions
diff --git a/tests/dir.props b/tests/dir.props
index 96c3b2a6d9..50b752ed77 100644
--- a/tests/dir.props
+++ b/tests/dir.props
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
$(OS) is set to Unix/Windows_NT. This comes from an environment variable on Windows and MSBuild on Unix.
@@ -64,9 +65,14 @@
<!-- Provides properties for dependency versions and configures dependency verification/auto-upgrade. -->
<Import Project="$(ProjectDir)..\dependencies.props" />
+ <!-- Use Roslyn Compilers to build -->
+ <Import Project="$(RoslynPropsFile)" Condition="'$(RunningOnUnix)'!='true' and Exists('$(RoslynPropsFile)') and '$(UseRoslynCompilers)'!='false'" />
+ <Import Project="$(RoslynPropsFile)" Condition="'$(RunningOnUnix)'=='true' and Exists('$(RoslynPropsFile)')" />
+
+
<ItemGroup>
<!-- Need to escape double forward slash (%2F) or MSBuild will normalize to one slash on Unix. -->
- <DotnetSourceList Include="$(PackagesDir)AzureTransfer\$(__BuildType)\pkg\" Condition="'$(OverwriteCoreClrPackageVersion)' == 'true'" />
+ <DotnetSourceList Include="$(PackagesDir)AzureTransfer\" Condition="'$(OverwriteCoreClrPackageVersion)' == 'true'" />
<DotnetSourceList Include="https:%2F%2Fdotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json" />
<DotnetSourceList Include="https:%2F%2Fdotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<DotnetSourceList Include="https:%2F%2Fapi.nuget.org/v3/index.json" />
diff --git a/tests/runtest.sh b/tests/runtest.sh
index 439bbb66e6..82bbaff7e7 100755
--- a/tests/runtest.sh
+++ b/tests/runtest.sh
@@ -1202,6 +1202,18 @@ else
load_failing_tests
fi
+# Other architectures are not supported yet.
+if [ "$ARCH" == "x64" ]
+then
+ scriptPath=$(dirname $0)
+ ${scriptPath}/setup-stress-dependencies.sh --outputDir=$coreOverlayDir
+else
+ if [ "$ARCH" != "arm64" ]
+ then
+ echo "Skip preparing for GC stress test. Dependent package is not supported on this architecture."
+ fi
+fi
+
export __TestEnv=$testEnv
cd "$testRootDir"
diff --git a/tests/scripts/arm32_ci_script.sh b/tests/scripts/arm32_ci_script.sh
index 98f35066d4..e73e266fdb 100755
--- a/tests/scripts/arm32_ci_script.sh
+++ b/tests/scripts/arm32_ci_script.sh
@@ -289,9 +289,14 @@ function cross_build_coreclr_with_docker {
sudo chown -R $(id -u -n) cross/rootfs
fi
+ __extraArgs=""
+ if [[ "$__buildArch" == "armel" && "$__linuxCodeName" == "tizen" ]]; then
+ __extraArgs="cmakeargs -DFEATURE_GDBJIT=TRUE -PortableBuild=false"
+ fi
+
# Cross building coreclr with rootfs in Docker
(set +x; echo "Start cross build coreclr for $__buildArch $__linuxCodeName")
- __buildCmd="./build.sh $__buildArch cross $__verboseFlag $__skipMscorlib $__buildConfig -rebuild"
+ __buildCmd="./build.sh $__buildArch cross $__verboseFlag $__skipMscorlib $__buildConfig $__extraArgs -rebuild"
$__dockerCmd $__buildCmd
sudo chown -R $(id -u -n) ./bin
}
diff --git a/tests/scripts/perf-prep.sh b/tests/scripts/perf-prep.sh
index 4468dbb6f7..6882d8f6a3 100755
--- a/tests/scripts/perf-prep.sh
+++ b/tests/scripts/perf-prep.sh
@@ -64,27 +64,25 @@ python3.5 --version
python3.5 ./tests/scripts/Microsoft.BenchView.JSONFormat/tools/machinedata.py
if [ $throughput -eq 1 ]; then
- # Clone corefx
- if [ -d "_" ]; then
- rm -r -f _
+ # Download throughput benchmarks
+ if [ -d "Microsoft.Benchview.ThroughputBenchmarks.x64.Windows_NT" ]; then
+ rm -r -f Microsoft.Benchview.ThroughputBenchmarks.x64.Windows_NT
fi
- mkdir _
- git clone https://github.com/dotnet/corefx.git _/fx
- cd _/fx
+ mkdir Microsoft.Benchview.ThroughputBenchmarks.x64.Windows_NT
+ cd Microsoft.Benchview.ThroughputBenchmarks.x64.Windows_NT
- # Checkout the specific commit we want
- git checkout f0b9e238c08f62a1db90ef0378980ac771204d35
+ curl -OL https://dotnet.myget.org/F/dotnet-core/api/v2/package/Microsoft.Benchview.ThroughputBenchmarks.x64.Windows_NT/1.0.0
+ mv 1.0.0 1.0.0.zip
+ unzip -q 1.0.0.zip
- # Build
- ./build.sh -release
else
# Set up the copies
# Coreclr build containing the tests and mscorlib
- curl https://ci.dot.net/job/$perfBranch/job/master/job/release_windows_nt/lastSuccessfulBuild/artifact/bin/tests/tests.zip -o tests.zip
+ curl https://ci.dot.net/job/$perfBranch/job/release_2.0.0/job/release_windows_nt/lastSuccessfulBuild/artifact/bin/tests/tests.zip -o tests.zip
# Corefx components. We now have full stack builds on all distros we test here, so we can copy straight from CoreFX jobs.
mkdir corefx
- curl https://ci.dot.net/job/dotnet_corefx/job/master/job/ubuntu14.04_release/lastSuccessfulBuild/artifact/bin/build.tar.gz -o ./corefx/build.tar.gz
+ curl https://ci.dot.net/job/dotnet_corefx/job/release_2.0.0/job/ubuntu14.04_release/lastSuccessfulBuild/artifact/bin/build.tar.gz -o ./corefx/build.tar.gz
# Unpack the corefx binaries
pushd corefx > /dev/null
diff --git a/tests/setup-stress-dependencies.cmd b/tests/setup-stress-dependencies.cmd
new file mode 100644
index 0000000000..0770e858a5
--- /dev/null
+++ b/tests/setup-stress-dependencies.cmd
@@ -0,0 +1,117 @@
+@if not defined _echo @echo off
+setlocal
+
+set __ThisScriptShort=%0
+set __ThisScriptFull=%~f0
+set __ThisScriptPath=%~dp0
+
+REM =========================================================================================
+REM ===
+REM === Parse arguments
+REM ===
+REM =========================================================================================
+
+set __OutputDir=
+set __Arch=
+
+:Arg_Loop
+if "%1" == "" goto ArgsDone
+
+if /i "%1" == "/?" goto Usage
+if /i "%1" == "-?" goto Usage
+if /i "%1" == "/h" goto Usage
+if /i "%1" == "-h" goto Usage
+if /i "%1" == "/help" goto Usage
+if /i "%1" == "-help" goto Usage
+
+if /i "%1" == "/arch" (set __Arch=%2&shift&shift&goto Arg_Loop)
+if /i "%1" == "/outputdir" (set __OutputDir=%2&shift&shift&goto Arg_Loop)
+
+echo Invalid command-line argument: %1
+goto Usage
+
+:ArgsDone
+
+if not defined __OutputDir goto Usage
+if not defined __Arch goto Usage
+
+REM Check if the platform is supported
+if /i %__Arch% == "arm" (
+ echo No runtime dependencies for Arm32.
+ exit /b 0
+ )
+
+REM =========================================================================================
+REM ===
+REM === Check if dotnet CLI and necessary directories exist
+REM ===
+REM =========================================================================================
+
+set __DotNetToolDir=%__ThisScriptPath%..\Tools
+set __DotNetCmd=%__DotNetToolDir%\dotnetcli\dotnet.exe
+set __PackageDir=%__ThisScriptPath%..\Packages
+set __CsprojPath=%__ThisScriptPath%\src\Common\stress_dependencies\stress_dependencies.csproj
+
+REM Check if dotnet cli exists
+if not exist "%__DotNetToolDir%" (
+ echo Directory containing dotnet CLI does not exist: %__DotNetToolDir%
+ goto Fail
+)
+if not exist "%__DotNetCmd%" (
+ echo dotnet.exe does not exist: %__DotNetCmd%
+ goto Fail
+)
+
+REM Create directories needed
+if not exist "%__PackageDir%" md "%__PackageDir%"
+if not exist "%__OutputDir%" md "%__OutputDir%"
+
+REM =========================================================================================
+REM ===
+REM === Download packages
+REM ===
+REM =========================================================================================
+
+REM Download the package
+echo Downloading CoreDisTools package
+set DOTNETCMD="%__DotNetCmd%" restore "%__CsprojPath%" --source https://dotnet.myget.org/F/dotnet-core/ --packages "%__PackageDir%"
+echo %DOTNETCMD%
+call %DOTNETCMD%
+if errorlevel 1 goto Fail
+
+REM Get downloaded dll path
+echo Locating coredistools.dll
+FOR /F "delims=" %%i IN ('dir %__PackageDir%\coredistools.dll /b/s ^| findstr /R "runtime.win[0-9]*-%__Arch%"') DO set __LibPath=%%i
+echo CoreDisTools library path: %__LibPath%
+if not exist "%__LibPath%" (
+ echo Failed to locate the downloaded library: %__LibPath%
+ goto Fail
+)
+
+REM Copy library to output directory
+echo Copy library: %__LibPath% to %__OutputDir%
+copy /y "%__LibPath%" "%__OutputDir%"
+if errorlevel 1 (
+ echo Failed to copy %__LibPath% to %__OutputDir%
+ goto Fail
+)
+
+exit /b 0
+
+:Fail
+exit /b 1
+
+REM =========================================================================================
+REM ===
+REM === Helper routines
+REM ===
+REM =========================================================================================
+
+:Usage
+echo.
+echo Download coredistools for GC stress testing
+echo.
+echo Usage:
+echo %__ThisScriptShort% /arch ^<TargetArch^> /outputdir ^<coredistools_lib_install_path^>
+echo.
+exit /b 1 \ No newline at end of file
diff --git a/tests/setup-stress-dependencies.sh b/tests/setup-stress-dependencies.sh
new file mode 100755
index 0000000000..a7f3c498c1
--- /dev/null
+++ b/tests/setup-stress-dependencies.sh
@@ -0,0 +1,133 @@
+#!/usr/bin/env bash
+# set -x
+
+#
+# Constants
+#
+readonly EXIT_CODE_SUCCESS=0
+
+#
+# This script should be located in coreclr/tests.
+#
+
+function print_usage {
+ echo ''
+ echo 'Download coredistools for GC stress testing'
+ echo ''
+ echo 'Command line:'
+ echo ''
+ echo './setup-gcstress.sh --outputDir=<coredistools_lib_install_path>'
+ echo ''
+ echo 'Required arguments:'
+ echo ' --outputDir=<path> : Directory to install libcoredistools.so'
+ echo ''
+}
+
+function exit_with_error {
+ local errorCode=$1
+ local errorMsg=$2
+
+ if [ ! -z "$2" ]; then
+ echo $2
+ fi
+
+ exit $errorCode
+}
+
+function handle_ctrl_c {
+ exit_with_error 1 'Aborted by Ctrl+C'
+ }
+
+# Register the Ctrl-C handler
+trap handle_ctrl_c INT
+
+# Argument variables
+libInstallDir=
+
+# Handle arguments
+verbose=0
+for i in "$@"
+do
+ case $i in
+ -h|--help)
+ exit $EXIT_CODE_SUCCESS
+ ;;
+ -v|--verbose)
+ verbose=1
+ ;;
+ --outputDir=*)
+ libInstallDir=${i#*=}
+ ;;
+ *)
+ echo "Unknown switch: $i"
+ print_usage
+ exit $EXIT_CODE_SUCCESS
+ ;;
+ esac
+done
+
+if [ -z "$libInstallDir" ]; then
+ echo "--libInstallDir is required."
+ print_usage
+ exit_with_error 1
+fi
+
+# This script must be located in coreclr/tests.
+scriptDir=$(cd "$(dirname "$0")"; pwd -P)
+
+echo "Running init-tools.sh"
+$scriptDir/../init-tools.sh
+
+dotnetToolsDir=$scriptDir/../Tools
+dotnetCmd=${dotnetToolsDir}/dotnetcli/dotnet
+packageDir=${scriptDir}/../packages
+csprojPath=${scriptDir}/src/Common/stress_dependencies/stress_dependencies.csproj
+
+# Check tool directory
+if [ ! -e $dotnetToolsDir ]; then
+ exit_with_error 1 'Directory containing dotnet commandline does not exist:'$dotnetToolsDir
+fi
+if [ ! -e $dotnetCmd ]; then
+ exit_with_error 1 'dotnet commandline does not exist:'$dotnetCmd
+fi
+
+# make package directory
+if [ ! -e $packageDir ]; then
+ mkdir -p $packageDir
+fi
+
+# make output directory
+if [ ! -e $libInstallDir ]; then
+ mkdir -p $libInstallDir
+fi
+
+# Query runtime Id
+rid=`$dotnetCmd --info | grep 'RID:' | sed 's/^ *RID: *//g'`
+if [ -z "$rid" ]; then
+ exit_with_error 1 "Failed to query runtime Id"
+fi
+
+# Download the package
+echo Downloading CoreDisTools package
+bash -c -x "$dotnetCmd restore $csprojPath --source https://dotnet.myget.org/F/dotnet-core/ --packages $packageDir"
+if [ $? -ne 0 ]
+then
+ exit_with_error 1 "Failed to restore the package"
+fi
+
+# Get library path
+libPath=`find $packageDir | grep $rid | grep -m 1 libcoredistools`
+if [ ! -e $libPath ]; then
+ exit_with_error 1 'Failed to locate the downloaded library'
+fi
+
+# Copy library to output directory
+echo 'Copy library:' $libPath '-->' $libInstallDir/
+cp -f $libPath $libInstallDir
+if [ $? -ne 0 ]
+then
+ exit_with_error 1 "Failed to copy the library"
+fi
+
+# Return success
+exit $EXIT_CODE_SUCCESS
diff --git a/tests/src/CLRTest.CrossGen.targets b/tests/src/CLRTest.CrossGen.targets
index 6bb5cdb103..eab4f056fd 100644
--- a/tests/src/CLRTest.CrossGen.targets
+++ b/tests/src/CLRTest.CrossGen.targets
@@ -103,4 +103,4 @@ if defined RunCrossGen (
-</Project>
+</Project> \ No newline at end of file
diff --git a/tests/src/CLRTest.Execute.Bash.targets b/tests/src/CLRTest.Execute.Bash.targets
index f95408f512..1ce7b845ee 100644
--- a/tests/src/CLRTest.Execute.Bash.targets
+++ b/tests/src/CLRTest.Execute.Bash.targets
@@ -255,9 +255,15 @@ fi
ExePath=$(InputAssemblyName)
$(BashLinkerTestLaunchCmds)
$(BashCLRTestLaunchCmds)
+if [ ! -z ${RunCrossGen+x} ]%3B then
+ TakeLock
+fi
echo $_DebuggerFullPath $(_CLRTestRunFile) $ExePath $CLRTestExecutionArguments
$_DebuggerFullPath $(_CLRTestRunFile) $ExePath $CLRTestExecutionArguments
CLRTestExitCode=$?
+if [ ! -z ${RunCrossGen+x} ]%3B then
+ ReleaseLock
+fi
$(BashLinkerTestCleanupCmds)
]]></BashCLRTestLaunchCmds>
<BashCLRTestLaunchCmds Condition="'$(CLRTestKind)' == 'RunOnly'"><![CDATA[
@@ -394,4 +400,4 @@ $(BashCLRTestExitCodeCheck)
Overwrite="true" />
</Target>
-</Project>
+</Project> \ No newline at end of file
diff --git a/tests/src/CLRTest.Execute.Batch.targets b/tests/src/CLRTest.Execute.Batch.targets
index 545fc72eb2..dfd87bad5f 100644
--- a/tests/src/CLRTest.Execute.Batch.targets
+++ b/tests/src/CLRTest.Execute.Batch.targets
@@ -261,9 +261,15 @@ set ExePath=$(InputAssemblyName)
$(BatchLinkerTestLaunchCmds)
$(BatchCLRTestLaunchCmds)
+if defined RunCrossGen (
+ call :TakeLock
+)
ECHO %LAUNCHER% %ExePath% %CLRTestExecutionArguments%
%LAUNCHER% %ExePath% %CLRTestExecutionArguments%
set CLRTestExitCode=!ERRORLEVEL!
+if defined RunCrossGen (
+ call :ReleaseLock
+)
$(BatchLinkerTestCleanupCmds)
]]></BatchCLRTestLaunchCmds>
@@ -385,4 +391,4 @@ $(BatchCLRTestExitCodeCheck)
Overwrite="true" />
</Target>
-</Project>
+</Project> \ No newline at end of file
diff --git a/tests/src/Common/stress_dependencies/stress_dependencies.csproj b/tests/src/Common/stress_dependencies/stress_dependencies.csproj
new file mode 100644
index 0000000000..e33ee1efd3
--- /dev/null
+++ b/tests/src/Common/stress_dependencies/stress_dependencies.csproj
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <CLRTestKind>BuildOnly</CLRTestKind>
+ <NugetTargetMoniker>.NETCoreApp,Version=v2.0</NugetTargetMoniker>
+ <NugetTargetMonikerShort>netcoreapp2.0</NugetTargetMonikerShort>
+ <IsTestProject>false</IsTestProject>
+ </PropertyGroup>
+ <ItemGroup>
+ <PackageReference Include="Microsoft.NETCore.CoreDisTools">
+ <Version>1.0.1-prerelease-*</Version>
+ </PackageReference>
+ </ItemGroup>
+ <PropertyGroup>
+ <TargetFramework>netcoreapp2.0</TargetFramework>
+ <TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier>
+ <PackageTargetFallback>$(PackageTargetFallback);dnxcore50</PackageTargetFallback>
+ <RuntimeIdentifiers>win7-x64;ubuntu.14.04-x64;osx.10.10-x64;win7-x86;ubuntu.14.04-x86;osx.10.10-x86</RuntimeIdentifiers>
+ <ContainsPackageReferences>true</ContainsPackageReferences>
+ <PrereleaseResolveNuGetPackages>false</PrereleaseResolveNuGetPackages>
+ </PropertyGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <Target Name="Build"
+ DependsOnTargets="ResolveReferences" />
+</Project> \ No newline at end of file
diff --git a/tests/src/Common/test_dependencies/test_dependencies.csproj b/tests/src/Common/test_dependencies/test_dependencies.csproj
index f5b1b319c7..7fc3abdc1c 100644
--- a/tests/src/Common/test_dependencies/test_dependencies.csproj
+++ b/tests/src/Common/test_dependencies/test_dependencies.csproj
@@ -10,9 +10,6 @@
<IsTestProject>false</IsTestProject>
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="Microsoft.NETCore.CoreDisTools">
- <Version>1.0.1-prerelease-*</Version>
- </PackageReference>
<PackageReference Include="Microsoft.Private.CoreFx.NETCoreApp">
<Version>4.4.0-$(CoreFxExpectedPrerelease)</Version>
</PackageReference>
@@ -30,11 +27,11 @@
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier>
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50;netcoreapp1.1;portable-net45+win8</PackageTargetFallback>
- <RuntimeIdentifiers>win-x64;win-x86;win7-x86;win7-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;osx.10.12-x64;osx-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;linux-x64</RuntimeIdentifiers>
+ <RuntimeIdentifiers>win-x64;win-x86;win7-x86;win7-x64;win-arm64;win-arm;win7-arm64;win7-arm;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;osx.10.12-x64;osx-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;linux-x64</RuntimeIdentifiers>
<ContainsPackageReferences>true</ContainsPackageReferences>
<PrereleaseResolveNuGetPackages>false</PrereleaseResolveNuGetPackages>
</PropertyGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
<Target Name="Build"
DependsOnTargets="ResolveReferences" />
-</Project> \ No newline at end of file
+</Project>
diff --git a/tests/src/Common/test_runtime/test_runtime.csproj b/tests/src/Common/test_runtime/test_runtime.csproj
index 0212b05274..4807adf7a9 100644
--- a/tests/src/Common/test_runtime/test_runtime.csproj
+++ b/tests/src/Common/test_runtime/test_runtime.csproj
@@ -30,7 +30,7 @@
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier>
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50;portable-net45+win8</PackageTargetFallback>
- <RuntimeIdentifiers>win-x64;win-x86;win7-x86;win7-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;osx.10.12-x64;osx-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;linux-x64</RuntimeIdentifiers>
+ <RuntimeIdentifiers>win-x64;win-x86;win7-x86;win7-x64;win-arm64;win-arm;win7-arm64;win7-arm;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;osx.10.12-x64;osx-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;linux-x64</RuntimeIdentifiers>
<ContainsPackageReferences>true</ContainsPackageReferences>
<PrereleaseResolveNuGetPackages>false</PrereleaseResolveNuGetPackages>
</PropertyGroup>
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj
index 4a206ae9a0..c78ffefd05 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj
@@ -11,6 +11,9 @@
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ <!-- This test is disabled until #12224 is fixed -->
+ <GCStressIncompatible>true</GCStressIncompatible>
+
<DefineConstants>$(DefineConstants);STATIC</DefineConstants>
</PropertyGroup>
<!-- Default configurations to help VS understand the configurations -->
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj
index b540fb180d..fc63d21d4e 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj
@@ -11,6 +11,9 @@
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ <!-- This test is disabled until #12224 is fixed -->
+ <GCStressIncompatible>true</GCStressIncompatible>
+
<DefineConstants>$(DefineConstants);STATIC</DefineConstants>
</PropertyGroup>
<!-- Default configurations to help VS understand the configurations -->
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj
index 7b6a948b61..0aea271102 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj
@@ -11,6 +11,9 @@
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ <!-- This test is disabled until #12224 is fixed -->
+ <GCStressIncompatible>true</GCStressIncompatible>
+
<DefineConstants>$(DefineConstants);STATIC</DefineConstants>
</PropertyGroup>
<!-- Default configurations to help VS understand the configurations -->
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj
index 91e6ea75c7..685368be92 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj
@@ -11,6 +11,9 @@
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ <!-- This test is disabled until #12224 is fixed -->
+ <GCStressIncompatible>true</GCStressIncompatible>
+
<DefineConstants>$(DefineConstants);STATIC</DefineConstants>
</PropertyGroup>
<!-- Default configurations to help VS understand the configurations -->
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj
index 366a5c5f27..5287d8853d 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj
@@ -11,6 +11,9 @@
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ <!-- This test is disabled until #12224 is fixed -->
+ <GCStressIncompatible>true</GCStressIncompatible>
+
<DefineConstants>$(DefineConstants);STATIC</DefineConstants>
</PropertyGroup>
<!-- Default configurations to help VS understand the configurations -->
diff --git a/tests/src/JIT/Directed/nullabletypes/isinst.cs b/tests/src/JIT/Directed/nullabletypes/isinst.cs
index b747f484c2..9a7b496907 100644
--- a/tests/src/JIT/Directed/nullabletypes/isinst.cs
+++ b/tests/src/JIT/Directed/nullabletypes/isinst.cs
@@ -28,26 +28,26 @@ internal class Program
Eval(0006, v is NotEmptyStruct[], false);
Eval(0007, v is NotEmptyStruct?, false);
Eval(0008, v is NotEmptyStruct?[], false);
- Eval(0009, v is EmptyStructGen<int>, false);
- Eval(0010, v is EmptyStructGen<int>[], false);
- Eval(0011, v is EmptyStructGen<int>?, false);
- Eval(0012, v is EmptyStructGen<int>?[], false);
- Eval(0013, v is NotEmptyStructGen<Guid>, false);
- Eval(0014, v is NotEmptyStructGen<Guid>[], false);
- Eval(0015, v is NotEmptyStructGen<Guid>?, false);
- Eval(0016, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0017, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0018, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0019, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0020, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0009, v is EmptyStructGen<int>, false);
+// Eval(0010, v is EmptyStructGen<int>[], false);
+// Eval(0011, v is EmptyStructGen<int>?, false);
+// Eval(0012, v is EmptyStructGen<int>?[], false);
+// Eval(0013, v is NotEmptyStructGen<Guid>, false);
+// Eval(0014, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0015, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0016, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0017, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0018, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0019, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0020, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0021, v is NestedStruct, false);
Eval(0022, v is NestedStruct[], false);
Eval(0023, v is NestedStruct?, false);
Eval(0024, v is NestedStruct?[], false);
- Eval(0025, v is NestedStructGen<Decimal>, false);
- Eval(0026, v is NestedStructGen<Decimal>[], false);
- Eval(0027, v is NestedStructGen<Decimal>?, false);
- Eval(0028, v is NestedStructGen<Decimal>?[], false);
+// Eval(0025, v is NestedStructGen<Decimal>, false);
+// Eval(0026, v is NestedStructGen<Decimal>[], false);
+// Eval(0027, v is NestedStructGen<Decimal>?, false);
+// Eval(0028, v is NestedStructGen<Decimal>?[], false);
Eval(0029, v is ExplicitFieldOffsetStruct, false);
Eval(0030, v is ExplicitFieldOffsetStruct[], false);
Eval(0031, v is ExplicitFieldOffsetStruct?, false);
@@ -64,18 +64,18 @@ internal class Program
Eval(0050, v is ImplementTwoInterface[], false);
Eval(0051, v is ImplementTwoInterface?, false);
Eval(0052, v is ImplementTwoInterface?[], false);
- Eval(0053, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0054, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0055, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0056, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0057, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0058, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0059, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0060, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0061, v is ImplementAllInterface<int>, false);
- Eval(0062, v is ImplementAllInterface<int>[], false);
- Eval(0063, v is ImplementAllInterface<int>?, false);
- Eval(0064, v is ImplementAllInterface<int>?[], false);
+// Eval(0053, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0054, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0055, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0056, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0057, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0058, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0059, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0060, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0061, v is ImplementAllInterface<int>, false);
+// Eval(0062, v is ImplementAllInterface<int>[], false);
+// Eval(0063, v is ImplementAllInterface<int>?, false);
+// Eval(0064, v is ImplementAllInterface<int>?[], false);
Eval(0065, v is IntE, false);
Eval(0066, v is IntE[], false);
Eval(0067, v is IntE?, false);
@@ -174,38 +174,38 @@ internal class Program
Eval(0160, v is IEmpty[], false);
Eval(0161, v is INotEmpty, false);
Eval(0162, v is INotEmpty[], false);
- Eval(0163, v is IEmptyGen<int>, false);
- Eval(0164, v is IEmptyGen<int>[], false);
- Eval(0165, v is INotEmptyGen<int>, false);
- Eval(0166, v is INotEmptyGen<int>[], false);
+// Eval(0163, v is IEmptyGen<int>, false);
+// Eval(0164, v is IEmptyGen<int>[], false);
+// Eval(0165, v is INotEmptyGen<int>, false);
+// Eval(0166, v is INotEmptyGen<int>[], false);
Eval(0167, v is SimpleDelegate, false);
Eval(0168, v is SimpleDelegate[], false);
- Eval(0169, v is GenericDelegate<int>, false);
- Eval(0170, v is GenericDelegate<int>[], false);
+// Eval(0169, v is GenericDelegate<int>, false);
+// Eval(0170, v is GenericDelegate<int>[], false);
Eval(0171, v is EmptyClass, false);
Eval(0172, v is EmptyClass[], false);
Eval(0173, v is NotEmptyClass, false);
Eval(0174, v is NotEmptyClass[], false);
- Eval(0175, v is EmptyClassGen<int>, false);
- Eval(0176, v is EmptyClassGen<int>[], false);
- Eval(0177, v is NotEmptyClassGen<Guid>, false);
- Eval(0178, v is NotEmptyClassGen<Guid>[], false);
- Eval(0179, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0180, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0175, v is EmptyClassGen<int>, false);
+// Eval(0176, v is EmptyClassGen<int>[], false);
+// Eval(0177, v is NotEmptyClassGen<Guid>, false);
+// Eval(0178, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0179, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0180, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0181, v is NestedClass, false);
Eval(0182, v is NestedClass[], false);
- Eval(0183, v is NestedClassGen<Decimal>, false);
- Eval(0184, v is NestedClassGen<Decimal>[], false);
+// Eval(0183, v is NestedClassGen<Decimal>, false);
+// Eval(0184, v is NestedClassGen<Decimal>[], false);
Eval(0185, v is ImplementOneInterfaceC, false);
Eval(0186, v is ImplementOneInterfaceC[], false);
Eval(0187, v is ImplementTwoInterfaceC, false);
Eval(0188, v is ImplementTwoInterfaceC[], false);
- Eval(0189, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0190, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0191, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0192, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0193, v is ImplementAllInterfaceC<int>, false);
- Eval(0194, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0189, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0190, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0191, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0192, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0193, v is ImplementAllInterfaceC<int>, false);
+// Eval(0194, v is ImplementAllInterfaceC<int>[], false);
Eval(0195, v is SealedClass, false);
Eval(0196, v is SealedClass[], false);
}
@@ -219,26 +219,26 @@ internal class Program
Eval(0202, v is NotEmptyStruct[], false);
Eval(0203, v is NotEmptyStruct?, false);
Eval(0204, v is NotEmptyStruct?[], false);
- Eval(0205, v is EmptyStructGen<int>, false);
- Eval(0206, v is EmptyStructGen<int>[], false);
- Eval(0207, v is EmptyStructGen<int>?, false);
- Eval(0208, v is EmptyStructGen<int>?[], false);
- Eval(0209, v is NotEmptyStructGen<Guid>, false);
- Eval(0210, v is NotEmptyStructGen<Guid>[], false);
- Eval(0211, v is NotEmptyStructGen<Guid>?, false);
- Eval(0212, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0213, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0214, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0215, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0216, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0205, v is EmptyStructGen<int>, false);
+// Eval(0206, v is EmptyStructGen<int>[], false);
+// Eval(0207, v is EmptyStructGen<int>?, false);
+// Eval(0208, v is EmptyStructGen<int>?[], false);
+// Eval(0209, v is NotEmptyStructGen<Guid>, false);
+// Eval(0210, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0211, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0212, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0213, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0214, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0215, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0216, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0217, v is NestedStruct, false);
Eval(0218, v is NestedStruct[], false);
Eval(0219, v is NestedStruct?, false);
Eval(0220, v is NestedStruct?[], false);
- Eval(0221, v is NestedStructGen<Decimal>, false);
- Eval(0222, v is NestedStructGen<Decimal>[], false);
- Eval(0223, v is NestedStructGen<Decimal>?, false);
- Eval(0224, v is NestedStructGen<Decimal>?[], false);
+// Eval(0221, v is NestedStructGen<Decimal>, false);
+// Eval(0222, v is NestedStructGen<Decimal>[], false);
+// Eval(0223, v is NestedStructGen<Decimal>?, false);
+// Eval(0224, v is NestedStructGen<Decimal>?[], false);
Eval(0225, v is ExplicitFieldOffsetStruct, false);
Eval(0226, v is ExplicitFieldOffsetStruct[], false);
Eval(0227, v is ExplicitFieldOffsetStruct?, false);
@@ -255,18 +255,18 @@ internal class Program
Eval(0246, v is ImplementTwoInterface[], false);
Eval(0247, v is ImplementTwoInterface?, false);
Eval(0248, v is ImplementTwoInterface?[], false);
- Eval(0249, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0250, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0251, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0252, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0253, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0254, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0255, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0256, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0257, v is ImplementAllInterface<int>, false);
- Eval(0258, v is ImplementAllInterface<int>[], false);
- Eval(0259, v is ImplementAllInterface<int>?, false);
- Eval(0260, v is ImplementAllInterface<int>?[], false);
+// Eval(0249, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0250, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0251, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0252, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0253, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0254, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0255, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0256, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0257, v is ImplementAllInterface<int>, false);
+// Eval(0258, v is ImplementAllInterface<int>[], false);
+// Eval(0259, v is ImplementAllInterface<int>?, false);
+// Eval(0260, v is ImplementAllInterface<int>?[], false);
Eval(0261, v is IntE, false);
Eval(0262, v is IntE[], false);
Eval(0263, v is IntE?, false);
@@ -365,38 +365,38 @@ internal class Program
Eval(0356, v is IEmpty[], false);
Eval(0357, v is INotEmpty, false);
Eval(0358, v is INotEmpty[], false);
- Eval(0359, v is IEmptyGen<int>, false);
- Eval(0360, v is IEmptyGen<int>[], false);
- Eval(0361, v is INotEmptyGen<int>, false);
- Eval(0362, v is INotEmptyGen<int>[], false);
+// Eval(0359, v is IEmptyGen<int>, false);
+// Eval(0360, v is IEmptyGen<int>[], false);
+// Eval(0361, v is INotEmptyGen<int>, false);
+// Eval(0362, v is INotEmptyGen<int>[], false);
Eval(0363, v is SimpleDelegate, false);
Eval(0364, v is SimpleDelegate[], false);
- Eval(0365, v is GenericDelegate<int>, false);
- Eval(0366, v is GenericDelegate<int>[], false);
+// Eval(0365, v is GenericDelegate<int>, false);
+// Eval(0366, v is GenericDelegate<int>[], false);
Eval(0367, v is EmptyClass, false);
Eval(0368, v is EmptyClass[], false);
Eval(0369, v is NotEmptyClass, false);
Eval(0370, v is NotEmptyClass[], false);
- Eval(0371, v is EmptyClassGen<int>, false);
- Eval(0372, v is EmptyClassGen<int>[], false);
- Eval(0373, v is NotEmptyClassGen<Guid>, false);
- Eval(0374, v is NotEmptyClassGen<Guid>[], false);
- Eval(0375, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0376, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0371, v is EmptyClassGen<int>, false);
+// Eval(0372, v is EmptyClassGen<int>[], false);
+// Eval(0373, v is NotEmptyClassGen<Guid>, false);
+// Eval(0374, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0375, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0376, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0377, v is NestedClass, false);
Eval(0378, v is NestedClass[], false);
- Eval(0379, v is NestedClassGen<Decimal>, false);
- Eval(0380, v is NestedClassGen<Decimal>[], false);
+// Eval(0379, v is NestedClassGen<Decimal>, false);
+// Eval(0380, v is NestedClassGen<Decimal>[], false);
Eval(0381, v is ImplementOneInterfaceC, false);
Eval(0382, v is ImplementOneInterfaceC[], false);
Eval(0383, v is ImplementTwoInterfaceC, false);
Eval(0384, v is ImplementTwoInterfaceC[], false);
- Eval(0385, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0386, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0387, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0388, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0389, v is ImplementAllInterfaceC<int>, false);
- Eval(0390, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0385, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0386, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0387, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0388, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0389, v is ImplementAllInterfaceC<int>, false);
+// Eval(0390, v is ImplementAllInterfaceC<int>[], false);
Eval(0391, v is SealedClass, false);
Eval(0392, v is SealedClass[], false);
}
@@ -410,26 +410,26 @@ internal class Program
Eval(0398, v is NotEmptyStruct[], false);
Eval(0399, v is NotEmptyStruct?, false);
Eval(0400, v is NotEmptyStruct?[], false);
- Eval(0401, v is EmptyStructGen<int>, false);
- Eval(0402, v is EmptyStructGen<int>[], false);
- Eval(0403, v is EmptyStructGen<int>?, false);
- Eval(0404, v is EmptyStructGen<int>?[], false);
- Eval(0405, v is NotEmptyStructGen<Guid>, false);
- Eval(0406, v is NotEmptyStructGen<Guid>[], false);
- Eval(0407, v is NotEmptyStructGen<Guid>?, false);
- Eval(0408, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0409, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0410, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0411, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0412, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0401, v is EmptyStructGen<int>, false);
+// Eval(0402, v is EmptyStructGen<int>[], false);
+// Eval(0403, v is EmptyStructGen<int>?, false);
+// Eval(0404, v is EmptyStructGen<int>?[], false);
+// Eval(0405, v is NotEmptyStructGen<Guid>, false);
+// Eval(0406, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0407, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0408, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0409, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0410, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0411, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0412, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0413, v is NestedStruct, false);
Eval(0414, v is NestedStruct[], false);
Eval(0415, v is NestedStruct?, false);
Eval(0416, v is NestedStruct?[], false);
- Eval(0417, v is NestedStructGen<Decimal>, false);
- Eval(0418, v is NestedStructGen<Decimal>[], false);
- Eval(0419, v is NestedStructGen<Decimal>?, false);
- Eval(0420, v is NestedStructGen<Decimal>?[], false);
+// Eval(0417, v is NestedStructGen<Decimal>, false);
+// Eval(0418, v is NestedStructGen<Decimal>[], false);
+// Eval(0419, v is NestedStructGen<Decimal>?, false);
+// Eval(0420, v is NestedStructGen<Decimal>?[], false);
Eval(0421, v is ExplicitFieldOffsetStruct, false);
Eval(0422, v is ExplicitFieldOffsetStruct[], false);
Eval(0423, v is ExplicitFieldOffsetStruct?, false);
@@ -446,18 +446,18 @@ internal class Program
Eval(0442, v is ImplementTwoInterface[], false);
Eval(0443, v is ImplementTwoInterface?, false);
Eval(0444, v is ImplementTwoInterface?[], false);
- Eval(0445, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0446, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0447, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0448, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0449, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0450, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0451, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0452, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0453, v is ImplementAllInterface<int>, false);
- Eval(0454, v is ImplementAllInterface<int>[], false);
- Eval(0455, v is ImplementAllInterface<int>?, false);
- Eval(0456, v is ImplementAllInterface<int>?[], false);
+// Eval(0445, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0446, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0447, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0448, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0449, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0450, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0451, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0452, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0453, v is ImplementAllInterface<int>, false);
+// Eval(0454, v is ImplementAllInterface<int>[], false);
+// Eval(0455, v is ImplementAllInterface<int>?, false);
+// Eval(0456, v is ImplementAllInterface<int>?[], false);
Eval(0457, v is IntE, false);
Eval(0458, v is IntE[], false);
Eval(0459, v is IntE?, false);
@@ -556,38 +556,38 @@ internal class Program
Eval(0552, v is IEmpty[], false);
Eval(0553, v is INotEmpty, false);
Eval(0554, v is INotEmpty[], false);
- Eval(0555, v is IEmptyGen<int>, false);
- Eval(0556, v is IEmptyGen<int>[], false);
- Eval(0557, v is INotEmptyGen<int>, false);
- Eval(0558, v is INotEmptyGen<int>[], false);
+// Eval(0555, v is IEmptyGen<int>, false);
+// Eval(0556, v is IEmptyGen<int>[], false);
+// Eval(0557, v is INotEmptyGen<int>, false);
+// Eval(0558, v is INotEmptyGen<int>[], false);
Eval(0559, v is SimpleDelegate, false);
Eval(0560, v is SimpleDelegate[], false);
- Eval(0561, v is GenericDelegate<int>, false);
- Eval(0562, v is GenericDelegate<int>[], false);
+// Eval(0561, v is GenericDelegate<int>, false);
+// Eval(0562, v is GenericDelegate<int>[], false);
Eval(0563, v is EmptyClass, false);
Eval(0564, v is EmptyClass[], false);
Eval(0565, v is NotEmptyClass, false);
Eval(0566, v is NotEmptyClass[], false);
- Eval(0567, v is EmptyClassGen<int>, false);
- Eval(0568, v is EmptyClassGen<int>[], false);
- Eval(0569, v is NotEmptyClassGen<Guid>, false);
- Eval(0570, v is NotEmptyClassGen<Guid>[], false);
- Eval(0571, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0572, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0567, v is EmptyClassGen<int>, false);
+// Eval(0568, v is EmptyClassGen<int>[], false);
+// Eval(0569, v is NotEmptyClassGen<Guid>, false);
+// Eval(0570, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0571, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0572, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0573, v is NestedClass, false);
Eval(0574, v is NestedClass[], false);
- Eval(0575, v is NestedClassGen<Decimal>, false);
- Eval(0576, v is NestedClassGen<Decimal>[], false);
+// Eval(0575, v is NestedClassGen<Decimal>, false);
+// Eval(0576, v is NestedClassGen<Decimal>[], false);
Eval(0577, v is ImplementOneInterfaceC, false);
Eval(0578, v is ImplementOneInterfaceC[], false);
Eval(0579, v is ImplementTwoInterfaceC, false);
Eval(0580, v is ImplementTwoInterfaceC[], false);
- Eval(0581, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0582, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0583, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0584, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0585, v is ImplementAllInterfaceC<int>, false);
- Eval(0586, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0581, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0582, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0583, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0584, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0585, v is ImplementAllInterfaceC<int>, false);
+// Eval(0586, v is ImplementAllInterfaceC<int>[], false);
Eval(0587, v is SealedClass, false);
Eval(0588, v is SealedClass[], false);
}
@@ -601,26 +601,26 @@ internal class Program
Eval(0594, v is NotEmptyStruct[], false);
Eval(0595, v is NotEmptyStruct?, false);
Eval(0596, v is NotEmptyStruct?[], false);
- Eval(0597, v is EmptyStructGen<int>, false);
- Eval(0598, v is EmptyStructGen<int>[], false);
- Eval(0599, v is EmptyStructGen<int>?, false);
- Eval(0600, v is EmptyStructGen<int>?[], false);
- Eval(0601, v is NotEmptyStructGen<Guid>, false);
- Eval(0602, v is NotEmptyStructGen<Guid>[], false);
- Eval(0603, v is NotEmptyStructGen<Guid>?, false);
- Eval(0604, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0605, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0606, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0607, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0608, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0597, v is EmptyStructGen<int>, false);
+// Eval(0598, v is EmptyStructGen<int>[], false);
+// Eval(0599, v is EmptyStructGen<int>?, false);
+// Eval(0600, v is EmptyStructGen<int>?[], false);
+// Eval(0601, v is NotEmptyStructGen<Guid>, false);
+// Eval(0602, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0603, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0604, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0605, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0606, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0607, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0608, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0609, v is NestedStruct, false);
Eval(0610, v is NestedStruct[], false);
Eval(0611, v is NestedStruct?, false);
Eval(0612, v is NestedStruct?[], false);
- Eval(0613, v is NestedStructGen<Decimal>, false);
- Eval(0614, v is NestedStructGen<Decimal>[], false);
- Eval(0615, v is NestedStructGen<Decimal>?, false);
- Eval(0616, v is NestedStructGen<Decimal>?[], false);
+// Eval(0613, v is NestedStructGen<Decimal>, false);
+// Eval(0614, v is NestedStructGen<Decimal>[], false);
+// Eval(0615, v is NestedStructGen<Decimal>?, false);
+// Eval(0616, v is NestedStructGen<Decimal>?[], false);
Eval(0617, v is ExplicitFieldOffsetStruct, false);
Eval(0618, v is ExplicitFieldOffsetStruct[], false);
Eval(0619, v is ExplicitFieldOffsetStruct?, false);
@@ -637,18 +637,18 @@ internal class Program
Eval(0638, v is ImplementTwoInterface[], false);
Eval(0639, v is ImplementTwoInterface?, false);
Eval(0640, v is ImplementTwoInterface?[], false);
- Eval(0641, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0642, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0643, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0644, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0645, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0646, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0647, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0648, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0649, v is ImplementAllInterface<int>, false);
- Eval(0650, v is ImplementAllInterface<int>[], false);
- Eval(0651, v is ImplementAllInterface<int>?, false);
- Eval(0652, v is ImplementAllInterface<int>?[], false);
+// Eval(0641, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0642, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0643, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0644, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0645, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0646, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0647, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0648, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0649, v is ImplementAllInterface<int>, false);
+// Eval(0650, v is ImplementAllInterface<int>[], false);
+// Eval(0651, v is ImplementAllInterface<int>?, false);
+// Eval(0652, v is ImplementAllInterface<int>?[], false);
Eval(0653, v is IntE, false);
Eval(0654, v is IntE[], false);
Eval(0655, v is IntE?, false);
@@ -747,38 +747,38 @@ internal class Program
Eval(0748, v is IEmpty[], false);
Eval(0749, v is INotEmpty, false);
Eval(0750, v is INotEmpty[], false);
- Eval(0751, v is IEmptyGen<int>, false);
- Eval(0752, v is IEmptyGen<int>[], false);
- Eval(0753, v is INotEmptyGen<int>, false);
- Eval(0754, v is INotEmptyGen<int>[], false);
+// Eval(0751, v is IEmptyGen<int>, false);
+// Eval(0752, v is IEmptyGen<int>[], false);
+// Eval(0753, v is INotEmptyGen<int>, false);
+// Eval(0754, v is INotEmptyGen<int>[], false);
Eval(0755, v is SimpleDelegate, false);
Eval(0756, v is SimpleDelegate[], false);
- Eval(0757, v is GenericDelegate<int>, false);
- Eval(0758, v is GenericDelegate<int>[], false);
+// Eval(0757, v is GenericDelegate<int>, false);
+// Eval(0758, v is GenericDelegate<int>[], false);
Eval(0759, v is EmptyClass, false);
Eval(0760, v is EmptyClass[], false);
Eval(0761, v is NotEmptyClass, false);
Eval(0762, v is NotEmptyClass[], false);
- Eval(0763, v is EmptyClassGen<int>, false);
- Eval(0764, v is EmptyClassGen<int>[], false);
- Eval(0765, v is NotEmptyClassGen<Guid>, false);
- Eval(0766, v is NotEmptyClassGen<Guid>[], false);
- Eval(0767, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0768, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0763, v is EmptyClassGen<int>, false);
+// Eval(0764, v is EmptyClassGen<int>[], false);
+// Eval(0765, v is NotEmptyClassGen<Guid>, false);
+// Eval(0766, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0767, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0768, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0769, v is NestedClass, false);
Eval(0770, v is NestedClass[], false);
- Eval(0771, v is NestedClassGen<Decimal>, false);
- Eval(0772, v is NestedClassGen<Decimal>[], false);
+// Eval(0771, v is NestedClassGen<Decimal>, false);
+// Eval(0772, v is NestedClassGen<Decimal>[], false);
Eval(0773, v is ImplementOneInterfaceC, false);
Eval(0774, v is ImplementOneInterfaceC[], false);
Eval(0775, v is ImplementTwoInterfaceC, false);
Eval(0776, v is ImplementTwoInterfaceC[], false);
- Eval(0777, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0778, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0779, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0780, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0781, v is ImplementAllInterfaceC<int>, false);
- Eval(0782, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0777, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0778, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0779, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0780, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0781, v is ImplementAllInterfaceC<int>, false);
+// Eval(0782, v is ImplementAllInterfaceC<int>[], false);
Eval(0783, v is SealedClass, false);
Eval(0784, v is SealedClass[], false);
}
@@ -792,26 +792,26 @@ internal class Program
Eval(0790, v is NotEmptyStruct[], false);
Eval(0791, v is NotEmptyStruct?, false);
Eval(0792, v is NotEmptyStruct?[], false);
- Eval(0793, v is EmptyStructGen<int>, false);
- Eval(0794, v is EmptyStructGen<int>[], false);
- Eval(0795, v is EmptyStructGen<int>?, false);
- Eval(0796, v is EmptyStructGen<int>?[], false);
- Eval(0797, v is NotEmptyStructGen<Guid>, false);
- Eval(0798, v is NotEmptyStructGen<Guid>[], false);
- Eval(0799, v is NotEmptyStructGen<Guid>?, false);
- Eval(0800, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0801, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0802, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0803, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0804, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0793, v is EmptyStructGen<int>, false);
+// Eval(0794, v is EmptyStructGen<int>[], false);
+// Eval(0795, v is EmptyStructGen<int>?, false);
+// Eval(0796, v is EmptyStructGen<int>?[], false);
+// Eval(0797, v is NotEmptyStructGen<Guid>, false);
+// Eval(0798, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0799, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0800, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0801, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0802, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0803, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0804, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0805, v is NestedStruct, false);
Eval(0806, v is NestedStruct[], false);
Eval(0807, v is NestedStruct?, false);
Eval(0808, v is NestedStruct?[], false);
- Eval(0809, v is NestedStructGen<Decimal>, false);
- Eval(0810, v is NestedStructGen<Decimal>[], false);
- Eval(0811, v is NestedStructGen<Decimal>?, false);
- Eval(0812, v is NestedStructGen<Decimal>?[], false);
+// Eval(0809, v is NestedStructGen<Decimal>, false);
+// Eval(0810, v is NestedStructGen<Decimal>[], false);
+// Eval(0811, v is NestedStructGen<Decimal>?, false);
+// Eval(0812, v is NestedStructGen<Decimal>?[], false);
Eval(0813, v is ExplicitFieldOffsetStruct, false);
Eval(0814, v is ExplicitFieldOffsetStruct[], false);
Eval(0815, v is ExplicitFieldOffsetStruct?, false);
@@ -828,18 +828,18 @@ internal class Program
Eval(0834, v is ImplementTwoInterface[], false);
Eval(0835, v is ImplementTwoInterface?, false);
Eval(0836, v is ImplementTwoInterface?[], false);
- Eval(0837, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0838, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0839, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0840, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0841, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0842, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0843, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0844, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0845, v is ImplementAllInterface<int>, false);
- Eval(0846, v is ImplementAllInterface<int>[], false);
- Eval(0847, v is ImplementAllInterface<int>?, false);
- Eval(0848, v is ImplementAllInterface<int>?[], false);
+// Eval(0837, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0838, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0839, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0840, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0841, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0842, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0843, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0844, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0845, v is ImplementAllInterface<int>, false);
+// Eval(0846, v is ImplementAllInterface<int>[], false);
+// Eval(0847, v is ImplementAllInterface<int>?, false);
+// Eval(0848, v is ImplementAllInterface<int>?[], false);
Eval(0849, v is IntE, false);
Eval(0850, v is IntE[], false);
Eval(0851, v is IntE?, false);
@@ -938,38 +938,38 @@ internal class Program
Eval(0944, v is IEmpty[], false);
Eval(0945, v is INotEmpty, false);
Eval(0946, v is INotEmpty[], false);
- Eval(0947, v is IEmptyGen<int>, false);
- Eval(0948, v is IEmptyGen<int>[], false);
- Eval(0949, v is INotEmptyGen<int>, false);
- Eval(0950, v is INotEmptyGen<int>[], false);
+// Eval(0947, v is IEmptyGen<int>, false);
+// Eval(0948, v is IEmptyGen<int>[], false);
+// Eval(0949, v is INotEmptyGen<int>, false);
+// Eval(0950, v is INotEmptyGen<int>[], false);
Eval(0951, v is SimpleDelegate, false);
Eval(0952, v is SimpleDelegate[], false);
- Eval(0953, v is GenericDelegate<int>, false);
- Eval(0954, v is GenericDelegate<int>[], false);
+// Eval(0953, v is GenericDelegate<int>, false);
+// Eval(0954, v is GenericDelegate<int>[], false);
Eval(0955, v is EmptyClass, false);
Eval(0956, v is EmptyClass[], false);
Eval(0957, v is NotEmptyClass, false);
Eval(0958, v is NotEmptyClass[], false);
- Eval(0959, v is EmptyClassGen<int>, false);
- Eval(0960, v is EmptyClassGen<int>[], false);
- Eval(0961, v is NotEmptyClassGen<Guid>, false);
- Eval(0962, v is NotEmptyClassGen<Guid>[], false);
- Eval(0963, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0964, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0959, v is EmptyClassGen<int>, false);
+// Eval(0960, v is EmptyClassGen<int>[], false);
+// Eval(0961, v is NotEmptyClassGen<Guid>, false);
+// Eval(0962, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0963, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0964, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0965, v is NestedClass, false);
Eval(0966, v is NestedClass[], false);
- Eval(0967, v is NestedClassGen<Decimal>, false);
- Eval(0968, v is NestedClassGen<Decimal>[], false);
+// Eval(0967, v is NestedClassGen<Decimal>, false);
+// Eval(0968, v is NestedClassGen<Decimal>[], false);
Eval(0969, v is ImplementOneInterfaceC, false);
Eval(0970, v is ImplementOneInterfaceC[], false);
Eval(0971, v is ImplementTwoInterfaceC, false);
Eval(0972, v is ImplementTwoInterfaceC[], false);
- Eval(0973, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0974, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0975, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0976, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0977, v is ImplementAllInterfaceC<int>, false);
- Eval(0978, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0973, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0974, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0975, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0976, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0977, v is ImplementAllInterfaceC<int>, false);
+// Eval(0978, v is ImplementAllInterfaceC<int>[], false);
Eval(0979, v is SealedClass, false);
Eval(0980, v is SealedClass[], false);
}
@@ -986,26 +986,26 @@ internal class Program
Eval(0986, v is NotEmptyStruct[], false);
Eval(0987, v is NotEmptyStruct?, true);
Eval(0988, v is NotEmptyStruct?[], false);
- Eval(0989, v is EmptyStructGen<int>, false);
- Eval(0990, v is EmptyStructGen<int>[], false);
- Eval(0991, v is EmptyStructGen<int>?, false);
- Eval(0992, v is EmptyStructGen<int>?[], false);
- Eval(0993, v is NotEmptyStructGen<Guid>, false);
- Eval(0994, v is NotEmptyStructGen<Guid>[], false);
- Eval(0995, v is NotEmptyStructGen<Guid>?, false);
- Eval(0996, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0997, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0998, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0999, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1000, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0989, v is EmptyStructGen<int>, false);
+// Eval(0990, v is EmptyStructGen<int>[], false);
+// Eval(0991, v is EmptyStructGen<int>?, false);
+// Eval(0992, v is EmptyStructGen<int>?[], false);
+// Eval(0993, v is NotEmptyStructGen<Guid>, false);
+// Eval(0994, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0995, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0996, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0997, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0998, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0999, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1000, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1001, v is NestedStruct, false);
Eval(1002, v is NestedStruct[], false);
Eval(1003, v is NestedStruct?, false);
Eval(1004, v is NestedStruct?[], false);
- Eval(1005, v is NestedStructGen<Decimal>, false);
- Eval(1006, v is NestedStructGen<Decimal>[], false);
- Eval(1007, v is NestedStructGen<Decimal>?, false);
- Eval(1008, v is NestedStructGen<Decimal>?[], false);
+// Eval(1005, v is NestedStructGen<Decimal>, false);
+// Eval(1006, v is NestedStructGen<Decimal>[], false);
+// Eval(1007, v is NestedStructGen<Decimal>?, false);
+// Eval(1008, v is NestedStructGen<Decimal>?[], false);
Eval(1009, v is ExplicitFieldOffsetStruct, false);
Eval(1010, v is ExplicitFieldOffsetStruct[], false);
Eval(1011, v is ExplicitFieldOffsetStruct?, false);
@@ -1022,18 +1022,18 @@ internal class Program
Eval(1030, v is ImplementTwoInterface[], false);
Eval(1031, v is ImplementTwoInterface?, false);
Eval(1032, v is ImplementTwoInterface?[], false);
- Eval(1033, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1034, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1035, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1036, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1037, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1038, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1039, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1040, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1041, v is ImplementAllInterface<int>, false);
- Eval(1042, v is ImplementAllInterface<int>[], false);
- Eval(1043, v is ImplementAllInterface<int>?, false);
- Eval(1044, v is ImplementAllInterface<int>?[], false);
+// Eval(1033, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1034, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1035, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1036, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1037, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1038, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1039, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1040, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1041, v is ImplementAllInterface<int>, false);
+// Eval(1042, v is ImplementAllInterface<int>[], false);
+// Eval(1043, v is ImplementAllInterface<int>?, false);
+// Eval(1044, v is ImplementAllInterface<int>?[], false);
Eval(1045, v is IntE, false);
Eval(1046, v is IntE[], false);
Eval(1047, v is IntE?, false);
@@ -1132,38 +1132,38 @@ internal class Program
Eval(1140, v is IEmpty[], false);
Eval(1141, v is INotEmpty, false);
Eval(1142, v is INotEmpty[], false);
- Eval(1143, v is IEmptyGen<int>, false);
- Eval(1144, v is IEmptyGen<int>[], false);
- Eval(1145, v is INotEmptyGen<int>, false);
- Eval(1146, v is INotEmptyGen<int>[], false);
+// Eval(1143, v is IEmptyGen<int>, false);
+// Eval(1144, v is IEmptyGen<int>[], false);
+// Eval(1145, v is INotEmptyGen<int>, false);
+// Eval(1146, v is INotEmptyGen<int>[], false);
Eval(1147, v is SimpleDelegate, false);
Eval(1148, v is SimpleDelegate[], false);
- Eval(1149, v is GenericDelegate<int>, false);
- Eval(1150, v is GenericDelegate<int>[], false);
+// Eval(1149, v is GenericDelegate<int>, false);
+// Eval(1150, v is GenericDelegate<int>[], false);
Eval(1151, v is EmptyClass, false);
Eval(1152, v is EmptyClass[], false);
Eval(1153, v is NotEmptyClass, false);
Eval(1154, v is NotEmptyClass[], false);
- Eval(1155, v is EmptyClassGen<int>, false);
- Eval(1156, v is EmptyClassGen<int>[], false);
- Eval(1157, v is NotEmptyClassGen<Guid>, false);
- Eval(1158, v is NotEmptyClassGen<Guid>[], false);
- Eval(1159, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1160, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1155, v is EmptyClassGen<int>, false);
+// Eval(1156, v is EmptyClassGen<int>[], false);
+// Eval(1157, v is NotEmptyClassGen<Guid>, false);
+// Eval(1158, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1159, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1160, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1161, v is NestedClass, false);
Eval(1162, v is NestedClass[], false);
- Eval(1163, v is NestedClassGen<Decimal>, false);
- Eval(1164, v is NestedClassGen<Decimal>[], false);
+// Eval(1163, v is NestedClassGen<Decimal>, false);
+// Eval(1164, v is NestedClassGen<Decimal>[], false);
Eval(1165, v is ImplementOneInterfaceC, false);
Eval(1166, v is ImplementOneInterfaceC[], false);
Eval(1167, v is ImplementTwoInterfaceC, false);
Eval(1168, v is ImplementTwoInterfaceC[], false);
- Eval(1169, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1170, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1171, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1172, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1173, v is ImplementAllInterfaceC<int>, false);
- Eval(1174, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1169, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1170, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1171, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1172, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1173, v is ImplementAllInterfaceC<int>, false);
+// Eval(1174, v is ImplementAllInterfaceC<int>[], false);
Eval(1175, v is SealedClass, false);
Eval(1176, v is SealedClass[], false);
}
@@ -1177,26 +1177,26 @@ internal class Program
Eval(1182, v is NotEmptyStruct[], false);
Eval(1183, v is NotEmptyStruct?, true);
Eval(1184, v is NotEmptyStruct?[], false);
- Eval(1185, v is EmptyStructGen<int>, false);
- Eval(1186, v is EmptyStructGen<int>[], false);
- Eval(1187, v is EmptyStructGen<int>?, false);
- Eval(1188, v is EmptyStructGen<int>?[], false);
- Eval(1189, v is NotEmptyStructGen<Guid>, false);
- Eval(1190, v is NotEmptyStructGen<Guid>[], false);
- Eval(1191, v is NotEmptyStructGen<Guid>?, false);
- Eval(1192, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1193, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1194, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1195, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1196, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1185, v is EmptyStructGen<int>, false);
+// Eval(1186, v is EmptyStructGen<int>[], false);
+// Eval(1187, v is EmptyStructGen<int>?, false);
+// Eval(1188, v is EmptyStructGen<int>?[], false);
+// Eval(1189, v is NotEmptyStructGen<Guid>, false);
+// Eval(1190, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1191, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1192, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1193, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1194, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1195, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1196, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1197, v is NestedStruct, false);
Eval(1198, v is NestedStruct[], false);
Eval(1199, v is NestedStruct?, false);
Eval(1200, v is NestedStruct?[], false);
- Eval(1201, v is NestedStructGen<Decimal>, false);
- Eval(1202, v is NestedStructGen<Decimal>[], false);
- Eval(1203, v is NestedStructGen<Decimal>?, false);
- Eval(1204, v is NestedStructGen<Decimal>?[], false);
+// Eval(1201, v is NestedStructGen<Decimal>, false);
+// Eval(1202, v is NestedStructGen<Decimal>[], false);
+// Eval(1203, v is NestedStructGen<Decimal>?, false);
+// Eval(1204, v is NestedStructGen<Decimal>?[], false);
Eval(1205, v is ExplicitFieldOffsetStruct, false);
Eval(1206, v is ExplicitFieldOffsetStruct[], false);
Eval(1207, v is ExplicitFieldOffsetStruct?, false);
@@ -1213,18 +1213,18 @@ internal class Program
Eval(1226, v is ImplementTwoInterface[], false);
Eval(1227, v is ImplementTwoInterface?, false);
Eval(1228, v is ImplementTwoInterface?[], false);
- Eval(1229, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1230, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1231, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1232, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1233, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1234, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1235, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1236, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1237, v is ImplementAllInterface<int>, false);
- Eval(1238, v is ImplementAllInterface<int>[], false);
- Eval(1239, v is ImplementAllInterface<int>?, false);
- Eval(1240, v is ImplementAllInterface<int>?[], false);
+// Eval(1229, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1230, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1231, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1232, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1233, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1234, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1235, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1236, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1237, v is ImplementAllInterface<int>, false);
+// Eval(1238, v is ImplementAllInterface<int>[], false);
+// Eval(1239, v is ImplementAllInterface<int>?, false);
+// Eval(1240, v is ImplementAllInterface<int>?[], false);
Eval(1241, v is IntE, false);
Eval(1242, v is IntE[], false);
Eval(1243, v is IntE?, false);
@@ -1323,38 +1323,38 @@ internal class Program
Eval(1336, v is IEmpty[], false);
Eval(1337, v is INotEmpty, false);
Eval(1338, v is INotEmpty[], false);
- Eval(1339, v is IEmptyGen<int>, false);
- Eval(1340, v is IEmptyGen<int>[], false);
- Eval(1341, v is INotEmptyGen<int>, false);
- Eval(1342, v is INotEmptyGen<int>[], false);
+// Eval(1339, v is IEmptyGen<int>, false);
+// Eval(1340, v is IEmptyGen<int>[], false);
+// Eval(1341, v is INotEmptyGen<int>, false);
+// Eval(1342, v is INotEmptyGen<int>[], false);
Eval(1343, v is SimpleDelegate, false);
Eval(1344, v is SimpleDelegate[], false);
- Eval(1345, v is GenericDelegate<int>, false);
- Eval(1346, v is GenericDelegate<int>[], false);
+// Eval(1345, v is GenericDelegate<int>, false);
+// Eval(1346, v is GenericDelegate<int>[], false);
Eval(1347, v is EmptyClass, false);
Eval(1348, v is EmptyClass[], false);
Eval(1349, v is NotEmptyClass, false);
Eval(1350, v is NotEmptyClass[], false);
- Eval(1351, v is EmptyClassGen<int>, false);
- Eval(1352, v is EmptyClassGen<int>[], false);
- Eval(1353, v is NotEmptyClassGen<Guid>, false);
- Eval(1354, v is NotEmptyClassGen<Guid>[], false);
- Eval(1355, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1356, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1351, v is EmptyClassGen<int>, false);
+// Eval(1352, v is EmptyClassGen<int>[], false);
+// Eval(1353, v is NotEmptyClassGen<Guid>, false);
+// Eval(1354, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1355, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1356, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1357, v is NestedClass, false);
Eval(1358, v is NestedClass[], false);
- Eval(1359, v is NestedClassGen<Decimal>, false);
- Eval(1360, v is NestedClassGen<Decimal>[], false);
+// Eval(1359, v is NestedClassGen<Decimal>, false);
+// Eval(1360, v is NestedClassGen<Decimal>[], false);
Eval(1361, v is ImplementOneInterfaceC, false);
Eval(1362, v is ImplementOneInterfaceC[], false);
Eval(1363, v is ImplementTwoInterfaceC, false);
Eval(1364, v is ImplementTwoInterfaceC[], false);
- Eval(1365, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1366, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1367, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1368, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1369, v is ImplementAllInterfaceC<int>, false);
- Eval(1370, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1365, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1366, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1367, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1368, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1369, v is ImplementAllInterfaceC<int>, false);
+// Eval(1370, v is ImplementAllInterfaceC<int>[], false);
Eval(1371, v is SealedClass, false);
Eval(1372, v is SealedClass[], false);
}
@@ -1368,26 +1368,26 @@ internal class Program
Eval(1378, v is NotEmptyStruct[], false);
Eval(1379, v is NotEmptyStruct?, false);
Eval(1380, v is NotEmptyStruct?[], false);
- Eval(1381, v is EmptyStructGen<int>, false);
- Eval(1382, v is EmptyStructGen<int>[], false);
- Eval(1383, v is EmptyStructGen<int>?, false);
- Eval(1384, v is EmptyStructGen<int>?[], false);
- Eval(1385, v is NotEmptyStructGen<Guid>, false);
- Eval(1386, v is NotEmptyStructGen<Guid>[], false);
- Eval(1387, v is NotEmptyStructGen<Guid>?, false);
- Eval(1388, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1389, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1390, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1391, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1392, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1381, v is EmptyStructGen<int>, false);
+// Eval(1382, v is EmptyStructGen<int>[], false);
+// Eval(1383, v is EmptyStructGen<int>?, false);
+// Eval(1384, v is EmptyStructGen<int>?[], false);
+// Eval(1385, v is NotEmptyStructGen<Guid>, false);
+// Eval(1386, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1387, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1388, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1389, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1390, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1391, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1392, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1393, v is NestedStruct, false);
Eval(1394, v is NestedStruct[], false);
Eval(1395, v is NestedStruct?, false);
Eval(1396, v is NestedStruct?[], false);
- Eval(1397, v is NestedStructGen<Decimal>, false);
- Eval(1398, v is NestedStructGen<Decimal>[], false);
- Eval(1399, v is NestedStructGen<Decimal>?, false);
- Eval(1400, v is NestedStructGen<Decimal>?[], false);
+// Eval(1397, v is NestedStructGen<Decimal>, false);
+// Eval(1398, v is NestedStructGen<Decimal>[], false);
+// Eval(1399, v is NestedStructGen<Decimal>?, false);
+// Eval(1400, v is NestedStructGen<Decimal>?[], false);
Eval(1401, v is ExplicitFieldOffsetStruct, false);
Eval(1402, v is ExplicitFieldOffsetStruct[], false);
Eval(1403, v is ExplicitFieldOffsetStruct?, false);
@@ -1404,18 +1404,18 @@ internal class Program
Eval(1422, v is ImplementTwoInterface[], false);
Eval(1423, v is ImplementTwoInterface?, false);
Eval(1424, v is ImplementTwoInterface?[], false);
- Eval(1425, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1426, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1427, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1428, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1429, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1430, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1431, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1432, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1433, v is ImplementAllInterface<int>, false);
- Eval(1434, v is ImplementAllInterface<int>[], false);
- Eval(1435, v is ImplementAllInterface<int>?, false);
- Eval(1436, v is ImplementAllInterface<int>?[], false);
+// Eval(1425, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1426, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1427, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1428, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1429, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1430, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1431, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1432, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1433, v is ImplementAllInterface<int>, false);
+// Eval(1434, v is ImplementAllInterface<int>[], false);
+// Eval(1435, v is ImplementAllInterface<int>?, false);
+// Eval(1436, v is ImplementAllInterface<int>?[], false);
Eval(1437, v is IntE, false);
Eval(1438, v is IntE[], false);
Eval(1439, v is IntE?, false);
@@ -1514,38 +1514,38 @@ internal class Program
Eval(1532, v is IEmpty[], false);
Eval(1533, v is INotEmpty, false);
Eval(1534, v is INotEmpty[], false);
- Eval(1535, v is IEmptyGen<int>, false);
- Eval(1536, v is IEmptyGen<int>[], false);
- Eval(1537, v is INotEmptyGen<int>, false);
- Eval(1538, v is INotEmptyGen<int>[], false);
+// Eval(1535, v is IEmptyGen<int>, false);
+// Eval(1536, v is IEmptyGen<int>[], false);
+// Eval(1537, v is INotEmptyGen<int>, false);
+// Eval(1538, v is INotEmptyGen<int>[], false);
Eval(1539, v is SimpleDelegate, false);
Eval(1540, v is SimpleDelegate[], false);
- Eval(1541, v is GenericDelegate<int>, false);
- Eval(1542, v is GenericDelegate<int>[], false);
+// Eval(1541, v is GenericDelegate<int>, false);
+// Eval(1542, v is GenericDelegate<int>[], false);
Eval(1543, v is EmptyClass, false);
Eval(1544, v is EmptyClass[], false);
Eval(1545, v is NotEmptyClass, false);
Eval(1546, v is NotEmptyClass[], false);
- Eval(1547, v is EmptyClassGen<int>, false);
- Eval(1548, v is EmptyClassGen<int>[], false);
- Eval(1549, v is NotEmptyClassGen<Guid>, false);
- Eval(1550, v is NotEmptyClassGen<Guid>[], false);
- Eval(1551, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1552, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1547, v is EmptyClassGen<int>, false);
+// Eval(1548, v is EmptyClassGen<int>[], false);
+// Eval(1549, v is NotEmptyClassGen<Guid>, false);
+// Eval(1550, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1551, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1552, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1553, v is NestedClass, false);
Eval(1554, v is NestedClass[], false);
- Eval(1555, v is NestedClassGen<Decimal>, false);
- Eval(1556, v is NestedClassGen<Decimal>[], false);
+// Eval(1555, v is NestedClassGen<Decimal>, false);
+// Eval(1556, v is NestedClassGen<Decimal>[], false);
Eval(1557, v is ImplementOneInterfaceC, false);
Eval(1558, v is ImplementOneInterfaceC[], false);
Eval(1559, v is ImplementTwoInterfaceC, false);
Eval(1560, v is ImplementTwoInterfaceC[], false);
- Eval(1561, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1562, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1563, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1564, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1565, v is ImplementAllInterfaceC<int>, false);
- Eval(1566, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1561, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1562, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1563, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1564, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1565, v is ImplementAllInterfaceC<int>, false);
+// Eval(1566, v is ImplementAllInterfaceC<int>[], false);
Eval(1567, v is SealedClass, false);
Eval(1568, v is SealedClass[], false);
}
@@ -1559,26 +1559,26 @@ internal class Program
Eval(1574, v is NotEmptyStruct[], false);
Eval(1575, v is NotEmptyStruct?, false);
Eval(1576, v is NotEmptyStruct?[], false);
- Eval(1577, v is EmptyStructGen<int>, false);
- Eval(1578, v is EmptyStructGen<int>[], false);
- Eval(1579, v is EmptyStructGen<int>?, false);
- Eval(1580, v is EmptyStructGen<int>?[], false);
- Eval(1581, v is NotEmptyStructGen<Guid>, false);
- Eval(1582, v is NotEmptyStructGen<Guid>[], false);
- Eval(1583, v is NotEmptyStructGen<Guid>?, false);
- Eval(1584, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1585, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1586, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1587, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1588, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1577, v is EmptyStructGen<int>, false);
+// Eval(1578, v is EmptyStructGen<int>[], false);
+// Eval(1579, v is EmptyStructGen<int>?, false);
+// Eval(1580, v is EmptyStructGen<int>?[], false);
+// Eval(1581, v is NotEmptyStructGen<Guid>, false);
+// Eval(1582, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1583, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1584, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1585, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1586, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1587, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1588, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1589, v is NestedStruct, false);
Eval(1590, v is NestedStruct[], false);
Eval(1591, v is NestedStruct?, false);
Eval(1592, v is NestedStruct?[], false);
- Eval(1593, v is NestedStructGen<Decimal>, false);
- Eval(1594, v is NestedStructGen<Decimal>[], false);
- Eval(1595, v is NestedStructGen<Decimal>?, false);
- Eval(1596, v is NestedStructGen<Decimal>?[], false);
+// Eval(1593, v is NestedStructGen<Decimal>, false);
+// Eval(1594, v is NestedStructGen<Decimal>[], false);
+// Eval(1595, v is NestedStructGen<Decimal>?, false);
+// Eval(1596, v is NestedStructGen<Decimal>?[], false);
Eval(1597, v is ExplicitFieldOffsetStruct, false);
Eval(1598, v is ExplicitFieldOffsetStruct[], false);
Eval(1599, v is ExplicitFieldOffsetStruct?, false);
@@ -1595,18 +1595,18 @@ internal class Program
Eval(1618, v is ImplementTwoInterface[], false);
Eval(1619, v is ImplementTwoInterface?, false);
Eval(1620, v is ImplementTwoInterface?[], false);
- Eval(1621, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1622, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1623, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1624, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1625, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1626, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1627, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1628, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1629, v is ImplementAllInterface<int>, false);
- Eval(1630, v is ImplementAllInterface<int>[], false);
- Eval(1631, v is ImplementAllInterface<int>?, false);
- Eval(1632, v is ImplementAllInterface<int>?[], false);
+// Eval(1621, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1622, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1623, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1624, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1625, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1626, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1627, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1628, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1629, v is ImplementAllInterface<int>, false);
+// Eval(1630, v is ImplementAllInterface<int>[], false);
+// Eval(1631, v is ImplementAllInterface<int>?, false);
+// Eval(1632, v is ImplementAllInterface<int>?[], false);
Eval(1633, v is IntE, false);
Eval(1634, v is IntE[], false);
Eval(1635, v is IntE?, false);
@@ -1705,38 +1705,38 @@ internal class Program
Eval(1728, v is IEmpty[], false);
Eval(1729, v is INotEmpty, false);
Eval(1730, v is INotEmpty[], false);
- Eval(1731, v is IEmptyGen<int>, false);
- Eval(1732, v is IEmptyGen<int>[], false);
- Eval(1733, v is INotEmptyGen<int>, false);
- Eval(1734, v is INotEmptyGen<int>[], false);
+// Eval(1731, v is IEmptyGen<int>, false);
+// Eval(1732, v is IEmptyGen<int>[], false);
+// Eval(1733, v is INotEmptyGen<int>, false);
+// Eval(1734, v is INotEmptyGen<int>[], false);
Eval(1735, v is SimpleDelegate, false);
Eval(1736, v is SimpleDelegate[], false);
- Eval(1737, v is GenericDelegate<int>, false);
- Eval(1738, v is GenericDelegate<int>[], false);
+// Eval(1737, v is GenericDelegate<int>, false);
+// Eval(1738, v is GenericDelegate<int>[], false);
Eval(1739, v is EmptyClass, false);
Eval(1740, v is EmptyClass[], false);
Eval(1741, v is NotEmptyClass, false);
Eval(1742, v is NotEmptyClass[], false);
- Eval(1743, v is EmptyClassGen<int>, false);
- Eval(1744, v is EmptyClassGen<int>[], false);
- Eval(1745, v is NotEmptyClassGen<Guid>, false);
- Eval(1746, v is NotEmptyClassGen<Guid>[], false);
- Eval(1747, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1748, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1743, v is EmptyClassGen<int>, false);
+// Eval(1744, v is EmptyClassGen<int>[], false);
+// Eval(1745, v is NotEmptyClassGen<Guid>, false);
+// Eval(1746, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1747, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1748, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1749, v is NestedClass, false);
Eval(1750, v is NestedClass[], false);
- Eval(1751, v is NestedClassGen<Decimal>, false);
- Eval(1752, v is NestedClassGen<Decimal>[], false);
+// Eval(1751, v is NestedClassGen<Decimal>, false);
+// Eval(1752, v is NestedClassGen<Decimal>[], false);
Eval(1753, v is ImplementOneInterfaceC, false);
Eval(1754, v is ImplementOneInterfaceC[], false);
Eval(1755, v is ImplementTwoInterfaceC, false);
Eval(1756, v is ImplementTwoInterfaceC[], false);
- Eval(1757, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1758, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1759, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1760, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1761, v is ImplementAllInterfaceC<int>, false);
- Eval(1762, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1757, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1758, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1759, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1760, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1761, v is ImplementAllInterfaceC<int>, false);
+// Eval(1762, v is ImplementAllInterfaceC<int>[], false);
Eval(1763, v is SealedClass, false);
Eval(1764, v is SealedClass[], false);
}
@@ -1750,26 +1750,26 @@ internal class Program
Eval(1770, v is NotEmptyStruct[], false);
Eval(1771, v is NotEmptyStruct?, false);
Eval(1772, v is NotEmptyStruct?[], true);
- Eval(1773, v is EmptyStructGen<int>, false);
- Eval(1774, v is EmptyStructGen<int>[], false);
- Eval(1775, v is EmptyStructGen<int>?, false);
- Eval(1776, v is EmptyStructGen<int>?[], false);
- Eval(1777, v is NotEmptyStructGen<Guid>, false);
- Eval(1778, v is NotEmptyStructGen<Guid>[], false);
- Eval(1779, v is NotEmptyStructGen<Guid>?, false);
- Eval(1780, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1781, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1782, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1783, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1784, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1773, v is EmptyStructGen<int>, false);
+// Eval(1774, v is EmptyStructGen<int>[], false);
+// Eval(1775, v is EmptyStructGen<int>?, false);
+// Eval(1776, v is EmptyStructGen<int>?[], false);
+// Eval(1777, v is NotEmptyStructGen<Guid>, false);
+// Eval(1778, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1779, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1780, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1781, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1782, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1783, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1784, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1785, v is NestedStruct, false);
Eval(1786, v is NestedStruct[], false);
Eval(1787, v is NestedStruct?, false);
Eval(1788, v is NestedStruct?[], false);
- Eval(1789, v is NestedStructGen<Decimal>, false);
- Eval(1790, v is NestedStructGen<Decimal>[], false);
- Eval(1791, v is NestedStructGen<Decimal>?, false);
- Eval(1792, v is NestedStructGen<Decimal>?[], false);
+// Eval(1789, v is NestedStructGen<Decimal>, false);
+// Eval(1790, v is NestedStructGen<Decimal>[], false);
+// Eval(1791, v is NestedStructGen<Decimal>?, false);
+// Eval(1792, v is NestedStructGen<Decimal>?[], false);
Eval(1793, v is ExplicitFieldOffsetStruct, false);
Eval(1794, v is ExplicitFieldOffsetStruct[], false);
Eval(1795, v is ExplicitFieldOffsetStruct?, false);
@@ -1786,18 +1786,18 @@ internal class Program
Eval(1814, v is ImplementTwoInterface[], false);
Eval(1815, v is ImplementTwoInterface?, false);
Eval(1816, v is ImplementTwoInterface?[], false);
- Eval(1817, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1818, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1819, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1820, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1821, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1822, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1823, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1824, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1825, v is ImplementAllInterface<int>, false);
- Eval(1826, v is ImplementAllInterface<int>[], false);
- Eval(1827, v is ImplementAllInterface<int>?, false);
- Eval(1828, v is ImplementAllInterface<int>?[], false);
+// Eval(1817, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1818, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1819, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1820, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1821, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1822, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1823, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1824, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1825, v is ImplementAllInterface<int>, false);
+// Eval(1826, v is ImplementAllInterface<int>[], false);
+// Eval(1827, v is ImplementAllInterface<int>?, false);
+// Eval(1828, v is ImplementAllInterface<int>?[], false);
Eval(1829, v is IntE, false);
Eval(1830, v is IntE[], false);
Eval(1831, v is IntE?, false);
@@ -1896,38 +1896,38 @@ internal class Program
Eval(1924, v is IEmpty[], false);
Eval(1925, v is INotEmpty, false);
Eval(1926, v is INotEmpty[], false);
- Eval(1927, v is IEmptyGen<int>, false);
- Eval(1928, v is IEmptyGen<int>[], false);
- Eval(1929, v is INotEmptyGen<int>, false);
- Eval(1930, v is INotEmptyGen<int>[], false);
+// Eval(1927, v is IEmptyGen<int>, false);
+// Eval(1928, v is IEmptyGen<int>[], false);
+// Eval(1929, v is INotEmptyGen<int>, false);
+// Eval(1930, v is INotEmptyGen<int>[], false);
Eval(1931, v is SimpleDelegate, false);
Eval(1932, v is SimpleDelegate[], false);
- Eval(1933, v is GenericDelegate<int>, false);
- Eval(1934, v is GenericDelegate<int>[], false);
+// Eval(1933, v is GenericDelegate<int>, false);
+// Eval(1934, v is GenericDelegate<int>[], false);
Eval(1935, v is EmptyClass, false);
Eval(1936, v is EmptyClass[], false);
Eval(1937, v is NotEmptyClass, false);
Eval(1938, v is NotEmptyClass[], false);
- Eval(1939, v is EmptyClassGen<int>, false);
- Eval(1940, v is EmptyClassGen<int>[], false);
- Eval(1941, v is NotEmptyClassGen<Guid>, false);
- Eval(1942, v is NotEmptyClassGen<Guid>[], false);
- Eval(1943, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1944, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1939, v is EmptyClassGen<int>, false);
+// Eval(1940, v is EmptyClassGen<int>[], false);
+// Eval(1941, v is NotEmptyClassGen<Guid>, false);
+// Eval(1942, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1943, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1944, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1945, v is NestedClass, false);
Eval(1946, v is NestedClass[], false);
- Eval(1947, v is NestedClassGen<Decimal>, false);
- Eval(1948, v is NestedClassGen<Decimal>[], false);
+// Eval(1947, v is NestedClassGen<Decimal>, false);
+// Eval(1948, v is NestedClassGen<Decimal>[], false);
Eval(1949, v is ImplementOneInterfaceC, false);
Eval(1950, v is ImplementOneInterfaceC[], false);
Eval(1951, v is ImplementTwoInterfaceC, false);
Eval(1952, v is ImplementTwoInterfaceC[], false);
- Eval(1953, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1954, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1955, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1956, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1957, v is ImplementAllInterfaceC<int>, false);
- Eval(1958, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1953, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1954, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1955, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1956, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1957, v is ImplementAllInterfaceC<int>, false);
+// Eval(1958, v is ImplementAllInterfaceC<int>[], false);
Eval(1959, v is SealedClass, false);
Eval(1960, v is SealedClass[], false);
}
@@ -1944,26 +1944,26 @@ internal class Program
Eval(1966, v is NotEmptyStruct[], false);
Eval(1967, v is NotEmptyStruct?, false);
Eval(1968, v is NotEmptyStruct?[], false);
- Eval(1969, v is EmptyStructGen<int>, true);
- Eval(1970, v is EmptyStructGen<int>[], false);
- Eval(1971, v is EmptyStructGen<int>?, true);
- Eval(1972, v is EmptyStructGen<int>?[], false);
- Eval(1973, v is NotEmptyStructGen<Guid>, false);
- Eval(1974, v is NotEmptyStructGen<Guid>[], false);
- Eval(1975, v is NotEmptyStructGen<Guid>?, false);
- Eval(1976, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1977, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1978, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1979, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1980, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1969, v is EmptyStructGen<int>, true);
+// Eval(1970, v is EmptyStructGen<int>[], false);
+// Eval(1971, v is EmptyStructGen<int>?, true);
+// Eval(1972, v is EmptyStructGen<int>?[], false);
+// Eval(1973, v is NotEmptyStructGen<Guid>, false);
+// Eval(1974, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1975, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1976, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1977, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1978, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1979, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1980, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1981, v is NestedStruct, false);
Eval(1982, v is NestedStruct[], false);
Eval(1983, v is NestedStruct?, false);
Eval(1984, v is NestedStruct?[], false);
- Eval(1985, v is NestedStructGen<Decimal>, false);
- Eval(1986, v is NestedStructGen<Decimal>[], false);
- Eval(1987, v is NestedStructGen<Decimal>?, false);
- Eval(1988, v is NestedStructGen<Decimal>?[], false);
+// Eval(1985, v is NestedStructGen<Decimal>, false);
+// Eval(1986, v is NestedStructGen<Decimal>[], false);
+// Eval(1987, v is NestedStructGen<Decimal>?, false);
+// Eval(1988, v is NestedStructGen<Decimal>?[], false);
Eval(1989, v is ExplicitFieldOffsetStruct, false);
Eval(1990, v is ExplicitFieldOffsetStruct[], false);
Eval(1991, v is ExplicitFieldOffsetStruct?, false);
@@ -1980,18 +1980,18 @@ internal class Program
Eval(2010, v is ImplementTwoInterface[], false);
Eval(2011, v is ImplementTwoInterface?, false);
Eval(2012, v is ImplementTwoInterface?[], false);
- Eval(2013, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2014, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2015, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2016, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2017, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2018, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2019, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2020, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2021, v is ImplementAllInterface<int>, false);
- Eval(2022, v is ImplementAllInterface<int>[], false);
- Eval(2023, v is ImplementAllInterface<int>?, false);
- Eval(2024, v is ImplementAllInterface<int>?[], false);
+// Eval(2013, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2014, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2015, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2016, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2017, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2018, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2019, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2020, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2021, v is ImplementAllInterface<int>, false);
+// Eval(2022, v is ImplementAllInterface<int>[], false);
+// Eval(2023, v is ImplementAllInterface<int>?, false);
+// Eval(2024, v is ImplementAllInterface<int>?[], false);
Eval(2025, v is IntE, false);
Eval(2026, v is IntE[], false);
Eval(2027, v is IntE?, false);
@@ -2090,38 +2090,38 @@ internal class Program
Eval(2120, v is IEmpty[], false);
Eval(2121, v is INotEmpty, false);
Eval(2122, v is INotEmpty[], false);
- Eval(2123, v is IEmptyGen<int>, false);
- Eval(2124, v is IEmptyGen<int>[], false);
- Eval(2125, v is INotEmptyGen<int>, false);
- Eval(2126, v is INotEmptyGen<int>[], false);
+// Eval(2123, v is IEmptyGen<int>, false);
+// Eval(2124, v is IEmptyGen<int>[], false);
+// Eval(2125, v is INotEmptyGen<int>, false);
+// Eval(2126, v is INotEmptyGen<int>[], false);
Eval(2127, v is SimpleDelegate, false);
Eval(2128, v is SimpleDelegate[], false);
- Eval(2129, v is GenericDelegate<int>, false);
- Eval(2130, v is GenericDelegate<int>[], false);
+// Eval(2129, v is GenericDelegate<int>, false);
+// Eval(2130, v is GenericDelegate<int>[], false);
Eval(2131, v is EmptyClass, false);
Eval(2132, v is EmptyClass[], false);
Eval(2133, v is NotEmptyClass, false);
Eval(2134, v is NotEmptyClass[], false);
- Eval(2135, v is EmptyClassGen<int>, false);
- Eval(2136, v is EmptyClassGen<int>[], false);
- Eval(2137, v is NotEmptyClassGen<Guid>, false);
- Eval(2138, v is NotEmptyClassGen<Guid>[], false);
- Eval(2139, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2140, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2135, v is EmptyClassGen<int>, false);
+// Eval(2136, v is EmptyClassGen<int>[], false);
+// Eval(2137, v is NotEmptyClassGen<Guid>, false);
+// Eval(2138, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2139, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2140, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2141, v is NestedClass, false);
Eval(2142, v is NestedClass[], false);
- Eval(2143, v is NestedClassGen<Decimal>, false);
- Eval(2144, v is NestedClassGen<Decimal>[], false);
+// Eval(2143, v is NestedClassGen<Decimal>, false);
+// Eval(2144, v is NestedClassGen<Decimal>[], false);
Eval(2145, v is ImplementOneInterfaceC, false);
Eval(2146, v is ImplementOneInterfaceC[], false);
Eval(2147, v is ImplementTwoInterfaceC, false);
Eval(2148, v is ImplementTwoInterfaceC[], false);
- Eval(2149, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2150, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2151, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2152, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2153, v is ImplementAllInterfaceC<int>, false);
- Eval(2154, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2149, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2150, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2151, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2152, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2153, v is ImplementAllInterfaceC<int>, false);
+// Eval(2154, v is ImplementAllInterfaceC<int>[], false);
Eval(2155, v is SealedClass, false);
Eval(2156, v is SealedClass[], false);
}
@@ -2135,26 +2135,26 @@ internal class Program
Eval(2162, v is NotEmptyStruct[], false);
Eval(2163, v is NotEmptyStruct?, false);
Eval(2164, v is NotEmptyStruct?[], false);
- Eval(2165, v is EmptyStructGen<int>, true);
- Eval(2166, v is EmptyStructGen<int>[], false);
- Eval(2167, v is EmptyStructGen<int>?, true);
- Eval(2168, v is EmptyStructGen<int>?[], false);
- Eval(2169, v is NotEmptyStructGen<Guid>, false);
- Eval(2170, v is NotEmptyStructGen<Guid>[], false);
- Eval(2171, v is NotEmptyStructGen<Guid>?, false);
- Eval(2172, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2173, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2174, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2175, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2176, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2165, v is EmptyStructGen<int>, true);
+// Eval(2166, v is EmptyStructGen<int>[], false);
+// Eval(2167, v is EmptyStructGen<int>?, true);
+// Eval(2168, v is EmptyStructGen<int>?[], false);
+// Eval(2169, v is NotEmptyStructGen<Guid>, false);
+// Eval(2170, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2171, v is NotEmptyStructGen<Guid>?, false);
+// Eval(2172, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2173, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2174, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2175, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2176, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2177, v is NestedStruct, false);
Eval(2178, v is NestedStruct[], false);
Eval(2179, v is NestedStruct?, false);
Eval(2180, v is NestedStruct?[], false);
- Eval(2181, v is NestedStructGen<Decimal>, false);
- Eval(2182, v is NestedStructGen<Decimal>[], false);
- Eval(2183, v is NestedStructGen<Decimal>?, false);
- Eval(2184, v is NestedStructGen<Decimal>?[], false);
+// Eval(2181, v is NestedStructGen<Decimal>, false);
+// Eval(2182, v is NestedStructGen<Decimal>[], false);
+// Eval(2183, v is NestedStructGen<Decimal>?, false);
+// Eval(2184, v is NestedStructGen<Decimal>?[], false);
Eval(2185, v is ExplicitFieldOffsetStruct, false);
Eval(2186, v is ExplicitFieldOffsetStruct[], false);
Eval(2187, v is ExplicitFieldOffsetStruct?, false);
@@ -2171,18 +2171,18 @@ internal class Program
Eval(2206, v is ImplementTwoInterface[], false);
Eval(2207, v is ImplementTwoInterface?, false);
Eval(2208, v is ImplementTwoInterface?[], false);
- Eval(2209, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2210, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2211, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2212, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2213, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2214, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2215, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2216, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2217, v is ImplementAllInterface<int>, false);
- Eval(2218, v is ImplementAllInterface<int>[], false);
- Eval(2219, v is ImplementAllInterface<int>?, false);
- Eval(2220, v is ImplementAllInterface<int>?[], false);
+// Eval(2209, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2210, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2211, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2212, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2213, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2214, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2215, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2216, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2217, v is ImplementAllInterface<int>, false);
+// Eval(2218, v is ImplementAllInterface<int>[], false);
+// Eval(2219, v is ImplementAllInterface<int>?, false);
+// Eval(2220, v is ImplementAllInterface<int>?[], false);
Eval(2221, v is IntE, false);
Eval(2222, v is IntE[], false);
Eval(2223, v is IntE?, false);
@@ -2281,38 +2281,38 @@ internal class Program
Eval(2316, v is IEmpty[], false);
Eval(2317, v is INotEmpty, false);
Eval(2318, v is INotEmpty[], false);
- Eval(2319, v is IEmptyGen<int>, false);
- Eval(2320, v is IEmptyGen<int>[], false);
- Eval(2321, v is INotEmptyGen<int>, false);
- Eval(2322, v is INotEmptyGen<int>[], false);
+// Eval(2319, v is IEmptyGen<int>, false);
+// Eval(2320, v is IEmptyGen<int>[], false);
+// Eval(2321, v is INotEmptyGen<int>, false);
+// Eval(2322, v is INotEmptyGen<int>[], false);
Eval(2323, v is SimpleDelegate, false);
Eval(2324, v is SimpleDelegate[], false);
- Eval(2325, v is GenericDelegate<int>, false);
- Eval(2326, v is GenericDelegate<int>[], false);
+// Eval(2325, v is GenericDelegate<int>, false);
+// Eval(2326, v is GenericDelegate<int>[], false);
Eval(2327, v is EmptyClass, false);
Eval(2328, v is EmptyClass[], false);
Eval(2329, v is NotEmptyClass, false);
Eval(2330, v is NotEmptyClass[], false);
- Eval(2331, v is EmptyClassGen<int>, false);
- Eval(2332, v is EmptyClassGen<int>[], false);
- Eval(2333, v is NotEmptyClassGen<Guid>, false);
- Eval(2334, v is NotEmptyClassGen<Guid>[], false);
- Eval(2335, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2336, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2331, v is EmptyClassGen<int>, false);
+// Eval(2332, v is EmptyClassGen<int>[], false);
+// Eval(2333, v is NotEmptyClassGen<Guid>, false);
+// Eval(2334, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2335, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2336, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2337, v is NestedClass, false);
Eval(2338, v is NestedClass[], false);
- Eval(2339, v is NestedClassGen<Decimal>, false);
- Eval(2340, v is NestedClassGen<Decimal>[], false);
+// Eval(2339, v is NestedClassGen<Decimal>, false);
+// Eval(2340, v is NestedClassGen<Decimal>[], false);
Eval(2341, v is ImplementOneInterfaceC, false);
Eval(2342, v is ImplementOneInterfaceC[], false);
Eval(2343, v is ImplementTwoInterfaceC, false);
Eval(2344, v is ImplementTwoInterfaceC[], false);
- Eval(2345, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2346, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2347, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2348, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2349, v is ImplementAllInterfaceC<int>, false);
- Eval(2350, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2345, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2346, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2347, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2348, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2349, v is ImplementAllInterfaceC<int>, false);
+// Eval(2350, v is ImplementAllInterfaceC<int>[], false);
Eval(2351, v is SealedClass, false);
Eval(2352, v is SealedClass[], false);
}
@@ -2326,26 +2326,26 @@ internal class Program
Eval(2358, v is NotEmptyStruct[], false);
Eval(2359, v is NotEmptyStruct?, false);
Eval(2360, v is NotEmptyStruct?[], false);
- Eval(2361, v is EmptyStructGen<int>, false);
- Eval(2362, v is EmptyStructGen<int>[], false);
- Eval(2363, v is EmptyStructGen<int>?, false);
- Eval(2364, v is EmptyStructGen<int>?[], false);
- Eval(2365, v is NotEmptyStructGen<Guid>, false);
- Eval(2366, v is NotEmptyStructGen<Guid>[], false);
- Eval(2367, v is NotEmptyStructGen<Guid>?, false);
- Eval(2368, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2369, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2370, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2371, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2372, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2361, v is EmptyStructGen<int>, false);
+// Eval(2362, v is EmptyStructGen<int>[], false);
+// Eval(2363, v is EmptyStructGen<int>?, false);
+// Eval(2364, v is EmptyStructGen<int>?[], false);
+// Eval(2365, v is NotEmptyStructGen<Guid>, false);
+// Eval(2366, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2367, v is NotEmptyStructGen<Guid>?, false);
+// Eval(2368, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2369, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2370, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2371, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2372, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2373, v is NestedStruct, false);
Eval(2374, v is NestedStruct[], false);
Eval(2375, v is NestedStruct?, false);
Eval(2376, v is NestedStruct?[], false);
- Eval(2377, v is NestedStructGen<Decimal>, false);
- Eval(2378, v is NestedStructGen<Decimal>[], false);
- Eval(2379, v is NestedStructGen<Decimal>?, false);
- Eval(2380, v is NestedStructGen<Decimal>?[], false);
+// Eval(2377, v is NestedStructGen<Decimal>, false);
+// Eval(2378, v is NestedStructGen<Decimal>[], false);
+// Eval(2379, v is NestedStructGen<Decimal>?, false);
+// Eval(2380, v is NestedStructGen<Decimal>?[], false);
Eval(2381, v is ExplicitFieldOffsetStruct, false);
Eval(2382, v is ExplicitFieldOffsetStruct[], false);
Eval(2383, v is ExplicitFieldOffsetStruct?, false);
@@ -2362,18 +2362,18 @@ internal class Program
Eval(2402, v is ImplementTwoInterface[], false);
Eval(2403, v is ImplementTwoInterface?, false);
Eval(2404, v is ImplementTwoInterface?[], false);
- Eval(2405, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2406, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2407, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2408, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2409, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2410, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2411, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2412, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2413, v is ImplementAllInterface<int>, false);
- Eval(2414, v is ImplementAllInterface<int>[], false);
- Eval(2415, v is ImplementAllInterface<int>?, false);
- Eval(2416, v is ImplementAllInterface<int>?[], false);
+// Eval(2405, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2406, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2407, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2408, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2409, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2410, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2411, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2412, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2413, v is ImplementAllInterface<int>, false);
+// Eval(2414, v is ImplementAllInterface<int>[], false);
+// Eval(2415, v is ImplementAllInterface<int>?, false);
+// Eval(2416, v is ImplementAllInterface<int>?[], false);
Eval(2417, v is IntE, false);
Eval(2418, v is IntE[], false);
Eval(2419, v is IntE?, false);
@@ -2472,38 +2472,38 @@ internal class Program
Eval(2512, v is IEmpty[], false);
Eval(2513, v is INotEmpty, false);
Eval(2514, v is INotEmpty[], false);
- Eval(2515, v is IEmptyGen<int>, false);
- Eval(2516, v is IEmptyGen<int>[], false);
- Eval(2517, v is INotEmptyGen<int>, false);
- Eval(2518, v is INotEmptyGen<int>[], false);
+// Eval(2515, v is IEmptyGen<int>, false);
+// Eval(2516, v is IEmptyGen<int>[], false);
+// Eval(2517, v is INotEmptyGen<int>, false);
+// Eval(2518, v is INotEmptyGen<int>[], false);
Eval(2519, v is SimpleDelegate, false);
Eval(2520, v is SimpleDelegate[], false);
- Eval(2521, v is GenericDelegate<int>, false);
- Eval(2522, v is GenericDelegate<int>[], false);
+// Eval(2521, v is GenericDelegate<int>, false);
+// Eval(2522, v is GenericDelegate<int>[], false);
Eval(2523, v is EmptyClass, false);
Eval(2524, v is EmptyClass[], false);
Eval(2525, v is NotEmptyClass, false);
Eval(2526, v is NotEmptyClass[], false);
- Eval(2527, v is EmptyClassGen<int>, false);
- Eval(2528, v is EmptyClassGen<int>[], false);
- Eval(2529, v is NotEmptyClassGen<Guid>, false);
- Eval(2530, v is NotEmptyClassGen<Guid>[], false);
- Eval(2531, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2532, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2527, v is EmptyClassGen<int>, false);
+// Eval(2528, v is EmptyClassGen<int>[], false);
+// Eval(2529, v is NotEmptyClassGen<Guid>, false);
+// Eval(2530, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2531, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2532, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2533, v is NestedClass, false);
Eval(2534, v is NestedClass[], false);
- Eval(2535, v is NestedClassGen<Decimal>, false);
- Eval(2536, v is NestedClassGen<Decimal>[], false);
+// Eval(2535, v is NestedClassGen<Decimal>, false);
+// Eval(2536, v is NestedClassGen<Decimal>[], false);
Eval(2537, v is ImplementOneInterfaceC, false);
Eval(2538, v is ImplementOneInterfaceC[], false);
Eval(2539, v is ImplementTwoInterfaceC, false);
Eval(2540, v is ImplementTwoInterfaceC[], false);
- Eval(2541, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2542, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2543, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2544, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2545, v is ImplementAllInterfaceC<int>, false);
- Eval(2546, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2541, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2542, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2543, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2544, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2545, v is ImplementAllInterfaceC<int>, false);
+// Eval(2546, v is ImplementAllInterfaceC<int>[], false);
Eval(2547, v is SealedClass, false);
Eval(2548, v is SealedClass[], false);
}
@@ -2517,26 +2517,26 @@ internal class Program
Eval(2554, v is NotEmptyStruct[], false);
Eval(2555, v is NotEmptyStruct?, false);
Eval(2556, v is NotEmptyStruct?[], false);
- Eval(2557, v is EmptyStructGen<int>, false);
- Eval(2558, v is EmptyStructGen<int>[], false);
- Eval(2559, v is EmptyStructGen<int>?, false);
- Eval(2560, v is EmptyStructGen<int>?[], false);
- Eval(2561, v is NotEmptyStructGen<Guid>, false);
- Eval(2562, v is NotEmptyStructGen<Guid>[], false);
- Eval(2563, v is NotEmptyStructGen<Guid>?, false);
- Eval(2564, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2565, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2566, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2567, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2568, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2557, v is EmptyStructGen<int>, false);
+// Eval(2558, v is EmptyStructGen<int>[], false);
+// Eval(2559, v is EmptyStructGen<int>?, false);
+// Eval(2560, v is EmptyStructGen<int>?[], false);
+// Eval(2561, v is NotEmptyStructGen<Guid>, false);
+// Eval(2562, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2563, v is NotEmptyStructGen<Guid>?, false);
+// Eval(2564, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2565, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2566, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2567, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2568, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2569, v is NestedStruct, false);
Eval(2570, v is NestedStruct[], false);
Eval(2571, v is NestedStruct?, false);
Eval(2572, v is NestedStruct?[], false);
- Eval(2573, v is NestedStructGen<Decimal>, false);
- Eval(2574, v is NestedStructGen<Decimal>[], false);
- Eval(2575, v is NestedStructGen<Decimal>?, false);
- Eval(2576, v is NestedStructGen<Decimal>?[], false);
+// Eval(2573, v is NestedStructGen<Decimal>, false);
+// Eval(2574, v is NestedStructGen<Decimal>[], false);
+// Eval(2575, v is NestedStructGen<Decimal>?, false);
+// Eval(2576, v is NestedStructGen<Decimal>?[], false);
Eval(2577, v is ExplicitFieldOffsetStruct, false);
Eval(2578, v is ExplicitFieldOffsetStruct[], false);
Eval(2579, v is ExplicitFieldOffsetStruct?, false);
@@ -2553,18 +2553,18 @@ internal class Program
Eval(2598, v is ImplementTwoInterface[], false);
Eval(2599, v is ImplementTwoInterface?, false);
Eval(2600, v is ImplementTwoInterface?[], false);
- Eval(2601, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2602, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2603, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2604, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2605, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2606, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2607, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2608, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2609, v is ImplementAllInterface<int>, false);
- Eval(2610, v is ImplementAllInterface<int>[], false);
- Eval(2611, v is ImplementAllInterface<int>?, false);
- Eval(2612, v is ImplementAllInterface<int>?[], false);
+// Eval(2601, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2602, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2603, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2604, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2605, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2606, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2607, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2608, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2609, v is ImplementAllInterface<int>, false);
+// Eval(2610, v is ImplementAllInterface<int>[], false);
+// Eval(2611, v is ImplementAllInterface<int>?, false);
+// Eval(2612, v is ImplementAllInterface<int>?[], false);
Eval(2613, v is IntE, false);
Eval(2614, v is IntE[], false);
Eval(2615, v is IntE?, false);
@@ -2663,38 +2663,38 @@ internal class Program
Eval(2708, v is IEmpty[], false);
Eval(2709, v is INotEmpty, false);
Eval(2710, v is INotEmpty[], false);
- Eval(2711, v is IEmptyGen<int>, false);
- Eval(2712, v is IEmptyGen<int>[], false);
- Eval(2713, v is INotEmptyGen<int>, false);
- Eval(2714, v is INotEmptyGen<int>[], false);
+// Eval(2711, v is IEmptyGen<int>, false);
+// Eval(2712, v is IEmptyGen<int>[], false);
+// Eval(2713, v is INotEmptyGen<int>, false);
+// Eval(2714, v is INotEmptyGen<int>[], false);
Eval(2715, v is SimpleDelegate, false);
Eval(2716, v is SimpleDelegate[], false);
- Eval(2717, v is GenericDelegate<int>, false);
- Eval(2718, v is GenericDelegate<int>[], false);
+// Eval(2717, v is GenericDelegate<int>, false);
+// Eval(2718, v is GenericDelegate<int>[], false);
Eval(2719, v is EmptyClass, false);
Eval(2720, v is EmptyClass[], false);
Eval(2721, v is NotEmptyClass, false);
Eval(2722, v is NotEmptyClass[], false);
- Eval(2723, v is EmptyClassGen<int>, false);
- Eval(2724, v is EmptyClassGen<int>[], false);
- Eval(2725, v is NotEmptyClassGen<Guid>, false);
- Eval(2726, v is NotEmptyClassGen<Guid>[], false);
- Eval(2727, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2728, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2723, v is EmptyClassGen<int>, false);
+// Eval(2724, v is EmptyClassGen<int>[], false);
+// Eval(2725, v is NotEmptyClassGen<Guid>, false);
+// Eval(2726, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2727, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2728, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2729, v is NestedClass, false);
Eval(2730, v is NestedClass[], false);
- Eval(2731, v is NestedClassGen<Decimal>, false);
- Eval(2732, v is NestedClassGen<Decimal>[], false);
+// Eval(2731, v is NestedClassGen<Decimal>, false);
+// Eval(2732, v is NestedClassGen<Decimal>[], false);
Eval(2733, v is ImplementOneInterfaceC, false);
Eval(2734, v is ImplementOneInterfaceC[], false);
Eval(2735, v is ImplementTwoInterfaceC, false);
Eval(2736, v is ImplementTwoInterfaceC[], false);
- Eval(2737, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2738, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2739, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2740, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2741, v is ImplementAllInterfaceC<int>, false);
- Eval(2742, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2737, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2738, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2739, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2740, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2741, v is ImplementAllInterfaceC<int>, false);
+// Eval(2742, v is ImplementAllInterfaceC<int>[], false);
Eval(2743, v is SealedClass, false);
Eval(2744, v is SealedClass[], false);
}
@@ -2708,26 +2708,26 @@ internal class Program
Eval(2750, v is NotEmptyStruct[], false);
Eval(2751, v is NotEmptyStruct?, false);
Eval(2752, v is NotEmptyStruct?[], false);
- Eval(2753, v is EmptyStructGen<int>, false);
- Eval(2754, v is EmptyStructGen<int>[], false);
- Eval(2755, v is EmptyStructGen<int>?, false);
- Eval(2756, v is EmptyStructGen<int>?[], true);
- Eval(2757, v is NotEmptyStructGen<Guid>, false);
- Eval(2758, v is NotEmptyStructGen<Guid>[], false);
- Eval(2759, v is NotEmptyStructGen<Guid>?, false);
- Eval(2760, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2761, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2762, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2763, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2764, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2753, v is EmptyStructGen<int>, false);
+// Eval(2754, v is EmptyStructGen<int>[], false);
+// Eval(2755, v is EmptyStructGen<int>?, false);
+// Eval(2756, v is EmptyStructGen<int>?[], true);
+// Eval(2757, v is NotEmptyStructGen<Guid>, false);
+// Eval(2758, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2759, v is NotEmptyStructGen<Guid>?, false);
+// Eval(2760, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2761, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2762, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2763, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2764, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2765, v is NestedStruct, false);
Eval(2766, v is NestedStruct[], false);
Eval(2767, v is NestedStruct?, false);
Eval(2768, v is NestedStruct?[], false);
- Eval(2769, v is NestedStructGen<Decimal>, false);
- Eval(2770, v is NestedStructGen<Decimal>[], false);
- Eval(2771, v is NestedStructGen<Decimal>?, false);
- Eval(2772, v is NestedStructGen<Decimal>?[], false);
+// Eval(2769, v is NestedStructGen<Decimal>, false);
+// Eval(2770, v is NestedStructGen<Decimal>[], false);
+// Eval(2771, v is NestedStructGen<Decimal>?, false);
+// Eval(2772, v is NestedStructGen<Decimal>?[], false);
Eval(2773, v is ExplicitFieldOffsetStruct, false);
Eval(2774, v is ExplicitFieldOffsetStruct[], false);
Eval(2775, v is ExplicitFieldOffsetStruct?, false);
@@ -2744,18 +2744,18 @@ internal class Program
Eval(2794, v is ImplementTwoInterface[], false);
Eval(2795, v is ImplementTwoInterface?, false);
Eval(2796, v is ImplementTwoInterface?[], false);
- Eval(2797, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2798, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2799, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2800, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2801, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2802, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2803, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2804, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2805, v is ImplementAllInterface<int>, false);
- Eval(2806, v is ImplementAllInterface<int>[], false);
- Eval(2807, v is ImplementAllInterface<int>?, false);
- Eval(2808, v is ImplementAllInterface<int>?[], false);
+// Eval(2797, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2798, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2799, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2800, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2801, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2802, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2803, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2804, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2805, v is ImplementAllInterface<int>, false);
+// Eval(2806, v is ImplementAllInterface<int>[], false);
+// Eval(2807, v is ImplementAllInterface<int>?, false);
+// Eval(2808, v is ImplementAllInterface<int>?[], false);
Eval(2809, v is IntE, false);
Eval(2810, v is IntE[], false);
Eval(2811, v is IntE?, false);
@@ -2854,38 +2854,38 @@ internal class Program
Eval(2904, v is IEmpty[], false);
Eval(2905, v is INotEmpty, false);
Eval(2906, v is INotEmpty[], false);
- Eval(2907, v is IEmptyGen<int>, false);
- Eval(2908, v is IEmptyGen<int>[], false);
- Eval(2909, v is INotEmptyGen<int>, false);
- Eval(2910, v is INotEmptyGen<int>[], false);
+// Eval(2907, v is IEmptyGen<int>, false);
+// Eval(2908, v is IEmptyGen<int>[], false);
+// Eval(2909, v is INotEmptyGen<int>, false);
+// Eval(2910, v is INotEmptyGen<int>[], false);
Eval(2911, v is SimpleDelegate, false);
Eval(2912, v is SimpleDelegate[], false);
- Eval(2913, v is GenericDelegate<int>, false);
- Eval(2914, v is GenericDelegate<int>[], false);
+// Eval(2913, v is GenericDelegate<int>, false);
+// Eval(2914, v is GenericDelegate<int>[], false);
Eval(2915, v is EmptyClass, false);
Eval(2916, v is EmptyClass[], false);
Eval(2917, v is NotEmptyClass, false);
Eval(2918, v is NotEmptyClass[], false);
- Eval(2919, v is EmptyClassGen<int>, false);
- Eval(2920, v is EmptyClassGen<int>[], false);
- Eval(2921, v is NotEmptyClassGen<Guid>, false);
- Eval(2922, v is NotEmptyClassGen<Guid>[], false);
- Eval(2923, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2924, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2919, v is EmptyClassGen<int>, false);
+// Eval(2920, v is EmptyClassGen<int>[], false);
+// Eval(2921, v is NotEmptyClassGen<Guid>, false);
+// Eval(2922, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2923, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2924, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2925, v is NestedClass, false);
Eval(2926, v is NestedClass[], false);
- Eval(2927, v is NestedClassGen<Decimal>, false);
- Eval(2928, v is NestedClassGen<Decimal>[], false);
+// Eval(2927, v is NestedClassGen<Decimal>, false);
+// Eval(2928, v is NestedClassGen<Decimal>[], false);
Eval(2929, v is ImplementOneInterfaceC, false);
Eval(2930, v is ImplementOneInterfaceC[], false);
Eval(2931, v is ImplementTwoInterfaceC, false);
Eval(2932, v is ImplementTwoInterfaceC[], false);
- Eval(2933, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2934, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2935, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2936, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2937, v is ImplementAllInterfaceC<int>, false);
- Eval(2938, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2933, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2934, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2935, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2936, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2937, v is ImplementAllInterfaceC<int>, false);
+// Eval(2938, v is ImplementAllInterfaceC<int>[], false);
Eval(2939, v is SealedClass, false);
Eval(2940, v is SealedClass[], false);
}
@@ -2902,26 +2902,26 @@ internal class Program
Eval(2946, v is NotEmptyStruct[], false);
Eval(2947, v is NotEmptyStruct?, false);
Eval(2948, v is NotEmptyStruct?[], false);
- Eval(2949, v is EmptyStructGen<int>, false);
- Eval(2950, v is EmptyStructGen<int>[], false);
- Eval(2951, v is EmptyStructGen<int>?, false);
- Eval(2952, v is EmptyStructGen<int>?[], false);
- Eval(2953, v is NotEmptyStructGen<Guid>, true);
- Eval(2954, v is NotEmptyStructGen<Guid>[], false);
- Eval(2955, v is NotEmptyStructGen<Guid>?, true);
- Eval(2956, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2957, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2958, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2959, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2960, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2949, v is EmptyStructGen<int>, false);
+// Eval(2950, v is EmptyStructGen<int>[], false);
+// Eval(2951, v is EmptyStructGen<int>?, false);
+// Eval(2952, v is EmptyStructGen<int>?[], false);
+// Eval(2953, v is NotEmptyStructGen<Guid>, true);
+// Eval(2954, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2955, v is NotEmptyStructGen<Guid>?, true);
+// Eval(2956, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2957, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2958, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2959, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2960, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2961, v is NestedStruct, false);
Eval(2962, v is NestedStruct[], false);
Eval(2963, v is NestedStruct?, false);
Eval(2964, v is NestedStruct?[], false);
- Eval(2965, v is NestedStructGen<Decimal>, false);
- Eval(2966, v is NestedStructGen<Decimal>[], false);
- Eval(2967, v is NestedStructGen<Decimal>?, false);
- Eval(2968, v is NestedStructGen<Decimal>?[], false);
+// Eval(2965, v is NestedStructGen<Decimal>, false);
+// Eval(2966, v is NestedStructGen<Decimal>[], false);
+// Eval(2967, v is NestedStructGen<Decimal>?, false);
+// Eval(2968, v is NestedStructGen<Decimal>?[], false);
Eval(2969, v is ExplicitFieldOffsetStruct, false);
Eval(2970, v is ExplicitFieldOffsetStruct[], false);
Eval(2971, v is ExplicitFieldOffsetStruct?, false);
@@ -2938,18 +2938,18 @@ internal class Program
Eval(2990, v is ImplementTwoInterface[], false);
Eval(2991, v is ImplementTwoInterface?, false);
Eval(2992, v is ImplementTwoInterface?[], false);
- Eval(2993, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2994, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2995, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2996, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2997, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2998, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2999, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3000, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3001, v is ImplementAllInterface<int>, false);
- Eval(3002, v is ImplementAllInterface<int>[], false);
- Eval(3003, v is ImplementAllInterface<int>?, false);
- Eval(3004, v is ImplementAllInterface<int>?[], false);
+// Eval(2993, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2994, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2995, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2996, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2997, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2998, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2999, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3000, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3001, v is ImplementAllInterface<int>, false);
+// Eval(3002, v is ImplementAllInterface<int>[], false);
+// Eval(3003, v is ImplementAllInterface<int>?, false);
+// Eval(3004, v is ImplementAllInterface<int>?[], false);
Eval(3005, v is IntE, false);
Eval(3006, v is IntE[], false);
Eval(3007, v is IntE?, false);
@@ -3048,38 +3048,38 @@ internal class Program
Eval(3100, v is IEmpty[], false);
Eval(3101, v is INotEmpty, false);
Eval(3102, v is INotEmpty[], false);
- Eval(3103, v is IEmptyGen<int>, false);
- Eval(3104, v is IEmptyGen<int>[], false);
- Eval(3105, v is INotEmptyGen<int>, false);
- Eval(3106, v is INotEmptyGen<int>[], false);
+// Eval(3103, v is IEmptyGen<int>, false);
+// Eval(3104, v is IEmptyGen<int>[], false);
+// Eval(3105, v is INotEmptyGen<int>, false);
+// Eval(3106, v is INotEmptyGen<int>[], false);
Eval(3107, v is SimpleDelegate, false);
Eval(3108, v is SimpleDelegate[], false);
- Eval(3109, v is GenericDelegate<int>, false);
- Eval(3110, v is GenericDelegate<int>[], false);
+// Eval(3109, v is GenericDelegate<int>, false);
+// Eval(3110, v is GenericDelegate<int>[], false);
Eval(3111, v is EmptyClass, false);
Eval(3112, v is EmptyClass[], false);
Eval(3113, v is NotEmptyClass, false);
Eval(3114, v is NotEmptyClass[], false);
- Eval(3115, v is EmptyClassGen<int>, false);
- Eval(3116, v is EmptyClassGen<int>[], false);
- Eval(3117, v is NotEmptyClassGen<Guid>, false);
- Eval(3118, v is NotEmptyClassGen<Guid>[], false);
- Eval(3119, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3120, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3115, v is EmptyClassGen<int>, false);
+// Eval(3116, v is EmptyClassGen<int>[], false);
+// Eval(3117, v is NotEmptyClassGen<Guid>, false);
+// Eval(3118, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3119, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3120, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3121, v is NestedClass, false);
Eval(3122, v is NestedClass[], false);
- Eval(3123, v is NestedClassGen<Decimal>, false);
- Eval(3124, v is NestedClassGen<Decimal>[], false);
+// Eval(3123, v is NestedClassGen<Decimal>, false);
+// Eval(3124, v is NestedClassGen<Decimal>[], false);
Eval(3125, v is ImplementOneInterfaceC, false);
Eval(3126, v is ImplementOneInterfaceC[], false);
Eval(3127, v is ImplementTwoInterfaceC, false);
Eval(3128, v is ImplementTwoInterfaceC[], false);
- Eval(3129, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3130, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3131, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3132, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3133, v is ImplementAllInterfaceC<int>, false);
- Eval(3134, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3129, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3130, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3131, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3132, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3133, v is ImplementAllInterfaceC<int>, false);
+// Eval(3134, v is ImplementAllInterfaceC<int>[], false);
Eval(3135, v is SealedClass, false);
Eval(3136, v is SealedClass[], false);
}
@@ -3093,26 +3093,26 @@ internal class Program
Eval(3142, v is NotEmptyStruct[], false);
Eval(3143, v is NotEmptyStruct?, false);
Eval(3144, v is NotEmptyStruct?[], false);
- Eval(3145, v is EmptyStructGen<int>, false);
- Eval(3146, v is EmptyStructGen<int>[], false);
- Eval(3147, v is EmptyStructGen<int>?, false);
- Eval(3148, v is EmptyStructGen<int>?[], false);
- Eval(3149, v is NotEmptyStructGen<Guid>, true);
- Eval(3150, v is NotEmptyStructGen<Guid>[], false);
- Eval(3151, v is NotEmptyStructGen<Guid>?, true);
- Eval(3152, v is NotEmptyStructGen<Guid>?[], false);
- Eval(3153, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3154, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3155, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3156, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3145, v is EmptyStructGen<int>, false);
+// Eval(3146, v is EmptyStructGen<int>[], false);
+// Eval(3147, v is EmptyStructGen<int>?, false);
+// Eval(3148, v is EmptyStructGen<int>?[], false);
+// Eval(3149, v is NotEmptyStructGen<Guid>, true);
+// Eval(3150, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3151, v is NotEmptyStructGen<Guid>?, true);
+// Eval(3152, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(3153, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3154, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3155, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3156, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3157, v is NestedStruct, false);
Eval(3158, v is NestedStruct[], false);
Eval(3159, v is NestedStruct?, false);
Eval(3160, v is NestedStruct?[], false);
- Eval(3161, v is NestedStructGen<Decimal>, false);
- Eval(3162, v is NestedStructGen<Decimal>[], false);
- Eval(3163, v is NestedStructGen<Decimal>?, false);
- Eval(3164, v is NestedStructGen<Decimal>?[], false);
+// Eval(3161, v is NestedStructGen<Decimal>, false);
+// Eval(3162, v is NestedStructGen<Decimal>[], false);
+// Eval(3163, v is NestedStructGen<Decimal>?, false);
+// Eval(3164, v is NestedStructGen<Decimal>?[], false);
Eval(3165, v is ExplicitFieldOffsetStruct, false);
Eval(3166, v is ExplicitFieldOffsetStruct[], false);
Eval(3167, v is ExplicitFieldOffsetStruct?, false);
@@ -3129,18 +3129,18 @@ internal class Program
Eval(3186, v is ImplementTwoInterface[], false);
Eval(3187, v is ImplementTwoInterface?, false);
Eval(3188, v is ImplementTwoInterface?[], false);
- Eval(3189, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3190, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3191, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3192, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3193, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3194, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3195, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3196, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3197, v is ImplementAllInterface<int>, false);
- Eval(3198, v is ImplementAllInterface<int>[], false);
- Eval(3199, v is ImplementAllInterface<int>?, false);
- Eval(3200, v is ImplementAllInterface<int>?[], false);
+// Eval(3189, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3190, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3191, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3192, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3193, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3194, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3195, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3196, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3197, v is ImplementAllInterface<int>, false);
+// Eval(3198, v is ImplementAllInterface<int>[], false);
+// Eval(3199, v is ImplementAllInterface<int>?, false);
+// Eval(3200, v is ImplementAllInterface<int>?[], false);
Eval(3201, v is IntE, false);
Eval(3202, v is IntE[], false);
Eval(3203, v is IntE?, false);
@@ -3239,38 +3239,38 @@ internal class Program
Eval(3296, v is IEmpty[], false);
Eval(3297, v is INotEmpty, false);
Eval(3298, v is INotEmpty[], false);
- Eval(3299, v is IEmptyGen<int>, false);
- Eval(3300, v is IEmptyGen<int>[], false);
- Eval(3301, v is INotEmptyGen<int>, false);
- Eval(3302, v is INotEmptyGen<int>[], false);
+// Eval(3299, v is IEmptyGen<int>, false);
+// Eval(3300, v is IEmptyGen<int>[], false);
+// Eval(3301, v is INotEmptyGen<int>, false);
+// Eval(3302, v is INotEmptyGen<int>[], false);
Eval(3303, v is SimpleDelegate, false);
Eval(3304, v is SimpleDelegate[], false);
- Eval(3305, v is GenericDelegate<int>, false);
- Eval(3306, v is GenericDelegate<int>[], false);
+// Eval(3305, v is GenericDelegate<int>, false);
+// Eval(3306, v is GenericDelegate<int>[], false);
Eval(3307, v is EmptyClass, false);
Eval(3308, v is EmptyClass[], false);
Eval(3309, v is NotEmptyClass, false);
Eval(3310, v is NotEmptyClass[], false);
- Eval(3311, v is EmptyClassGen<int>, false);
- Eval(3312, v is EmptyClassGen<int>[], false);
- Eval(3313, v is NotEmptyClassGen<Guid>, false);
- Eval(3314, v is NotEmptyClassGen<Guid>[], false);
- Eval(3315, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3316, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3311, v is EmptyClassGen<int>, false);
+// Eval(3312, v is EmptyClassGen<int>[], false);
+// Eval(3313, v is NotEmptyClassGen<Guid>, false);
+// Eval(3314, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3315, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3316, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3317, v is NestedClass, false);
Eval(3318, v is NestedClass[], false);
- Eval(3319, v is NestedClassGen<Decimal>, false);
- Eval(3320, v is NestedClassGen<Decimal>[], false);
+// Eval(3319, v is NestedClassGen<Decimal>, false);
+// Eval(3320, v is NestedClassGen<Decimal>[], false);
Eval(3321, v is ImplementOneInterfaceC, false);
Eval(3322, v is ImplementOneInterfaceC[], false);
Eval(3323, v is ImplementTwoInterfaceC, false);
Eval(3324, v is ImplementTwoInterfaceC[], false);
- Eval(3325, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3326, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3327, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3328, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3329, v is ImplementAllInterfaceC<int>, false);
- Eval(3330, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3325, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3326, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3327, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3328, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3329, v is ImplementAllInterfaceC<int>, false);
+// Eval(3330, v is ImplementAllInterfaceC<int>[], false);
Eval(3331, v is SealedClass, false);
Eval(3332, v is SealedClass[], false);
}
@@ -3284,26 +3284,26 @@ internal class Program
Eval(3338, v is NotEmptyStruct[], false);
Eval(3339, v is NotEmptyStruct?, false);
Eval(3340, v is NotEmptyStruct?[], false);
- Eval(3341, v is EmptyStructGen<int>, false);
- Eval(3342, v is EmptyStructGen<int>[], false);
- Eval(3343, v is EmptyStructGen<int>?, false);
- Eval(3344, v is EmptyStructGen<int>?[], false);
- Eval(3345, v is NotEmptyStructGen<Guid>, false);
- Eval(3346, v is NotEmptyStructGen<Guid>[], false);
- Eval(3347, v is NotEmptyStructGen<Guid>?, false);
- Eval(3348, v is NotEmptyStructGen<Guid>?[], false);
- Eval(3349, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3350, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3351, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3352, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3341, v is EmptyStructGen<int>, false);
+// Eval(3342, v is EmptyStructGen<int>[], false);
+// Eval(3343, v is EmptyStructGen<int>?, false);
+// Eval(3344, v is EmptyStructGen<int>?[], false);
+// Eval(3345, v is NotEmptyStructGen<Guid>, false);
+// Eval(3346, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3347, v is NotEmptyStructGen<Guid>?, false);
+// Eval(3348, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(3349, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3350, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3351, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3352, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3353, v is NestedStruct, false);
Eval(3354, v is NestedStruct[], false);
Eval(3355, v is NestedStruct?, false);
Eval(3356, v is NestedStruct?[], false);
- Eval(3357, v is NestedStructGen<Decimal>, false);
- Eval(3358, v is NestedStructGen<Decimal>[], false);
- Eval(3359, v is NestedStructGen<Decimal>?, false);
- Eval(3360, v is NestedStructGen<Decimal>?[], false);
+// Eval(3357, v is NestedStructGen<Decimal>, false);
+// Eval(3358, v is NestedStructGen<Decimal>[], false);
+// Eval(3359, v is NestedStructGen<Decimal>?, false);
+// Eval(3360, v is NestedStructGen<Decimal>?[], false);
Eval(3361, v is ExplicitFieldOffsetStruct, false);
Eval(3362, v is ExplicitFieldOffsetStruct[], false);
Eval(3363, v is ExplicitFieldOffsetStruct?, false);
@@ -3320,18 +3320,18 @@ internal class Program
Eval(3382, v is ImplementTwoInterface[], false);
Eval(3383, v is ImplementTwoInterface?, false);
Eval(3384, v is ImplementTwoInterface?[], false);
- Eval(3385, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3386, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3387, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3388, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3389, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3390, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3391, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3392, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3393, v is ImplementAllInterface<int>, false);
- Eval(3394, v is ImplementAllInterface<int>[], false);
- Eval(3395, v is ImplementAllInterface<int>?, false);
- Eval(3396, v is ImplementAllInterface<int>?[], false);
+// Eval(3385, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3386, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3387, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3388, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3389, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3390, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3391, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3392, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3393, v is ImplementAllInterface<int>, false);
+// Eval(3394, v is ImplementAllInterface<int>[], false);
+// Eval(3395, v is ImplementAllInterface<int>?, false);
+// Eval(3396, v is ImplementAllInterface<int>?[], false);
Eval(3397, v is IntE, false);
Eval(3398, v is IntE[], false);
Eval(3399, v is IntE?, false);
@@ -3430,38 +3430,38 @@ internal class Program
Eval(3492, v is IEmpty[], false);
Eval(3493, v is INotEmpty, false);
Eval(3494, v is INotEmpty[], false);
- Eval(3495, v is IEmptyGen<int>, false);
- Eval(3496, v is IEmptyGen<int>[], false);
- Eval(3497, v is INotEmptyGen<int>, false);
- Eval(3498, v is INotEmptyGen<int>[], false);
+// Eval(3495, v is IEmptyGen<int>, false);
+// Eval(3496, v is IEmptyGen<int>[], false);
+// Eval(3497, v is INotEmptyGen<int>, false);
+// Eval(3498, v is INotEmptyGen<int>[], false);
Eval(3499, v is SimpleDelegate, false);
Eval(3500, v is SimpleDelegate[], false);
- Eval(3501, v is GenericDelegate<int>, false);
- Eval(3502, v is GenericDelegate<int>[], false);
+// Eval(3501, v is GenericDelegate<int>, false);
+// Eval(3502, v is GenericDelegate<int>[], false);
Eval(3503, v is EmptyClass, false);
Eval(3504, v is EmptyClass[], false);
Eval(3505, v is NotEmptyClass, false);
Eval(3506, v is NotEmptyClass[], false);
- Eval(3507, v is EmptyClassGen<int>, false);
- Eval(3508, v is EmptyClassGen<int>[], false);
- Eval(3509, v is NotEmptyClassGen<Guid>, false);
- Eval(3510, v is NotEmptyClassGen<Guid>[], false);
- Eval(3511, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3512, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3507, v is EmptyClassGen<int>, false);
+// Eval(3508, v is EmptyClassGen<int>[], false);
+// Eval(3509, v is NotEmptyClassGen<Guid>, false);
+// Eval(3510, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3511, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3512, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3513, v is NestedClass, false);
Eval(3514, v is NestedClass[], false);
- Eval(3515, v is NestedClassGen<Decimal>, false);
- Eval(3516, v is NestedClassGen<Decimal>[], false);
+// Eval(3515, v is NestedClassGen<Decimal>, false);
+// Eval(3516, v is NestedClassGen<Decimal>[], false);
Eval(3517, v is ImplementOneInterfaceC, false);
Eval(3518, v is ImplementOneInterfaceC[], false);
Eval(3519, v is ImplementTwoInterfaceC, false);
Eval(3520, v is ImplementTwoInterfaceC[], false);
- Eval(3521, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3522, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3523, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3524, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3525, v is ImplementAllInterfaceC<int>, false);
- Eval(3526, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3521, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3522, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3523, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3524, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3525, v is ImplementAllInterfaceC<int>, false);
+// Eval(3526, v is ImplementAllInterfaceC<int>[], false);
Eval(3527, v is SealedClass, false);
Eval(3528, v is SealedClass[], false);
}
@@ -3475,26 +3475,26 @@ internal class Program
Eval(3534, v is NotEmptyStruct[], false);
Eval(3535, v is NotEmptyStruct?, false);
Eval(3536, v is NotEmptyStruct?[], false);
- Eval(3537, v is EmptyStructGen<int>, false);
- Eval(3538, v is EmptyStructGen<int>[], false);
- Eval(3539, v is EmptyStructGen<int>?, false);
- Eval(3540, v is EmptyStructGen<int>?[], false);
- Eval(3541, v is NotEmptyStructGen<Guid>, false);
- Eval(3542, v is NotEmptyStructGen<Guid>[], false);
- Eval(3543, v is NotEmptyStructGen<Guid>?, false);
- Eval(3544, v is NotEmptyStructGen<Guid>?[], false);
- Eval(3545, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3546, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3547, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3548, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3537, v is EmptyStructGen<int>, false);
+// Eval(3538, v is EmptyStructGen<int>[], false);
+// Eval(3539, v is EmptyStructGen<int>?, false);
+// Eval(3540, v is EmptyStructGen<int>?[], false);
+// Eval(3541, v is NotEmptyStructGen<Guid>, false);
+// Eval(3542, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3543, v is NotEmptyStructGen<Guid>?, false);
+// Eval(3544, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(3545, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3546, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3547, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3548, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3549, v is NestedStruct, false);
Eval(3550, v is NestedStruct[], false);
Eval(3551, v is NestedStruct?, false);
Eval(3552, v is NestedStruct?[], false);
- Eval(3553, v is NestedStructGen<Decimal>, false);
- Eval(3554, v is NestedStructGen<Decimal>[], false);
- Eval(3555, v is NestedStructGen<Decimal>?, false);
- Eval(3556, v is NestedStructGen<Decimal>?[], false);
+// Eval(3553, v is NestedStructGen<Decimal>, false);
+// Eval(3554, v is NestedStructGen<Decimal>[], false);
+// Eval(3555, v is NestedStructGen<Decimal>?, false);
+// Eval(3556, v is NestedStructGen<Decimal>?[], false);
Eval(3557, v is ExplicitFieldOffsetStruct, false);
Eval(3558, v is ExplicitFieldOffsetStruct[], false);
Eval(3559, v is ExplicitFieldOffsetStruct?, false);
@@ -3511,18 +3511,18 @@ internal class Program
Eval(3578, v is ImplementTwoInterface[], false);
Eval(3579, v is ImplementTwoInterface?, false);
Eval(3580, v is ImplementTwoInterface?[], false);
- Eval(3581, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3582, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3583, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3584, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3585, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3586, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3587, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3588, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3589, v is ImplementAllInterface<int>, false);
- Eval(3590, v is ImplementAllInterface<int>[], false);
- Eval(3591, v is ImplementAllInterface<int>?, false);
- Eval(3592, v is ImplementAllInterface<int>?[], false);
+// Eval(3581, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3582, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3583, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3584, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3585, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3586, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3587, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3588, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3589, v is ImplementAllInterface<int>, false);
+// Eval(3590, v is ImplementAllInterface<int>[], false);
+// Eval(3591, v is ImplementAllInterface<int>?, false);
+// Eval(3592, v is ImplementAllInterface<int>?[], false);
Eval(3593, v is IntE, false);
Eval(3594, v is IntE[], false);
Eval(3595, v is IntE?, false);
@@ -3621,38 +3621,38 @@ internal class Program
Eval(3688, v is IEmpty[], false);
Eval(3689, v is INotEmpty, false);
Eval(3690, v is INotEmpty[], false);
- Eval(3691, v is IEmptyGen<int>, false);
- Eval(3692, v is IEmptyGen<int>[], false);
- Eval(3693, v is INotEmptyGen<int>, false);
- Eval(3694, v is INotEmptyGen<int>[], false);
+// Eval(3691, v is IEmptyGen<int>, false);
+// Eval(3692, v is IEmptyGen<int>[], false);
+// Eval(3693, v is INotEmptyGen<int>, false);
+// Eval(3694, v is INotEmptyGen<int>[], false);
Eval(3695, v is SimpleDelegate, false);
Eval(3696, v is SimpleDelegate[], false);
- Eval(3697, v is GenericDelegate<int>, false);
- Eval(3698, v is GenericDelegate<int>[], false);
+// Eval(3697, v is GenericDelegate<int>, false);
+// Eval(3698, v is GenericDelegate<int>[], false);
Eval(3699, v is EmptyClass, false);
Eval(3700, v is EmptyClass[], false);
Eval(3701, v is NotEmptyClass, false);
Eval(3702, v is NotEmptyClass[], false);
- Eval(3703, v is EmptyClassGen<int>, false);
- Eval(3704, v is EmptyClassGen<int>[], false);
- Eval(3705, v is NotEmptyClassGen<Guid>, false);
- Eval(3706, v is NotEmptyClassGen<Guid>[], false);
- Eval(3707, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3708, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3703, v is EmptyClassGen<int>, false);
+// Eval(3704, v is EmptyClassGen<int>[], false);
+// Eval(3705, v is NotEmptyClassGen<Guid>, false);
+// Eval(3706, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3707, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3708, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3709, v is NestedClass, false);
Eval(3710, v is NestedClass[], false);
- Eval(3711, v is NestedClassGen<Decimal>, false);
- Eval(3712, v is NestedClassGen<Decimal>[], false);
+// Eval(3711, v is NestedClassGen<Decimal>, false);
+// Eval(3712, v is NestedClassGen<Decimal>[], false);
Eval(3713, v is ImplementOneInterfaceC, false);
Eval(3714, v is ImplementOneInterfaceC[], false);
Eval(3715, v is ImplementTwoInterfaceC, false);
Eval(3716, v is ImplementTwoInterfaceC[], false);
- Eval(3717, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3718, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3719, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3720, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3721, v is ImplementAllInterfaceC<int>, false);
- Eval(3722, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3717, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3718, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3719, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3720, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3721, v is ImplementAllInterfaceC<int>, false);
+// Eval(3722, v is ImplementAllInterfaceC<int>[], false);
Eval(3723, v is SealedClass, false);
Eval(3724, v is SealedClass[], false);
}
@@ -3666,26 +3666,26 @@ internal class Program
Eval(3730, v is NotEmptyStruct[], false);
Eval(3731, v is NotEmptyStruct?, false);
Eval(3732, v is NotEmptyStruct?[], false);
- Eval(3733, v is EmptyStructGen<int>, false);
- Eval(3734, v is EmptyStructGen<int>[], false);
- Eval(3735, v is EmptyStructGen<int>?, false);
- Eval(3736, v is EmptyStructGen<int>?[], false);
- Eval(3737, v is NotEmptyStructGen<Guid>, false);
- Eval(3738, v is NotEmptyStructGen<Guid>[], false);
- Eval(3739, v is NotEmptyStructGen<Guid>?, false);
- Eval(3740, v is NotEmptyStructGen<Guid>?[], true);
- Eval(3741, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3742, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3743, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3744, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3733, v is EmptyStructGen<int>, false);
+// Eval(3734, v is EmptyStructGen<int>[], false);
+// Eval(3735, v is EmptyStructGen<int>?, false);
+// Eval(3736, v is EmptyStructGen<int>?[], false);
+// Eval(3737, v is NotEmptyStructGen<Guid>, false);
+// Eval(3738, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3739, v is NotEmptyStructGen<Guid>?, false);
+// Eval(3740, v is NotEmptyStructGen<Guid>?[], true);
+// Eval(3741, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3742, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3743, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3744, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3745, v is NestedStruct, false);
Eval(3746, v is NestedStruct[], false);
Eval(3747, v is NestedStruct?, false);
Eval(3748, v is NestedStruct?[], false);
- Eval(3749, v is NestedStructGen<Decimal>, false);
- Eval(3750, v is NestedStructGen<Decimal>[], false);
- Eval(3751, v is NestedStructGen<Decimal>?, false);
- Eval(3752, v is NestedStructGen<Decimal>?[], false);
+// Eval(3749, v is NestedStructGen<Decimal>, false);
+// Eval(3750, v is NestedStructGen<Decimal>[], false);
+// Eval(3751, v is NestedStructGen<Decimal>?, false);
+// Eval(3752, v is NestedStructGen<Decimal>?[], false);
Eval(3753, v is ExplicitFieldOffsetStruct, false);
Eval(3754, v is ExplicitFieldOffsetStruct[], false);
Eval(3755, v is ExplicitFieldOffsetStruct?, false);
@@ -3702,18 +3702,18 @@ internal class Program
Eval(3774, v is ImplementTwoInterface[], false);
Eval(3775, v is ImplementTwoInterface?, false);
Eval(3776, v is ImplementTwoInterface?[], false);
- Eval(3777, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3778, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3779, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3780, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3781, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3782, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3783, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3784, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3785, v is ImplementAllInterface<int>, false);
- Eval(3786, v is ImplementAllInterface<int>[], false);
- Eval(3787, v is ImplementAllInterface<int>?, false);
- Eval(3788, v is ImplementAllInterface<int>?[], false);
+// Eval(3777, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3778, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3779, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3780, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3781, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3782, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3783, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3784, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3785, v is ImplementAllInterface<int>, false);
+// Eval(3786, v is ImplementAllInterface<int>[], false);
+// Eval(3787, v is ImplementAllInterface<int>?, false);
+// Eval(3788, v is ImplementAllInterface<int>?[], false);
Eval(3789, v is IntE, false);
Eval(3790, v is IntE[], false);
Eval(3791, v is IntE?, false);
@@ -3812,38 +3812,38 @@ internal class Program
Eval(3884, v is IEmpty[], false);
Eval(3885, v is INotEmpty, false);
Eval(3886, v is INotEmpty[], false);
- Eval(3887, v is IEmptyGen<int>, false);
- Eval(3888, v is IEmptyGen<int>[], false);
- Eval(3889, v is INotEmptyGen<int>, false);
- Eval(3890, v is INotEmptyGen<int>[], false);
+// Eval(3887, v is IEmptyGen<int>, false);
+// Eval(3888, v is IEmptyGen<int>[], false);
+// Eval(3889, v is INotEmptyGen<int>, false);
+// Eval(3890, v is INotEmptyGen<int>[], false);
Eval(3891, v is SimpleDelegate, false);
Eval(3892, v is SimpleDelegate[], false);
- Eval(3893, v is GenericDelegate<int>, false);
- Eval(3894, v is GenericDelegate<int>[], false);
+// Eval(3893, v is GenericDelegate<int>, false);
+// Eval(3894, v is GenericDelegate<int>[], false);
Eval(3895, v is EmptyClass, false);
Eval(3896, v is EmptyClass[], false);
Eval(3897, v is NotEmptyClass, false);
Eval(3898, v is NotEmptyClass[], false);
- Eval(3899, v is EmptyClassGen<int>, false);
- Eval(3900, v is EmptyClassGen<int>[], false);
- Eval(3901, v is NotEmptyClassGen<Guid>, false);
- Eval(3902, v is NotEmptyClassGen<Guid>[], false);
- Eval(3903, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3904, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3899, v is EmptyClassGen<int>, false);
+// Eval(3900, v is EmptyClassGen<int>[], false);
+// Eval(3901, v is NotEmptyClassGen<Guid>, false);
+// Eval(3902, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3903, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3904, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3905, v is NestedClass, false);
Eval(3906, v is NestedClass[], false);
- Eval(3907, v is NestedClassGen<Decimal>, false);
- Eval(3908, v is NestedClassGen<Decimal>[], false);
+// Eval(3907, v is NestedClassGen<Decimal>, false);
+// Eval(3908, v is NestedClassGen<Decimal>[], false);
Eval(3909, v is ImplementOneInterfaceC, false);
Eval(3910, v is ImplementOneInterfaceC[], false);
Eval(3911, v is ImplementTwoInterfaceC, false);
Eval(3912, v is ImplementTwoInterfaceC[], false);
- Eval(3913, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3914, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3915, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3916, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3917, v is ImplementAllInterfaceC<int>, false);
- Eval(3918, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3913, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3914, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3915, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3916, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3917, v is ImplementAllInterfaceC<int>, false);
+// Eval(3918, v is ImplementAllInterfaceC<int>[], false);
Eval(3919, v is SealedClass, false);
Eval(3920, v is SealedClass[], false);
}
@@ -3860,26 +3860,26 @@ internal class Program
Eval(3926, v is NotEmptyStruct[], false);
Eval(3927, v is NotEmptyStruct?, false);
Eval(3928, v is NotEmptyStruct?[], false);
- Eval(3929, v is EmptyStructGen<int>, false);
- Eval(3930, v is EmptyStructGen<int>[], false);
- Eval(3931, v is EmptyStructGen<int>?, false);
- Eval(3932, v is EmptyStructGen<int>?[], false);
- Eval(3933, v is NotEmptyStructGen<Guid>, false);
- Eval(3934, v is NotEmptyStructGen<Guid>[], false);
- Eval(3935, v is NotEmptyStructGen<Guid>?, false);
- Eval(3936, v is NotEmptyStructGen<Guid>?[], false);
- Eval(3937, v is NotEmptyStructConstrainedGen<IntPtr>, true);
- Eval(3938, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3939, v is NotEmptyStructConstrainedGen<IntPtr>?, true);
- Eval(3940, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3929, v is EmptyStructGen<int>, false);
+// Eval(3930, v is EmptyStructGen<int>[], false);
+// Eval(3931, v is EmptyStructGen<int>?, false);
+// Eval(3932, v is EmptyStructGen<int>?[], false);
+// Eval(3933, v is NotEmptyStructGen<Guid>, false);
+// Eval(3934, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3935, v is NotEmptyStructGen<Guid>?, false);
+// Eval(3936, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(3937, v is NotEmptyStructConstrainedGen<IntPtr>, true);
+// Eval(3938, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3939, v is NotEmptyStructConstrainedGen<IntPtr>?, true);
+// Eval(3940, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3941, v is NestedStruct, false);
Eval(3942, v is NestedStruct[], false);
Eval(3943, v is NestedStruct?, false);
Eval(3944, v is NestedStruct?[], false);
- Eval(3945, v is NestedStructGen<Decimal>, false);
- Eval(3946, v is NestedStructGen<Decimal>[], false);
- Eval(3947, v is NestedStructGen<Decimal>?, false);
- Eval(3948, v is NestedStructGen<Decimal>?[], false);
+// Eval(3945, v is NestedStructGen<Decimal>, false);
+// Eval(3946, v is NestedStructGen<Decimal>[], false);
+// Eval(3947, v is NestedStructGen<Decimal>?, false);
+// Eval(3948, v is NestedStructGen<Decimal>?[], false);
Eval(3949, v is ExplicitFieldOffsetStruct, false);
Eval(3950, v is ExplicitFieldOffsetStruct[], false);
Eval(3951, v is ExplicitFieldOffsetStruct?, false);
@@ -3896,18 +3896,18 @@ internal class Program
Eval(3970, v is ImplementTwoInterface[], false);
Eval(3971, v is ImplementTwoInterface?, false);
Eval(3972, v is ImplementTwoInterface?[], false);
- Eval(3973, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3974, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3975, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3976, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3977, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3978, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3979, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3980, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3981, v is ImplementAllInterface<int>, false);
- Eval(3982, v is ImplementAllInterface<int>[], false);
- Eval(3983, v is ImplementAllInterface<int>?, false);
- Eval(3984, v is ImplementAllInterface<int>?[], false);
+// Eval(3973, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3974, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3975, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3976, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3977, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3978, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3979, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3980, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3981, v is ImplementAllInterface<int>, false);
+// Eval(3982, v is ImplementAllInterface<int>[], false);
+// Eval(3983, v is ImplementAllInterface<int>?, false);
+// Eval(3984, v is ImplementAllInterface<int>?[], false);
Eval(3985, v is IntE, false);
Eval(3986, v is IntE[], false);
Eval(3987, v is IntE?, false);
@@ -4006,38 +4006,38 @@ internal class Program
Eval(4080, v is IEmpty[], false);
Eval(4081, v is INotEmpty, false);
Eval(4082, v is INotEmpty[], false);
- Eval(4083, v is IEmptyGen<int>, false);
- Eval(4084, v is IEmptyGen<int>[], false);
- Eval(4085, v is INotEmptyGen<int>, false);
- Eval(4086, v is INotEmptyGen<int>[], false);
+// Eval(4083, v is IEmptyGen<int>, false);
+// Eval(4084, v is IEmptyGen<int>[], false);
+// Eval(4085, v is INotEmptyGen<int>, false);
+// Eval(4086, v is INotEmptyGen<int>[], false);
Eval(4087, v is SimpleDelegate, false);
Eval(4088, v is SimpleDelegate[], false);
- Eval(4089, v is GenericDelegate<int>, false);
- Eval(4090, v is GenericDelegate<int>[], false);
+// Eval(4089, v is GenericDelegate<int>, false);
+// Eval(4090, v is GenericDelegate<int>[], false);
Eval(4091, v is EmptyClass, false);
Eval(4092, v is EmptyClass[], false);
Eval(4093, v is NotEmptyClass, false);
Eval(4094, v is NotEmptyClass[], false);
- Eval(4095, v is EmptyClassGen<int>, false);
- Eval(4096, v is EmptyClassGen<int>[], false);
- Eval(4097, v is NotEmptyClassGen<Guid>, false);
- Eval(4098, v is NotEmptyClassGen<Guid>[], false);
- Eval(4099, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4100, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4095, v is EmptyClassGen<int>, false);
+// Eval(4096, v is EmptyClassGen<int>[], false);
+// Eval(4097, v is NotEmptyClassGen<Guid>, false);
+// Eval(4098, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4099, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4100, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4101, v is NestedClass, false);
Eval(4102, v is NestedClass[], false);
- Eval(4103, v is NestedClassGen<Decimal>, false);
- Eval(4104, v is NestedClassGen<Decimal>[], false);
+// Eval(4103, v is NestedClassGen<Decimal>, false);
+// Eval(4104, v is NestedClassGen<Decimal>[], false);
Eval(4105, v is ImplementOneInterfaceC, false);
Eval(4106, v is ImplementOneInterfaceC[], false);
Eval(4107, v is ImplementTwoInterfaceC, false);
Eval(4108, v is ImplementTwoInterfaceC[], false);
- Eval(4109, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4110, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4111, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4112, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4113, v is ImplementAllInterfaceC<int>, false);
- Eval(4114, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4109, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4110, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4111, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4112, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4113, v is ImplementAllInterfaceC<int>, false);
+// Eval(4114, v is ImplementAllInterfaceC<int>[], false);
Eval(4115, v is SealedClass, false);
Eval(4116, v is SealedClass[], false);
}
@@ -4051,26 +4051,26 @@ internal class Program
Eval(4122, v is NotEmptyStruct[], false);
Eval(4123, v is NotEmptyStruct?, false);
Eval(4124, v is NotEmptyStruct?[], false);
- Eval(4125, v is EmptyStructGen<int>, false);
- Eval(4126, v is EmptyStructGen<int>[], false);
- Eval(4127, v is EmptyStructGen<int>?, false);
- Eval(4128, v is EmptyStructGen<int>?[], false);
- Eval(4129, v is NotEmptyStructGen<Guid>, false);
- Eval(4130, v is NotEmptyStructGen<Guid>[], false);
- Eval(4131, v is NotEmptyStructGen<Guid>?, false);
- Eval(4132, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4133, v is NotEmptyStructConstrainedGen<IntPtr>, true);
- Eval(4134, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4135, v is NotEmptyStructConstrainedGen<IntPtr>?, true);
- Eval(4136, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4125, v is EmptyStructGen<int>, false);
+// Eval(4126, v is EmptyStructGen<int>[], false);
+// Eval(4127, v is EmptyStructGen<int>?, false);
+// Eval(4128, v is EmptyStructGen<int>?[], false);
+// Eval(4129, v is NotEmptyStructGen<Guid>, false);
+// Eval(4130, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4131, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4132, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4133, v is NotEmptyStructConstrainedGen<IntPtr>, true);
+// Eval(4134, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4135, v is NotEmptyStructConstrainedGen<IntPtr>?, true);
+// Eval(4136, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4137, v is NestedStruct, false);
Eval(4138, v is NestedStruct[], false);
Eval(4139, v is NestedStruct?, false);
Eval(4140, v is NestedStruct?[], false);
- Eval(4141, v is NestedStructGen<Decimal>, false);
- Eval(4142, v is NestedStructGen<Decimal>[], false);
- Eval(4143, v is NestedStructGen<Decimal>?, false);
- Eval(4144, v is NestedStructGen<Decimal>?[], false);
+// Eval(4141, v is NestedStructGen<Decimal>, false);
+// Eval(4142, v is NestedStructGen<Decimal>[], false);
+// Eval(4143, v is NestedStructGen<Decimal>?, false);
+// Eval(4144, v is NestedStructGen<Decimal>?[], false);
Eval(4145, v is ExplicitFieldOffsetStruct, false);
Eval(4146, v is ExplicitFieldOffsetStruct[], false);
Eval(4147, v is ExplicitFieldOffsetStruct?, false);
@@ -4087,18 +4087,18 @@ internal class Program
Eval(4166, v is ImplementTwoInterface[], false);
Eval(4167, v is ImplementTwoInterface?, false);
Eval(4168, v is ImplementTwoInterface?[], false);
- Eval(4169, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4170, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4171, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4172, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4173, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4174, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4175, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4176, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4177, v is ImplementAllInterface<int>, false);
- Eval(4178, v is ImplementAllInterface<int>[], false);
- Eval(4179, v is ImplementAllInterface<int>?, false);
- Eval(4180, v is ImplementAllInterface<int>?[], false);
+// Eval(4169, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4170, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4171, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4172, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4173, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4174, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4175, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4176, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4177, v is ImplementAllInterface<int>, false);
+// Eval(4178, v is ImplementAllInterface<int>[], false);
+// Eval(4179, v is ImplementAllInterface<int>?, false);
+// Eval(4180, v is ImplementAllInterface<int>?[], false);
Eval(4181, v is IntE, false);
Eval(4182, v is IntE[], false);
Eval(4183, v is IntE?, false);
@@ -4197,38 +4197,38 @@ internal class Program
Eval(4276, v is IEmpty[], false);
Eval(4277, v is INotEmpty, false);
Eval(4278, v is INotEmpty[], false);
- Eval(4279, v is IEmptyGen<int>, false);
- Eval(4280, v is IEmptyGen<int>[], false);
- Eval(4281, v is INotEmptyGen<int>, false);
- Eval(4282, v is INotEmptyGen<int>[], false);
+// Eval(4279, v is IEmptyGen<int>, false);
+// Eval(4280, v is IEmptyGen<int>[], false);
+// Eval(4281, v is INotEmptyGen<int>, false);
+// Eval(4282, v is INotEmptyGen<int>[], false);
Eval(4283, v is SimpleDelegate, false);
Eval(4284, v is SimpleDelegate[], false);
- Eval(4285, v is GenericDelegate<int>, false);
- Eval(4286, v is GenericDelegate<int>[], false);
+// Eval(4285, v is GenericDelegate<int>, false);
+// Eval(4286, v is GenericDelegate<int>[], false);
Eval(4287, v is EmptyClass, false);
Eval(4288, v is EmptyClass[], false);
Eval(4289, v is NotEmptyClass, false);
Eval(4290, v is NotEmptyClass[], false);
- Eval(4291, v is EmptyClassGen<int>, false);
- Eval(4292, v is EmptyClassGen<int>[], false);
- Eval(4293, v is NotEmptyClassGen<Guid>, false);
- Eval(4294, v is NotEmptyClassGen<Guid>[], false);
- Eval(4295, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4296, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4291, v is EmptyClassGen<int>, false);
+// Eval(4292, v is EmptyClassGen<int>[], false);
+// Eval(4293, v is NotEmptyClassGen<Guid>, false);
+// Eval(4294, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4295, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4296, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4297, v is NestedClass, false);
Eval(4298, v is NestedClass[], false);
- Eval(4299, v is NestedClassGen<Decimal>, false);
- Eval(4300, v is NestedClassGen<Decimal>[], false);
+// Eval(4299, v is NestedClassGen<Decimal>, false);
+// Eval(4300, v is NestedClassGen<Decimal>[], false);
Eval(4301, v is ImplementOneInterfaceC, false);
Eval(4302, v is ImplementOneInterfaceC[], false);
Eval(4303, v is ImplementTwoInterfaceC, false);
Eval(4304, v is ImplementTwoInterfaceC[], false);
- Eval(4305, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4306, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4307, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4308, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4309, v is ImplementAllInterfaceC<int>, false);
- Eval(4310, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4305, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4306, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4307, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4308, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4309, v is ImplementAllInterfaceC<int>, false);
+// Eval(4310, v is ImplementAllInterfaceC<int>[], false);
Eval(4311, v is SealedClass, false);
Eval(4312, v is SealedClass[], false);
}
@@ -4242,26 +4242,26 @@ internal class Program
Eval(4318, v is NotEmptyStruct[], false);
Eval(4319, v is NotEmptyStruct?, false);
Eval(4320, v is NotEmptyStruct?[], false);
- Eval(4321, v is EmptyStructGen<int>, false);
- Eval(4322, v is EmptyStructGen<int>[], false);
- Eval(4323, v is EmptyStructGen<int>?, false);
- Eval(4324, v is EmptyStructGen<int>?[], false);
- Eval(4325, v is NotEmptyStructGen<Guid>, false);
- Eval(4326, v is NotEmptyStructGen<Guid>[], false);
- Eval(4327, v is NotEmptyStructGen<Guid>?, false);
- Eval(4328, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4329, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4330, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4331, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4332, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4321, v is EmptyStructGen<int>, false);
+// Eval(4322, v is EmptyStructGen<int>[], false);
+// Eval(4323, v is EmptyStructGen<int>?, false);
+// Eval(4324, v is EmptyStructGen<int>?[], false);
+// Eval(4325, v is NotEmptyStructGen<Guid>, false);
+// Eval(4326, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4327, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4328, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4329, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4330, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4331, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4332, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4333, v is NestedStruct, false);
Eval(4334, v is NestedStruct[], false);
Eval(4335, v is NestedStruct?, false);
Eval(4336, v is NestedStruct?[], false);
- Eval(4337, v is NestedStructGen<Decimal>, false);
- Eval(4338, v is NestedStructGen<Decimal>[], false);
- Eval(4339, v is NestedStructGen<Decimal>?, false);
- Eval(4340, v is NestedStructGen<Decimal>?[], false);
+// Eval(4337, v is NestedStructGen<Decimal>, false);
+// Eval(4338, v is NestedStructGen<Decimal>[], false);
+// Eval(4339, v is NestedStructGen<Decimal>?, false);
+// Eval(4340, v is NestedStructGen<Decimal>?[], false);
Eval(4341, v is ExplicitFieldOffsetStruct, false);
Eval(4342, v is ExplicitFieldOffsetStruct[], false);
Eval(4343, v is ExplicitFieldOffsetStruct?, false);
@@ -4278,18 +4278,18 @@ internal class Program
Eval(4362, v is ImplementTwoInterface[], false);
Eval(4363, v is ImplementTwoInterface?, false);
Eval(4364, v is ImplementTwoInterface?[], false);
- Eval(4365, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4366, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4367, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4368, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4369, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4370, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4371, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4372, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4373, v is ImplementAllInterface<int>, false);
- Eval(4374, v is ImplementAllInterface<int>[], false);
- Eval(4375, v is ImplementAllInterface<int>?, false);
- Eval(4376, v is ImplementAllInterface<int>?[], false);
+// Eval(4365, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4366, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4367, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4368, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4369, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4370, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4371, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4372, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4373, v is ImplementAllInterface<int>, false);
+// Eval(4374, v is ImplementAllInterface<int>[], false);
+// Eval(4375, v is ImplementAllInterface<int>?, false);
+// Eval(4376, v is ImplementAllInterface<int>?[], false);
Eval(4377, v is IntE, false);
Eval(4378, v is IntE[], false);
Eval(4379, v is IntE?, false);
@@ -4388,38 +4388,38 @@ internal class Program
Eval(4472, v is IEmpty[], false);
Eval(4473, v is INotEmpty, false);
Eval(4474, v is INotEmpty[], false);
- Eval(4475, v is IEmptyGen<int>, false);
- Eval(4476, v is IEmptyGen<int>[], false);
- Eval(4477, v is INotEmptyGen<int>, false);
- Eval(4478, v is INotEmptyGen<int>[], false);
+// Eval(4475, v is IEmptyGen<int>, false);
+// Eval(4476, v is IEmptyGen<int>[], false);
+// Eval(4477, v is INotEmptyGen<int>, false);
+// Eval(4478, v is INotEmptyGen<int>[], false);
Eval(4479, v is SimpleDelegate, false);
Eval(4480, v is SimpleDelegate[], false);
- Eval(4481, v is GenericDelegate<int>, false);
- Eval(4482, v is GenericDelegate<int>[], false);
+// Eval(4481, v is GenericDelegate<int>, false);
+// Eval(4482, v is GenericDelegate<int>[], false);
Eval(4483, v is EmptyClass, false);
Eval(4484, v is EmptyClass[], false);
Eval(4485, v is NotEmptyClass, false);
Eval(4486, v is NotEmptyClass[], false);
- Eval(4487, v is EmptyClassGen<int>, false);
- Eval(4488, v is EmptyClassGen<int>[], false);
- Eval(4489, v is NotEmptyClassGen<Guid>, false);
- Eval(4490, v is NotEmptyClassGen<Guid>[], false);
- Eval(4491, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4492, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4487, v is EmptyClassGen<int>, false);
+// Eval(4488, v is EmptyClassGen<int>[], false);
+// Eval(4489, v is NotEmptyClassGen<Guid>, false);
+// Eval(4490, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4491, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4492, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4493, v is NestedClass, false);
Eval(4494, v is NestedClass[], false);
- Eval(4495, v is NestedClassGen<Decimal>, false);
- Eval(4496, v is NestedClassGen<Decimal>[], false);
+// Eval(4495, v is NestedClassGen<Decimal>, false);
+// Eval(4496, v is NestedClassGen<Decimal>[], false);
Eval(4497, v is ImplementOneInterfaceC, false);
Eval(4498, v is ImplementOneInterfaceC[], false);
Eval(4499, v is ImplementTwoInterfaceC, false);
Eval(4500, v is ImplementTwoInterfaceC[], false);
- Eval(4501, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4502, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4503, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4504, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4505, v is ImplementAllInterfaceC<int>, false);
- Eval(4506, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4501, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4502, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4503, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4504, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4505, v is ImplementAllInterfaceC<int>, false);
+// Eval(4506, v is ImplementAllInterfaceC<int>[], false);
Eval(4507, v is SealedClass, false);
Eval(4508, v is SealedClass[], false);
}
@@ -4433,26 +4433,26 @@ internal class Program
Eval(4514, v is NotEmptyStruct[], false);
Eval(4515, v is NotEmptyStruct?, false);
Eval(4516, v is NotEmptyStruct?[], false);
- Eval(4517, v is EmptyStructGen<int>, false);
- Eval(4518, v is EmptyStructGen<int>[], false);
- Eval(4519, v is EmptyStructGen<int>?, false);
- Eval(4520, v is EmptyStructGen<int>?[], false);
- Eval(4521, v is NotEmptyStructGen<Guid>, false);
- Eval(4522, v is NotEmptyStructGen<Guid>[], false);
- Eval(4523, v is NotEmptyStructGen<Guid>?, false);
- Eval(4524, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4525, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4526, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4527, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4528, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4517, v is EmptyStructGen<int>, false);
+// Eval(4518, v is EmptyStructGen<int>[], false);
+// Eval(4519, v is EmptyStructGen<int>?, false);
+// Eval(4520, v is EmptyStructGen<int>?[], false);
+// Eval(4521, v is NotEmptyStructGen<Guid>, false);
+// Eval(4522, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4523, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4524, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4525, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4526, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4527, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4528, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4529, v is NestedStruct, false);
Eval(4530, v is NestedStruct[], false);
Eval(4531, v is NestedStruct?, false);
Eval(4532, v is NestedStruct?[], false);
- Eval(4533, v is NestedStructGen<Decimal>, false);
- Eval(4534, v is NestedStructGen<Decimal>[], false);
- Eval(4535, v is NestedStructGen<Decimal>?, false);
- Eval(4536, v is NestedStructGen<Decimal>?[], false);
+// Eval(4533, v is NestedStructGen<Decimal>, false);
+// Eval(4534, v is NestedStructGen<Decimal>[], false);
+// Eval(4535, v is NestedStructGen<Decimal>?, false);
+// Eval(4536, v is NestedStructGen<Decimal>?[], false);
Eval(4537, v is ExplicitFieldOffsetStruct, false);
Eval(4538, v is ExplicitFieldOffsetStruct[], false);
Eval(4539, v is ExplicitFieldOffsetStruct?, false);
@@ -4469,18 +4469,18 @@ internal class Program
Eval(4558, v is ImplementTwoInterface[], false);
Eval(4559, v is ImplementTwoInterface?, false);
Eval(4560, v is ImplementTwoInterface?[], false);
- Eval(4561, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4562, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4563, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4564, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4565, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4566, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4567, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4568, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4569, v is ImplementAllInterface<int>, false);
- Eval(4570, v is ImplementAllInterface<int>[], false);
- Eval(4571, v is ImplementAllInterface<int>?, false);
- Eval(4572, v is ImplementAllInterface<int>?[], false);
+// Eval(4561, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4562, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4563, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4564, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4565, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4566, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4567, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4568, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4569, v is ImplementAllInterface<int>, false);
+// Eval(4570, v is ImplementAllInterface<int>[], false);
+// Eval(4571, v is ImplementAllInterface<int>?, false);
+// Eval(4572, v is ImplementAllInterface<int>?[], false);
Eval(4573, v is IntE, false);
Eval(4574, v is IntE[], false);
Eval(4575, v is IntE?, false);
@@ -4579,38 +4579,38 @@ internal class Program
Eval(4668, v is IEmpty[], false);
Eval(4669, v is INotEmpty, false);
Eval(4670, v is INotEmpty[], false);
- Eval(4671, v is IEmptyGen<int>, false);
- Eval(4672, v is IEmptyGen<int>[], false);
- Eval(4673, v is INotEmptyGen<int>, false);
- Eval(4674, v is INotEmptyGen<int>[], false);
+// Eval(4671, v is IEmptyGen<int>, false);
+// Eval(4672, v is IEmptyGen<int>[], false);
+// Eval(4673, v is INotEmptyGen<int>, false);
+// Eval(4674, v is INotEmptyGen<int>[], false);
Eval(4675, v is SimpleDelegate, false);
Eval(4676, v is SimpleDelegate[], false);
- Eval(4677, v is GenericDelegate<int>, false);
- Eval(4678, v is GenericDelegate<int>[], false);
+// Eval(4677, v is GenericDelegate<int>, false);
+// Eval(4678, v is GenericDelegate<int>[], false);
Eval(4679, v is EmptyClass, false);
Eval(4680, v is EmptyClass[], false);
Eval(4681, v is NotEmptyClass, false);
Eval(4682, v is NotEmptyClass[], false);
- Eval(4683, v is EmptyClassGen<int>, false);
- Eval(4684, v is EmptyClassGen<int>[], false);
- Eval(4685, v is NotEmptyClassGen<Guid>, false);
- Eval(4686, v is NotEmptyClassGen<Guid>[], false);
- Eval(4687, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4688, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4683, v is EmptyClassGen<int>, false);
+// Eval(4684, v is EmptyClassGen<int>[], false);
+// Eval(4685, v is NotEmptyClassGen<Guid>, false);
+// Eval(4686, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4687, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4688, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4689, v is NestedClass, false);
Eval(4690, v is NestedClass[], false);
- Eval(4691, v is NestedClassGen<Decimal>, false);
- Eval(4692, v is NestedClassGen<Decimal>[], false);
+// Eval(4691, v is NestedClassGen<Decimal>, false);
+// Eval(4692, v is NestedClassGen<Decimal>[], false);
Eval(4693, v is ImplementOneInterfaceC, false);
Eval(4694, v is ImplementOneInterfaceC[], false);
Eval(4695, v is ImplementTwoInterfaceC, false);
Eval(4696, v is ImplementTwoInterfaceC[], false);
- Eval(4697, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4698, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4699, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4700, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4701, v is ImplementAllInterfaceC<int>, false);
- Eval(4702, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4697, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4698, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4699, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4700, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4701, v is ImplementAllInterfaceC<int>, false);
+// Eval(4702, v is ImplementAllInterfaceC<int>[], false);
Eval(4703, v is SealedClass, false);
Eval(4704, v is SealedClass[], false);
}
@@ -4624,26 +4624,26 @@ internal class Program
Eval(4710, v is NotEmptyStruct[], false);
Eval(4711, v is NotEmptyStruct?, false);
Eval(4712, v is NotEmptyStruct?[], false);
- Eval(4713, v is EmptyStructGen<int>, false);
- Eval(4714, v is EmptyStructGen<int>[], false);
- Eval(4715, v is EmptyStructGen<int>?, false);
- Eval(4716, v is EmptyStructGen<int>?[], false);
- Eval(4717, v is NotEmptyStructGen<Guid>, false);
- Eval(4718, v is NotEmptyStructGen<Guid>[], false);
- Eval(4719, v is NotEmptyStructGen<Guid>?, false);
- Eval(4720, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4721, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4722, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4723, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4724, v is NotEmptyStructConstrainedGen<IntPtr>?[], true);
+// Eval(4713, v is EmptyStructGen<int>, false);
+// Eval(4714, v is EmptyStructGen<int>[], false);
+// Eval(4715, v is EmptyStructGen<int>?, false);
+// Eval(4716, v is EmptyStructGen<int>?[], false);
+// Eval(4717, v is NotEmptyStructGen<Guid>, false);
+// Eval(4718, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4719, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4720, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4721, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4722, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4723, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4724, v is NotEmptyStructConstrainedGen<IntPtr>?[], true);
Eval(4725, v is NestedStruct, false);
Eval(4726, v is NestedStruct[], false);
Eval(4727, v is NestedStruct?, false);
Eval(4728, v is NestedStruct?[], false);
- Eval(4729, v is NestedStructGen<Decimal>, false);
- Eval(4730, v is NestedStructGen<Decimal>[], false);
- Eval(4731, v is NestedStructGen<Decimal>?, false);
- Eval(4732, v is NestedStructGen<Decimal>?[], false);
+// Eval(4729, v is NestedStructGen<Decimal>, false);
+// Eval(4730, v is NestedStructGen<Decimal>[], false);
+// Eval(4731, v is NestedStructGen<Decimal>?, false);
+// Eval(4732, v is NestedStructGen<Decimal>?[], false);
Eval(4733, v is ExplicitFieldOffsetStruct, false);
Eval(4734, v is ExplicitFieldOffsetStruct[], false);
Eval(4735, v is ExplicitFieldOffsetStruct?, false);
@@ -4660,18 +4660,18 @@ internal class Program
Eval(4754, v is ImplementTwoInterface[], false);
Eval(4755, v is ImplementTwoInterface?, false);
Eval(4756, v is ImplementTwoInterface?[], false);
- Eval(4757, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4758, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4759, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4760, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4761, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4762, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4763, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4764, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4765, v is ImplementAllInterface<int>, false);
- Eval(4766, v is ImplementAllInterface<int>[], false);
- Eval(4767, v is ImplementAllInterface<int>?, false);
- Eval(4768, v is ImplementAllInterface<int>?[], false);
+// Eval(4757, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4758, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4759, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4760, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4761, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4762, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4763, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4764, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4765, v is ImplementAllInterface<int>, false);
+// Eval(4766, v is ImplementAllInterface<int>[], false);
+// Eval(4767, v is ImplementAllInterface<int>?, false);
+// Eval(4768, v is ImplementAllInterface<int>?[], false);
Eval(4769, v is IntE, false);
Eval(4770, v is IntE[], false);
Eval(4771, v is IntE?, false);
@@ -4770,38 +4770,38 @@ internal class Program
Eval(4864, v is IEmpty[], false);
Eval(4865, v is INotEmpty, false);
Eval(4866, v is INotEmpty[], false);
- Eval(4867, v is IEmptyGen<int>, false);
- Eval(4868, v is IEmptyGen<int>[], false);
- Eval(4869, v is INotEmptyGen<int>, false);
- Eval(4870, v is INotEmptyGen<int>[], false);
+// Eval(4867, v is IEmptyGen<int>, false);
+// Eval(4868, v is IEmptyGen<int>[], false);
+// Eval(4869, v is INotEmptyGen<int>, false);
+// Eval(4870, v is INotEmptyGen<int>[], false);
Eval(4871, v is SimpleDelegate, false);
Eval(4872, v is SimpleDelegate[], false);
- Eval(4873, v is GenericDelegate<int>, false);
- Eval(4874, v is GenericDelegate<int>[], false);
+// Eval(4873, v is GenericDelegate<int>, false);
+// Eval(4874, v is GenericDelegate<int>[], false);
Eval(4875, v is EmptyClass, false);
Eval(4876, v is EmptyClass[], false);
Eval(4877, v is NotEmptyClass, false);
Eval(4878, v is NotEmptyClass[], false);
- Eval(4879, v is EmptyClassGen<int>, false);
- Eval(4880, v is EmptyClassGen<int>[], false);
- Eval(4881, v is NotEmptyClassGen<Guid>, false);
- Eval(4882, v is NotEmptyClassGen<Guid>[], false);
- Eval(4883, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4884, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4879, v is EmptyClassGen<int>, false);
+// Eval(4880, v is EmptyClassGen<int>[], false);
+// Eval(4881, v is NotEmptyClassGen<Guid>, false);
+// Eval(4882, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4883, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4884, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4885, v is NestedClass, false);
Eval(4886, v is NestedClass[], false);
- Eval(4887, v is NestedClassGen<Decimal>, false);
- Eval(4888, v is NestedClassGen<Decimal>[], false);
+// Eval(4887, v is NestedClassGen<Decimal>, false);
+// Eval(4888, v is NestedClassGen<Decimal>[], false);
Eval(4889, v is ImplementOneInterfaceC, false);
Eval(4890, v is ImplementOneInterfaceC[], false);
Eval(4891, v is ImplementTwoInterfaceC, false);
Eval(4892, v is ImplementTwoInterfaceC[], false);
- Eval(4893, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4894, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4895, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4896, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4897, v is ImplementAllInterfaceC<int>, false);
- Eval(4898, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4893, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4894, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4895, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4896, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4897, v is ImplementAllInterfaceC<int>, false);
+// Eval(4898, v is ImplementAllInterfaceC<int>[], false);
Eval(4899, v is SealedClass, false);
Eval(4900, v is SealedClass[], false);
}
@@ -4818,26 +4818,26 @@ internal class Program
Eval(4906, v is NotEmptyStruct[], false);
Eval(4907, v is NotEmptyStruct?, false);
Eval(4908, v is NotEmptyStruct?[], false);
- Eval(4909, v is EmptyStructGen<int>, false);
- Eval(4910, v is EmptyStructGen<int>[], false);
- Eval(4911, v is EmptyStructGen<int>?, false);
- Eval(4912, v is EmptyStructGen<int>?[], false);
- Eval(4913, v is NotEmptyStructGen<Guid>, false);
- Eval(4914, v is NotEmptyStructGen<Guid>[], false);
- Eval(4915, v is NotEmptyStructGen<Guid>?, false);
- Eval(4916, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4917, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4918, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4919, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4920, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4909, v is EmptyStructGen<int>, false);
+// Eval(4910, v is EmptyStructGen<int>[], false);
+// Eval(4911, v is EmptyStructGen<int>?, false);
+// Eval(4912, v is EmptyStructGen<int>?[], false);
+// Eval(4913, v is NotEmptyStructGen<Guid>, false);
+// Eval(4914, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4915, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4916, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4917, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4918, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4919, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4920, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4921, v is NestedStruct, true);
Eval(4922, v is NestedStruct[], false);
Eval(4923, v is NestedStruct?, true);
Eval(4924, v is NestedStruct?[], false);
- Eval(4925, v is NestedStructGen<Decimal>, false);
- Eval(4926, v is NestedStructGen<Decimal>[], false);
- Eval(4927, v is NestedStructGen<Decimal>?, false);
- Eval(4928, v is NestedStructGen<Decimal>?[], false);
+// Eval(4925, v is NestedStructGen<Decimal>, false);
+// Eval(4926, v is NestedStructGen<Decimal>[], false);
+// Eval(4927, v is NestedStructGen<Decimal>?, false);
+// Eval(4928, v is NestedStructGen<Decimal>?[], false);
Eval(4929, v is ExplicitFieldOffsetStruct, false);
Eval(4930, v is ExplicitFieldOffsetStruct[], false);
Eval(4931, v is ExplicitFieldOffsetStruct?, false);
@@ -4854,18 +4854,18 @@ internal class Program
Eval(4950, v is ImplementTwoInterface[], false);
Eval(4951, v is ImplementTwoInterface?, false);
Eval(4952, v is ImplementTwoInterface?[], false);
- Eval(4953, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4954, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4955, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4956, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4957, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4958, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4959, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4960, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4961, v is ImplementAllInterface<int>, false);
- Eval(4962, v is ImplementAllInterface<int>[], false);
- Eval(4963, v is ImplementAllInterface<int>?, false);
- Eval(4964, v is ImplementAllInterface<int>?[], false);
+// Eval(4953, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4954, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4955, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4956, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4957, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4958, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4959, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4960, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4961, v is ImplementAllInterface<int>, false);
+// Eval(4962, v is ImplementAllInterface<int>[], false);
+// Eval(4963, v is ImplementAllInterface<int>?, false);
+// Eval(4964, v is ImplementAllInterface<int>?[], false);
Eval(4965, v is IntE, false);
Eval(4966, v is IntE[], false);
Eval(4967, v is IntE?, false);
@@ -4964,38 +4964,38 @@ internal class Program
Eval(5060, v is IEmpty[], false);
Eval(5061, v is INotEmpty, false);
Eval(5062, v is INotEmpty[], false);
- Eval(5063, v is IEmptyGen<int>, false);
- Eval(5064, v is IEmptyGen<int>[], false);
- Eval(5065, v is INotEmptyGen<int>, false);
- Eval(5066, v is INotEmptyGen<int>[], false);
+// Eval(5063, v is IEmptyGen<int>, false);
+// Eval(5064, v is IEmptyGen<int>[], false);
+// Eval(5065, v is INotEmptyGen<int>, false);
+// Eval(5066, v is INotEmptyGen<int>[], false);
Eval(5067, v is SimpleDelegate, false);
Eval(5068, v is SimpleDelegate[], false);
- Eval(5069, v is GenericDelegate<int>, false);
- Eval(5070, v is GenericDelegate<int>[], false);
+// Eval(5069, v is GenericDelegate<int>, false);
+// Eval(5070, v is GenericDelegate<int>[], false);
Eval(5071, v is EmptyClass, false);
Eval(5072, v is EmptyClass[], false);
Eval(5073, v is NotEmptyClass, false);
Eval(5074, v is NotEmptyClass[], false);
- Eval(5075, v is EmptyClassGen<int>, false);
- Eval(5076, v is EmptyClassGen<int>[], false);
- Eval(5077, v is NotEmptyClassGen<Guid>, false);
- Eval(5078, v is NotEmptyClassGen<Guid>[], false);
- Eval(5079, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5080, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5075, v is EmptyClassGen<int>, false);
+// Eval(5076, v is EmptyClassGen<int>[], false);
+// Eval(5077, v is NotEmptyClassGen<Guid>, false);
+// Eval(5078, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5079, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5080, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5081, v is NestedClass, false);
Eval(5082, v is NestedClass[], false);
- Eval(5083, v is NestedClassGen<Decimal>, false);
- Eval(5084, v is NestedClassGen<Decimal>[], false);
+// Eval(5083, v is NestedClassGen<Decimal>, false);
+// Eval(5084, v is NestedClassGen<Decimal>[], false);
Eval(5085, v is ImplementOneInterfaceC, false);
Eval(5086, v is ImplementOneInterfaceC[], false);
Eval(5087, v is ImplementTwoInterfaceC, false);
Eval(5088, v is ImplementTwoInterfaceC[], false);
- Eval(5089, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5090, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5091, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5092, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5093, v is ImplementAllInterfaceC<int>, false);
- Eval(5094, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5089, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5090, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5091, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5092, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5093, v is ImplementAllInterfaceC<int>, false);
+// Eval(5094, v is ImplementAllInterfaceC<int>[], false);
Eval(5095, v is SealedClass, false);
Eval(5096, v is SealedClass[], false);
}
@@ -5009,26 +5009,26 @@ internal class Program
Eval(5102, v is NotEmptyStruct[], false);
Eval(5103, v is NotEmptyStruct?, false);
Eval(5104, v is NotEmptyStruct?[], false);
- Eval(5105, v is EmptyStructGen<int>, false);
- Eval(5106, v is EmptyStructGen<int>[], false);
- Eval(5107, v is EmptyStructGen<int>?, false);
- Eval(5108, v is EmptyStructGen<int>?[], false);
- Eval(5109, v is NotEmptyStructGen<Guid>, false);
- Eval(5110, v is NotEmptyStructGen<Guid>[], false);
- Eval(5111, v is NotEmptyStructGen<Guid>?, false);
- Eval(5112, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5113, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5114, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5115, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5116, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5105, v is EmptyStructGen<int>, false);
+// Eval(5106, v is EmptyStructGen<int>[], false);
+// Eval(5107, v is EmptyStructGen<int>?, false);
+// Eval(5108, v is EmptyStructGen<int>?[], false);
+// Eval(5109, v is NotEmptyStructGen<Guid>, false);
+// Eval(5110, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5111, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5112, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5113, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5114, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5115, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5116, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5117, v is NestedStruct, true);
Eval(5118, v is NestedStruct[], false);
Eval(5119, v is NestedStruct?, true);
Eval(5120, v is NestedStruct?[], false);
- Eval(5121, v is NestedStructGen<Decimal>, false);
- Eval(5122, v is NestedStructGen<Decimal>[], false);
- Eval(5123, v is NestedStructGen<Decimal>?, false);
- Eval(5124, v is NestedStructGen<Decimal>?[], false);
+// Eval(5121, v is NestedStructGen<Decimal>, false);
+// Eval(5122, v is NestedStructGen<Decimal>[], false);
+// Eval(5123, v is NestedStructGen<Decimal>?, false);
+// Eval(5124, v is NestedStructGen<Decimal>?[], false);
Eval(5125, v is ExplicitFieldOffsetStruct, false);
Eval(5126, v is ExplicitFieldOffsetStruct[], false);
Eval(5127, v is ExplicitFieldOffsetStruct?, false);
@@ -5045,18 +5045,18 @@ internal class Program
Eval(5146, v is ImplementTwoInterface[], false);
Eval(5147, v is ImplementTwoInterface?, false);
Eval(5148, v is ImplementTwoInterface?[], false);
- Eval(5149, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5150, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5151, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5152, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5153, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5154, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5155, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5156, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5157, v is ImplementAllInterface<int>, false);
- Eval(5158, v is ImplementAllInterface<int>[], false);
- Eval(5159, v is ImplementAllInterface<int>?, false);
- Eval(5160, v is ImplementAllInterface<int>?[], false);
+// Eval(5149, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5150, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5151, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5152, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5153, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5154, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5155, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5156, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5157, v is ImplementAllInterface<int>, false);
+// Eval(5158, v is ImplementAllInterface<int>[], false);
+// Eval(5159, v is ImplementAllInterface<int>?, false);
+// Eval(5160, v is ImplementAllInterface<int>?[], false);
Eval(5161, v is IntE, false);
Eval(5162, v is IntE[], false);
Eval(5163, v is IntE?, false);
@@ -5155,38 +5155,38 @@ internal class Program
Eval(5256, v is IEmpty[], false);
Eval(5257, v is INotEmpty, false);
Eval(5258, v is INotEmpty[], false);
- Eval(5259, v is IEmptyGen<int>, false);
- Eval(5260, v is IEmptyGen<int>[], false);
- Eval(5261, v is INotEmptyGen<int>, false);
- Eval(5262, v is INotEmptyGen<int>[], false);
+// Eval(5259, v is IEmptyGen<int>, false);
+// Eval(5260, v is IEmptyGen<int>[], false);
+// Eval(5261, v is INotEmptyGen<int>, false);
+// Eval(5262, v is INotEmptyGen<int>[], false);
Eval(5263, v is SimpleDelegate, false);
Eval(5264, v is SimpleDelegate[], false);
- Eval(5265, v is GenericDelegate<int>, false);
- Eval(5266, v is GenericDelegate<int>[], false);
+// Eval(5265, v is GenericDelegate<int>, false);
+// Eval(5266, v is GenericDelegate<int>[], false);
Eval(5267, v is EmptyClass, false);
Eval(5268, v is EmptyClass[], false);
Eval(5269, v is NotEmptyClass, false);
Eval(5270, v is NotEmptyClass[], false);
- Eval(5271, v is EmptyClassGen<int>, false);
- Eval(5272, v is EmptyClassGen<int>[], false);
- Eval(5273, v is NotEmptyClassGen<Guid>, false);
- Eval(5274, v is NotEmptyClassGen<Guid>[], false);
- Eval(5275, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5276, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5271, v is EmptyClassGen<int>, false);
+// Eval(5272, v is EmptyClassGen<int>[], false);
+// Eval(5273, v is NotEmptyClassGen<Guid>, false);
+// Eval(5274, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5275, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5276, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5277, v is NestedClass, false);
Eval(5278, v is NestedClass[], false);
- Eval(5279, v is NestedClassGen<Decimal>, false);
- Eval(5280, v is NestedClassGen<Decimal>[], false);
+// Eval(5279, v is NestedClassGen<Decimal>, false);
+// Eval(5280, v is NestedClassGen<Decimal>[], false);
Eval(5281, v is ImplementOneInterfaceC, false);
Eval(5282, v is ImplementOneInterfaceC[], false);
Eval(5283, v is ImplementTwoInterfaceC, false);
Eval(5284, v is ImplementTwoInterfaceC[], false);
- Eval(5285, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5286, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5287, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5288, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5289, v is ImplementAllInterfaceC<int>, false);
- Eval(5290, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5285, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5286, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5287, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5288, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5289, v is ImplementAllInterfaceC<int>, false);
+// Eval(5290, v is ImplementAllInterfaceC<int>[], false);
Eval(5291, v is SealedClass, false);
Eval(5292, v is SealedClass[], false);
}
@@ -5200,26 +5200,26 @@ internal class Program
Eval(5298, v is NotEmptyStruct[], false);
Eval(5299, v is NotEmptyStruct?, false);
Eval(5300, v is NotEmptyStruct?[], false);
- Eval(5301, v is EmptyStructGen<int>, false);
- Eval(5302, v is EmptyStructGen<int>[], false);
- Eval(5303, v is EmptyStructGen<int>?, false);
- Eval(5304, v is EmptyStructGen<int>?[], false);
- Eval(5305, v is NotEmptyStructGen<Guid>, false);
- Eval(5306, v is NotEmptyStructGen<Guid>[], false);
- Eval(5307, v is NotEmptyStructGen<Guid>?, false);
- Eval(5308, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5309, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5310, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5311, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5312, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5301, v is EmptyStructGen<int>, false);
+// Eval(5302, v is EmptyStructGen<int>[], false);
+// Eval(5303, v is EmptyStructGen<int>?, false);
+// Eval(5304, v is EmptyStructGen<int>?[], false);
+// Eval(5305, v is NotEmptyStructGen<Guid>, false);
+// Eval(5306, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5307, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5308, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5309, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5310, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5311, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5312, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5313, v is NestedStruct, false);
Eval(5314, v is NestedStruct[], false);
Eval(5315, v is NestedStruct?, false);
Eval(5316, v is NestedStruct?[], false);
- Eval(5317, v is NestedStructGen<Decimal>, false);
- Eval(5318, v is NestedStructGen<Decimal>[], false);
- Eval(5319, v is NestedStructGen<Decimal>?, false);
- Eval(5320, v is NestedStructGen<Decimal>?[], false);
+// Eval(5317, v is NestedStructGen<Decimal>, false);
+// Eval(5318, v is NestedStructGen<Decimal>[], false);
+// Eval(5319, v is NestedStructGen<Decimal>?, false);
+// Eval(5320, v is NestedStructGen<Decimal>?[], false);
Eval(5321, v is ExplicitFieldOffsetStruct, false);
Eval(5322, v is ExplicitFieldOffsetStruct[], false);
Eval(5323, v is ExplicitFieldOffsetStruct?, false);
@@ -5236,18 +5236,18 @@ internal class Program
Eval(5342, v is ImplementTwoInterface[], false);
Eval(5343, v is ImplementTwoInterface?, false);
Eval(5344, v is ImplementTwoInterface?[], false);
- Eval(5345, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5346, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5347, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5348, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5349, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5350, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5351, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5352, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5353, v is ImplementAllInterface<int>, false);
- Eval(5354, v is ImplementAllInterface<int>[], false);
- Eval(5355, v is ImplementAllInterface<int>?, false);
- Eval(5356, v is ImplementAllInterface<int>?[], false);
+// Eval(5345, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5346, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5347, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5348, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5349, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5350, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5351, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5352, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5353, v is ImplementAllInterface<int>, false);
+// Eval(5354, v is ImplementAllInterface<int>[], false);
+// Eval(5355, v is ImplementAllInterface<int>?, false);
+// Eval(5356, v is ImplementAllInterface<int>?[], false);
Eval(5357, v is IntE, false);
Eval(5358, v is IntE[], false);
Eval(5359, v is IntE?, false);
@@ -5346,38 +5346,38 @@ internal class Program
Eval(5452, v is IEmpty[], false);
Eval(5453, v is INotEmpty, false);
Eval(5454, v is INotEmpty[], false);
- Eval(5455, v is IEmptyGen<int>, false);
- Eval(5456, v is IEmptyGen<int>[], false);
- Eval(5457, v is INotEmptyGen<int>, false);
- Eval(5458, v is INotEmptyGen<int>[], false);
+// Eval(5455, v is IEmptyGen<int>, false);
+// Eval(5456, v is IEmptyGen<int>[], false);
+// Eval(5457, v is INotEmptyGen<int>, false);
+// Eval(5458, v is INotEmptyGen<int>[], false);
Eval(5459, v is SimpleDelegate, false);
Eval(5460, v is SimpleDelegate[], false);
- Eval(5461, v is GenericDelegate<int>, false);
- Eval(5462, v is GenericDelegate<int>[], false);
+// Eval(5461, v is GenericDelegate<int>, false);
+// Eval(5462, v is GenericDelegate<int>[], false);
Eval(5463, v is EmptyClass, false);
Eval(5464, v is EmptyClass[], false);
Eval(5465, v is NotEmptyClass, false);
Eval(5466, v is NotEmptyClass[], false);
- Eval(5467, v is EmptyClassGen<int>, false);
- Eval(5468, v is EmptyClassGen<int>[], false);
- Eval(5469, v is NotEmptyClassGen<Guid>, false);
- Eval(5470, v is NotEmptyClassGen<Guid>[], false);
- Eval(5471, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5472, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5467, v is EmptyClassGen<int>, false);
+// Eval(5468, v is EmptyClassGen<int>[], false);
+// Eval(5469, v is NotEmptyClassGen<Guid>, false);
+// Eval(5470, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5471, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5472, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5473, v is NestedClass, false);
Eval(5474, v is NestedClass[], false);
- Eval(5475, v is NestedClassGen<Decimal>, false);
- Eval(5476, v is NestedClassGen<Decimal>[], false);
+// Eval(5475, v is NestedClassGen<Decimal>, false);
+// Eval(5476, v is NestedClassGen<Decimal>[], false);
Eval(5477, v is ImplementOneInterfaceC, false);
Eval(5478, v is ImplementOneInterfaceC[], false);
Eval(5479, v is ImplementTwoInterfaceC, false);
Eval(5480, v is ImplementTwoInterfaceC[], false);
- Eval(5481, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5482, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5483, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5484, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5485, v is ImplementAllInterfaceC<int>, false);
- Eval(5486, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5481, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5482, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5483, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5484, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5485, v is ImplementAllInterfaceC<int>, false);
+// Eval(5486, v is ImplementAllInterfaceC<int>[], false);
Eval(5487, v is SealedClass, false);
Eval(5488, v is SealedClass[], false);
}
@@ -5391,26 +5391,26 @@ internal class Program
Eval(5494, v is NotEmptyStruct[], false);
Eval(5495, v is NotEmptyStruct?, false);
Eval(5496, v is NotEmptyStruct?[], false);
- Eval(5497, v is EmptyStructGen<int>, false);
- Eval(5498, v is EmptyStructGen<int>[], false);
- Eval(5499, v is EmptyStructGen<int>?, false);
- Eval(5500, v is EmptyStructGen<int>?[], false);
- Eval(5501, v is NotEmptyStructGen<Guid>, false);
- Eval(5502, v is NotEmptyStructGen<Guid>[], false);
- Eval(5503, v is NotEmptyStructGen<Guid>?, false);
- Eval(5504, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5505, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5506, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5507, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5508, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5497, v is EmptyStructGen<int>, false);
+// Eval(5498, v is EmptyStructGen<int>[], false);
+// Eval(5499, v is EmptyStructGen<int>?, false);
+// Eval(5500, v is EmptyStructGen<int>?[], false);
+// Eval(5501, v is NotEmptyStructGen<Guid>, false);
+// Eval(5502, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5503, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5504, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5505, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5506, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5507, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5508, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5509, v is NestedStruct, false);
Eval(5510, v is NestedStruct[], false);
Eval(5511, v is NestedStruct?, false);
Eval(5512, v is NestedStruct?[], false);
- Eval(5513, v is NestedStructGen<Decimal>, false);
- Eval(5514, v is NestedStructGen<Decimal>[], false);
- Eval(5515, v is NestedStructGen<Decimal>?, false);
- Eval(5516, v is NestedStructGen<Decimal>?[], false);
+// Eval(5513, v is NestedStructGen<Decimal>, false);
+// Eval(5514, v is NestedStructGen<Decimal>[], false);
+// Eval(5515, v is NestedStructGen<Decimal>?, false);
+// Eval(5516, v is NestedStructGen<Decimal>?[], false);
Eval(5517, v is ExplicitFieldOffsetStruct, false);
Eval(5518, v is ExplicitFieldOffsetStruct[], false);
Eval(5519, v is ExplicitFieldOffsetStruct?, false);
@@ -5427,18 +5427,18 @@ internal class Program
Eval(5538, v is ImplementTwoInterface[], false);
Eval(5539, v is ImplementTwoInterface?, false);
Eval(5540, v is ImplementTwoInterface?[], false);
- Eval(5541, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5542, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5543, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5544, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5545, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5546, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5547, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5548, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5549, v is ImplementAllInterface<int>, false);
- Eval(5550, v is ImplementAllInterface<int>[], false);
- Eval(5551, v is ImplementAllInterface<int>?, false);
- Eval(5552, v is ImplementAllInterface<int>?[], false);
+// Eval(5541, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5542, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5543, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5544, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5545, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5546, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5547, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5548, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5549, v is ImplementAllInterface<int>, false);
+// Eval(5550, v is ImplementAllInterface<int>[], false);
+// Eval(5551, v is ImplementAllInterface<int>?, false);
+// Eval(5552, v is ImplementAllInterface<int>?[], false);
Eval(5553, v is IntE, false);
Eval(5554, v is IntE[], false);
Eval(5555, v is IntE?, false);
@@ -5537,38 +5537,38 @@ internal class Program
Eval(5648, v is IEmpty[], false);
Eval(5649, v is INotEmpty, false);
Eval(5650, v is INotEmpty[], false);
- Eval(5651, v is IEmptyGen<int>, false);
- Eval(5652, v is IEmptyGen<int>[], false);
- Eval(5653, v is INotEmptyGen<int>, false);
- Eval(5654, v is INotEmptyGen<int>[], false);
+// Eval(5651, v is IEmptyGen<int>, false);
+// Eval(5652, v is IEmptyGen<int>[], false);
+// Eval(5653, v is INotEmptyGen<int>, false);
+// Eval(5654, v is INotEmptyGen<int>[], false);
Eval(5655, v is SimpleDelegate, false);
Eval(5656, v is SimpleDelegate[], false);
- Eval(5657, v is GenericDelegate<int>, false);
- Eval(5658, v is GenericDelegate<int>[], false);
+// Eval(5657, v is GenericDelegate<int>, false);
+// Eval(5658, v is GenericDelegate<int>[], false);
Eval(5659, v is EmptyClass, false);
Eval(5660, v is EmptyClass[], false);
Eval(5661, v is NotEmptyClass, false);
Eval(5662, v is NotEmptyClass[], false);
- Eval(5663, v is EmptyClassGen<int>, false);
- Eval(5664, v is EmptyClassGen<int>[], false);
- Eval(5665, v is NotEmptyClassGen<Guid>, false);
- Eval(5666, v is NotEmptyClassGen<Guid>[], false);
- Eval(5667, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5668, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5663, v is EmptyClassGen<int>, false);
+// Eval(5664, v is EmptyClassGen<int>[], false);
+// Eval(5665, v is NotEmptyClassGen<Guid>, false);
+// Eval(5666, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5667, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5668, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5669, v is NestedClass, false);
Eval(5670, v is NestedClass[], false);
- Eval(5671, v is NestedClassGen<Decimal>, false);
- Eval(5672, v is NestedClassGen<Decimal>[], false);
+// Eval(5671, v is NestedClassGen<Decimal>, false);
+// Eval(5672, v is NestedClassGen<Decimal>[], false);
Eval(5673, v is ImplementOneInterfaceC, false);
Eval(5674, v is ImplementOneInterfaceC[], false);
Eval(5675, v is ImplementTwoInterfaceC, false);
Eval(5676, v is ImplementTwoInterfaceC[], false);
- Eval(5677, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5678, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5679, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5680, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5681, v is ImplementAllInterfaceC<int>, false);
- Eval(5682, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5677, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5678, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5679, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5680, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5681, v is ImplementAllInterfaceC<int>, false);
+// Eval(5682, v is ImplementAllInterfaceC<int>[], false);
Eval(5683, v is SealedClass, false);
Eval(5684, v is SealedClass[], false);
}
@@ -5582,26 +5582,26 @@ internal class Program
Eval(5690, v is NotEmptyStruct[], false);
Eval(5691, v is NotEmptyStruct?, false);
Eval(5692, v is NotEmptyStruct?[], false);
- Eval(5693, v is EmptyStructGen<int>, false);
- Eval(5694, v is EmptyStructGen<int>[], false);
- Eval(5695, v is EmptyStructGen<int>?, false);
- Eval(5696, v is EmptyStructGen<int>?[], false);
- Eval(5697, v is NotEmptyStructGen<Guid>, false);
- Eval(5698, v is NotEmptyStructGen<Guid>[], false);
- Eval(5699, v is NotEmptyStructGen<Guid>?, false);
- Eval(5700, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5701, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5702, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5703, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5704, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5693, v is EmptyStructGen<int>, false);
+// Eval(5694, v is EmptyStructGen<int>[], false);
+// Eval(5695, v is EmptyStructGen<int>?, false);
+// Eval(5696, v is EmptyStructGen<int>?[], false);
+// Eval(5697, v is NotEmptyStructGen<Guid>, false);
+// Eval(5698, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5699, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5700, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5701, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5702, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5703, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5704, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5705, v is NestedStruct, false);
Eval(5706, v is NestedStruct[], false);
Eval(5707, v is NestedStruct?, false);
Eval(5708, v is NestedStruct?[], true);
- Eval(5709, v is NestedStructGen<Decimal>, false);
- Eval(5710, v is NestedStructGen<Decimal>[], false);
- Eval(5711, v is NestedStructGen<Decimal>?, false);
- Eval(5712, v is NestedStructGen<Decimal>?[], false);
+// Eval(5709, v is NestedStructGen<Decimal>, false);
+// Eval(5710, v is NestedStructGen<Decimal>[], false);
+// Eval(5711, v is NestedStructGen<Decimal>?, false);
+// Eval(5712, v is NestedStructGen<Decimal>?[], false);
Eval(5713, v is ExplicitFieldOffsetStruct, false);
Eval(5714, v is ExplicitFieldOffsetStruct[], false);
Eval(5715, v is ExplicitFieldOffsetStruct?, false);
@@ -5618,18 +5618,18 @@ internal class Program
Eval(5734, v is ImplementTwoInterface[], false);
Eval(5735, v is ImplementTwoInterface?, false);
Eval(5736, v is ImplementTwoInterface?[], false);
- Eval(5737, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5738, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5739, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5740, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5741, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5742, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5743, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5744, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5745, v is ImplementAllInterface<int>, false);
- Eval(5746, v is ImplementAllInterface<int>[], false);
- Eval(5747, v is ImplementAllInterface<int>?, false);
- Eval(5748, v is ImplementAllInterface<int>?[], false);
+// Eval(5737, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5738, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5739, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5740, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5741, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5742, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5743, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5744, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5745, v is ImplementAllInterface<int>, false);
+// Eval(5746, v is ImplementAllInterface<int>[], false);
+// Eval(5747, v is ImplementAllInterface<int>?, false);
+// Eval(5748, v is ImplementAllInterface<int>?[], false);
Eval(5749, v is IntE, false);
Eval(5750, v is IntE[], false);
Eval(5751, v is IntE?, false);
@@ -5728,38 +5728,38 @@ internal class Program
Eval(5844, v is IEmpty[], false);
Eval(5845, v is INotEmpty, false);
Eval(5846, v is INotEmpty[], false);
- Eval(5847, v is IEmptyGen<int>, false);
- Eval(5848, v is IEmptyGen<int>[], false);
- Eval(5849, v is INotEmptyGen<int>, false);
- Eval(5850, v is INotEmptyGen<int>[], false);
+// Eval(5847, v is IEmptyGen<int>, false);
+// Eval(5848, v is IEmptyGen<int>[], false);
+// Eval(5849, v is INotEmptyGen<int>, false);
+// Eval(5850, v is INotEmptyGen<int>[], false);
Eval(5851, v is SimpleDelegate, false);
Eval(5852, v is SimpleDelegate[], false);
- Eval(5853, v is GenericDelegate<int>, false);
- Eval(5854, v is GenericDelegate<int>[], false);
+// Eval(5853, v is GenericDelegate<int>, false);
+// Eval(5854, v is GenericDelegate<int>[], false);
Eval(5855, v is EmptyClass, false);
Eval(5856, v is EmptyClass[], false);
Eval(5857, v is NotEmptyClass, false);
Eval(5858, v is NotEmptyClass[], false);
- Eval(5859, v is EmptyClassGen<int>, false);
- Eval(5860, v is EmptyClassGen<int>[], false);
- Eval(5861, v is NotEmptyClassGen<Guid>, false);
- Eval(5862, v is NotEmptyClassGen<Guid>[], false);
- Eval(5863, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5864, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5859, v is EmptyClassGen<int>, false);
+// Eval(5860, v is EmptyClassGen<int>[], false);
+// Eval(5861, v is NotEmptyClassGen<Guid>, false);
+// Eval(5862, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5863, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5864, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5865, v is NestedClass, false);
Eval(5866, v is NestedClass[], false);
- Eval(5867, v is NestedClassGen<Decimal>, false);
- Eval(5868, v is NestedClassGen<Decimal>[], false);
+// Eval(5867, v is NestedClassGen<Decimal>, false);
+// Eval(5868, v is NestedClassGen<Decimal>[], false);
Eval(5869, v is ImplementOneInterfaceC, false);
Eval(5870, v is ImplementOneInterfaceC[], false);
Eval(5871, v is ImplementTwoInterfaceC, false);
Eval(5872, v is ImplementTwoInterfaceC[], false);
- Eval(5873, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5874, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5875, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5876, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5877, v is ImplementAllInterfaceC<int>, false);
- Eval(5878, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5873, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5874, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5875, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5876, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5877, v is ImplementAllInterfaceC<int>, false);
+// Eval(5878, v is ImplementAllInterfaceC<int>[], false);
Eval(5879, v is SealedClass, false);
Eval(5880, v is SealedClass[], false);
}
@@ -5776,26 +5776,26 @@ internal class Program
Eval(5886, v is NotEmptyStruct[], false);
Eval(5887, v is NotEmptyStruct?, false);
Eval(5888, v is NotEmptyStruct?[], false);
- Eval(5889, v is EmptyStructGen<int>, false);
- Eval(5890, v is EmptyStructGen<int>[], false);
- Eval(5891, v is EmptyStructGen<int>?, false);
- Eval(5892, v is EmptyStructGen<int>?[], false);
- Eval(5893, v is NotEmptyStructGen<Guid>, false);
- Eval(5894, v is NotEmptyStructGen<Guid>[], false);
- Eval(5895, v is NotEmptyStructGen<Guid>?, false);
- Eval(5896, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5897, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5898, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5899, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5900, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5889, v is EmptyStructGen<int>, false);
+// Eval(5890, v is EmptyStructGen<int>[], false);
+// Eval(5891, v is EmptyStructGen<int>?, false);
+// Eval(5892, v is EmptyStructGen<int>?[], false);
+// Eval(5893, v is NotEmptyStructGen<Guid>, false);
+// Eval(5894, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5895, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5896, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5897, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5898, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5899, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5900, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5901, v is NestedStruct, false);
Eval(5902, v is NestedStruct[], false);
Eval(5903, v is NestedStruct?, false);
Eval(5904, v is NestedStruct?[], false);
- Eval(5905, v is NestedStructGen<Decimal>, true);
- Eval(5906, v is NestedStructGen<Decimal>[], false);
- Eval(5907, v is NestedStructGen<Decimal>?, true);
- Eval(5908, v is NestedStructGen<Decimal>?[], false);
+// Eval(5905, v is NestedStructGen<Decimal>, true);
+// Eval(5906, v is NestedStructGen<Decimal>[], false);
+// Eval(5907, v is NestedStructGen<Decimal>?, true);
+// Eval(5908, v is NestedStructGen<Decimal>?[], false);
Eval(5909, v is ExplicitFieldOffsetStruct, false);
Eval(5910, v is ExplicitFieldOffsetStruct[], false);
Eval(5911, v is ExplicitFieldOffsetStruct?, false);
@@ -5812,18 +5812,18 @@ internal class Program
Eval(5930, v is ImplementTwoInterface[], false);
Eval(5931, v is ImplementTwoInterface?, false);
Eval(5932, v is ImplementTwoInterface?[], false);
- Eval(5933, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5934, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5935, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5936, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5937, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5938, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5939, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5940, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5941, v is ImplementAllInterface<int>, false);
- Eval(5942, v is ImplementAllInterface<int>[], false);
- Eval(5943, v is ImplementAllInterface<int>?, false);
- Eval(5944, v is ImplementAllInterface<int>?[], false);
+// Eval(5933, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5934, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5935, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5936, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5937, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5938, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5939, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5940, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5941, v is ImplementAllInterface<int>, false);
+// Eval(5942, v is ImplementAllInterface<int>[], false);
+// Eval(5943, v is ImplementAllInterface<int>?, false);
+// Eval(5944, v is ImplementAllInterface<int>?[], false);
Eval(5945, v is IntE, false);
Eval(5946, v is IntE[], false);
Eval(5947, v is IntE?, false);
@@ -5922,38 +5922,38 @@ internal class Program
Eval(6040, v is IEmpty[], false);
Eval(6041, v is INotEmpty, false);
Eval(6042, v is INotEmpty[], false);
- Eval(6043, v is IEmptyGen<int>, false);
- Eval(6044, v is IEmptyGen<int>[], false);
- Eval(6045, v is INotEmptyGen<int>, false);
- Eval(6046, v is INotEmptyGen<int>[], false);
+// Eval(6043, v is IEmptyGen<int>, false);
+// Eval(6044, v is IEmptyGen<int>[], false);
+// Eval(6045, v is INotEmptyGen<int>, false);
+// Eval(6046, v is INotEmptyGen<int>[], false);
Eval(6047, v is SimpleDelegate, false);
Eval(6048, v is SimpleDelegate[], false);
- Eval(6049, v is GenericDelegate<int>, false);
- Eval(6050, v is GenericDelegate<int>[], false);
+// Eval(6049, v is GenericDelegate<int>, false);
+// Eval(6050, v is GenericDelegate<int>[], false);
Eval(6051, v is EmptyClass, false);
Eval(6052, v is EmptyClass[], false);
Eval(6053, v is NotEmptyClass, false);
Eval(6054, v is NotEmptyClass[], false);
- Eval(6055, v is EmptyClassGen<int>, false);
- Eval(6056, v is EmptyClassGen<int>[], false);
- Eval(6057, v is NotEmptyClassGen<Guid>, false);
- Eval(6058, v is NotEmptyClassGen<Guid>[], false);
- Eval(6059, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6060, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6055, v is EmptyClassGen<int>, false);
+// Eval(6056, v is EmptyClassGen<int>[], false);
+// Eval(6057, v is NotEmptyClassGen<Guid>, false);
+// Eval(6058, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6059, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6060, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6061, v is NestedClass, false);
Eval(6062, v is NestedClass[], false);
- Eval(6063, v is NestedClassGen<Decimal>, false);
- Eval(6064, v is NestedClassGen<Decimal>[], false);
+// Eval(6063, v is NestedClassGen<Decimal>, false);
+// Eval(6064, v is NestedClassGen<Decimal>[], false);
Eval(6065, v is ImplementOneInterfaceC, false);
Eval(6066, v is ImplementOneInterfaceC[], false);
Eval(6067, v is ImplementTwoInterfaceC, false);
Eval(6068, v is ImplementTwoInterfaceC[], false);
- Eval(6069, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6070, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6071, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6072, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6073, v is ImplementAllInterfaceC<int>, false);
- Eval(6074, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6069, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6070, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6071, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6072, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6073, v is ImplementAllInterfaceC<int>, false);
+// Eval(6074, v is ImplementAllInterfaceC<int>[], false);
Eval(6075, v is SealedClass, false);
Eval(6076, v is SealedClass[], false);
}
@@ -5967,26 +5967,26 @@ internal class Program
Eval(6082, v is NotEmptyStruct[], false);
Eval(6083, v is NotEmptyStruct?, false);
Eval(6084, v is NotEmptyStruct?[], false);
- Eval(6085, v is EmptyStructGen<int>, false);
- Eval(6086, v is EmptyStructGen<int>[], false);
- Eval(6087, v is EmptyStructGen<int>?, false);
- Eval(6088, v is EmptyStructGen<int>?[], false);
- Eval(6089, v is NotEmptyStructGen<Guid>, false);
- Eval(6090, v is NotEmptyStructGen<Guid>[], false);
- Eval(6091, v is NotEmptyStructGen<Guid>?, false);
- Eval(6092, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6093, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6094, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6095, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6096, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6085, v is EmptyStructGen<int>, false);
+// Eval(6086, v is EmptyStructGen<int>[], false);
+// Eval(6087, v is EmptyStructGen<int>?, false);
+// Eval(6088, v is EmptyStructGen<int>?[], false);
+// Eval(6089, v is NotEmptyStructGen<Guid>, false);
+// Eval(6090, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6091, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6092, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6093, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6094, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6095, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6096, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6097, v is NestedStruct, false);
Eval(6098, v is NestedStruct[], false);
Eval(6099, v is NestedStruct?, false);
Eval(6100, v is NestedStruct?[], false);
- Eval(6101, v is NestedStructGen<Decimal>, true);
- Eval(6102, v is NestedStructGen<Decimal>[], false);
- Eval(6103, v is NestedStructGen<Decimal>?, true);
- Eval(6104, v is NestedStructGen<Decimal>?[], false);
+// Eval(6101, v is NestedStructGen<Decimal>, true);
+// Eval(6102, v is NestedStructGen<Decimal>[], false);
+// Eval(6103, v is NestedStructGen<Decimal>?, true);
+// Eval(6104, v is NestedStructGen<Decimal>?[], false);
Eval(6105, v is ExplicitFieldOffsetStruct, false);
Eval(6106, v is ExplicitFieldOffsetStruct[], false);
Eval(6107, v is ExplicitFieldOffsetStruct?, false);
@@ -6003,18 +6003,18 @@ internal class Program
Eval(6126, v is ImplementTwoInterface[], false);
Eval(6127, v is ImplementTwoInterface?, false);
Eval(6128, v is ImplementTwoInterface?[], false);
- Eval(6129, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6130, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6131, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6132, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6133, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6134, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6135, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6136, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6137, v is ImplementAllInterface<int>, false);
- Eval(6138, v is ImplementAllInterface<int>[], false);
- Eval(6139, v is ImplementAllInterface<int>?, false);
- Eval(6140, v is ImplementAllInterface<int>?[], false);
+// Eval(6129, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6130, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6131, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6132, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6133, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6134, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6135, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6136, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6137, v is ImplementAllInterface<int>, false);
+// Eval(6138, v is ImplementAllInterface<int>[], false);
+// Eval(6139, v is ImplementAllInterface<int>?, false);
+// Eval(6140, v is ImplementAllInterface<int>?[], false);
Eval(6141, v is IntE, false);
Eval(6142, v is IntE[], false);
Eval(6143, v is IntE?, false);
@@ -6113,38 +6113,38 @@ internal class Program
Eval(6236, v is IEmpty[], false);
Eval(6237, v is INotEmpty, false);
Eval(6238, v is INotEmpty[], false);
- Eval(6239, v is IEmptyGen<int>, false);
- Eval(6240, v is IEmptyGen<int>[], false);
- Eval(6241, v is INotEmptyGen<int>, false);
- Eval(6242, v is INotEmptyGen<int>[], false);
+// Eval(6239, v is IEmptyGen<int>, false);
+// Eval(6240, v is IEmptyGen<int>[], false);
+// Eval(6241, v is INotEmptyGen<int>, false);
+// Eval(6242, v is INotEmptyGen<int>[], false);
Eval(6243, v is SimpleDelegate, false);
Eval(6244, v is SimpleDelegate[], false);
- Eval(6245, v is GenericDelegate<int>, false);
- Eval(6246, v is GenericDelegate<int>[], false);
+// Eval(6245, v is GenericDelegate<int>, false);
+// Eval(6246, v is GenericDelegate<int>[], false);
Eval(6247, v is EmptyClass, false);
Eval(6248, v is EmptyClass[], false);
Eval(6249, v is NotEmptyClass, false);
Eval(6250, v is NotEmptyClass[], false);
- Eval(6251, v is EmptyClassGen<int>, false);
- Eval(6252, v is EmptyClassGen<int>[], false);
- Eval(6253, v is NotEmptyClassGen<Guid>, false);
- Eval(6254, v is NotEmptyClassGen<Guid>[], false);
- Eval(6255, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6256, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6251, v is EmptyClassGen<int>, false);
+// Eval(6252, v is EmptyClassGen<int>[], false);
+// Eval(6253, v is NotEmptyClassGen<Guid>, false);
+// Eval(6254, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6255, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6256, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6257, v is NestedClass, false);
Eval(6258, v is NestedClass[], false);
- Eval(6259, v is NestedClassGen<Decimal>, false);
- Eval(6260, v is NestedClassGen<Decimal>[], false);
+// Eval(6259, v is NestedClassGen<Decimal>, false);
+// Eval(6260, v is NestedClassGen<Decimal>[], false);
Eval(6261, v is ImplementOneInterfaceC, false);
Eval(6262, v is ImplementOneInterfaceC[], false);
Eval(6263, v is ImplementTwoInterfaceC, false);
Eval(6264, v is ImplementTwoInterfaceC[], false);
- Eval(6265, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6266, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6267, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6268, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6269, v is ImplementAllInterfaceC<int>, false);
- Eval(6270, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6265, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6266, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6267, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6268, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6269, v is ImplementAllInterfaceC<int>, false);
+// Eval(6270, v is ImplementAllInterfaceC<int>[], false);
Eval(6271, v is SealedClass, false);
Eval(6272, v is SealedClass[], false);
}
@@ -6158,26 +6158,26 @@ internal class Program
Eval(6278, v is NotEmptyStruct[], false);
Eval(6279, v is NotEmptyStruct?, false);
Eval(6280, v is NotEmptyStruct?[], false);
- Eval(6281, v is EmptyStructGen<int>, false);
- Eval(6282, v is EmptyStructGen<int>[], false);
- Eval(6283, v is EmptyStructGen<int>?, false);
- Eval(6284, v is EmptyStructGen<int>?[], false);
- Eval(6285, v is NotEmptyStructGen<Guid>, false);
- Eval(6286, v is NotEmptyStructGen<Guid>[], false);
- Eval(6287, v is NotEmptyStructGen<Guid>?, false);
- Eval(6288, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6289, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6290, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6291, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6292, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6281, v is EmptyStructGen<int>, false);
+// Eval(6282, v is EmptyStructGen<int>[], false);
+// Eval(6283, v is EmptyStructGen<int>?, false);
+// Eval(6284, v is EmptyStructGen<int>?[], false);
+// Eval(6285, v is NotEmptyStructGen<Guid>, false);
+// Eval(6286, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6287, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6288, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6289, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6290, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6291, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6292, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6293, v is NestedStruct, false);
Eval(6294, v is NestedStruct[], false);
Eval(6295, v is NestedStruct?, false);
Eval(6296, v is NestedStruct?[], false);
- Eval(6297, v is NestedStructGen<Decimal>, false);
- Eval(6298, v is NestedStructGen<Decimal>[], false);
- Eval(6299, v is NestedStructGen<Decimal>?, false);
- Eval(6300, v is NestedStructGen<Decimal>?[], false);
+// Eval(6297, v is NestedStructGen<Decimal>, false);
+// Eval(6298, v is NestedStructGen<Decimal>[], false);
+// Eval(6299, v is NestedStructGen<Decimal>?, false);
+// Eval(6300, v is NestedStructGen<Decimal>?[], false);
Eval(6301, v is ExplicitFieldOffsetStruct, false);
Eval(6302, v is ExplicitFieldOffsetStruct[], false);
Eval(6303, v is ExplicitFieldOffsetStruct?, false);
@@ -6194,18 +6194,18 @@ internal class Program
Eval(6322, v is ImplementTwoInterface[], false);
Eval(6323, v is ImplementTwoInterface?, false);
Eval(6324, v is ImplementTwoInterface?[], false);
- Eval(6325, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6326, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6327, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6328, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6329, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6330, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6331, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6332, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6333, v is ImplementAllInterface<int>, false);
- Eval(6334, v is ImplementAllInterface<int>[], false);
- Eval(6335, v is ImplementAllInterface<int>?, false);
- Eval(6336, v is ImplementAllInterface<int>?[], false);
+// Eval(6325, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6326, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6327, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6328, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6329, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6330, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6331, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6332, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6333, v is ImplementAllInterface<int>, false);
+// Eval(6334, v is ImplementAllInterface<int>[], false);
+// Eval(6335, v is ImplementAllInterface<int>?, false);
+// Eval(6336, v is ImplementAllInterface<int>?[], false);
Eval(6337, v is IntE, false);
Eval(6338, v is IntE[], false);
Eval(6339, v is IntE?, false);
@@ -6304,38 +6304,38 @@ internal class Program
Eval(6432, v is IEmpty[], false);
Eval(6433, v is INotEmpty, false);
Eval(6434, v is INotEmpty[], false);
- Eval(6435, v is IEmptyGen<int>, false);
- Eval(6436, v is IEmptyGen<int>[], false);
- Eval(6437, v is INotEmptyGen<int>, false);
- Eval(6438, v is INotEmptyGen<int>[], false);
+// Eval(6435, v is IEmptyGen<int>, false);
+// Eval(6436, v is IEmptyGen<int>[], false);
+// Eval(6437, v is INotEmptyGen<int>, false);
+// Eval(6438, v is INotEmptyGen<int>[], false);
Eval(6439, v is SimpleDelegate, false);
Eval(6440, v is SimpleDelegate[], false);
- Eval(6441, v is GenericDelegate<int>, false);
- Eval(6442, v is GenericDelegate<int>[], false);
+// Eval(6441, v is GenericDelegate<int>, false);
+// Eval(6442, v is GenericDelegate<int>[], false);
Eval(6443, v is EmptyClass, false);
Eval(6444, v is EmptyClass[], false);
Eval(6445, v is NotEmptyClass, false);
Eval(6446, v is NotEmptyClass[], false);
- Eval(6447, v is EmptyClassGen<int>, false);
- Eval(6448, v is EmptyClassGen<int>[], false);
- Eval(6449, v is NotEmptyClassGen<Guid>, false);
- Eval(6450, v is NotEmptyClassGen<Guid>[], false);
- Eval(6451, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6452, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6447, v is EmptyClassGen<int>, false);
+// Eval(6448, v is EmptyClassGen<int>[], false);
+// Eval(6449, v is NotEmptyClassGen<Guid>, false);
+// Eval(6450, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6451, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6452, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6453, v is NestedClass, false);
Eval(6454, v is NestedClass[], false);
- Eval(6455, v is NestedClassGen<Decimal>, false);
- Eval(6456, v is NestedClassGen<Decimal>[], false);
+// Eval(6455, v is NestedClassGen<Decimal>, false);
+// Eval(6456, v is NestedClassGen<Decimal>[], false);
Eval(6457, v is ImplementOneInterfaceC, false);
Eval(6458, v is ImplementOneInterfaceC[], false);
Eval(6459, v is ImplementTwoInterfaceC, false);
Eval(6460, v is ImplementTwoInterfaceC[], false);
- Eval(6461, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6462, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6463, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6464, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6465, v is ImplementAllInterfaceC<int>, false);
- Eval(6466, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6461, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6462, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6463, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6464, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6465, v is ImplementAllInterfaceC<int>, false);
+// Eval(6466, v is ImplementAllInterfaceC<int>[], false);
Eval(6467, v is SealedClass, false);
Eval(6468, v is SealedClass[], false);
}
@@ -6349,26 +6349,26 @@ internal class Program
Eval(6474, v is NotEmptyStruct[], false);
Eval(6475, v is NotEmptyStruct?, false);
Eval(6476, v is NotEmptyStruct?[], false);
- Eval(6477, v is EmptyStructGen<int>, false);
- Eval(6478, v is EmptyStructGen<int>[], false);
- Eval(6479, v is EmptyStructGen<int>?, false);
- Eval(6480, v is EmptyStructGen<int>?[], false);
- Eval(6481, v is NotEmptyStructGen<Guid>, false);
- Eval(6482, v is NotEmptyStructGen<Guid>[], false);
- Eval(6483, v is NotEmptyStructGen<Guid>?, false);
- Eval(6484, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6485, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6486, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6487, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6488, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6477, v is EmptyStructGen<int>, false);
+// Eval(6478, v is EmptyStructGen<int>[], false);
+// Eval(6479, v is EmptyStructGen<int>?, false);
+// Eval(6480, v is EmptyStructGen<int>?[], false);
+// Eval(6481, v is NotEmptyStructGen<Guid>, false);
+// Eval(6482, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6483, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6484, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6485, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6486, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6487, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6488, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6489, v is NestedStruct, false);
Eval(6490, v is NestedStruct[], false);
Eval(6491, v is NestedStruct?, false);
Eval(6492, v is NestedStruct?[], false);
- Eval(6493, v is NestedStructGen<Decimal>, false);
- Eval(6494, v is NestedStructGen<Decimal>[], false);
- Eval(6495, v is NestedStructGen<Decimal>?, false);
- Eval(6496, v is NestedStructGen<Decimal>?[], false);
+// Eval(6493, v is NestedStructGen<Decimal>, false);
+// Eval(6494, v is NestedStructGen<Decimal>[], false);
+// Eval(6495, v is NestedStructGen<Decimal>?, false);
+// Eval(6496, v is NestedStructGen<Decimal>?[], false);
Eval(6497, v is ExplicitFieldOffsetStruct, false);
Eval(6498, v is ExplicitFieldOffsetStruct[], false);
Eval(6499, v is ExplicitFieldOffsetStruct?, false);
@@ -6385,18 +6385,18 @@ internal class Program
Eval(6518, v is ImplementTwoInterface[], false);
Eval(6519, v is ImplementTwoInterface?, false);
Eval(6520, v is ImplementTwoInterface?[], false);
- Eval(6521, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6522, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6523, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6524, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6525, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6526, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6527, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6528, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6529, v is ImplementAllInterface<int>, false);
- Eval(6530, v is ImplementAllInterface<int>[], false);
- Eval(6531, v is ImplementAllInterface<int>?, false);
- Eval(6532, v is ImplementAllInterface<int>?[], false);
+// Eval(6521, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6522, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6523, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6524, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6525, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6526, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6527, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6528, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6529, v is ImplementAllInterface<int>, false);
+// Eval(6530, v is ImplementAllInterface<int>[], false);
+// Eval(6531, v is ImplementAllInterface<int>?, false);
+// Eval(6532, v is ImplementAllInterface<int>?[], false);
Eval(6533, v is IntE, false);
Eval(6534, v is IntE[], false);
Eval(6535, v is IntE?, false);
@@ -6495,38 +6495,38 @@ internal class Program
Eval(6628, v is IEmpty[], false);
Eval(6629, v is INotEmpty, false);
Eval(6630, v is INotEmpty[], false);
- Eval(6631, v is IEmptyGen<int>, false);
- Eval(6632, v is IEmptyGen<int>[], false);
- Eval(6633, v is INotEmptyGen<int>, false);
- Eval(6634, v is INotEmptyGen<int>[], false);
+// Eval(6631, v is IEmptyGen<int>, false);
+// Eval(6632, v is IEmptyGen<int>[], false);
+// Eval(6633, v is INotEmptyGen<int>, false);
+// Eval(6634, v is INotEmptyGen<int>[], false);
Eval(6635, v is SimpleDelegate, false);
Eval(6636, v is SimpleDelegate[], false);
- Eval(6637, v is GenericDelegate<int>, false);
- Eval(6638, v is GenericDelegate<int>[], false);
+// Eval(6637, v is GenericDelegate<int>, false);
+// Eval(6638, v is GenericDelegate<int>[], false);
Eval(6639, v is EmptyClass, false);
Eval(6640, v is EmptyClass[], false);
Eval(6641, v is NotEmptyClass, false);
Eval(6642, v is NotEmptyClass[], false);
- Eval(6643, v is EmptyClassGen<int>, false);
- Eval(6644, v is EmptyClassGen<int>[], false);
- Eval(6645, v is NotEmptyClassGen<Guid>, false);
- Eval(6646, v is NotEmptyClassGen<Guid>[], false);
- Eval(6647, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6648, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6643, v is EmptyClassGen<int>, false);
+// Eval(6644, v is EmptyClassGen<int>[], false);
+// Eval(6645, v is NotEmptyClassGen<Guid>, false);
+// Eval(6646, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6647, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6648, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6649, v is NestedClass, false);
Eval(6650, v is NestedClass[], false);
- Eval(6651, v is NestedClassGen<Decimal>, false);
- Eval(6652, v is NestedClassGen<Decimal>[], false);
+// Eval(6651, v is NestedClassGen<Decimal>, false);
+// Eval(6652, v is NestedClassGen<Decimal>[], false);
Eval(6653, v is ImplementOneInterfaceC, false);
Eval(6654, v is ImplementOneInterfaceC[], false);
Eval(6655, v is ImplementTwoInterfaceC, false);
Eval(6656, v is ImplementTwoInterfaceC[], false);
- Eval(6657, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6658, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6659, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6660, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6661, v is ImplementAllInterfaceC<int>, false);
- Eval(6662, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6657, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6658, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6659, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6660, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6661, v is ImplementAllInterfaceC<int>, false);
+// Eval(6662, v is ImplementAllInterfaceC<int>[], false);
Eval(6663, v is SealedClass, false);
Eval(6664, v is SealedClass[], false);
}
@@ -6540,26 +6540,26 @@ internal class Program
Eval(6670, v is NotEmptyStruct[], false);
Eval(6671, v is NotEmptyStruct?, false);
Eval(6672, v is NotEmptyStruct?[], false);
- Eval(6673, v is EmptyStructGen<int>, false);
- Eval(6674, v is EmptyStructGen<int>[], false);
- Eval(6675, v is EmptyStructGen<int>?, false);
- Eval(6676, v is EmptyStructGen<int>?[], false);
- Eval(6677, v is NotEmptyStructGen<Guid>, false);
- Eval(6678, v is NotEmptyStructGen<Guid>[], false);
- Eval(6679, v is NotEmptyStructGen<Guid>?, false);
- Eval(6680, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6681, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6682, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6683, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6684, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6673, v is EmptyStructGen<int>, false);
+// Eval(6674, v is EmptyStructGen<int>[], false);
+// Eval(6675, v is EmptyStructGen<int>?, false);
+// Eval(6676, v is EmptyStructGen<int>?[], false);
+// Eval(6677, v is NotEmptyStructGen<Guid>, false);
+// Eval(6678, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6679, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6680, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6681, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6682, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6683, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6684, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6685, v is NestedStruct, false);
Eval(6686, v is NestedStruct[], false);
Eval(6687, v is NestedStruct?, false);
Eval(6688, v is NestedStruct?[], false);
- Eval(6689, v is NestedStructGen<Decimal>, false);
- Eval(6690, v is NestedStructGen<Decimal>[], false);
- Eval(6691, v is NestedStructGen<Decimal>?, false);
- Eval(6692, v is NestedStructGen<Decimal>?[], true);
+// Eval(6689, v is NestedStructGen<Decimal>, false);
+// Eval(6690, v is NestedStructGen<Decimal>[], false);
+// Eval(6691, v is NestedStructGen<Decimal>?, false);
+// Eval(6692, v is NestedStructGen<Decimal>?[], true);
Eval(6693, v is ExplicitFieldOffsetStruct, false);
Eval(6694, v is ExplicitFieldOffsetStruct[], false);
Eval(6695, v is ExplicitFieldOffsetStruct?, false);
@@ -6576,18 +6576,18 @@ internal class Program
Eval(6714, v is ImplementTwoInterface[], false);
Eval(6715, v is ImplementTwoInterface?, false);
Eval(6716, v is ImplementTwoInterface?[], false);
- Eval(6717, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6718, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6719, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6720, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6721, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6722, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6723, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6724, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6725, v is ImplementAllInterface<int>, false);
- Eval(6726, v is ImplementAllInterface<int>[], false);
- Eval(6727, v is ImplementAllInterface<int>?, false);
- Eval(6728, v is ImplementAllInterface<int>?[], false);
+// Eval(6717, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6718, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6719, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6720, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6721, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6722, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6723, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6724, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6725, v is ImplementAllInterface<int>, false);
+// Eval(6726, v is ImplementAllInterface<int>[], false);
+// Eval(6727, v is ImplementAllInterface<int>?, false);
+// Eval(6728, v is ImplementAllInterface<int>?[], false);
Eval(6729, v is IntE, false);
Eval(6730, v is IntE[], false);
Eval(6731, v is IntE?, false);
@@ -6686,38 +6686,38 @@ internal class Program
Eval(6824, v is IEmpty[], false);
Eval(6825, v is INotEmpty, false);
Eval(6826, v is INotEmpty[], false);
- Eval(6827, v is IEmptyGen<int>, false);
- Eval(6828, v is IEmptyGen<int>[], false);
- Eval(6829, v is INotEmptyGen<int>, false);
- Eval(6830, v is INotEmptyGen<int>[], false);
+// Eval(6827, v is IEmptyGen<int>, false);
+// Eval(6828, v is IEmptyGen<int>[], false);
+// Eval(6829, v is INotEmptyGen<int>, false);
+// Eval(6830, v is INotEmptyGen<int>[], false);
Eval(6831, v is SimpleDelegate, false);
Eval(6832, v is SimpleDelegate[], false);
- Eval(6833, v is GenericDelegate<int>, false);
- Eval(6834, v is GenericDelegate<int>[], false);
+// Eval(6833, v is GenericDelegate<int>, false);
+// Eval(6834, v is GenericDelegate<int>[], false);
Eval(6835, v is EmptyClass, false);
Eval(6836, v is EmptyClass[], false);
Eval(6837, v is NotEmptyClass, false);
Eval(6838, v is NotEmptyClass[], false);
- Eval(6839, v is EmptyClassGen<int>, false);
- Eval(6840, v is EmptyClassGen<int>[], false);
- Eval(6841, v is NotEmptyClassGen<Guid>, false);
- Eval(6842, v is NotEmptyClassGen<Guid>[], false);
- Eval(6843, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6844, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6839, v is EmptyClassGen<int>, false);
+// Eval(6840, v is EmptyClassGen<int>[], false);
+// Eval(6841, v is NotEmptyClassGen<Guid>, false);
+// Eval(6842, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6843, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6844, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6845, v is NestedClass, false);
Eval(6846, v is NestedClass[], false);
- Eval(6847, v is NestedClassGen<Decimal>, false);
- Eval(6848, v is NestedClassGen<Decimal>[], false);
+// Eval(6847, v is NestedClassGen<Decimal>, false);
+// Eval(6848, v is NestedClassGen<Decimal>[], false);
Eval(6849, v is ImplementOneInterfaceC, false);
Eval(6850, v is ImplementOneInterfaceC[], false);
Eval(6851, v is ImplementTwoInterfaceC, false);
Eval(6852, v is ImplementTwoInterfaceC[], false);
- Eval(6853, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6854, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6855, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6856, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6857, v is ImplementAllInterfaceC<int>, false);
- Eval(6858, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6853, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6854, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6855, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6856, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6857, v is ImplementAllInterfaceC<int>, false);
+// Eval(6858, v is ImplementAllInterfaceC<int>[], false);
Eval(6859, v is SealedClass, false);
Eval(6860, v is SealedClass[], false);
}
@@ -6734,26 +6734,26 @@ internal class Program
Eval(6866, v is NotEmptyStruct[], false);
Eval(6867, v is NotEmptyStruct?, false);
Eval(6868, v is NotEmptyStruct?[], false);
- Eval(6869, v is EmptyStructGen<int>, false);
- Eval(6870, v is EmptyStructGen<int>[], false);
- Eval(6871, v is EmptyStructGen<int>?, false);
- Eval(6872, v is EmptyStructGen<int>?[], false);
- Eval(6873, v is NotEmptyStructGen<Guid>, false);
- Eval(6874, v is NotEmptyStructGen<Guid>[], false);
- Eval(6875, v is NotEmptyStructGen<Guid>?, false);
- Eval(6876, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6877, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6878, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6879, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6880, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6869, v is EmptyStructGen<int>, false);
+// Eval(6870, v is EmptyStructGen<int>[], false);
+// Eval(6871, v is EmptyStructGen<int>?, false);
+// Eval(6872, v is EmptyStructGen<int>?[], false);
+// Eval(6873, v is NotEmptyStructGen<Guid>, false);
+// Eval(6874, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6875, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6876, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6877, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6878, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6879, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6880, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6881, v is NestedStruct, false);
Eval(6882, v is NestedStruct[], false);
Eval(6883, v is NestedStruct?, false);
Eval(6884, v is NestedStruct?[], false);
- Eval(6885, v is NestedStructGen<Decimal>, false);
- Eval(6886, v is NestedStructGen<Decimal>[], false);
- Eval(6887, v is NestedStructGen<Decimal>?, false);
- Eval(6888, v is NestedStructGen<Decimal>?[], false);
+// Eval(6885, v is NestedStructGen<Decimal>, false);
+// Eval(6886, v is NestedStructGen<Decimal>[], false);
+// Eval(6887, v is NestedStructGen<Decimal>?, false);
+// Eval(6888, v is NestedStructGen<Decimal>?[], false);
Eval(6889, v is ExplicitFieldOffsetStruct, true);
Eval(6890, v is ExplicitFieldOffsetStruct[], false);
Eval(6891, v is ExplicitFieldOffsetStruct?, true);
@@ -6770,18 +6770,18 @@ internal class Program
Eval(6910, v is ImplementTwoInterface[], false);
Eval(6911, v is ImplementTwoInterface?, false);
Eval(6912, v is ImplementTwoInterface?[], false);
- Eval(6913, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6914, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6915, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6916, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6917, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6918, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6919, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6920, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6921, v is ImplementAllInterface<int>, false);
- Eval(6922, v is ImplementAllInterface<int>[], false);
- Eval(6923, v is ImplementAllInterface<int>?, false);
- Eval(6924, v is ImplementAllInterface<int>?[], false);
+// Eval(6913, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6914, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6915, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6916, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6917, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6918, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6919, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6920, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6921, v is ImplementAllInterface<int>, false);
+// Eval(6922, v is ImplementAllInterface<int>[], false);
+// Eval(6923, v is ImplementAllInterface<int>?, false);
+// Eval(6924, v is ImplementAllInterface<int>?[], false);
Eval(6925, v is IntE, false);
Eval(6926, v is IntE[], false);
Eval(6927, v is IntE?, false);
@@ -6880,38 +6880,38 @@ internal class Program
Eval(7020, v is IEmpty[], false);
Eval(7021, v is INotEmpty, false);
Eval(7022, v is INotEmpty[], false);
- Eval(7023, v is IEmptyGen<int>, false);
- Eval(7024, v is IEmptyGen<int>[], false);
- Eval(7025, v is INotEmptyGen<int>, false);
- Eval(7026, v is INotEmptyGen<int>[], false);
+// Eval(7023, v is IEmptyGen<int>, false);
+// Eval(7024, v is IEmptyGen<int>[], false);
+// Eval(7025, v is INotEmptyGen<int>, false);
+// Eval(7026, v is INotEmptyGen<int>[], false);
Eval(7027, v is SimpleDelegate, false);
Eval(7028, v is SimpleDelegate[], false);
- Eval(7029, v is GenericDelegate<int>, false);
- Eval(7030, v is GenericDelegate<int>[], false);
+// Eval(7029, v is GenericDelegate<int>, false);
+// Eval(7030, v is GenericDelegate<int>[], false);
Eval(7031, v is EmptyClass, false);
Eval(7032, v is EmptyClass[], false);
Eval(7033, v is NotEmptyClass, false);
Eval(7034, v is NotEmptyClass[], false);
- Eval(7035, v is EmptyClassGen<int>, false);
- Eval(7036, v is EmptyClassGen<int>[], false);
- Eval(7037, v is NotEmptyClassGen<Guid>, false);
- Eval(7038, v is NotEmptyClassGen<Guid>[], false);
- Eval(7039, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7040, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7035, v is EmptyClassGen<int>, false);
+// Eval(7036, v is EmptyClassGen<int>[], false);
+// Eval(7037, v is NotEmptyClassGen<Guid>, false);
+// Eval(7038, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7039, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7040, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7041, v is NestedClass, false);
Eval(7042, v is NestedClass[], false);
- Eval(7043, v is NestedClassGen<Decimal>, false);
- Eval(7044, v is NestedClassGen<Decimal>[], false);
+// Eval(7043, v is NestedClassGen<Decimal>, false);
+// Eval(7044, v is NestedClassGen<Decimal>[], false);
Eval(7045, v is ImplementOneInterfaceC, false);
Eval(7046, v is ImplementOneInterfaceC[], false);
Eval(7047, v is ImplementTwoInterfaceC, false);
Eval(7048, v is ImplementTwoInterfaceC[], false);
- Eval(7049, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7050, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7051, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7052, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7053, v is ImplementAllInterfaceC<int>, false);
- Eval(7054, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7049, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7050, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7051, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7052, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7053, v is ImplementAllInterfaceC<int>, false);
+// Eval(7054, v is ImplementAllInterfaceC<int>[], false);
Eval(7055, v is SealedClass, false);
Eval(7056, v is SealedClass[], false);
}
@@ -6925,26 +6925,26 @@ internal class Program
Eval(7062, v is NotEmptyStruct[], false);
Eval(7063, v is NotEmptyStruct?, false);
Eval(7064, v is NotEmptyStruct?[], false);
- Eval(7065, v is EmptyStructGen<int>, false);
- Eval(7066, v is EmptyStructGen<int>[], false);
- Eval(7067, v is EmptyStructGen<int>?, false);
- Eval(7068, v is EmptyStructGen<int>?[], false);
- Eval(7069, v is NotEmptyStructGen<Guid>, false);
- Eval(7070, v is NotEmptyStructGen<Guid>[], false);
- Eval(7071, v is NotEmptyStructGen<Guid>?, false);
- Eval(7072, v is NotEmptyStructGen<Guid>?[], false);
- Eval(7073, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7074, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7075, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7076, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7065, v is EmptyStructGen<int>, false);
+// Eval(7066, v is EmptyStructGen<int>[], false);
+// Eval(7067, v is EmptyStructGen<int>?, false);
+// Eval(7068, v is EmptyStructGen<int>?[], false);
+// Eval(7069, v is NotEmptyStructGen<Guid>, false);
+// Eval(7070, v is NotEmptyStructGen<Guid>[], false);
+// Eval(7071, v is NotEmptyStructGen<Guid>?, false);
+// Eval(7072, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(7073, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7074, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7075, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7076, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7077, v is NestedStruct, false);
Eval(7078, v is NestedStruct[], false);
Eval(7079, v is NestedStruct?, false);
Eval(7080, v is NestedStruct?[], false);
- Eval(7081, v is NestedStructGen<Decimal>, false);
- Eval(7082, v is NestedStructGen<Decimal>[], false);
- Eval(7083, v is NestedStructGen<Decimal>?, false);
- Eval(7084, v is NestedStructGen<Decimal>?[], false);
+// Eval(7081, v is NestedStructGen<Decimal>, false);
+// Eval(7082, v is NestedStructGen<Decimal>[], false);
+// Eval(7083, v is NestedStructGen<Decimal>?, false);
+// Eval(7084, v is NestedStructGen<Decimal>?[], false);
Eval(7085, v is ExplicitFieldOffsetStruct, true);
Eval(7086, v is ExplicitFieldOffsetStruct[], false);
Eval(7087, v is ExplicitFieldOffsetStruct?, true);
@@ -6961,18 +6961,18 @@ internal class Program
Eval(7106, v is ImplementTwoInterface[], false);
Eval(7107, v is ImplementTwoInterface?, false);
Eval(7108, v is ImplementTwoInterface?[], false);
- Eval(7109, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7110, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7111, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7112, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7113, v is ImplementTwoInterfaceGen<int>, false);
- Eval(7114, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(7115, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(7116, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7117, v is ImplementAllInterface<int>, false);
- Eval(7118, v is ImplementAllInterface<int>[], false);
- Eval(7119, v is ImplementAllInterface<int>?, false);
- Eval(7120, v is ImplementAllInterface<int>?[], false);
+// Eval(7109, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7110, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7111, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7112, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7113, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(7114, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7115, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7116, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7117, v is ImplementAllInterface<int>, false);
+// Eval(7118, v is ImplementAllInterface<int>[], false);
+// Eval(7119, v is ImplementAllInterface<int>?, false);
+// Eval(7120, v is ImplementAllInterface<int>?[], false);
Eval(7121, v is IntE, false);
Eval(7122, v is IntE[], false);
Eval(7123, v is IntE?, false);
@@ -7071,38 +7071,38 @@ internal class Program
Eval(7216, v is IEmpty[], false);
Eval(7217, v is INotEmpty, false);
Eval(7218, v is INotEmpty[], false);
- Eval(7219, v is IEmptyGen<int>, false);
- Eval(7220, v is IEmptyGen<int>[], false);
- Eval(7221, v is INotEmptyGen<int>, false);
- Eval(7222, v is INotEmptyGen<int>[], false);
+// Eval(7219, v is IEmptyGen<int>, false);
+// Eval(7220, v is IEmptyGen<int>[], false);
+// Eval(7221, v is INotEmptyGen<int>, false);
+// Eval(7222, v is INotEmptyGen<int>[], false);
Eval(7223, v is SimpleDelegate, false);
Eval(7224, v is SimpleDelegate[], false);
- Eval(7225, v is GenericDelegate<int>, false);
- Eval(7226, v is GenericDelegate<int>[], false);
+// Eval(7225, v is GenericDelegate<int>, false);
+// Eval(7226, v is GenericDelegate<int>[], false);
Eval(7227, v is EmptyClass, false);
Eval(7228, v is EmptyClass[], false);
Eval(7229, v is NotEmptyClass, false);
Eval(7230, v is NotEmptyClass[], false);
- Eval(7231, v is EmptyClassGen<int>, false);
- Eval(7232, v is EmptyClassGen<int>[], false);
- Eval(7233, v is NotEmptyClassGen<Guid>, false);
- Eval(7234, v is NotEmptyClassGen<Guid>[], false);
- Eval(7235, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7236, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7231, v is EmptyClassGen<int>, false);
+// Eval(7232, v is EmptyClassGen<int>[], false);
+// Eval(7233, v is NotEmptyClassGen<Guid>, false);
+// Eval(7234, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7235, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7236, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7237, v is NestedClass, false);
Eval(7238, v is NestedClass[], false);
- Eval(7239, v is NestedClassGen<Decimal>, false);
- Eval(7240, v is NestedClassGen<Decimal>[], false);
+// Eval(7239, v is NestedClassGen<Decimal>, false);
+// Eval(7240, v is NestedClassGen<Decimal>[], false);
Eval(7241, v is ImplementOneInterfaceC, false);
Eval(7242, v is ImplementOneInterfaceC[], false);
Eval(7243, v is ImplementTwoInterfaceC, false);
Eval(7244, v is ImplementTwoInterfaceC[], false);
- Eval(7245, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7246, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7247, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7248, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7249, v is ImplementAllInterfaceC<int>, false);
- Eval(7250, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7245, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7246, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7247, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7248, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7249, v is ImplementAllInterfaceC<int>, false);
+// Eval(7250, v is ImplementAllInterfaceC<int>[], false);
Eval(7251, v is SealedClass, false);
Eval(7252, v is SealedClass[], false);
}
@@ -7116,26 +7116,26 @@ internal class Program
Eval(7258, v is NotEmptyStruct[], false);
Eval(7259, v is NotEmptyStruct?, false);
Eval(7260, v is NotEmptyStruct?[], false);
- Eval(7261, v is EmptyStructGen<int>, false);
- Eval(7262, v is EmptyStructGen<int>[], false);
- Eval(7263, v is EmptyStructGen<int>?, false);
- Eval(7264, v is EmptyStructGen<int>?[], false);
- Eval(7265, v is NotEmptyStructGen<Guid>, false);
- Eval(7266, v is NotEmptyStructGen<Guid>[], false);
- Eval(7267, v is NotEmptyStructGen<Guid>?, false);
- Eval(7268, v is NotEmptyStructGen<Guid>?[], false);
- Eval(7269, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7270, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7271, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7272, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7261, v is EmptyStructGen<int>, false);
+// Eval(7262, v is EmptyStructGen<int>[], false);
+// Eval(7263, v is EmptyStructGen<int>?, false);
+// Eval(7264, v is EmptyStructGen<int>?[], false);
+// Eval(7265, v is NotEmptyStructGen<Guid>, false);
+// Eval(7266, v is NotEmptyStructGen<Guid>[], false);
+// Eval(7267, v is NotEmptyStructGen<Guid>?, false);
+// Eval(7268, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(7269, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7270, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7271, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7272, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7273, v is NestedStruct, false);
Eval(7274, v is NestedStruct[], false);
Eval(7275, v is NestedStruct?, false);
Eval(7276, v is NestedStruct?[], false);
- Eval(7277, v is NestedStructGen<Decimal>, false);
- Eval(7278, v is NestedStructGen<Decimal>[], false);
- Eval(7279, v is NestedStructGen<Decimal>?, false);
- Eval(7280, v is NestedStructGen<Decimal>?[], false);
+// Eval(7277, v is NestedStructGen<Decimal>, false);
+// Eval(7278, v is NestedStructGen<Decimal>[], false);
+// Eval(7279, v is NestedStructGen<Decimal>?, false);
+// Eval(7280, v is NestedStructGen<Decimal>?[], false);
Eval(7281, v is ExplicitFieldOffsetStruct, false);
Eval(7282, v is ExplicitFieldOffsetStruct[], false);
Eval(7283, v is ExplicitFieldOffsetStruct?, false);
@@ -7152,18 +7152,18 @@ internal class Program
Eval(7302, v is ImplementTwoInterface[], false);
Eval(7303, v is ImplementTwoInterface?, false);
Eval(7304, v is ImplementTwoInterface?[], false);
- Eval(7305, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7306, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7307, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7308, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7309, v is ImplementTwoInterfaceGen<int>, false);
- Eval(7310, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(7311, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(7312, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7313, v is ImplementAllInterface<int>, false);
- Eval(7314, v is ImplementAllInterface<int>[], false);
- Eval(7315, v is ImplementAllInterface<int>?, false);
- Eval(7316, v is ImplementAllInterface<int>?[], false);
+// Eval(7305, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7306, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7307, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7308, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7309, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(7310, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7311, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7312, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7313, v is ImplementAllInterface<int>, false);
+// Eval(7314, v is ImplementAllInterface<int>[], false);
+// Eval(7315, v is ImplementAllInterface<int>?, false);
+// Eval(7316, v is ImplementAllInterface<int>?[], false);
Eval(7317, v is IntE, false);
Eval(7318, v is IntE[], false);
Eval(7319, v is IntE?, false);
@@ -7262,38 +7262,38 @@ internal class Program
Eval(7412, v is IEmpty[], false);
Eval(7413, v is INotEmpty, false);
Eval(7414, v is INotEmpty[], false);
- Eval(7415, v is IEmptyGen<int>, false);
- Eval(7416, v is IEmptyGen<int>[], false);
- Eval(7417, v is INotEmptyGen<int>, false);
- Eval(7418, v is INotEmptyGen<int>[], false);
+// Eval(7415, v is IEmptyGen<int>, false);
+// Eval(7416, v is IEmptyGen<int>[], false);
+// Eval(7417, v is INotEmptyGen<int>, false);
+// Eval(7418, v is INotEmptyGen<int>[], false);
Eval(7419, v is SimpleDelegate, false);
Eval(7420, v is SimpleDelegate[], false);
- Eval(7421, v is GenericDelegate<int>, false);
- Eval(7422, v is GenericDelegate<int>[], false);
+// Eval(7421, v is GenericDelegate<int>, false);
+// Eval(7422, v is GenericDelegate<int>[], false);
Eval(7423, v is EmptyClass, false);
Eval(7424, v is EmptyClass[], false);
Eval(7425, v is NotEmptyClass, false);
Eval(7426, v is NotEmptyClass[], false);
- Eval(7427, v is EmptyClassGen<int>, false);
- Eval(7428, v is EmptyClassGen<int>[], false);
- Eval(7429, v is NotEmptyClassGen<Guid>, false);
- Eval(7430, v is NotEmptyClassGen<Guid>[], false);
- Eval(7431, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7432, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7427, v is EmptyClassGen<int>, false);
+// Eval(7428, v is EmptyClassGen<int>[], false);
+// Eval(7429, v is NotEmptyClassGen<Guid>, false);
+// Eval(7430, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7431, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7432, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7433, v is NestedClass, false);
Eval(7434, v is NestedClass[], false);
- Eval(7435, v is NestedClassGen<Decimal>, false);
- Eval(7436, v is NestedClassGen<Decimal>[], false);
+// Eval(7435, v is NestedClassGen<Decimal>, false);
+// Eval(7436, v is NestedClassGen<Decimal>[], false);
Eval(7437, v is ImplementOneInterfaceC, false);
Eval(7438, v is ImplementOneInterfaceC[], false);
Eval(7439, v is ImplementTwoInterfaceC, false);
Eval(7440, v is ImplementTwoInterfaceC[], false);
- Eval(7441, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7442, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7443, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7444, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7445, v is ImplementAllInterfaceC<int>, false);
- Eval(7446, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7441, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7442, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7443, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7444, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7445, v is ImplementAllInterfaceC<int>, false);
+// Eval(7446, v is ImplementAllInterfaceC<int>[], false);
Eval(7447, v is SealedClass, false);
Eval(7448, v is SealedClass[], false);
}
@@ -7307,26 +7307,26 @@ internal class Program
Eval(7454, v is NotEmptyStruct[], false);
Eval(7455, v is NotEmptyStruct?, false);
Eval(7456, v is NotEmptyStruct?[], false);
- Eval(7457, v is EmptyStructGen<int>, false);
- Eval(7458, v is EmptyStructGen<int>[], false);
- Eval(7459, v is EmptyStructGen<int>?, false);
- Eval(7460, v is EmptyStructGen<int>?[], false);
- Eval(7461, v is NotEmptyStructGen<Guid>, false);
- Eval(7462, v is NotEmptyStructGen<Guid>[], false);
- Eval(7463, v is NotEmptyStructGen<Guid>?, false);
- Eval(7464, v is NotEmptyStructGen<Guid>?[], false);
- Eval(7465, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7466, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7467, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7468, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7457, v is EmptyStructGen<int>, false);
+// Eval(7458, v is EmptyStructGen<int>[], false);
+// Eval(7459, v is EmptyStructGen<int>?, false);
+// Eval(7460, v is EmptyStructGen<int>?[], false);
+// Eval(7461, v is NotEmptyStructGen<Guid>, false);
+// Eval(7462, v is NotEmptyStructGen<Guid>[], false);
+// Eval(7463, v is NotEmptyStructGen<Guid>?, false);
+// Eval(7464, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(7465, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7466, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7467, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7468, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7469, v is NestedStruct, false);
Eval(7470, v is NestedStruct[], false);
Eval(7471, v is NestedStruct?, false);
Eval(7472, v is NestedStruct?[], false);
- Eval(7473, v is NestedStructGen<Decimal>, false);
- Eval(7474, v is NestedStructGen<Decimal>[], false);
- Eval(7475, v is NestedStructGen<Decimal>?, false);
- Eval(7476, v is NestedStructGen<Decimal>?[], false);
+// Eval(7473, v is NestedStructGen<Decimal>, false);
+// Eval(7474, v is NestedStructGen<Decimal>[], false);
+// Eval(7475, v is NestedStructGen<Decimal>?, false);
+// Eval(7476, v is NestedStructGen<Decimal>?[], false);
Eval(7477, v is ExplicitFieldOffsetStruct, false);
Eval(7478, v is ExplicitFieldOffsetStruct[], false);
Eval(7479, v is ExplicitFieldOffsetStruct?, false);
@@ -7343,18 +7343,18 @@ internal class Program
Eval(7498, v is ImplementTwoInterface[], false);
Eval(7499, v is ImplementTwoInterface?, false);
Eval(7500, v is ImplementTwoInterface?[], false);
- Eval(7501, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7502, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7503, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7504, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7505, v is ImplementTwoInterfaceGen<int>, false);
- Eval(7506, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(7507, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(7508, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7509, v is ImplementAllInterface<int>, false);
- Eval(7510, v is ImplementAllInterface<int>[], false);
- Eval(7511, v is ImplementAllInterface<int>?, false);
- Eval(7512, v is ImplementAllInterface<int>?[], false);
+// Eval(7501, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7502, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7503, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7504, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7505, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(7506, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7507, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7508, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7509, v is ImplementAllInterface<int>, false);
+// Eval(7510, v is ImplementAllInterface<int>[], false);
+// Eval(7511, v is ImplementAllInterface<int>?, false);
+// Eval(7512, v is ImplementAllInterface<int>?[], false);
Eval(7513, v is IntE, false);
Eval(7514, v is IntE[], false);
Eval(7515, v is IntE?, false);
@@ -7453,38 +7453,38 @@ internal class Program
Eval(7608, v is IEmpty[], false);
Eval(7609, v is INotEmpty, false);
Eval(7610, v is INotEmpty[], false);
- Eval(7611, v is IEmptyGen<int>, false);
- Eval(7612, v is IEmptyGen<int>[], false);
- Eval(7613, v is INotEmptyGen<int>, false);
- Eval(7614, v is INotEmptyGen<int>[], false);
+// Eval(7611, v is IEmptyGen<int>, false);
+// Eval(7612, v is IEmptyGen<int>[], false);
+// Eval(7613, v is INotEmptyGen<int>, false);
+// Eval(7614, v is INotEmptyGen<int>[], false);
Eval(7615, v is SimpleDelegate, false);
Eval(7616, v is SimpleDelegate[], false);
- Eval(7617, v is GenericDelegate<int>, false);
- Eval(7618, v is GenericDelegate<int>[], false);
+// Eval(7617, v is GenericDelegate<int>, false);
+// Eval(7618, v is GenericDelegate<int>[], false);
Eval(7619, v is EmptyClass, false);
Eval(7620, v is EmptyClass[], false);
Eval(7621, v is NotEmptyClass, false);
Eval(7622, v is NotEmptyClass[], false);
- Eval(7623, v is EmptyClassGen<int>, false);
- Eval(7624, v is EmptyClassGen<int>[], false);
- Eval(7625, v is NotEmptyClassGen<Guid>, false);
- Eval(7626, v is NotEmptyClassGen<Guid>[], false);
- Eval(7627, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7628, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7623, v is EmptyClassGen<int>, false);
+// Eval(7624, v is EmptyClassGen<int>[], false);
+// Eval(7625, v is NotEmptyClassGen<Guid>, false);
+// Eval(7626, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7627, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7628, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7629, v is NestedClass, false);
Eval(7630, v is NestedClass[], false);
- Eval(7631, v is NestedClassGen<Decimal>, false);
- Eval(7632, v is NestedClassGen<Decimal>[], false);
+// Eval(7631, v is NestedClassGen<Decimal>, false);
+// Eval(7632, v is NestedClassGen<Decimal>[], false);
Eval(7633, v is ImplementOneInterfaceC, false);
Eval(7634, v is ImplementOneInterfaceC[], false);
Eval(7635, v is ImplementTwoInterfaceC, false);
Eval(7636, v is ImplementTwoInterfaceC[], false);
- Eval(7637, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7638, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7639, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7640, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7641, v is ImplementAllInterfaceC<int>, false);
- Eval(7642, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7637, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7638, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7639, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7640, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7641, v is ImplementAllInterfaceC<int>, false);
+// Eval(7642, v is ImplementAllInterfaceC<int>[], false);
Eval(7643, v is SealedClass, false);
Eval(7644, v is SealedClass[], false);
}
@@ -7498,26 +7498,26 @@ internal class Program
Eval(7650, v is NotEmptyStruct[], false);
Eval(7651, v is NotEmptyStruct?, false);
Eval(7652, v is NotEmptyStruct?[], false);
- Eval(7653, v is EmptyStructGen<int>, false);
- Eval(7654, v is EmptyStructGen<int>[], false);
- Eval(7655, v is EmptyStructGen<int>?, false);
- Eval(7656, v is EmptyStructGen<int>?[], false);
- Eval(7657, v is NotEmptyStructGen<Guid>, false);
- Eval(7658, v is NotEmptyStructGen<Guid>[], false);
- Eval(7659, v is NotEmptyStructGen<Guid>?, false);
- Eval(7660, v is NotEmptyStructGen<Guid>?[], false);
- Eval(7661, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7662, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7663, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7664, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7653, v is EmptyStructGen<int>, false);
+// Eval(7654, v is EmptyStructGen<int>[], false);
+// Eval(7655, v is EmptyStructGen<int>?, false);
+// Eval(7656, v is EmptyStructGen<int>?[], false);
+// Eval(7657, v is NotEmptyStructGen<Guid>, false);
+// Eval(7658, v is NotEmptyStructGen<Guid>[], false);
+// Eval(7659, v is NotEmptyStructGen<Guid>?, false);
+// Eval(7660, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(7661, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7662, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7663, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7664, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7665, v is NestedStruct, false);
Eval(7666, v is NestedStruct[], false);
Eval(7667, v is NestedStruct?, false);
Eval(7668, v is NestedStruct?[], false);
- Eval(7669, v is NestedStructGen<Decimal>, false);
- Eval(7670, v is NestedStructGen<Decimal>[], false);
- Eval(7671, v is NestedStructGen<Decimal>?, false);
- Eval(7672, v is NestedStructGen<Decimal>?[], false);
+// Eval(7669, v is NestedStructGen<Decimal>, false);
+// Eval(7670, v is NestedStructGen<Decimal>[], false);
+// Eval(7671, v is NestedStructGen<Decimal>?, false);
+// Eval(7672, v is NestedStructGen<Decimal>?[], false);
Eval(7673, v is ExplicitFieldOffsetStruct, false);
Eval(7674, v is ExplicitFieldOffsetStruct[], false);
Eval(7675, v is ExplicitFieldOffsetStruct?, false);
@@ -7534,18 +7534,18 @@ internal class Program
Eval(7694, v is ImplementTwoInterface[], false);
Eval(7695, v is ImplementTwoInterface?, false);
Eval(7696, v is ImplementTwoInterface?[], false);
- Eval(7697, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7698, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7699, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7700, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7701, v is ImplementTwoInterfaceGen<int>, false);
- Eval(7702, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(7703, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(7704, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7705, v is ImplementAllInterface<int>, false);
- Eval(7706, v is ImplementAllInterface<int>[], false);
- Eval(7707, v is ImplementAllInterface<int>?, false);
- Eval(7708, v is ImplementAllInterface<int>?[], false);
+// Eval(7697, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7698, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7699, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7700, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7701, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(7702, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7703, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7704, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7705, v is ImplementAllInterface<int>, false);
+// Eval(7706, v is ImplementAllInterface<int>[], false);
+// Eval(7707, v is ImplementAllInterface<int>?, false);
+// Eval(7708, v is ImplementAllInterface<int>?[], false);
Eval(7709, v is IntE, false);
Eval(7710, v is IntE[], false);
Eval(7711, v is IntE?, false);
@@ -7644,38 +7644,38 @@ internal class Program
Eval(7804, v is IEmpty[], false);
Eval(7805, v is INotEmpty, false);
Eval(7806, v is INotEmpty[], false);
- Eval(7807, v is IEmptyGen<int>, false);
- Eval(7808, v is IEmptyGen<int>[], false);
- Eval(7809, v is INotEmptyGen<int>, false);
- Eval(7810, v is INotEmptyGen<int>[], false);
+// Eval(7807, v is IEmptyGen<int>, false);
+// Eval(7808, v is IEmptyGen<int>[], false);
+// Eval(7809, v is INotEmptyGen<int>, false);
+// Eval(7810, v is INotEmptyGen<int>[], false);
Eval(7811, v is SimpleDelegate, false);
Eval(7812, v is SimpleDelegate[], false);
- Eval(7813, v is GenericDelegate<int>, false);
- Eval(7814, v is GenericDelegate<int>[], false);
+// Eval(7813, v is GenericDelegate<int>, false);
+// Eval(7814, v is GenericDelegate<int>[], false);
Eval(7815, v is EmptyClass, false);
Eval(7816, v is EmptyClass[], false);
Eval(7817, v is NotEmptyClass, false);
Eval(7818, v is NotEmptyClass[], false);
- Eval(7819, v is EmptyClassGen<int>, false);
- Eval(7820, v is EmptyClassGen<int>[], false);
- Eval(7821, v is NotEmptyClassGen<Guid>, false);
- Eval(7822, v is NotEmptyClassGen<Guid>[], false);
- Eval(7823, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7824, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7819, v is EmptyClassGen<int>, false);
+// Eval(7820, v is EmptyClassGen<int>[], false);
+// Eval(7821, v is NotEmptyClassGen<Guid>, false);
+// Eval(7822, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7823, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7824, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7825, v is NestedClass, false);
Eval(7826, v is NestedClass[], false);
- Eval(7827, v is NestedClassGen<Decimal>, false);
- Eval(7828, v is NestedClassGen<Decimal>[], false);
+// Eval(7827, v is NestedClassGen<Decimal>, false);
+// Eval(7828, v is NestedClassGen<Decimal>[], false);
Eval(7829, v is ImplementOneInterfaceC, false);
Eval(7830, v is ImplementOneInterfaceC[], false);
Eval(7831, v is ImplementTwoInterfaceC, false);
Eval(7832, v is ImplementTwoInterfaceC[], false);
- Eval(7833, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7834, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7835, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7836, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7837, v is ImplementAllInterfaceC<int>, false);
- Eval(7838, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7833, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7834, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7835, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7836, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7837, v is ImplementAllInterfaceC<int>, false);
+// Eval(7838, v is ImplementAllInterfaceC<int>[], false);
Eval(7839, v is SealedClass, false);
Eval(7840, v is SealedClass[], false);
}
@@ -7692,26 +7692,26 @@ internal class Program
Eval(9806, v is NotEmptyStruct[], false);
Eval(9807, v is NotEmptyStruct?, false);
Eval(9808, v is NotEmptyStruct?[], false);
- Eval(9809, v is EmptyStructGen<int>, false);
- Eval(9810, v is EmptyStructGen<int>[], false);
- Eval(9811, v is EmptyStructGen<int>?, false);
- Eval(9812, v is EmptyStructGen<int>?[], false);
- Eval(9813, v is NotEmptyStructGen<Guid>, false);
- Eval(9814, v is NotEmptyStructGen<Guid>[], false);
- Eval(9815, v is NotEmptyStructGen<Guid>?, false);
- Eval(9816, v is NotEmptyStructGen<Guid>?[], false);
- Eval(9817, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9818, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9819, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9820, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9809, v is EmptyStructGen<int>, false);
+// Eval(9810, v is EmptyStructGen<int>[], false);
+// Eval(9811, v is EmptyStructGen<int>?, false);
+// Eval(9812, v is EmptyStructGen<int>?[], false);
+// Eval(9813, v is NotEmptyStructGen<Guid>, false);
+// Eval(9814, v is NotEmptyStructGen<Guid>[], false);
+// Eval(9815, v is NotEmptyStructGen<Guid>?, false);
+// Eval(9816, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(9817, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9818, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9819, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9820, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9821, v is NestedStruct, false);
Eval(9822, v is NestedStruct[], false);
Eval(9823, v is NestedStruct?, false);
Eval(9824, v is NestedStruct?[], false);
- Eval(9825, v is NestedStructGen<Decimal>, false);
- Eval(9826, v is NestedStructGen<Decimal>[], false);
- Eval(9827, v is NestedStructGen<Decimal>?, false);
- Eval(9828, v is NestedStructGen<Decimal>?[], false);
+// Eval(9825, v is NestedStructGen<Decimal>, false);
+// Eval(9826, v is NestedStructGen<Decimal>[], false);
+// Eval(9827, v is NestedStructGen<Decimal>?, false);
+// Eval(9828, v is NestedStructGen<Decimal>?[], false);
Eval(9829, v is ExplicitFieldOffsetStruct, false);
Eval(9830, v is ExplicitFieldOffsetStruct[], false);
Eval(9831, v is ExplicitFieldOffsetStruct?, false);
@@ -7728,18 +7728,18 @@ internal class Program
Eval(9850, v is ImplementTwoInterface[], false);
Eval(9851, v is ImplementTwoInterface?, false);
Eval(9852, v is ImplementTwoInterface?[], false);
- Eval(9853, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9854, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9855, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9856, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9857, v is ImplementTwoInterfaceGen<int>, false);
- Eval(9858, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(9859, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(9860, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9861, v is ImplementAllInterface<int>, false);
- Eval(9862, v is ImplementAllInterface<int>[], false);
- Eval(9863, v is ImplementAllInterface<int>?, false);
- Eval(9864, v is ImplementAllInterface<int>?[], false);
+// Eval(9853, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9854, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9855, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9856, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9857, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(9858, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9859, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9860, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9861, v is ImplementAllInterface<int>, false);
+// Eval(9862, v is ImplementAllInterface<int>[], false);
+// Eval(9863, v is ImplementAllInterface<int>?, false);
+// Eval(9864, v is ImplementAllInterface<int>?[], false);
Eval(9865, v is IntE, false);
Eval(9866, v is IntE[], false);
Eval(9867, v is IntE?, false);
@@ -7838,38 +7838,38 @@ internal class Program
Eval(9960, v is IEmpty[], false);
Eval(9961, v is INotEmpty, false);
Eval(9962, v is INotEmpty[], false);
- Eval(9963, v is IEmptyGen<int>, false);
- Eval(9964, v is IEmptyGen<int>[], false);
- Eval(9965, v is INotEmptyGen<int>, false);
- Eval(9966, v is INotEmptyGen<int>[], false);
+// Eval(9963, v is IEmptyGen<int>, false);
+// Eval(9964, v is IEmptyGen<int>[], false);
+// Eval(9965, v is INotEmptyGen<int>, false);
+// Eval(9966, v is INotEmptyGen<int>[], false);
Eval(9967, v is SimpleDelegate, false);
Eval(9968, v is SimpleDelegate[], false);
- Eval(9969, v is GenericDelegate<int>, false);
- Eval(9970, v is GenericDelegate<int>[], false);
+// Eval(9969, v is GenericDelegate<int>, false);
+// Eval(9970, v is GenericDelegate<int>[], false);
Eval(9971, v is EmptyClass, false);
Eval(9972, v is EmptyClass[], false);
Eval(9973, v is NotEmptyClass, false);
Eval(9974, v is NotEmptyClass[], false);
- Eval(9975, v is EmptyClassGen<int>, false);
- Eval(9976, v is EmptyClassGen<int>[], false);
- Eval(9977, v is NotEmptyClassGen<Guid>, false);
- Eval(9978, v is NotEmptyClassGen<Guid>[], false);
- Eval(9979, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(9980, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9975, v is EmptyClassGen<int>, false);
+// Eval(9976, v is EmptyClassGen<int>[], false);
+// Eval(9977, v is NotEmptyClassGen<Guid>, false);
+// Eval(9978, v is NotEmptyClassGen<Guid>[], false);
+// Eval(9979, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9980, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(9981, v is NestedClass, false);
Eval(9982, v is NestedClass[], false);
- Eval(9983, v is NestedClassGen<Decimal>, false);
- Eval(9984, v is NestedClassGen<Decimal>[], false);
+// Eval(9983, v is NestedClassGen<Decimal>, false);
+// Eval(9984, v is NestedClassGen<Decimal>[], false);
Eval(9985, v is ImplementOneInterfaceC, false);
Eval(9986, v is ImplementOneInterfaceC[], false);
Eval(9987, v is ImplementTwoInterfaceC, false);
Eval(9988, v is ImplementTwoInterfaceC[], false);
- Eval(9989, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9990, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9991, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(9992, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9993, v is ImplementAllInterfaceC<int>, false);
- Eval(9994, v is ImplementAllInterfaceC<int>[], false);
+// Eval(9989, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9990, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9991, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9992, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9993, v is ImplementAllInterfaceC<int>, false);
+// Eval(9994, v is ImplementAllInterfaceC<int>[], false);
Eval(9995, v is SealedClass, false);
Eval(9996, v is SealedClass[], false);
}
@@ -7883,26 +7883,26 @@ internal class Program
Eval(10002, v is NotEmptyStruct[], false);
Eval(10003, v is NotEmptyStruct?, false);
Eval(10004, v is NotEmptyStruct?[], false);
- Eval(10005, v is EmptyStructGen<int>, false);
- Eval(10006, v is EmptyStructGen<int>[], false);
- Eval(10007, v is EmptyStructGen<int>?, false);
- Eval(10008, v is EmptyStructGen<int>?[], false);
- Eval(10009, v is NotEmptyStructGen<Guid>, false);
- Eval(10010, v is NotEmptyStructGen<Guid>[], false);
- Eval(10011, v is NotEmptyStructGen<Guid>?, false);
- Eval(10012, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10013, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10014, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10015, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10016, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10005, v is EmptyStructGen<int>, false);
+// Eval(10006, v is EmptyStructGen<int>[], false);
+// Eval(10007, v is EmptyStructGen<int>?, false);
+// Eval(10008, v is EmptyStructGen<int>?[], false);
+// Eval(10009, v is NotEmptyStructGen<Guid>, false);
+// Eval(10010, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10011, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10012, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10013, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10014, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10015, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10016, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10017, v is NestedStruct, false);
Eval(10018, v is NestedStruct[], false);
Eval(10019, v is NestedStruct?, false);
Eval(10020, v is NestedStruct?[], false);
- Eval(10021, v is NestedStructGen<Decimal>, false);
- Eval(10022, v is NestedStructGen<Decimal>[], false);
- Eval(10023, v is NestedStructGen<Decimal>?, false);
- Eval(10024, v is NestedStructGen<Decimal>?[], false);
+// Eval(10021, v is NestedStructGen<Decimal>, false);
+// Eval(10022, v is NestedStructGen<Decimal>[], false);
+// Eval(10023, v is NestedStructGen<Decimal>?, false);
+// Eval(10024, v is NestedStructGen<Decimal>?[], false);
Eval(10025, v is ExplicitFieldOffsetStruct, false);
Eval(10026, v is ExplicitFieldOffsetStruct[], false);
Eval(10027, v is ExplicitFieldOffsetStruct?, false);
@@ -7919,18 +7919,18 @@ internal class Program
Eval(10046, v is ImplementTwoInterface[], false);
Eval(10047, v is ImplementTwoInterface?, false);
Eval(10048, v is ImplementTwoInterface?[], false);
- Eval(10049, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10050, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10051, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10052, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10053, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10054, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10055, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10056, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10057, v is ImplementAllInterface<int>, false);
- Eval(10058, v is ImplementAllInterface<int>[], false);
- Eval(10059, v is ImplementAllInterface<int>?, false);
- Eval(10060, v is ImplementAllInterface<int>?[], false);
+// Eval(10049, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10050, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10051, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10052, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10053, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10054, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10055, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10056, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10057, v is ImplementAllInterface<int>, false);
+// Eval(10058, v is ImplementAllInterface<int>[], false);
+// Eval(10059, v is ImplementAllInterface<int>?, false);
+// Eval(10060, v is ImplementAllInterface<int>?[], false);
Eval(10061, v is IntE, false);
Eval(10062, v is IntE[], false);
Eval(10063, v is IntE?, false);
@@ -8029,38 +8029,38 @@ internal class Program
Eval(10156, v is IEmpty[], false);
Eval(10157, v is INotEmpty, false);
Eval(10158, v is INotEmpty[], false);
- Eval(10159, v is IEmptyGen<int>, false);
- Eval(10160, v is IEmptyGen<int>[], false);
- Eval(10161, v is INotEmptyGen<int>, false);
- Eval(10162, v is INotEmptyGen<int>[], false);
+// Eval(10159, v is IEmptyGen<int>, false);
+// Eval(10160, v is IEmptyGen<int>[], false);
+// Eval(10161, v is INotEmptyGen<int>, false);
+// Eval(10162, v is INotEmptyGen<int>[], false);
Eval(10163, v is SimpleDelegate, false);
Eval(10164, v is SimpleDelegate[], false);
- Eval(10165, v is GenericDelegate<int>, false);
- Eval(10166, v is GenericDelegate<int>[], false);
+// Eval(10165, v is GenericDelegate<int>, false);
+// Eval(10166, v is GenericDelegate<int>[], false);
Eval(10167, v is EmptyClass, false);
Eval(10168, v is EmptyClass[], false);
Eval(10169, v is NotEmptyClass, false);
Eval(10170, v is NotEmptyClass[], false);
- Eval(10171, v is EmptyClassGen<int>, false);
- Eval(10172, v is EmptyClassGen<int>[], false);
- Eval(10173, v is NotEmptyClassGen<Guid>, false);
- Eval(10174, v is NotEmptyClassGen<Guid>[], false);
- Eval(10175, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10176, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10171, v is EmptyClassGen<int>, false);
+// Eval(10172, v is EmptyClassGen<int>[], false);
+// Eval(10173, v is NotEmptyClassGen<Guid>, false);
+// Eval(10174, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10175, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10176, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10177, v is NestedClass, false);
Eval(10178, v is NestedClass[], false);
- Eval(10179, v is NestedClassGen<Decimal>, false);
- Eval(10180, v is NestedClassGen<Decimal>[], false);
+// Eval(10179, v is NestedClassGen<Decimal>, false);
+// Eval(10180, v is NestedClassGen<Decimal>[], false);
Eval(10181, v is ImplementOneInterfaceC, false);
Eval(10182, v is ImplementOneInterfaceC[], false);
Eval(10183, v is ImplementTwoInterfaceC, false);
Eval(10184, v is ImplementTwoInterfaceC[], false);
- Eval(10185, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10186, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10187, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10188, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10189, v is ImplementAllInterfaceC<int>, false);
- Eval(10190, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10185, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10186, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10187, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10188, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10189, v is ImplementAllInterfaceC<int>, false);
+// Eval(10190, v is ImplementAllInterfaceC<int>[], false);
Eval(10191, v is SealedClass, false);
Eval(10192, v is SealedClass[], false);
}
@@ -8074,26 +8074,26 @@ internal class Program
Eval(10198, v is NotEmptyStruct[], false);
Eval(10199, v is NotEmptyStruct?, false);
Eval(10200, v is NotEmptyStruct?[], false);
- Eval(10201, v is EmptyStructGen<int>, false);
- Eval(10202, v is EmptyStructGen<int>[], false);
- Eval(10203, v is EmptyStructGen<int>?, false);
- Eval(10204, v is EmptyStructGen<int>?[], false);
- Eval(10205, v is NotEmptyStructGen<Guid>, false);
- Eval(10206, v is NotEmptyStructGen<Guid>[], false);
- Eval(10207, v is NotEmptyStructGen<Guid>?, false);
- Eval(10208, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10209, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10210, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10211, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10212, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10201, v is EmptyStructGen<int>, false);
+// Eval(10202, v is EmptyStructGen<int>[], false);
+// Eval(10203, v is EmptyStructGen<int>?, false);
+// Eval(10204, v is EmptyStructGen<int>?[], false);
+// Eval(10205, v is NotEmptyStructGen<Guid>, false);
+// Eval(10206, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10207, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10208, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10209, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10210, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10211, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10212, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10213, v is NestedStruct, false);
Eval(10214, v is NestedStruct[], false);
Eval(10215, v is NestedStruct?, false);
Eval(10216, v is NestedStruct?[], false);
- Eval(10217, v is NestedStructGen<Decimal>, false);
- Eval(10218, v is NestedStructGen<Decimal>[], false);
- Eval(10219, v is NestedStructGen<Decimal>?, false);
- Eval(10220, v is NestedStructGen<Decimal>?[], false);
+// Eval(10217, v is NestedStructGen<Decimal>, false);
+// Eval(10218, v is NestedStructGen<Decimal>[], false);
+// Eval(10219, v is NestedStructGen<Decimal>?, false);
+// Eval(10220, v is NestedStructGen<Decimal>?[], false);
Eval(10221, v is ExplicitFieldOffsetStruct, false);
Eval(10222, v is ExplicitFieldOffsetStruct[], false);
Eval(10223, v is ExplicitFieldOffsetStruct?, false);
@@ -8110,18 +8110,18 @@ internal class Program
Eval(10242, v is ImplementTwoInterface[], false);
Eval(10243, v is ImplementTwoInterface?, false);
Eval(10244, v is ImplementTwoInterface?[], false);
- Eval(10245, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10246, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10247, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10248, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10249, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10250, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10251, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10252, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10253, v is ImplementAllInterface<int>, false);
- Eval(10254, v is ImplementAllInterface<int>[], false);
- Eval(10255, v is ImplementAllInterface<int>?, false);
- Eval(10256, v is ImplementAllInterface<int>?[], false);
+// Eval(10245, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10246, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10247, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10248, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10249, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10250, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10251, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10252, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10253, v is ImplementAllInterface<int>, false);
+// Eval(10254, v is ImplementAllInterface<int>[], false);
+// Eval(10255, v is ImplementAllInterface<int>?, false);
+// Eval(10256, v is ImplementAllInterface<int>?[], false);
Eval(10257, v is IntE, false);
Eval(10258, v is IntE[], false);
Eval(10259, v is IntE?, false);
@@ -8220,38 +8220,38 @@ internal class Program
Eval(10352, v is IEmpty[], false);
Eval(10353, v is INotEmpty, false);
Eval(10354, v is INotEmpty[], false);
- Eval(10355, v is IEmptyGen<int>, false);
- Eval(10356, v is IEmptyGen<int>[], false);
- Eval(10357, v is INotEmptyGen<int>, false);
- Eval(10358, v is INotEmptyGen<int>[], false);
+// Eval(10355, v is IEmptyGen<int>, false);
+// Eval(10356, v is IEmptyGen<int>[], false);
+// Eval(10357, v is INotEmptyGen<int>, false);
+// Eval(10358, v is INotEmptyGen<int>[], false);
Eval(10359, v is SimpleDelegate, false);
Eval(10360, v is SimpleDelegate[], false);
- Eval(10361, v is GenericDelegate<int>, false);
- Eval(10362, v is GenericDelegate<int>[], false);
+// Eval(10361, v is GenericDelegate<int>, false);
+// Eval(10362, v is GenericDelegate<int>[], false);
Eval(10363, v is EmptyClass, false);
Eval(10364, v is EmptyClass[], false);
Eval(10365, v is NotEmptyClass, false);
Eval(10366, v is NotEmptyClass[], false);
- Eval(10367, v is EmptyClassGen<int>, false);
- Eval(10368, v is EmptyClassGen<int>[], false);
- Eval(10369, v is NotEmptyClassGen<Guid>, false);
- Eval(10370, v is NotEmptyClassGen<Guid>[], false);
- Eval(10371, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10372, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10367, v is EmptyClassGen<int>, false);
+// Eval(10368, v is EmptyClassGen<int>[], false);
+// Eval(10369, v is NotEmptyClassGen<Guid>, false);
+// Eval(10370, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10371, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10372, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10373, v is NestedClass, false);
Eval(10374, v is NestedClass[], false);
- Eval(10375, v is NestedClassGen<Decimal>, false);
- Eval(10376, v is NestedClassGen<Decimal>[], false);
+// Eval(10375, v is NestedClassGen<Decimal>, false);
+// Eval(10376, v is NestedClassGen<Decimal>[], false);
Eval(10377, v is ImplementOneInterfaceC, false);
Eval(10378, v is ImplementOneInterfaceC[], false);
Eval(10379, v is ImplementTwoInterfaceC, false);
Eval(10380, v is ImplementTwoInterfaceC[], false);
- Eval(10381, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10382, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10383, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10384, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10385, v is ImplementAllInterfaceC<int>, false);
- Eval(10386, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10381, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10382, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10383, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10384, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10385, v is ImplementAllInterfaceC<int>, false);
+// Eval(10386, v is ImplementAllInterfaceC<int>[], false);
Eval(10387, v is SealedClass, false);
Eval(10388, v is SealedClass[], false);
}
@@ -8265,26 +8265,26 @@ internal class Program
Eval(10394, v is NotEmptyStruct[], false);
Eval(10395, v is NotEmptyStruct?, false);
Eval(10396, v is NotEmptyStruct?[], false);
- Eval(10397, v is EmptyStructGen<int>, false);
- Eval(10398, v is EmptyStructGen<int>[], false);
- Eval(10399, v is EmptyStructGen<int>?, false);
- Eval(10400, v is EmptyStructGen<int>?[], false);
- Eval(10401, v is NotEmptyStructGen<Guid>, false);
- Eval(10402, v is NotEmptyStructGen<Guid>[], false);
- Eval(10403, v is NotEmptyStructGen<Guid>?, false);
- Eval(10404, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10405, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10406, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10407, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10408, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10397, v is EmptyStructGen<int>, false);
+// Eval(10398, v is EmptyStructGen<int>[], false);
+// Eval(10399, v is EmptyStructGen<int>?, false);
+// Eval(10400, v is EmptyStructGen<int>?[], false);
+// Eval(10401, v is NotEmptyStructGen<Guid>, false);
+// Eval(10402, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10403, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10404, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10405, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10406, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10407, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10408, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10409, v is NestedStruct, false);
Eval(10410, v is NestedStruct[], false);
Eval(10411, v is NestedStruct?, false);
Eval(10412, v is NestedStruct?[], false);
- Eval(10413, v is NestedStructGen<Decimal>, false);
- Eval(10414, v is NestedStructGen<Decimal>[], false);
- Eval(10415, v is NestedStructGen<Decimal>?, false);
- Eval(10416, v is NestedStructGen<Decimal>?[], false);
+// Eval(10413, v is NestedStructGen<Decimal>, false);
+// Eval(10414, v is NestedStructGen<Decimal>[], false);
+// Eval(10415, v is NestedStructGen<Decimal>?, false);
+// Eval(10416, v is NestedStructGen<Decimal>?[], false);
Eval(10417, v is ExplicitFieldOffsetStruct, false);
Eval(10418, v is ExplicitFieldOffsetStruct[], false);
Eval(10419, v is ExplicitFieldOffsetStruct?, false);
@@ -8301,18 +8301,18 @@ internal class Program
Eval(10438, v is ImplementTwoInterface[], false);
Eval(10439, v is ImplementTwoInterface?, false);
Eval(10440, v is ImplementTwoInterface?[], false);
- Eval(10441, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10442, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10443, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10444, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10445, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10446, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10447, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10448, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10449, v is ImplementAllInterface<int>, false);
- Eval(10450, v is ImplementAllInterface<int>[], false);
- Eval(10451, v is ImplementAllInterface<int>?, false);
- Eval(10452, v is ImplementAllInterface<int>?[], false);
+// Eval(10441, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10442, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10443, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10444, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10445, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10446, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10447, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10448, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10449, v is ImplementAllInterface<int>, false);
+// Eval(10450, v is ImplementAllInterface<int>[], false);
+// Eval(10451, v is ImplementAllInterface<int>?, false);
+// Eval(10452, v is ImplementAllInterface<int>?[], false);
Eval(10453, v is IntE, false);
Eval(10454, v is IntE[], false);
Eval(10455, v is IntE?, false);
@@ -8411,38 +8411,38 @@ internal class Program
Eval(10548, v is IEmpty[], false);
Eval(10549, v is INotEmpty, false);
Eval(10550, v is INotEmpty[], false);
- Eval(10551, v is IEmptyGen<int>, false);
- Eval(10552, v is IEmptyGen<int>[], false);
- Eval(10553, v is INotEmptyGen<int>, false);
- Eval(10554, v is INotEmptyGen<int>[], false);
+// Eval(10551, v is IEmptyGen<int>, false);
+// Eval(10552, v is IEmptyGen<int>[], false);
+// Eval(10553, v is INotEmptyGen<int>, false);
+// Eval(10554, v is INotEmptyGen<int>[], false);
Eval(10555, v is SimpleDelegate, false);
Eval(10556, v is SimpleDelegate[], false);
- Eval(10557, v is GenericDelegate<int>, false);
- Eval(10558, v is GenericDelegate<int>[], false);
+// Eval(10557, v is GenericDelegate<int>, false);
+// Eval(10558, v is GenericDelegate<int>[], false);
Eval(10559, v is EmptyClass, false);
Eval(10560, v is EmptyClass[], false);
Eval(10561, v is NotEmptyClass, false);
Eval(10562, v is NotEmptyClass[], false);
- Eval(10563, v is EmptyClassGen<int>, false);
- Eval(10564, v is EmptyClassGen<int>[], false);
- Eval(10565, v is NotEmptyClassGen<Guid>, false);
- Eval(10566, v is NotEmptyClassGen<Guid>[], false);
- Eval(10567, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10568, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10563, v is EmptyClassGen<int>, false);
+// Eval(10564, v is EmptyClassGen<int>[], false);
+// Eval(10565, v is NotEmptyClassGen<Guid>, false);
+// Eval(10566, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10567, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10568, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10569, v is NestedClass, false);
Eval(10570, v is NestedClass[], false);
- Eval(10571, v is NestedClassGen<Decimal>, false);
- Eval(10572, v is NestedClassGen<Decimal>[], false);
+// Eval(10571, v is NestedClassGen<Decimal>, false);
+// Eval(10572, v is NestedClassGen<Decimal>[], false);
Eval(10573, v is ImplementOneInterfaceC, false);
Eval(10574, v is ImplementOneInterfaceC[], false);
Eval(10575, v is ImplementTwoInterfaceC, false);
Eval(10576, v is ImplementTwoInterfaceC[], false);
- Eval(10577, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10578, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10579, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10580, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10581, v is ImplementAllInterfaceC<int>, false);
- Eval(10582, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10577, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10578, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10579, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10580, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10581, v is ImplementAllInterfaceC<int>, false);
+// Eval(10582, v is ImplementAllInterfaceC<int>[], false);
Eval(10583, v is SealedClass, false);
Eval(10584, v is SealedClass[], false);
}
@@ -8456,26 +8456,26 @@ internal class Program
Eval(10590, v is NotEmptyStruct[], false);
Eval(10591, v is NotEmptyStruct?, false);
Eval(10592, v is NotEmptyStruct?[], false);
- Eval(10593, v is EmptyStructGen<int>, false);
- Eval(10594, v is EmptyStructGen<int>[], false);
- Eval(10595, v is EmptyStructGen<int>?, false);
- Eval(10596, v is EmptyStructGen<int>?[], false);
- Eval(10597, v is NotEmptyStructGen<Guid>, false);
- Eval(10598, v is NotEmptyStructGen<Guid>[], false);
- Eval(10599, v is NotEmptyStructGen<Guid>?, false);
- Eval(10600, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10601, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10602, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10603, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10604, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10593, v is EmptyStructGen<int>, false);
+// Eval(10594, v is EmptyStructGen<int>[], false);
+// Eval(10595, v is EmptyStructGen<int>?, false);
+// Eval(10596, v is EmptyStructGen<int>?[], false);
+// Eval(10597, v is NotEmptyStructGen<Guid>, false);
+// Eval(10598, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10599, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10600, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10601, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10602, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10603, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10604, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10605, v is NestedStruct, false);
Eval(10606, v is NestedStruct[], false);
Eval(10607, v is NestedStruct?, false);
Eval(10608, v is NestedStruct?[], false);
- Eval(10609, v is NestedStructGen<Decimal>, false);
- Eval(10610, v is NestedStructGen<Decimal>[], false);
- Eval(10611, v is NestedStructGen<Decimal>?, false);
- Eval(10612, v is NestedStructGen<Decimal>?[], false);
+// Eval(10609, v is NestedStructGen<Decimal>, false);
+// Eval(10610, v is NestedStructGen<Decimal>[], false);
+// Eval(10611, v is NestedStructGen<Decimal>?, false);
+// Eval(10612, v is NestedStructGen<Decimal>?[], false);
Eval(10613, v is ExplicitFieldOffsetStruct, false);
Eval(10614, v is ExplicitFieldOffsetStruct[], false);
Eval(10615, v is ExplicitFieldOffsetStruct?, false);
@@ -8492,18 +8492,18 @@ internal class Program
Eval(10634, v is ImplementTwoInterface[], false);
Eval(10635, v is ImplementTwoInterface?, false);
Eval(10636, v is ImplementTwoInterface?[], false);
- Eval(10637, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10638, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10639, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10640, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10641, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10642, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10643, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10644, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10645, v is ImplementAllInterface<int>, false);
- Eval(10646, v is ImplementAllInterface<int>[], false);
- Eval(10647, v is ImplementAllInterface<int>?, false);
- Eval(10648, v is ImplementAllInterface<int>?[], false);
+// Eval(10637, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10638, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10639, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10640, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10641, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10642, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10643, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10644, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10645, v is ImplementAllInterface<int>, false);
+// Eval(10646, v is ImplementAllInterface<int>[], false);
+// Eval(10647, v is ImplementAllInterface<int>?, false);
+// Eval(10648, v is ImplementAllInterface<int>?[], false);
Eval(10649, v is IntE, false);
Eval(10650, v is IntE[], false);
Eval(10651, v is IntE?, false);
@@ -8602,38 +8602,38 @@ internal class Program
Eval(10744, v is IEmpty[], false);
Eval(10745, v is INotEmpty, false);
Eval(10746, v is INotEmpty[], false);
- Eval(10747, v is IEmptyGen<int>, false);
- Eval(10748, v is IEmptyGen<int>[], false);
- Eval(10749, v is INotEmptyGen<int>, false);
- Eval(10750, v is INotEmptyGen<int>[], false);
+// Eval(10747, v is IEmptyGen<int>, false);
+// Eval(10748, v is IEmptyGen<int>[], false);
+// Eval(10749, v is INotEmptyGen<int>, false);
+// Eval(10750, v is INotEmptyGen<int>[], false);
Eval(10751, v is SimpleDelegate, false);
Eval(10752, v is SimpleDelegate[], false);
- Eval(10753, v is GenericDelegate<int>, false);
- Eval(10754, v is GenericDelegate<int>[], false);
+// Eval(10753, v is GenericDelegate<int>, false);
+// Eval(10754, v is GenericDelegate<int>[], false);
Eval(10755, v is EmptyClass, false);
Eval(10756, v is EmptyClass[], false);
Eval(10757, v is NotEmptyClass, false);
Eval(10758, v is NotEmptyClass[], false);
- Eval(10759, v is EmptyClassGen<int>, false);
- Eval(10760, v is EmptyClassGen<int>[], false);
- Eval(10761, v is NotEmptyClassGen<Guid>, false);
- Eval(10762, v is NotEmptyClassGen<Guid>[], false);
- Eval(10763, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10764, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10759, v is EmptyClassGen<int>, false);
+// Eval(10760, v is EmptyClassGen<int>[], false);
+// Eval(10761, v is NotEmptyClassGen<Guid>, false);
+// Eval(10762, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10763, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10764, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10765, v is NestedClass, false);
Eval(10766, v is NestedClass[], false);
- Eval(10767, v is NestedClassGen<Decimal>, false);
- Eval(10768, v is NestedClassGen<Decimal>[], false);
+// Eval(10767, v is NestedClassGen<Decimal>, false);
+// Eval(10768, v is NestedClassGen<Decimal>[], false);
Eval(10769, v is ImplementOneInterfaceC, false);
Eval(10770, v is ImplementOneInterfaceC[], false);
Eval(10771, v is ImplementTwoInterfaceC, false);
Eval(10772, v is ImplementTwoInterfaceC[], false);
- Eval(10773, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10774, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10775, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10776, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10777, v is ImplementAllInterfaceC<int>, false);
- Eval(10778, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10773, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10774, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10775, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10776, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10777, v is ImplementAllInterfaceC<int>, false);
+// Eval(10778, v is ImplementAllInterfaceC<int>[], false);
Eval(10779, v is SealedClass, false);
Eval(10780, v is SealedClass[], false);
}
@@ -8650,26 +8650,26 @@ internal class Program
Eval(10786, v is NotEmptyStruct[], false);
Eval(10787, v is NotEmptyStruct?, false);
Eval(10788, v is NotEmptyStruct?[], false);
- Eval(10789, v is EmptyStructGen<int>, false);
- Eval(10790, v is EmptyStructGen<int>[], false);
- Eval(10791, v is EmptyStructGen<int>?, false);
- Eval(10792, v is EmptyStructGen<int>?[], false);
- Eval(10793, v is NotEmptyStructGen<Guid>, false);
- Eval(10794, v is NotEmptyStructGen<Guid>[], false);
- Eval(10795, v is NotEmptyStructGen<Guid>?, false);
- Eval(10796, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10797, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10798, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10799, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10800, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10789, v is EmptyStructGen<int>, false);
+// Eval(10790, v is EmptyStructGen<int>[], false);
+// Eval(10791, v is EmptyStructGen<int>?, false);
+// Eval(10792, v is EmptyStructGen<int>?[], false);
+// Eval(10793, v is NotEmptyStructGen<Guid>, false);
+// Eval(10794, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10795, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10796, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10797, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10798, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10799, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10800, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10801, v is NestedStruct, false);
Eval(10802, v is NestedStruct[], false);
Eval(10803, v is NestedStruct?, false);
Eval(10804, v is NestedStruct?[], false);
- Eval(10805, v is NestedStructGen<Decimal>, false);
- Eval(10806, v is NestedStructGen<Decimal>[], false);
- Eval(10807, v is NestedStructGen<Decimal>?, false);
- Eval(10808, v is NestedStructGen<Decimal>?[], false);
+// Eval(10805, v is NestedStructGen<Decimal>, false);
+// Eval(10806, v is NestedStructGen<Decimal>[], false);
+// Eval(10807, v is NestedStructGen<Decimal>?, false);
+// Eval(10808, v is NestedStructGen<Decimal>?[], false);
Eval(10809, v is ExplicitFieldOffsetStruct, false);
Eval(10810, v is ExplicitFieldOffsetStruct[], false);
Eval(10811, v is ExplicitFieldOffsetStruct?, false);
@@ -8686,18 +8686,18 @@ internal class Program
Eval(10830, v is ImplementTwoInterface[], false);
Eval(10831, v is ImplementTwoInterface?, false);
Eval(10832, v is ImplementTwoInterface?[], false);
- Eval(10833, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10834, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10835, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10836, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10837, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10838, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10839, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10840, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10841, v is ImplementAllInterface<int>, false);
- Eval(10842, v is ImplementAllInterface<int>[], false);
- Eval(10843, v is ImplementAllInterface<int>?, false);
- Eval(10844, v is ImplementAllInterface<int>?[], false);
+// Eval(10833, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10834, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10835, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10836, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10837, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10838, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10839, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10840, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10841, v is ImplementAllInterface<int>, false);
+// Eval(10842, v is ImplementAllInterface<int>[], false);
+// Eval(10843, v is ImplementAllInterface<int>?, false);
+// Eval(10844, v is ImplementAllInterface<int>?[], false);
Eval(10845, v is IntE, false);
Eval(10846, v is IntE[], false);
Eval(10847, v is IntE?, false);
@@ -8796,38 +8796,38 @@ internal class Program
Eval(10940, v is IEmpty[], false);
Eval(10941, v is INotEmpty, false);
Eval(10942, v is INotEmpty[], false);
- Eval(10943, v is IEmptyGen<int>, false);
- Eval(10944, v is IEmptyGen<int>[], false);
- Eval(10945, v is INotEmptyGen<int>, false);
- Eval(10946, v is INotEmptyGen<int>[], false);
+// Eval(10943, v is IEmptyGen<int>, false);
+// Eval(10944, v is IEmptyGen<int>[], false);
+// Eval(10945, v is INotEmptyGen<int>, false);
+// Eval(10946, v is INotEmptyGen<int>[], false);
Eval(10947, v is SimpleDelegate, false);
Eval(10948, v is SimpleDelegate[], false);
- Eval(10949, v is GenericDelegate<int>, false);
- Eval(10950, v is GenericDelegate<int>[], false);
+// Eval(10949, v is GenericDelegate<int>, false);
+// Eval(10950, v is GenericDelegate<int>[], false);
Eval(10951, v is EmptyClass, false);
Eval(10952, v is EmptyClass[], false);
Eval(10953, v is NotEmptyClass, false);
Eval(10954, v is NotEmptyClass[], false);
- Eval(10955, v is EmptyClassGen<int>, false);
- Eval(10956, v is EmptyClassGen<int>[], false);
- Eval(10957, v is NotEmptyClassGen<Guid>, false);
- Eval(10958, v is NotEmptyClassGen<Guid>[], false);
- Eval(10959, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10960, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10955, v is EmptyClassGen<int>, false);
+// Eval(10956, v is EmptyClassGen<int>[], false);
+// Eval(10957, v is NotEmptyClassGen<Guid>, false);
+// Eval(10958, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10959, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10960, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10961, v is NestedClass, false);
Eval(10962, v is NestedClass[], false);
- Eval(10963, v is NestedClassGen<Decimal>, false);
- Eval(10964, v is NestedClassGen<Decimal>[], false);
+// Eval(10963, v is NestedClassGen<Decimal>, false);
+// Eval(10964, v is NestedClassGen<Decimal>[], false);
Eval(10965, v is ImplementOneInterfaceC, false);
Eval(10966, v is ImplementOneInterfaceC[], false);
Eval(10967, v is ImplementTwoInterfaceC, false);
Eval(10968, v is ImplementTwoInterfaceC[], false);
- Eval(10969, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10970, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10971, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10972, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10973, v is ImplementAllInterfaceC<int>, false);
- Eval(10974, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10969, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10970, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10971, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10972, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10973, v is ImplementAllInterfaceC<int>, false);
+// Eval(10974, v is ImplementAllInterfaceC<int>[], false);
Eval(10975, v is SealedClass, false);
Eval(10976, v is SealedClass[], false);
}
@@ -8841,26 +8841,26 @@ internal class Program
Eval(10982, v is NotEmptyStruct[], false);
Eval(10983, v is NotEmptyStruct?, false);
Eval(10984, v is NotEmptyStruct?[], false);
- Eval(10985, v is EmptyStructGen<int>, false);
- Eval(10986, v is EmptyStructGen<int>[], false);
- Eval(10987, v is EmptyStructGen<int>?, false);
- Eval(10988, v is EmptyStructGen<int>?[], false);
- Eval(10989, v is NotEmptyStructGen<Guid>, false);
- Eval(10990, v is NotEmptyStructGen<Guid>[], false);
- Eval(10991, v is NotEmptyStructGen<Guid>?, false);
- Eval(10992, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10993, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10994, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10995, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10996, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10985, v is EmptyStructGen<int>, false);
+// Eval(10986, v is EmptyStructGen<int>[], false);
+// Eval(10987, v is EmptyStructGen<int>?, false);
+// Eval(10988, v is EmptyStructGen<int>?[], false);
+// Eval(10989, v is NotEmptyStructGen<Guid>, false);
+// Eval(10990, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10991, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10992, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10993, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10994, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10995, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10996, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10997, v is NestedStruct, false);
Eval(10998, v is NestedStruct[], false);
Eval(10999, v is NestedStruct?, false);
Eval(11000, v is NestedStruct?[], false);
- Eval(11001, v is NestedStructGen<Decimal>, false);
- Eval(11002, v is NestedStructGen<Decimal>[], false);
- Eval(11003, v is NestedStructGen<Decimal>?, false);
- Eval(11004, v is NestedStructGen<Decimal>?[], false);
+// Eval(11001, v is NestedStructGen<Decimal>, false);
+// Eval(11002, v is NestedStructGen<Decimal>[], false);
+// Eval(11003, v is NestedStructGen<Decimal>?, false);
+// Eval(11004, v is NestedStructGen<Decimal>?[], false);
Eval(11005, v is ExplicitFieldOffsetStruct, false);
Eval(11006, v is ExplicitFieldOffsetStruct[], false);
Eval(11007, v is ExplicitFieldOffsetStruct?, false);
@@ -8877,18 +8877,18 @@ internal class Program
Eval(11026, v is ImplementTwoInterface[], false);
Eval(11027, v is ImplementTwoInterface?, false);
Eval(11028, v is ImplementTwoInterface?[], false);
- Eval(11029, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11030, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11031, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11032, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11033, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11034, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11035, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11036, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11037, v is ImplementAllInterface<int>, false);
- Eval(11038, v is ImplementAllInterface<int>[], false);
- Eval(11039, v is ImplementAllInterface<int>?, false);
- Eval(11040, v is ImplementAllInterface<int>?[], false);
+// Eval(11029, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11030, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11031, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11032, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11033, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11034, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11035, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11036, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11037, v is ImplementAllInterface<int>, false);
+// Eval(11038, v is ImplementAllInterface<int>[], false);
+// Eval(11039, v is ImplementAllInterface<int>?, false);
+// Eval(11040, v is ImplementAllInterface<int>?[], false);
Eval(11041, v is IntE, false);
Eval(11042, v is IntE[], false);
Eval(11043, v is IntE?, false);
@@ -8987,38 +8987,38 @@ internal class Program
Eval(11136, v is IEmpty[], false);
Eval(11137, v is INotEmpty, false);
Eval(11138, v is INotEmpty[], false);
- Eval(11139, v is IEmptyGen<int>, false);
- Eval(11140, v is IEmptyGen<int>[], false);
- Eval(11141, v is INotEmptyGen<int>, false);
- Eval(11142, v is INotEmptyGen<int>[], false);
+// Eval(11139, v is IEmptyGen<int>, false);
+// Eval(11140, v is IEmptyGen<int>[], false);
+// Eval(11141, v is INotEmptyGen<int>, false);
+// Eval(11142, v is INotEmptyGen<int>[], false);
Eval(11143, v is SimpleDelegate, false);
Eval(11144, v is SimpleDelegate[], false);
- Eval(11145, v is GenericDelegate<int>, false);
- Eval(11146, v is GenericDelegate<int>[], false);
+// Eval(11145, v is GenericDelegate<int>, false);
+// Eval(11146, v is GenericDelegate<int>[], false);
Eval(11147, v is EmptyClass, false);
Eval(11148, v is EmptyClass[], false);
Eval(11149, v is NotEmptyClass, false);
Eval(11150, v is NotEmptyClass[], false);
- Eval(11151, v is EmptyClassGen<int>, false);
- Eval(11152, v is EmptyClassGen<int>[], false);
- Eval(11153, v is NotEmptyClassGen<Guid>, false);
- Eval(11154, v is NotEmptyClassGen<Guid>[], false);
- Eval(11155, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11156, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11151, v is EmptyClassGen<int>, false);
+// Eval(11152, v is EmptyClassGen<int>[], false);
+// Eval(11153, v is NotEmptyClassGen<Guid>, false);
+// Eval(11154, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11155, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11156, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11157, v is NestedClass, false);
Eval(11158, v is NestedClass[], false);
- Eval(11159, v is NestedClassGen<Decimal>, false);
- Eval(11160, v is NestedClassGen<Decimal>[], false);
+// Eval(11159, v is NestedClassGen<Decimal>, false);
+// Eval(11160, v is NestedClassGen<Decimal>[], false);
Eval(11161, v is ImplementOneInterfaceC, false);
Eval(11162, v is ImplementOneInterfaceC[], false);
Eval(11163, v is ImplementTwoInterfaceC, false);
Eval(11164, v is ImplementTwoInterfaceC[], false);
- Eval(11165, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11166, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11167, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11168, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11169, v is ImplementAllInterfaceC<int>, false);
- Eval(11170, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11165, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11166, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11167, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11168, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11169, v is ImplementAllInterfaceC<int>, false);
+// Eval(11170, v is ImplementAllInterfaceC<int>[], false);
Eval(11171, v is SealedClass, false);
Eval(11172, v is SealedClass[], false);
}
@@ -9032,26 +9032,26 @@ internal class Program
Eval(11178, v is NotEmptyStruct[], false);
Eval(11179, v is NotEmptyStruct?, false);
Eval(11180, v is NotEmptyStruct?[], false);
- Eval(11181, v is EmptyStructGen<int>, false);
- Eval(11182, v is EmptyStructGen<int>[], false);
- Eval(11183, v is EmptyStructGen<int>?, false);
- Eval(11184, v is EmptyStructGen<int>?[], false);
- Eval(11185, v is NotEmptyStructGen<Guid>, false);
- Eval(11186, v is NotEmptyStructGen<Guid>[], false);
- Eval(11187, v is NotEmptyStructGen<Guid>?, false);
- Eval(11188, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11189, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11190, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11191, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11192, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11181, v is EmptyStructGen<int>, false);
+// Eval(11182, v is EmptyStructGen<int>[], false);
+// Eval(11183, v is EmptyStructGen<int>?, false);
+// Eval(11184, v is EmptyStructGen<int>?[], false);
+// Eval(11185, v is NotEmptyStructGen<Guid>, false);
+// Eval(11186, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11187, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11188, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11189, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11190, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11191, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11192, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11193, v is NestedStruct, false);
Eval(11194, v is NestedStruct[], false);
Eval(11195, v is NestedStruct?, false);
Eval(11196, v is NestedStruct?[], false);
- Eval(11197, v is NestedStructGen<Decimal>, false);
- Eval(11198, v is NestedStructGen<Decimal>[], false);
- Eval(11199, v is NestedStructGen<Decimal>?, false);
- Eval(11200, v is NestedStructGen<Decimal>?[], false);
+// Eval(11197, v is NestedStructGen<Decimal>, false);
+// Eval(11198, v is NestedStructGen<Decimal>[], false);
+// Eval(11199, v is NestedStructGen<Decimal>?, false);
+// Eval(11200, v is NestedStructGen<Decimal>?[], false);
Eval(11201, v is ExplicitFieldOffsetStruct, false);
Eval(11202, v is ExplicitFieldOffsetStruct[], false);
Eval(11203, v is ExplicitFieldOffsetStruct?, false);
@@ -9068,18 +9068,18 @@ internal class Program
Eval(11222, v is ImplementTwoInterface[], false);
Eval(11223, v is ImplementTwoInterface?, false);
Eval(11224, v is ImplementTwoInterface?[], false);
- Eval(11225, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11226, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11227, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11228, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11229, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11230, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11231, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11232, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11233, v is ImplementAllInterface<int>, false);
- Eval(11234, v is ImplementAllInterface<int>[], false);
- Eval(11235, v is ImplementAllInterface<int>?, false);
- Eval(11236, v is ImplementAllInterface<int>?[], false);
+// Eval(11225, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11226, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11227, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11228, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11229, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11230, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11231, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11232, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11233, v is ImplementAllInterface<int>, false);
+// Eval(11234, v is ImplementAllInterface<int>[], false);
+// Eval(11235, v is ImplementAllInterface<int>?, false);
+// Eval(11236, v is ImplementAllInterface<int>?[], false);
Eval(11237, v is IntE, false);
Eval(11238, v is IntE[], false);
Eval(11239, v is IntE?, false);
@@ -9178,38 +9178,38 @@ internal class Program
Eval(11332, v is IEmpty[], false);
Eval(11333, v is INotEmpty, false);
Eval(11334, v is INotEmpty[], false);
- Eval(11335, v is IEmptyGen<int>, false);
- Eval(11336, v is IEmptyGen<int>[], false);
- Eval(11337, v is INotEmptyGen<int>, false);
- Eval(11338, v is INotEmptyGen<int>[], false);
+// Eval(11335, v is IEmptyGen<int>, false);
+// Eval(11336, v is IEmptyGen<int>[], false);
+// Eval(11337, v is INotEmptyGen<int>, false);
+// Eval(11338, v is INotEmptyGen<int>[], false);
Eval(11339, v is SimpleDelegate, false);
Eval(11340, v is SimpleDelegate[], false);
- Eval(11341, v is GenericDelegate<int>, false);
- Eval(11342, v is GenericDelegate<int>[], false);
+// Eval(11341, v is GenericDelegate<int>, false);
+// Eval(11342, v is GenericDelegate<int>[], false);
Eval(11343, v is EmptyClass, false);
Eval(11344, v is EmptyClass[], false);
Eval(11345, v is NotEmptyClass, false);
Eval(11346, v is NotEmptyClass[], false);
- Eval(11347, v is EmptyClassGen<int>, false);
- Eval(11348, v is EmptyClassGen<int>[], false);
- Eval(11349, v is NotEmptyClassGen<Guid>, false);
- Eval(11350, v is NotEmptyClassGen<Guid>[], false);
- Eval(11351, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11352, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11347, v is EmptyClassGen<int>, false);
+// Eval(11348, v is EmptyClassGen<int>[], false);
+// Eval(11349, v is NotEmptyClassGen<Guid>, false);
+// Eval(11350, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11351, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11352, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11353, v is NestedClass, false);
Eval(11354, v is NestedClass[], false);
- Eval(11355, v is NestedClassGen<Decimal>, false);
- Eval(11356, v is NestedClassGen<Decimal>[], false);
+// Eval(11355, v is NestedClassGen<Decimal>, false);
+// Eval(11356, v is NestedClassGen<Decimal>[], false);
Eval(11357, v is ImplementOneInterfaceC, false);
Eval(11358, v is ImplementOneInterfaceC[], false);
Eval(11359, v is ImplementTwoInterfaceC, false);
Eval(11360, v is ImplementTwoInterfaceC[], false);
- Eval(11361, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11362, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11363, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11364, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11365, v is ImplementAllInterfaceC<int>, false);
- Eval(11366, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11361, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11362, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11363, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11364, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11365, v is ImplementAllInterfaceC<int>, false);
+// Eval(11366, v is ImplementAllInterfaceC<int>[], false);
Eval(11367, v is SealedClass, false);
Eval(11368, v is SealedClass[], false);
}
@@ -9223,26 +9223,26 @@ internal class Program
Eval(11374, v is NotEmptyStruct[], false);
Eval(11375, v is NotEmptyStruct?, false);
Eval(11376, v is NotEmptyStruct?[], false);
- Eval(11377, v is EmptyStructGen<int>, false);
- Eval(11378, v is EmptyStructGen<int>[], false);
- Eval(11379, v is EmptyStructGen<int>?, false);
- Eval(11380, v is EmptyStructGen<int>?[], false);
- Eval(11381, v is NotEmptyStructGen<Guid>, false);
- Eval(11382, v is NotEmptyStructGen<Guid>[], false);
- Eval(11383, v is NotEmptyStructGen<Guid>?, false);
- Eval(11384, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11385, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11386, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11387, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11388, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11377, v is EmptyStructGen<int>, false);
+// Eval(11378, v is EmptyStructGen<int>[], false);
+// Eval(11379, v is EmptyStructGen<int>?, false);
+// Eval(11380, v is EmptyStructGen<int>?[], false);
+// Eval(11381, v is NotEmptyStructGen<Guid>, false);
+// Eval(11382, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11383, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11384, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11385, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11386, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11387, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11388, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11389, v is NestedStruct, false);
Eval(11390, v is NestedStruct[], false);
Eval(11391, v is NestedStruct?, false);
Eval(11392, v is NestedStruct?[], false);
- Eval(11393, v is NestedStructGen<Decimal>, false);
- Eval(11394, v is NestedStructGen<Decimal>[], false);
- Eval(11395, v is NestedStructGen<Decimal>?, false);
- Eval(11396, v is NestedStructGen<Decimal>?[], false);
+// Eval(11393, v is NestedStructGen<Decimal>, false);
+// Eval(11394, v is NestedStructGen<Decimal>[], false);
+// Eval(11395, v is NestedStructGen<Decimal>?, false);
+// Eval(11396, v is NestedStructGen<Decimal>?[], false);
Eval(11397, v is ExplicitFieldOffsetStruct, false);
Eval(11398, v is ExplicitFieldOffsetStruct[], false);
Eval(11399, v is ExplicitFieldOffsetStruct?, false);
@@ -9259,18 +9259,18 @@ internal class Program
Eval(11418, v is ImplementTwoInterface[], false);
Eval(11419, v is ImplementTwoInterface?, false);
Eval(11420, v is ImplementTwoInterface?[], false);
- Eval(11421, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11422, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11423, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11424, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11425, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11426, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11427, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11428, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11429, v is ImplementAllInterface<int>, false);
- Eval(11430, v is ImplementAllInterface<int>[], false);
- Eval(11431, v is ImplementAllInterface<int>?, false);
- Eval(11432, v is ImplementAllInterface<int>?[], false);
+// Eval(11421, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11422, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11423, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11424, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11425, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11426, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11427, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11428, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11429, v is ImplementAllInterface<int>, false);
+// Eval(11430, v is ImplementAllInterface<int>[], false);
+// Eval(11431, v is ImplementAllInterface<int>?, false);
+// Eval(11432, v is ImplementAllInterface<int>?[], false);
Eval(11433, v is IntE, false);
Eval(11434, v is IntE[], false);
Eval(11435, v is IntE?, false);
@@ -9369,38 +9369,38 @@ internal class Program
Eval(11528, v is IEmpty[], false);
Eval(11529, v is INotEmpty, false);
Eval(11530, v is INotEmpty[], false);
- Eval(11531, v is IEmptyGen<int>, false);
- Eval(11532, v is IEmptyGen<int>[], false);
- Eval(11533, v is INotEmptyGen<int>, false);
- Eval(11534, v is INotEmptyGen<int>[], false);
+// Eval(11531, v is IEmptyGen<int>, false);
+// Eval(11532, v is IEmptyGen<int>[], false);
+// Eval(11533, v is INotEmptyGen<int>, false);
+// Eval(11534, v is INotEmptyGen<int>[], false);
Eval(11535, v is SimpleDelegate, false);
Eval(11536, v is SimpleDelegate[], false);
- Eval(11537, v is GenericDelegate<int>, false);
- Eval(11538, v is GenericDelegate<int>[], false);
+// Eval(11537, v is GenericDelegate<int>, false);
+// Eval(11538, v is GenericDelegate<int>[], false);
Eval(11539, v is EmptyClass, false);
Eval(11540, v is EmptyClass[], false);
Eval(11541, v is NotEmptyClass, false);
Eval(11542, v is NotEmptyClass[], false);
- Eval(11543, v is EmptyClassGen<int>, false);
- Eval(11544, v is EmptyClassGen<int>[], false);
- Eval(11545, v is NotEmptyClassGen<Guid>, false);
- Eval(11546, v is NotEmptyClassGen<Guid>[], false);
- Eval(11547, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11548, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11543, v is EmptyClassGen<int>, false);
+// Eval(11544, v is EmptyClassGen<int>[], false);
+// Eval(11545, v is NotEmptyClassGen<Guid>, false);
+// Eval(11546, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11547, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11548, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11549, v is NestedClass, false);
Eval(11550, v is NestedClass[], false);
- Eval(11551, v is NestedClassGen<Decimal>, false);
- Eval(11552, v is NestedClassGen<Decimal>[], false);
+// Eval(11551, v is NestedClassGen<Decimal>, false);
+// Eval(11552, v is NestedClassGen<Decimal>[], false);
Eval(11553, v is ImplementOneInterfaceC, false);
Eval(11554, v is ImplementOneInterfaceC[], false);
Eval(11555, v is ImplementTwoInterfaceC, false);
Eval(11556, v is ImplementTwoInterfaceC[], false);
- Eval(11557, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11558, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11559, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11560, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11561, v is ImplementAllInterfaceC<int>, false);
- Eval(11562, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11557, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11558, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11559, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11560, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11561, v is ImplementAllInterfaceC<int>, false);
+// Eval(11562, v is ImplementAllInterfaceC<int>[], false);
Eval(11563, v is SealedClass, false);
Eval(11564, v is SealedClass[], false);
}
@@ -9414,26 +9414,26 @@ internal class Program
Eval(11570, v is NotEmptyStruct[], false);
Eval(11571, v is NotEmptyStruct?, false);
Eval(11572, v is NotEmptyStruct?[], false);
- Eval(11573, v is EmptyStructGen<int>, false);
- Eval(11574, v is EmptyStructGen<int>[], false);
- Eval(11575, v is EmptyStructGen<int>?, false);
- Eval(11576, v is EmptyStructGen<int>?[], false);
- Eval(11577, v is NotEmptyStructGen<Guid>, false);
- Eval(11578, v is NotEmptyStructGen<Guid>[], false);
- Eval(11579, v is NotEmptyStructGen<Guid>?, false);
- Eval(11580, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11581, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11582, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11583, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11584, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11573, v is EmptyStructGen<int>, false);
+// Eval(11574, v is EmptyStructGen<int>[], false);
+// Eval(11575, v is EmptyStructGen<int>?, false);
+// Eval(11576, v is EmptyStructGen<int>?[], false);
+// Eval(11577, v is NotEmptyStructGen<Guid>, false);
+// Eval(11578, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11579, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11580, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11581, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11582, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11583, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11584, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11585, v is NestedStruct, false);
Eval(11586, v is NestedStruct[], false);
Eval(11587, v is NestedStruct?, false);
Eval(11588, v is NestedStruct?[], false);
- Eval(11589, v is NestedStructGen<Decimal>, false);
- Eval(11590, v is NestedStructGen<Decimal>[], false);
- Eval(11591, v is NestedStructGen<Decimal>?, false);
- Eval(11592, v is NestedStructGen<Decimal>?[], false);
+// Eval(11589, v is NestedStructGen<Decimal>, false);
+// Eval(11590, v is NestedStructGen<Decimal>[], false);
+// Eval(11591, v is NestedStructGen<Decimal>?, false);
+// Eval(11592, v is NestedStructGen<Decimal>?[], false);
Eval(11593, v is ExplicitFieldOffsetStruct, false);
Eval(11594, v is ExplicitFieldOffsetStruct[], false);
Eval(11595, v is ExplicitFieldOffsetStruct?, false);
@@ -9450,18 +9450,18 @@ internal class Program
Eval(11614, v is ImplementTwoInterface[], false);
Eval(11615, v is ImplementTwoInterface?, false);
Eval(11616, v is ImplementTwoInterface?[], false);
- Eval(11617, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11618, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11619, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11620, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11621, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11622, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11623, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11624, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11625, v is ImplementAllInterface<int>, false);
- Eval(11626, v is ImplementAllInterface<int>[], false);
- Eval(11627, v is ImplementAllInterface<int>?, false);
- Eval(11628, v is ImplementAllInterface<int>?[], false);
+// Eval(11617, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11618, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11619, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11620, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11621, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11622, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11623, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11624, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11625, v is ImplementAllInterface<int>, false);
+// Eval(11626, v is ImplementAllInterface<int>[], false);
+// Eval(11627, v is ImplementAllInterface<int>?, false);
+// Eval(11628, v is ImplementAllInterface<int>?[], false);
Eval(11629, v is IntE, false);
Eval(11630, v is IntE[], false);
Eval(11631, v is IntE?, false);
@@ -9560,38 +9560,38 @@ internal class Program
Eval(11724, v is IEmpty[], false);
Eval(11725, v is INotEmpty, false);
Eval(11726, v is INotEmpty[], false);
- Eval(11727, v is IEmptyGen<int>, false);
- Eval(11728, v is IEmptyGen<int>[], false);
- Eval(11729, v is INotEmptyGen<int>, false);
- Eval(11730, v is INotEmptyGen<int>[], false);
+// Eval(11727, v is IEmptyGen<int>, false);
+// Eval(11728, v is IEmptyGen<int>[], false);
+// Eval(11729, v is INotEmptyGen<int>, false);
+// Eval(11730, v is INotEmptyGen<int>[], false);
Eval(11731, v is SimpleDelegate, false);
Eval(11732, v is SimpleDelegate[], false);
- Eval(11733, v is GenericDelegate<int>, false);
- Eval(11734, v is GenericDelegate<int>[], false);
+// Eval(11733, v is GenericDelegate<int>, false);
+// Eval(11734, v is GenericDelegate<int>[], false);
Eval(11735, v is EmptyClass, false);
Eval(11736, v is EmptyClass[], false);
Eval(11737, v is NotEmptyClass, false);
Eval(11738, v is NotEmptyClass[], false);
- Eval(11739, v is EmptyClassGen<int>, false);
- Eval(11740, v is EmptyClassGen<int>[], false);
- Eval(11741, v is NotEmptyClassGen<Guid>, false);
- Eval(11742, v is NotEmptyClassGen<Guid>[], false);
- Eval(11743, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11744, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11739, v is EmptyClassGen<int>, false);
+// Eval(11740, v is EmptyClassGen<int>[], false);
+// Eval(11741, v is NotEmptyClassGen<Guid>, false);
+// Eval(11742, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11743, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11744, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11745, v is NestedClass, false);
Eval(11746, v is NestedClass[], false);
- Eval(11747, v is NestedClassGen<Decimal>, false);
- Eval(11748, v is NestedClassGen<Decimal>[], false);
+// Eval(11747, v is NestedClassGen<Decimal>, false);
+// Eval(11748, v is NestedClassGen<Decimal>[], false);
Eval(11749, v is ImplementOneInterfaceC, false);
Eval(11750, v is ImplementOneInterfaceC[], false);
Eval(11751, v is ImplementTwoInterfaceC, false);
Eval(11752, v is ImplementTwoInterfaceC[], false);
- Eval(11753, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11754, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11755, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11756, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11757, v is ImplementAllInterfaceC<int>, false);
- Eval(11758, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11753, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11754, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11755, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11756, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11757, v is ImplementAllInterfaceC<int>, false);
+// Eval(11758, v is ImplementAllInterfaceC<int>[], false);
Eval(11759, v is SealedClass, false);
Eval(11760, v is SealedClass[], false);
}
@@ -9608,26 +9608,26 @@ internal class Program
Eval(11766, v is NotEmptyStruct[], false);
Eval(11767, v is NotEmptyStruct?, false);
Eval(11768, v is NotEmptyStruct?[], false);
- Eval(11769, v is EmptyStructGen<int>, false);
- Eval(11770, v is EmptyStructGen<int>[], false);
- Eval(11771, v is EmptyStructGen<int>?, false);
- Eval(11772, v is EmptyStructGen<int>?[], false);
- Eval(11773, v is NotEmptyStructGen<Guid>, false);
- Eval(11774, v is NotEmptyStructGen<Guid>[], false);
- Eval(11775, v is NotEmptyStructGen<Guid>?, false);
- Eval(11776, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11777, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11778, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11779, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11780, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11769, v is EmptyStructGen<int>, false);
+// Eval(11770, v is EmptyStructGen<int>[], false);
+// Eval(11771, v is EmptyStructGen<int>?, false);
+// Eval(11772, v is EmptyStructGen<int>?[], false);
+// Eval(11773, v is NotEmptyStructGen<Guid>, false);
+// Eval(11774, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11775, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11776, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11777, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11778, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11779, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11780, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11781, v is NestedStruct, false);
Eval(11782, v is NestedStruct[], false);
Eval(11783, v is NestedStruct?, false);
Eval(11784, v is NestedStruct?[], false);
- Eval(11785, v is NestedStructGen<Decimal>, false);
- Eval(11786, v is NestedStructGen<Decimal>[], false);
- Eval(11787, v is NestedStructGen<Decimal>?, false);
- Eval(11788, v is NestedStructGen<Decimal>?[], false);
+// Eval(11785, v is NestedStructGen<Decimal>, false);
+// Eval(11786, v is NestedStructGen<Decimal>[], false);
+// Eval(11787, v is NestedStructGen<Decimal>?, false);
+// Eval(11788, v is NestedStructGen<Decimal>?[], false);
Eval(11789, v is ExplicitFieldOffsetStruct, false);
Eval(11790, v is ExplicitFieldOffsetStruct[], false);
Eval(11791, v is ExplicitFieldOffsetStruct?, false);
@@ -9644,18 +9644,18 @@ internal class Program
Eval(11810, v is ImplementTwoInterface[], false);
Eval(11811, v is ImplementTwoInterface?, true);
Eval(11812, v is ImplementTwoInterface?[], false);
- Eval(11813, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11814, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11815, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11816, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11817, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11818, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11819, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11820, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11821, v is ImplementAllInterface<int>, false);
- Eval(11822, v is ImplementAllInterface<int>[], false);
- Eval(11823, v is ImplementAllInterface<int>?, false);
- Eval(11824, v is ImplementAllInterface<int>?[], false);
+// Eval(11813, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11814, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11815, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11816, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11817, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11818, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11819, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11820, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11821, v is ImplementAllInterface<int>, false);
+// Eval(11822, v is ImplementAllInterface<int>[], false);
+// Eval(11823, v is ImplementAllInterface<int>?, false);
+// Eval(11824, v is ImplementAllInterface<int>?[], false);
Eval(11825, v is IntE, false);
Eval(11826, v is IntE[], false);
Eval(11827, v is IntE?, false);
@@ -9754,38 +9754,38 @@ internal class Program
Eval(11920, v is IEmpty[], false);
Eval(11921, v is INotEmpty, true);
Eval(11922, v is INotEmpty[], false);
- Eval(11923, v is IEmptyGen<int>, false);
- Eval(11924, v is IEmptyGen<int>[], false);
- Eval(11925, v is INotEmptyGen<int>, false);
- Eval(11926, v is INotEmptyGen<int>[], false);
+// Eval(11923, v is IEmptyGen<int>, false);
+// Eval(11924, v is IEmptyGen<int>[], false);
+// Eval(11925, v is INotEmptyGen<int>, false);
+// Eval(11926, v is INotEmptyGen<int>[], false);
Eval(11927, v is SimpleDelegate, false);
Eval(11928, v is SimpleDelegate[], false);
- Eval(11929, v is GenericDelegate<int>, false);
- Eval(11930, v is GenericDelegate<int>[], false);
+// Eval(11929, v is GenericDelegate<int>, false);
+// Eval(11930, v is GenericDelegate<int>[], false);
Eval(11931, v is EmptyClass, false);
Eval(11932, v is EmptyClass[], false);
Eval(11933, v is NotEmptyClass, false);
Eval(11934, v is NotEmptyClass[], false);
- Eval(11935, v is EmptyClassGen<int>, false);
- Eval(11936, v is EmptyClassGen<int>[], false);
- Eval(11937, v is NotEmptyClassGen<Guid>, false);
- Eval(11938, v is NotEmptyClassGen<Guid>[], false);
- Eval(11939, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11940, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11935, v is EmptyClassGen<int>, false);
+// Eval(11936, v is EmptyClassGen<int>[], false);
+// Eval(11937, v is NotEmptyClassGen<Guid>, false);
+// Eval(11938, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11939, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11940, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11941, v is NestedClass, false);
Eval(11942, v is NestedClass[], false);
- Eval(11943, v is NestedClassGen<Decimal>, false);
- Eval(11944, v is NestedClassGen<Decimal>[], false);
+// Eval(11943, v is NestedClassGen<Decimal>, false);
+// Eval(11944, v is NestedClassGen<Decimal>[], false);
Eval(11945, v is ImplementOneInterfaceC, false);
Eval(11946, v is ImplementOneInterfaceC[], false);
Eval(11947, v is ImplementTwoInterfaceC, false);
Eval(11948, v is ImplementTwoInterfaceC[], false);
- Eval(11949, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11950, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11951, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11952, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11953, v is ImplementAllInterfaceC<int>, false);
- Eval(11954, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11949, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11950, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11951, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11952, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11953, v is ImplementAllInterfaceC<int>, false);
+// Eval(11954, v is ImplementAllInterfaceC<int>[], false);
Eval(11955, v is SealedClass, false);
Eval(11956, v is SealedClass[], false);
}
@@ -9799,26 +9799,26 @@ internal class Program
Eval(11962, v is NotEmptyStruct[], false);
Eval(11963, v is NotEmptyStruct?, false);
Eval(11964, v is NotEmptyStruct?[], false);
- Eval(11965, v is EmptyStructGen<int>, false);
- Eval(11966, v is EmptyStructGen<int>[], false);
- Eval(11967, v is EmptyStructGen<int>?, false);
- Eval(11968, v is EmptyStructGen<int>?[], false);
- Eval(11969, v is NotEmptyStructGen<Guid>, false);
- Eval(11970, v is NotEmptyStructGen<Guid>[], false);
- Eval(11971, v is NotEmptyStructGen<Guid>?, false);
- Eval(11972, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11973, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11974, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11975, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11976, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11965, v is EmptyStructGen<int>, false);
+// Eval(11966, v is EmptyStructGen<int>[], false);
+// Eval(11967, v is EmptyStructGen<int>?, false);
+// Eval(11968, v is EmptyStructGen<int>?[], false);
+// Eval(11969, v is NotEmptyStructGen<Guid>, false);
+// Eval(11970, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11971, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11972, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11973, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11974, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11975, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11976, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11977, v is NestedStruct, false);
Eval(11978, v is NestedStruct[], false);
Eval(11979, v is NestedStruct?, false);
Eval(11980, v is NestedStruct?[], false);
- Eval(11981, v is NestedStructGen<Decimal>, false);
- Eval(11982, v is NestedStructGen<Decimal>[], false);
- Eval(11983, v is NestedStructGen<Decimal>?, false);
- Eval(11984, v is NestedStructGen<Decimal>?[], false);
+// Eval(11981, v is NestedStructGen<Decimal>, false);
+// Eval(11982, v is NestedStructGen<Decimal>[], false);
+// Eval(11983, v is NestedStructGen<Decimal>?, false);
+// Eval(11984, v is NestedStructGen<Decimal>?[], false);
Eval(11985, v is ExplicitFieldOffsetStruct, false);
Eval(11986, v is ExplicitFieldOffsetStruct[], false);
Eval(11987, v is ExplicitFieldOffsetStruct?, false);
@@ -9835,18 +9835,18 @@ internal class Program
Eval(12006, v is ImplementTwoInterface[], false);
Eval(12007, v is ImplementTwoInterface?, true);
Eval(12008, v is ImplementTwoInterface?[], false);
- Eval(12009, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12010, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12011, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12012, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12013, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12014, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12015, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12016, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12017, v is ImplementAllInterface<int>, false);
- Eval(12018, v is ImplementAllInterface<int>[], false);
- Eval(12019, v is ImplementAllInterface<int>?, false);
- Eval(12020, v is ImplementAllInterface<int>?[], false);
+// Eval(12009, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12010, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12011, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12012, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12013, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12014, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12015, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12016, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12017, v is ImplementAllInterface<int>, false);
+// Eval(12018, v is ImplementAllInterface<int>[], false);
+// Eval(12019, v is ImplementAllInterface<int>?, false);
+// Eval(12020, v is ImplementAllInterface<int>?[], false);
Eval(12021, v is IntE, false);
Eval(12022, v is IntE[], false);
Eval(12023, v is IntE?, false);
@@ -9945,38 +9945,38 @@ internal class Program
Eval(12116, v is IEmpty[], false);
Eval(12117, v is INotEmpty, true);
Eval(12118, v is INotEmpty[], false);
- Eval(12119, v is IEmptyGen<int>, false);
- Eval(12120, v is IEmptyGen<int>[], false);
- Eval(12121, v is INotEmptyGen<int>, false);
- Eval(12122, v is INotEmptyGen<int>[], false);
+// Eval(12119, v is IEmptyGen<int>, false);
+// Eval(12120, v is IEmptyGen<int>[], false);
+// Eval(12121, v is INotEmptyGen<int>, false);
+// Eval(12122, v is INotEmptyGen<int>[], false);
Eval(12123, v is SimpleDelegate, false);
Eval(12124, v is SimpleDelegate[], false);
- Eval(12125, v is GenericDelegate<int>, false);
- Eval(12126, v is GenericDelegate<int>[], false);
+// Eval(12125, v is GenericDelegate<int>, false);
+// Eval(12126, v is GenericDelegate<int>[], false);
Eval(12127, v is EmptyClass, false);
Eval(12128, v is EmptyClass[], false);
Eval(12129, v is NotEmptyClass, false);
Eval(12130, v is NotEmptyClass[], false);
- Eval(12131, v is EmptyClassGen<int>, false);
- Eval(12132, v is EmptyClassGen<int>[], false);
- Eval(12133, v is NotEmptyClassGen<Guid>, false);
- Eval(12134, v is NotEmptyClassGen<Guid>[], false);
- Eval(12135, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12136, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12131, v is EmptyClassGen<int>, false);
+// Eval(12132, v is EmptyClassGen<int>[], false);
+// Eval(12133, v is NotEmptyClassGen<Guid>, false);
+// Eval(12134, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12135, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12136, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12137, v is NestedClass, false);
Eval(12138, v is NestedClass[], false);
- Eval(12139, v is NestedClassGen<Decimal>, false);
- Eval(12140, v is NestedClassGen<Decimal>[], false);
+// Eval(12139, v is NestedClassGen<Decimal>, false);
+// Eval(12140, v is NestedClassGen<Decimal>[], false);
Eval(12141, v is ImplementOneInterfaceC, false);
Eval(12142, v is ImplementOneInterfaceC[], false);
Eval(12143, v is ImplementTwoInterfaceC, false);
Eval(12144, v is ImplementTwoInterfaceC[], false);
- Eval(12145, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12146, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12147, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12148, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12149, v is ImplementAllInterfaceC<int>, false);
- Eval(12150, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12145, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12146, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12147, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12148, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12149, v is ImplementAllInterfaceC<int>, false);
+// Eval(12150, v is ImplementAllInterfaceC<int>[], false);
Eval(12151, v is SealedClass, false);
Eval(12152, v is SealedClass[], false);
}
@@ -9990,26 +9990,26 @@ internal class Program
Eval(12158, v is NotEmptyStruct[], false);
Eval(12159, v is NotEmptyStruct?, false);
Eval(12160, v is NotEmptyStruct?[], false);
- Eval(12161, v is EmptyStructGen<int>, false);
- Eval(12162, v is EmptyStructGen<int>[], false);
- Eval(12163, v is EmptyStructGen<int>?, false);
- Eval(12164, v is EmptyStructGen<int>?[], false);
- Eval(12165, v is NotEmptyStructGen<Guid>, false);
- Eval(12166, v is NotEmptyStructGen<Guid>[], false);
- Eval(12167, v is NotEmptyStructGen<Guid>?, false);
- Eval(12168, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12169, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12170, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12171, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12172, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12161, v is EmptyStructGen<int>, false);
+// Eval(12162, v is EmptyStructGen<int>[], false);
+// Eval(12163, v is EmptyStructGen<int>?, false);
+// Eval(12164, v is EmptyStructGen<int>?[], false);
+// Eval(12165, v is NotEmptyStructGen<Guid>, false);
+// Eval(12166, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12167, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12168, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12169, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12170, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12171, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12172, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12173, v is NestedStruct, false);
Eval(12174, v is NestedStruct[], false);
Eval(12175, v is NestedStruct?, false);
Eval(12176, v is NestedStruct?[], false);
- Eval(12177, v is NestedStructGen<Decimal>, false);
- Eval(12178, v is NestedStructGen<Decimal>[], false);
- Eval(12179, v is NestedStructGen<Decimal>?, false);
- Eval(12180, v is NestedStructGen<Decimal>?[], false);
+// Eval(12177, v is NestedStructGen<Decimal>, false);
+// Eval(12178, v is NestedStructGen<Decimal>[], false);
+// Eval(12179, v is NestedStructGen<Decimal>?, false);
+// Eval(12180, v is NestedStructGen<Decimal>?[], false);
Eval(12181, v is ExplicitFieldOffsetStruct, false);
Eval(12182, v is ExplicitFieldOffsetStruct[], false);
Eval(12183, v is ExplicitFieldOffsetStruct?, false);
@@ -10026,18 +10026,18 @@ internal class Program
Eval(12202, v is ImplementTwoInterface[], false);
Eval(12203, v is ImplementTwoInterface?, false);
Eval(12204, v is ImplementTwoInterface?[], false);
- Eval(12205, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12206, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12207, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12208, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12209, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12210, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12211, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12212, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12213, v is ImplementAllInterface<int>, false);
- Eval(12214, v is ImplementAllInterface<int>[], false);
- Eval(12215, v is ImplementAllInterface<int>?, false);
- Eval(12216, v is ImplementAllInterface<int>?[], false);
+// Eval(12205, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12206, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12207, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12208, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12209, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12210, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12211, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12212, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12213, v is ImplementAllInterface<int>, false);
+// Eval(12214, v is ImplementAllInterface<int>[], false);
+// Eval(12215, v is ImplementAllInterface<int>?, false);
+// Eval(12216, v is ImplementAllInterface<int>?[], false);
Eval(12217, v is IntE, false);
Eval(12218, v is IntE[], false);
Eval(12219, v is IntE?, false);
@@ -10136,38 +10136,38 @@ internal class Program
Eval(12312, v is IEmpty[], false);
Eval(12313, v is INotEmpty, false);
Eval(12314, v is INotEmpty[], false);
- Eval(12315, v is IEmptyGen<int>, false);
- Eval(12316, v is IEmptyGen<int>[], false);
- Eval(12317, v is INotEmptyGen<int>, false);
- Eval(12318, v is INotEmptyGen<int>[], false);
+// Eval(12315, v is IEmptyGen<int>, false);
+// Eval(12316, v is IEmptyGen<int>[], false);
+// Eval(12317, v is INotEmptyGen<int>, false);
+// Eval(12318, v is INotEmptyGen<int>[], false);
Eval(12319, v is SimpleDelegate, false);
Eval(12320, v is SimpleDelegate[], false);
- Eval(12321, v is GenericDelegate<int>, false);
- Eval(12322, v is GenericDelegate<int>[], false);
+// Eval(12321, v is GenericDelegate<int>, false);
+// Eval(12322, v is GenericDelegate<int>[], false);
Eval(12323, v is EmptyClass, false);
Eval(12324, v is EmptyClass[], false);
Eval(12325, v is NotEmptyClass, false);
Eval(12326, v is NotEmptyClass[], false);
- Eval(12327, v is EmptyClassGen<int>, false);
- Eval(12328, v is EmptyClassGen<int>[], false);
- Eval(12329, v is NotEmptyClassGen<Guid>, false);
- Eval(12330, v is NotEmptyClassGen<Guid>[], false);
- Eval(12331, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12332, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12327, v is EmptyClassGen<int>, false);
+// Eval(12328, v is EmptyClassGen<int>[], false);
+// Eval(12329, v is NotEmptyClassGen<Guid>, false);
+// Eval(12330, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12331, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12332, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12333, v is NestedClass, false);
Eval(12334, v is NestedClass[], false);
- Eval(12335, v is NestedClassGen<Decimal>, false);
- Eval(12336, v is NestedClassGen<Decimal>[], false);
+// Eval(12335, v is NestedClassGen<Decimal>, false);
+// Eval(12336, v is NestedClassGen<Decimal>[], false);
Eval(12337, v is ImplementOneInterfaceC, false);
Eval(12338, v is ImplementOneInterfaceC[], false);
Eval(12339, v is ImplementTwoInterfaceC, false);
Eval(12340, v is ImplementTwoInterfaceC[], false);
- Eval(12341, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12342, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12343, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12344, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12345, v is ImplementAllInterfaceC<int>, false);
- Eval(12346, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12341, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12342, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12343, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12344, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12345, v is ImplementAllInterfaceC<int>, false);
+// Eval(12346, v is ImplementAllInterfaceC<int>[], false);
Eval(12347, v is SealedClass, false);
Eval(12348, v is SealedClass[], false);
}
@@ -10181,26 +10181,26 @@ internal class Program
Eval(12354, v is NotEmptyStruct[], false);
Eval(12355, v is NotEmptyStruct?, false);
Eval(12356, v is NotEmptyStruct?[], false);
- Eval(12357, v is EmptyStructGen<int>, false);
- Eval(12358, v is EmptyStructGen<int>[], false);
- Eval(12359, v is EmptyStructGen<int>?, false);
- Eval(12360, v is EmptyStructGen<int>?[], false);
- Eval(12361, v is NotEmptyStructGen<Guid>, false);
- Eval(12362, v is NotEmptyStructGen<Guid>[], false);
- Eval(12363, v is NotEmptyStructGen<Guid>?, false);
- Eval(12364, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12365, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12366, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12367, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12368, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12357, v is EmptyStructGen<int>, false);
+// Eval(12358, v is EmptyStructGen<int>[], false);
+// Eval(12359, v is EmptyStructGen<int>?, false);
+// Eval(12360, v is EmptyStructGen<int>?[], false);
+// Eval(12361, v is NotEmptyStructGen<Guid>, false);
+// Eval(12362, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12363, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12364, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12365, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12366, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12367, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12368, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12369, v is NestedStruct, false);
Eval(12370, v is NestedStruct[], false);
Eval(12371, v is NestedStruct?, false);
Eval(12372, v is NestedStruct?[], false);
- Eval(12373, v is NestedStructGen<Decimal>, false);
- Eval(12374, v is NestedStructGen<Decimal>[], false);
- Eval(12375, v is NestedStructGen<Decimal>?, false);
- Eval(12376, v is NestedStructGen<Decimal>?[], false);
+// Eval(12373, v is NestedStructGen<Decimal>, false);
+// Eval(12374, v is NestedStructGen<Decimal>[], false);
+// Eval(12375, v is NestedStructGen<Decimal>?, false);
+// Eval(12376, v is NestedStructGen<Decimal>?[], false);
Eval(12377, v is ExplicitFieldOffsetStruct, false);
Eval(12378, v is ExplicitFieldOffsetStruct[], false);
Eval(12379, v is ExplicitFieldOffsetStruct?, false);
@@ -10217,18 +10217,18 @@ internal class Program
Eval(12398, v is ImplementTwoInterface[], false);
Eval(12399, v is ImplementTwoInterface?, false);
Eval(12400, v is ImplementTwoInterface?[], false);
- Eval(12401, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12402, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12403, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12404, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12405, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12406, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12407, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12408, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12409, v is ImplementAllInterface<int>, false);
- Eval(12410, v is ImplementAllInterface<int>[], false);
- Eval(12411, v is ImplementAllInterface<int>?, false);
- Eval(12412, v is ImplementAllInterface<int>?[], false);
+// Eval(12401, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12402, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12403, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12404, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12405, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12406, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12407, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12408, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12409, v is ImplementAllInterface<int>, false);
+// Eval(12410, v is ImplementAllInterface<int>[], false);
+// Eval(12411, v is ImplementAllInterface<int>?, false);
+// Eval(12412, v is ImplementAllInterface<int>?[], false);
Eval(12413, v is IntE, false);
Eval(12414, v is IntE[], false);
Eval(12415, v is IntE?, false);
@@ -10327,38 +10327,38 @@ internal class Program
Eval(12508, v is IEmpty[], false);
Eval(12509, v is INotEmpty, false);
Eval(12510, v is INotEmpty[], false);
- Eval(12511, v is IEmptyGen<int>, false);
- Eval(12512, v is IEmptyGen<int>[], false);
- Eval(12513, v is INotEmptyGen<int>, false);
- Eval(12514, v is INotEmptyGen<int>[], false);
+// Eval(12511, v is IEmptyGen<int>, false);
+// Eval(12512, v is IEmptyGen<int>[], false);
+// Eval(12513, v is INotEmptyGen<int>, false);
+// Eval(12514, v is INotEmptyGen<int>[], false);
Eval(12515, v is SimpleDelegate, false);
Eval(12516, v is SimpleDelegate[], false);
- Eval(12517, v is GenericDelegate<int>, false);
- Eval(12518, v is GenericDelegate<int>[], false);
+// Eval(12517, v is GenericDelegate<int>, false);
+// Eval(12518, v is GenericDelegate<int>[], false);
Eval(12519, v is EmptyClass, false);
Eval(12520, v is EmptyClass[], false);
Eval(12521, v is NotEmptyClass, false);
Eval(12522, v is NotEmptyClass[], false);
- Eval(12523, v is EmptyClassGen<int>, false);
- Eval(12524, v is EmptyClassGen<int>[], false);
- Eval(12525, v is NotEmptyClassGen<Guid>, false);
- Eval(12526, v is NotEmptyClassGen<Guid>[], false);
- Eval(12527, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12528, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12523, v is EmptyClassGen<int>, false);
+// Eval(12524, v is EmptyClassGen<int>[], false);
+// Eval(12525, v is NotEmptyClassGen<Guid>, false);
+// Eval(12526, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12527, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12528, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12529, v is NestedClass, false);
Eval(12530, v is NestedClass[], false);
- Eval(12531, v is NestedClassGen<Decimal>, false);
- Eval(12532, v is NestedClassGen<Decimal>[], false);
+// Eval(12531, v is NestedClassGen<Decimal>, false);
+// Eval(12532, v is NestedClassGen<Decimal>[], false);
Eval(12533, v is ImplementOneInterfaceC, false);
Eval(12534, v is ImplementOneInterfaceC[], false);
Eval(12535, v is ImplementTwoInterfaceC, false);
Eval(12536, v is ImplementTwoInterfaceC[], false);
- Eval(12537, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12538, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12539, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12540, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12541, v is ImplementAllInterfaceC<int>, false);
- Eval(12542, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12537, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12538, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12539, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12540, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12541, v is ImplementAllInterfaceC<int>, false);
+// Eval(12542, v is ImplementAllInterfaceC<int>[], false);
Eval(12543, v is SealedClass, false);
Eval(12544, v is SealedClass[], false);
}
@@ -10372,26 +10372,26 @@ internal class Program
Eval(12550, v is NotEmptyStruct[], false);
Eval(12551, v is NotEmptyStruct?, false);
Eval(12552, v is NotEmptyStruct?[], false);
- Eval(12553, v is EmptyStructGen<int>, false);
- Eval(12554, v is EmptyStructGen<int>[], false);
- Eval(12555, v is EmptyStructGen<int>?, false);
- Eval(12556, v is EmptyStructGen<int>?[], false);
- Eval(12557, v is NotEmptyStructGen<Guid>, false);
- Eval(12558, v is NotEmptyStructGen<Guid>[], false);
- Eval(12559, v is NotEmptyStructGen<Guid>?, false);
- Eval(12560, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12561, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12562, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12563, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12564, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12553, v is EmptyStructGen<int>, false);
+// Eval(12554, v is EmptyStructGen<int>[], false);
+// Eval(12555, v is EmptyStructGen<int>?, false);
+// Eval(12556, v is EmptyStructGen<int>?[], false);
+// Eval(12557, v is NotEmptyStructGen<Guid>, false);
+// Eval(12558, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12559, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12560, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12561, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12562, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12563, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12564, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12565, v is NestedStruct, false);
Eval(12566, v is NestedStruct[], false);
Eval(12567, v is NestedStruct?, false);
Eval(12568, v is NestedStruct?[], false);
- Eval(12569, v is NestedStructGen<Decimal>, false);
- Eval(12570, v is NestedStructGen<Decimal>[], false);
- Eval(12571, v is NestedStructGen<Decimal>?, false);
- Eval(12572, v is NestedStructGen<Decimal>?[], false);
+// Eval(12569, v is NestedStructGen<Decimal>, false);
+// Eval(12570, v is NestedStructGen<Decimal>[], false);
+// Eval(12571, v is NestedStructGen<Decimal>?, false);
+// Eval(12572, v is NestedStructGen<Decimal>?[], false);
Eval(12573, v is ExplicitFieldOffsetStruct, false);
Eval(12574, v is ExplicitFieldOffsetStruct[], false);
Eval(12575, v is ExplicitFieldOffsetStruct?, false);
@@ -10408,18 +10408,18 @@ internal class Program
Eval(12594, v is ImplementTwoInterface[], false);
Eval(12595, v is ImplementTwoInterface?, false);
Eval(12596, v is ImplementTwoInterface?[], true);
- Eval(12597, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12598, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12599, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12600, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12601, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12602, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12603, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12604, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12605, v is ImplementAllInterface<int>, false);
- Eval(12606, v is ImplementAllInterface<int>[], false);
- Eval(12607, v is ImplementAllInterface<int>?, false);
- Eval(12608, v is ImplementAllInterface<int>?[], false);
+// Eval(12597, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12598, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12599, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12600, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12601, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12602, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12603, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12604, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12605, v is ImplementAllInterface<int>, false);
+// Eval(12606, v is ImplementAllInterface<int>[], false);
+// Eval(12607, v is ImplementAllInterface<int>?, false);
+// Eval(12608, v is ImplementAllInterface<int>?[], false);
Eval(12609, v is IntE, false);
Eval(12610, v is IntE[], false);
Eval(12611, v is IntE?, false);
@@ -10518,38 +10518,38 @@ internal class Program
Eval(12704, v is IEmpty[], false);
Eval(12705, v is INotEmpty, false);
Eval(12706, v is INotEmpty[], false);
- Eval(12707, v is IEmptyGen<int>, false);
- Eval(12708, v is IEmptyGen<int>[], false);
- Eval(12709, v is INotEmptyGen<int>, false);
- Eval(12710, v is INotEmptyGen<int>[], false);
+// Eval(12707, v is IEmptyGen<int>, false);
+// Eval(12708, v is IEmptyGen<int>[], false);
+// Eval(12709, v is INotEmptyGen<int>, false);
+// Eval(12710, v is INotEmptyGen<int>[], false);
Eval(12711, v is SimpleDelegate, false);
Eval(12712, v is SimpleDelegate[], false);
- Eval(12713, v is GenericDelegate<int>, false);
- Eval(12714, v is GenericDelegate<int>[], false);
+// Eval(12713, v is GenericDelegate<int>, false);
+// Eval(12714, v is GenericDelegate<int>[], false);
Eval(12715, v is EmptyClass, false);
Eval(12716, v is EmptyClass[], false);
Eval(12717, v is NotEmptyClass, false);
Eval(12718, v is NotEmptyClass[], false);
- Eval(12719, v is EmptyClassGen<int>, false);
- Eval(12720, v is EmptyClassGen<int>[], false);
- Eval(12721, v is NotEmptyClassGen<Guid>, false);
- Eval(12722, v is NotEmptyClassGen<Guid>[], false);
- Eval(12723, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12724, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12719, v is EmptyClassGen<int>, false);
+// Eval(12720, v is EmptyClassGen<int>[], false);
+// Eval(12721, v is NotEmptyClassGen<Guid>, false);
+// Eval(12722, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12723, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12724, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12725, v is NestedClass, false);
Eval(12726, v is NestedClass[], false);
- Eval(12727, v is NestedClassGen<Decimal>, false);
- Eval(12728, v is NestedClassGen<Decimal>[], false);
+// Eval(12727, v is NestedClassGen<Decimal>, false);
+// Eval(12728, v is NestedClassGen<Decimal>[], false);
Eval(12729, v is ImplementOneInterfaceC, false);
Eval(12730, v is ImplementOneInterfaceC[], false);
Eval(12731, v is ImplementTwoInterfaceC, false);
Eval(12732, v is ImplementTwoInterfaceC[], false);
- Eval(12733, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12734, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12735, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12736, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12737, v is ImplementAllInterfaceC<int>, false);
- Eval(12738, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12733, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12734, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12735, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12736, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12737, v is ImplementAllInterfaceC<int>, false);
+// Eval(12738, v is ImplementAllInterfaceC<int>[], false);
Eval(12739, v is SealedClass, false);
Eval(12740, v is SealedClass[], false);
}
@@ -10566,26 +10566,26 @@ internal class Program
Eval(12746, v is NotEmptyStruct[], false);
Eval(12747, v is NotEmptyStruct?, false);
Eval(12748, v is NotEmptyStruct?[], false);
- Eval(12749, v is EmptyStructGen<int>, false);
- Eval(12750, v is EmptyStructGen<int>[], false);
- Eval(12751, v is EmptyStructGen<int>?, false);
- Eval(12752, v is EmptyStructGen<int>?[], false);
- Eval(12753, v is NotEmptyStructGen<Guid>, false);
- Eval(12754, v is NotEmptyStructGen<Guid>[], false);
- Eval(12755, v is NotEmptyStructGen<Guid>?, false);
- Eval(12756, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12757, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12758, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12759, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12760, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12749, v is EmptyStructGen<int>, false);
+// Eval(12750, v is EmptyStructGen<int>[], false);
+// Eval(12751, v is EmptyStructGen<int>?, false);
+// Eval(12752, v is EmptyStructGen<int>?[], false);
+// Eval(12753, v is NotEmptyStructGen<Guid>, false);
+// Eval(12754, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12755, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12756, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12757, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12758, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12759, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12760, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12761, v is NestedStruct, false);
Eval(12762, v is NestedStruct[], false);
Eval(12763, v is NestedStruct?, false);
Eval(12764, v is NestedStruct?[], false);
- Eval(12765, v is NestedStructGen<Decimal>, false);
- Eval(12766, v is NestedStructGen<Decimal>[], false);
- Eval(12767, v is NestedStructGen<Decimal>?, false);
- Eval(12768, v is NestedStructGen<Decimal>?[], false);
+// Eval(12765, v is NestedStructGen<Decimal>, false);
+// Eval(12766, v is NestedStructGen<Decimal>[], false);
+// Eval(12767, v is NestedStructGen<Decimal>?, false);
+// Eval(12768, v is NestedStructGen<Decimal>?[], false);
Eval(12769, v is ExplicitFieldOffsetStruct, false);
Eval(12770, v is ExplicitFieldOffsetStruct[], false);
Eval(12771, v is ExplicitFieldOffsetStruct?, false);
@@ -10602,18 +10602,18 @@ internal class Program
Eval(12790, v is ImplementTwoInterface[], false);
Eval(12791, v is ImplementTwoInterface?, false);
Eval(12792, v is ImplementTwoInterface?[], false);
- Eval(12793, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(12794, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12795, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(12796, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12797, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12798, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12799, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12800, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12801, v is ImplementAllInterface<int>, false);
- Eval(12802, v is ImplementAllInterface<int>[], false);
- Eval(12803, v is ImplementAllInterface<int>?, false);
- Eval(12804, v is ImplementAllInterface<int>?[], false);
+// Eval(12793, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(12794, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12795, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(12796, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12797, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12798, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12799, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12800, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12801, v is ImplementAllInterface<int>, false);
+// Eval(12802, v is ImplementAllInterface<int>[], false);
+// Eval(12803, v is ImplementAllInterface<int>?, false);
+// Eval(12804, v is ImplementAllInterface<int>?[], false);
Eval(12805, v is IntE, false);
Eval(12806, v is IntE[], false);
Eval(12807, v is IntE?, false);
@@ -10712,38 +10712,38 @@ internal class Program
Eval(12900, v is IEmpty[], false);
Eval(12901, v is INotEmpty, false);
Eval(12902, v is INotEmpty[], false);
- Eval(12903, v is IEmptyGen<int>, false);
- Eval(12904, v is IEmptyGen<int>[], false);
- Eval(12905, v is INotEmptyGen<int>, false);
- Eval(12906, v is INotEmptyGen<int>[], false);
+// Eval(12903, v is IEmptyGen<int>, false);
+// Eval(12904, v is IEmptyGen<int>[], false);
+// Eval(12905, v is INotEmptyGen<int>, false);
+// Eval(12906, v is INotEmptyGen<int>[], false);
Eval(12907, v is SimpleDelegate, false);
Eval(12908, v is SimpleDelegate[], false);
- Eval(12909, v is GenericDelegate<int>, false);
- Eval(12910, v is GenericDelegate<int>[], false);
+// Eval(12909, v is GenericDelegate<int>, false);
+// Eval(12910, v is GenericDelegate<int>[], false);
Eval(12911, v is EmptyClass, false);
Eval(12912, v is EmptyClass[], false);
Eval(12913, v is NotEmptyClass, false);
Eval(12914, v is NotEmptyClass[], false);
- Eval(12915, v is EmptyClassGen<int>, false);
- Eval(12916, v is EmptyClassGen<int>[], false);
- Eval(12917, v is NotEmptyClassGen<Guid>, false);
- Eval(12918, v is NotEmptyClassGen<Guid>[], false);
- Eval(12919, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12920, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12915, v is EmptyClassGen<int>, false);
+// Eval(12916, v is EmptyClassGen<int>[], false);
+// Eval(12917, v is NotEmptyClassGen<Guid>, false);
+// Eval(12918, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12919, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12920, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12921, v is NestedClass, false);
Eval(12922, v is NestedClass[], false);
- Eval(12923, v is NestedClassGen<Decimal>, false);
- Eval(12924, v is NestedClassGen<Decimal>[], false);
+// Eval(12923, v is NestedClassGen<Decimal>, false);
+// Eval(12924, v is NestedClassGen<Decimal>[], false);
Eval(12925, v is ImplementOneInterfaceC, false);
Eval(12926, v is ImplementOneInterfaceC[], false);
Eval(12927, v is ImplementTwoInterfaceC, false);
Eval(12928, v is ImplementTwoInterfaceC[], false);
- Eval(12929, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12930, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12931, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12932, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12933, v is ImplementAllInterfaceC<int>, false);
- Eval(12934, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12929, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12930, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12931, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12932, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12933, v is ImplementAllInterfaceC<int>, false);
+// Eval(12934, v is ImplementAllInterfaceC<int>[], false);
Eval(12935, v is SealedClass, false);
Eval(12936, v is SealedClass[], false);
}
@@ -10757,26 +10757,26 @@ internal class Program
Eval(12942, v is NotEmptyStruct[], false);
Eval(12943, v is NotEmptyStruct?, false);
Eval(12944, v is NotEmptyStruct?[], false);
- Eval(12945, v is EmptyStructGen<int>, false);
- Eval(12946, v is EmptyStructGen<int>[], false);
- Eval(12947, v is EmptyStructGen<int>?, false);
- Eval(12948, v is EmptyStructGen<int>?[], false);
- Eval(12949, v is NotEmptyStructGen<Guid>, false);
- Eval(12950, v is NotEmptyStructGen<Guid>[], false);
- Eval(12951, v is NotEmptyStructGen<Guid>?, false);
- Eval(12952, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12953, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12954, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12955, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12956, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12945, v is EmptyStructGen<int>, false);
+// Eval(12946, v is EmptyStructGen<int>[], false);
+// Eval(12947, v is EmptyStructGen<int>?, false);
+// Eval(12948, v is EmptyStructGen<int>?[], false);
+// Eval(12949, v is NotEmptyStructGen<Guid>, false);
+// Eval(12950, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12951, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12952, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12953, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12954, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12955, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12956, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12957, v is NestedStruct, false);
Eval(12958, v is NestedStruct[], false);
Eval(12959, v is NestedStruct?, false);
Eval(12960, v is NestedStruct?[], false);
- Eval(12961, v is NestedStructGen<Decimal>, false);
- Eval(12962, v is NestedStructGen<Decimal>[], false);
- Eval(12963, v is NestedStructGen<Decimal>?, false);
- Eval(12964, v is NestedStructGen<Decimal>?[], false);
+// Eval(12961, v is NestedStructGen<Decimal>, false);
+// Eval(12962, v is NestedStructGen<Decimal>[], false);
+// Eval(12963, v is NestedStructGen<Decimal>?, false);
+// Eval(12964, v is NestedStructGen<Decimal>?[], false);
Eval(12965, v is ExplicitFieldOffsetStruct, false);
Eval(12966, v is ExplicitFieldOffsetStruct[], false);
Eval(12967, v is ExplicitFieldOffsetStruct?, false);
@@ -10793,18 +10793,18 @@ internal class Program
Eval(12986, v is ImplementTwoInterface[], false);
Eval(12987, v is ImplementTwoInterface?, false);
Eval(12988, v is ImplementTwoInterface?[], false);
- Eval(12989, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(12990, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12991, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(12992, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12993, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12994, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12995, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12996, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12997, v is ImplementAllInterface<int>, false);
- Eval(12998, v is ImplementAllInterface<int>[], false);
- Eval(12999, v is ImplementAllInterface<int>?, false);
- Eval(13000, v is ImplementAllInterface<int>?[], false);
+// Eval(12989, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(12990, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12991, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(12992, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12993, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12994, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12995, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12996, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12997, v is ImplementAllInterface<int>, false);
+// Eval(12998, v is ImplementAllInterface<int>[], false);
+// Eval(12999, v is ImplementAllInterface<int>?, false);
+// Eval(13000, v is ImplementAllInterface<int>?[], false);
Eval(13001, v is IntE, false);
Eval(13002, v is IntE[], false);
Eval(13003, v is IntE?, false);
@@ -10903,38 +10903,38 @@ internal class Program
Eval(13096, v is IEmpty[], false);
Eval(13097, v is INotEmpty, false);
Eval(13098, v is INotEmpty[], false);
- Eval(13099, v is IEmptyGen<int>, false);
- Eval(13100, v is IEmptyGen<int>[], false);
- Eval(13101, v is INotEmptyGen<int>, false);
- Eval(13102, v is INotEmptyGen<int>[], false);
+// Eval(13099, v is IEmptyGen<int>, false);
+// Eval(13100, v is IEmptyGen<int>[], false);
+// Eval(13101, v is INotEmptyGen<int>, false);
+// Eval(13102, v is INotEmptyGen<int>[], false);
Eval(13103, v is SimpleDelegate, false);
Eval(13104, v is SimpleDelegate[], false);
- Eval(13105, v is GenericDelegate<int>, false);
- Eval(13106, v is GenericDelegate<int>[], false);
+// Eval(13105, v is GenericDelegate<int>, false);
+// Eval(13106, v is GenericDelegate<int>[], false);
Eval(13107, v is EmptyClass, false);
Eval(13108, v is EmptyClass[], false);
Eval(13109, v is NotEmptyClass, false);
Eval(13110, v is NotEmptyClass[], false);
- Eval(13111, v is EmptyClassGen<int>, false);
- Eval(13112, v is EmptyClassGen<int>[], false);
- Eval(13113, v is NotEmptyClassGen<Guid>, false);
- Eval(13114, v is NotEmptyClassGen<Guid>[], false);
- Eval(13115, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13116, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13111, v is EmptyClassGen<int>, false);
+// Eval(13112, v is EmptyClassGen<int>[], false);
+// Eval(13113, v is NotEmptyClassGen<Guid>, false);
+// Eval(13114, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13115, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13116, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13117, v is NestedClass, false);
Eval(13118, v is NestedClass[], false);
- Eval(13119, v is NestedClassGen<Decimal>, false);
- Eval(13120, v is NestedClassGen<Decimal>[], false);
+// Eval(13119, v is NestedClassGen<Decimal>, false);
+// Eval(13120, v is NestedClassGen<Decimal>[], false);
Eval(13121, v is ImplementOneInterfaceC, false);
Eval(13122, v is ImplementOneInterfaceC[], false);
Eval(13123, v is ImplementTwoInterfaceC, false);
Eval(13124, v is ImplementTwoInterfaceC[], false);
- Eval(13125, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13126, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13127, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13128, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13129, v is ImplementAllInterfaceC<int>, false);
- Eval(13130, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13125, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13126, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13127, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13128, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13129, v is ImplementAllInterfaceC<int>, false);
+// Eval(13130, v is ImplementAllInterfaceC<int>[], false);
Eval(13131, v is SealedClass, false);
Eval(13132, v is SealedClass[], false);
}
@@ -10948,26 +10948,26 @@ internal class Program
Eval(13138, v is NotEmptyStruct[], false);
Eval(13139, v is NotEmptyStruct?, false);
Eval(13140, v is NotEmptyStruct?[], false);
- Eval(13141, v is EmptyStructGen<int>, false);
- Eval(13142, v is EmptyStructGen<int>[], false);
- Eval(13143, v is EmptyStructGen<int>?, false);
- Eval(13144, v is EmptyStructGen<int>?[], false);
- Eval(13145, v is NotEmptyStructGen<Guid>, false);
- Eval(13146, v is NotEmptyStructGen<Guid>[], false);
- Eval(13147, v is NotEmptyStructGen<Guid>?, false);
- Eval(13148, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13149, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13150, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13151, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13152, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13141, v is EmptyStructGen<int>, false);
+// Eval(13142, v is EmptyStructGen<int>[], false);
+// Eval(13143, v is EmptyStructGen<int>?, false);
+// Eval(13144, v is EmptyStructGen<int>?[], false);
+// Eval(13145, v is NotEmptyStructGen<Guid>, false);
+// Eval(13146, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13147, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13148, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13149, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13150, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13151, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13152, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13153, v is NestedStruct, false);
Eval(13154, v is NestedStruct[], false);
Eval(13155, v is NestedStruct?, false);
Eval(13156, v is NestedStruct?[], false);
- Eval(13157, v is NestedStructGen<Decimal>, false);
- Eval(13158, v is NestedStructGen<Decimal>[], false);
- Eval(13159, v is NestedStructGen<Decimal>?, false);
- Eval(13160, v is NestedStructGen<Decimal>?[], false);
+// Eval(13157, v is NestedStructGen<Decimal>, false);
+// Eval(13158, v is NestedStructGen<Decimal>[], false);
+// Eval(13159, v is NestedStructGen<Decimal>?, false);
+// Eval(13160, v is NestedStructGen<Decimal>?[], false);
Eval(13161, v is ExplicitFieldOffsetStruct, false);
Eval(13162, v is ExplicitFieldOffsetStruct[], false);
Eval(13163, v is ExplicitFieldOffsetStruct?, false);
@@ -10984,18 +10984,18 @@ internal class Program
Eval(13182, v is ImplementTwoInterface[], false);
Eval(13183, v is ImplementTwoInterface?, false);
Eval(13184, v is ImplementTwoInterface?[], false);
- Eval(13185, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13186, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13187, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13188, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13189, v is ImplementTwoInterfaceGen<int>, false);
- Eval(13190, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13191, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(13192, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13193, v is ImplementAllInterface<int>, false);
- Eval(13194, v is ImplementAllInterface<int>[], false);
- Eval(13195, v is ImplementAllInterface<int>?, false);
- Eval(13196, v is ImplementAllInterface<int>?[], false);
+// Eval(13185, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13186, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13187, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13188, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13189, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(13190, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13191, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13192, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13193, v is ImplementAllInterface<int>, false);
+// Eval(13194, v is ImplementAllInterface<int>[], false);
+// Eval(13195, v is ImplementAllInterface<int>?, false);
+// Eval(13196, v is ImplementAllInterface<int>?[], false);
Eval(13197, v is IntE, false);
Eval(13198, v is IntE[], false);
Eval(13199, v is IntE?, false);
@@ -11094,38 +11094,38 @@ internal class Program
Eval(13292, v is IEmpty[], false);
Eval(13293, v is INotEmpty, false);
Eval(13294, v is INotEmpty[], false);
- Eval(13295, v is IEmptyGen<int>, false);
- Eval(13296, v is IEmptyGen<int>[], false);
- Eval(13297, v is INotEmptyGen<int>, false);
- Eval(13298, v is INotEmptyGen<int>[], false);
+// Eval(13295, v is IEmptyGen<int>, false);
+// Eval(13296, v is IEmptyGen<int>[], false);
+// Eval(13297, v is INotEmptyGen<int>, false);
+// Eval(13298, v is INotEmptyGen<int>[], false);
Eval(13299, v is SimpleDelegate, false);
Eval(13300, v is SimpleDelegate[], false);
- Eval(13301, v is GenericDelegate<int>, false);
- Eval(13302, v is GenericDelegate<int>[], false);
+// Eval(13301, v is GenericDelegate<int>, false);
+// Eval(13302, v is GenericDelegate<int>[], false);
Eval(13303, v is EmptyClass, false);
Eval(13304, v is EmptyClass[], false);
Eval(13305, v is NotEmptyClass, false);
Eval(13306, v is NotEmptyClass[], false);
- Eval(13307, v is EmptyClassGen<int>, false);
- Eval(13308, v is EmptyClassGen<int>[], false);
- Eval(13309, v is NotEmptyClassGen<Guid>, false);
- Eval(13310, v is NotEmptyClassGen<Guid>[], false);
- Eval(13311, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13312, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13307, v is EmptyClassGen<int>, false);
+// Eval(13308, v is EmptyClassGen<int>[], false);
+// Eval(13309, v is NotEmptyClassGen<Guid>, false);
+// Eval(13310, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13311, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13312, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13313, v is NestedClass, false);
Eval(13314, v is NestedClass[], false);
- Eval(13315, v is NestedClassGen<Decimal>, false);
- Eval(13316, v is NestedClassGen<Decimal>[], false);
+// Eval(13315, v is NestedClassGen<Decimal>, false);
+// Eval(13316, v is NestedClassGen<Decimal>[], false);
Eval(13317, v is ImplementOneInterfaceC, false);
Eval(13318, v is ImplementOneInterfaceC[], false);
Eval(13319, v is ImplementTwoInterfaceC, false);
Eval(13320, v is ImplementTwoInterfaceC[], false);
- Eval(13321, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13322, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13323, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13324, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13325, v is ImplementAllInterfaceC<int>, false);
- Eval(13326, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13321, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13322, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13323, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13324, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13325, v is ImplementAllInterfaceC<int>, false);
+// Eval(13326, v is ImplementAllInterfaceC<int>[], false);
Eval(13327, v is SealedClass, false);
Eval(13328, v is SealedClass[], false);
}
@@ -11139,26 +11139,26 @@ internal class Program
Eval(13334, v is NotEmptyStruct[], false);
Eval(13335, v is NotEmptyStruct?, false);
Eval(13336, v is NotEmptyStruct?[], false);
- Eval(13337, v is EmptyStructGen<int>, false);
- Eval(13338, v is EmptyStructGen<int>[], false);
- Eval(13339, v is EmptyStructGen<int>?, false);
- Eval(13340, v is EmptyStructGen<int>?[], false);
- Eval(13341, v is NotEmptyStructGen<Guid>, false);
- Eval(13342, v is NotEmptyStructGen<Guid>[], false);
- Eval(13343, v is NotEmptyStructGen<Guid>?, false);
- Eval(13344, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13345, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13346, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13347, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13348, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13337, v is EmptyStructGen<int>, false);
+// Eval(13338, v is EmptyStructGen<int>[], false);
+// Eval(13339, v is EmptyStructGen<int>?, false);
+// Eval(13340, v is EmptyStructGen<int>?[], false);
+// Eval(13341, v is NotEmptyStructGen<Guid>, false);
+// Eval(13342, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13343, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13344, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13345, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13346, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13347, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13348, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13349, v is NestedStruct, false);
Eval(13350, v is NestedStruct[], false);
Eval(13351, v is NestedStruct?, false);
Eval(13352, v is NestedStruct?[], false);
- Eval(13353, v is NestedStructGen<Decimal>, false);
- Eval(13354, v is NestedStructGen<Decimal>[], false);
- Eval(13355, v is NestedStructGen<Decimal>?, false);
- Eval(13356, v is NestedStructGen<Decimal>?[], false);
+// Eval(13353, v is NestedStructGen<Decimal>, false);
+// Eval(13354, v is NestedStructGen<Decimal>[], false);
+// Eval(13355, v is NestedStructGen<Decimal>?, false);
+// Eval(13356, v is NestedStructGen<Decimal>?[], false);
Eval(13357, v is ExplicitFieldOffsetStruct, false);
Eval(13358, v is ExplicitFieldOffsetStruct[], false);
Eval(13359, v is ExplicitFieldOffsetStruct?, false);
@@ -11175,18 +11175,18 @@ internal class Program
Eval(13378, v is ImplementTwoInterface[], false);
Eval(13379, v is ImplementTwoInterface?, false);
Eval(13380, v is ImplementTwoInterface?[], false);
- Eval(13381, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13382, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13383, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13384, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13385, v is ImplementTwoInterfaceGen<int>, false);
- Eval(13386, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13387, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(13388, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13389, v is ImplementAllInterface<int>, false);
- Eval(13390, v is ImplementAllInterface<int>[], false);
- Eval(13391, v is ImplementAllInterface<int>?, false);
- Eval(13392, v is ImplementAllInterface<int>?[], false);
+// Eval(13381, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13382, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13383, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13384, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13385, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(13386, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13387, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13388, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13389, v is ImplementAllInterface<int>, false);
+// Eval(13390, v is ImplementAllInterface<int>[], false);
+// Eval(13391, v is ImplementAllInterface<int>?, false);
+// Eval(13392, v is ImplementAllInterface<int>?[], false);
Eval(13393, v is IntE, false);
Eval(13394, v is IntE[], false);
Eval(13395, v is IntE?, false);
@@ -11285,38 +11285,38 @@ internal class Program
Eval(13488, v is IEmpty[], false);
Eval(13489, v is INotEmpty, false);
Eval(13490, v is INotEmpty[], false);
- Eval(13491, v is IEmptyGen<int>, false);
- Eval(13492, v is IEmptyGen<int>[], false);
- Eval(13493, v is INotEmptyGen<int>, false);
- Eval(13494, v is INotEmptyGen<int>[], false);
+// Eval(13491, v is IEmptyGen<int>, false);
+// Eval(13492, v is IEmptyGen<int>[], false);
+// Eval(13493, v is INotEmptyGen<int>, false);
+// Eval(13494, v is INotEmptyGen<int>[], false);
Eval(13495, v is SimpleDelegate, false);
Eval(13496, v is SimpleDelegate[], false);
- Eval(13497, v is GenericDelegate<int>, false);
- Eval(13498, v is GenericDelegate<int>[], false);
+// Eval(13497, v is GenericDelegate<int>, false);
+// Eval(13498, v is GenericDelegate<int>[], false);
Eval(13499, v is EmptyClass, false);
Eval(13500, v is EmptyClass[], false);
Eval(13501, v is NotEmptyClass, false);
Eval(13502, v is NotEmptyClass[], false);
- Eval(13503, v is EmptyClassGen<int>, false);
- Eval(13504, v is EmptyClassGen<int>[], false);
- Eval(13505, v is NotEmptyClassGen<Guid>, false);
- Eval(13506, v is NotEmptyClassGen<Guid>[], false);
- Eval(13507, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13508, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13503, v is EmptyClassGen<int>, false);
+// Eval(13504, v is EmptyClassGen<int>[], false);
+// Eval(13505, v is NotEmptyClassGen<Guid>, false);
+// Eval(13506, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13507, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13508, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13509, v is NestedClass, false);
Eval(13510, v is NestedClass[], false);
- Eval(13511, v is NestedClassGen<Decimal>, false);
- Eval(13512, v is NestedClassGen<Decimal>[], false);
+// Eval(13511, v is NestedClassGen<Decimal>, false);
+// Eval(13512, v is NestedClassGen<Decimal>[], false);
Eval(13513, v is ImplementOneInterfaceC, false);
Eval(13514, v is ImplementOneInterfaceC[], false);
Eval(13515, v is ImplementTwoInterfaceC, false);
Eval(13516, v is ImplementTwoInterfaceC[], false);
- Eval(13517, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13518, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13519, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13520, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13521, v is ImplementAllInterfaceC<int>, false);
- Eval(13522, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13517, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13518, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13519, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13520, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13521, v is ImplementAllInterfaceC<int>, false);
+// Eval(13522, v is ImplementAllInterfaceC<int>[], false);
Eval(13523, v is SealedClass, false);
Eval(13524, v is SealedClass[], false);
}
@@ -11330,26 +11330,26 @@ internal class Program
Eval(13530, v is NotEmptyStruct[], false);
Eval(13531, v is NotEmptyStruct?, false);
Eval(13532, v is NotEmptyStruct?[], false);
- Eval(13533, v is EmptyStructGen<int>, false);
- Eval(13534, v is EmptyStructGen<int>[], false);
- Eval(13535, v is EmptyStructGen<int>?, false);
- Eval(13536, v is EmptyStructGen<int>?[], false);
- Eval(13537, v is NotEmptyStructGen<Guid>, false);
- Eval(13538, v is NotEmptyStructGen<Guid>[], false);
- Eval(13539, v is NotEmptyStructGen<Guid>?, false);
- Eval(13540, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13541, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13542, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13543, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13544, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13533, v is EmptyStructGen<int>, false);
+// Eval(13534, v is EmptyStructGen<int>[], false);
+// Eval(13535, v is EmptyStructGen<int>?, false);
+// Eval(13536, v is EmptyStructGen<int>?[], false);
+// Eval(13537, v is NotEmptyStructGen<Guid>, false);
+// Eval(13538, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13539, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13540, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13541, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13542, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13543, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13544, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13545, v is NestedStruct, false);
Eval(13546, v is NestedStruct[], false);
Eval(13547, v is NestedStruct?, false);
Eval(13548, v is NestedStruct?[], false);
- Eval(13549, v is NestedStructGen<Decimal>, false);
- Eval(13550, v is NestedStructGen<Decimal>[], false);
- Eval(13551, v is NestedStructGen<Decimal>?, false);
- Eval(13552, v is NestedStructGen<Decimal>?[], false);
+// Eval(13549, v is NestedStructGen<Decimal>, false);
+// Eval(13550, v is NestedStructGen<Decimal>[], false);
+// Eval(13551, v is NestedStructGen<Decimal>?, false);
+// Eval(13552, v is NestedStructGen<Decimal>?[], false);
Eval(13553, v is ExplicitFieldOffsetStruct, false);
Eval(13554, v is ExplicitFieldOffsetStruct[], false);
Eval(13555, v is ExplicitFieldOffsetStruct?, false);
@@ -11366,18 +11366,18 @@ internal class Program
Eval(13574, v is ImplementTwoInterface[], false);
Eval(13575, v is ImplementTwoInterface?, false);
Eval(13576, v is ImplementTwoInterface?[], false);
- Eval(13577, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13578, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13579, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13580, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], true);
- Eval(13581, v is ImplementTwoInterfaceGen<int>, false);
- Eval(13582, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13583, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(13584, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13585, v is ImplementAllInterface<int>, false);
- Eval(13586, v is ImplementAllInterface<int>[], false);
- Eval(13587, v is ImplementAllInterface<int>?, false);
- Eval(13588, v is ImplementAllInterface<int>?[], false);
+// Eval(13577, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13578, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13579, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13580, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], true);
+// Eval(13581, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(13582, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13583, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13584, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13585, v is ImplementAllInterface<int>, false);
+// Eval(13586, v is ImplementAllInterface<int>[], false);
+// Eval(13587, v is ImplementAllInterface<int>?, false);
+// Eval(13588, v is ImplementAllInterface<int>?[], false);
Eval(13589, v is IntE, false);
Eval(13590, v is IntE[], false);
Eval(13591, v is IntE?, false);
@@ -11476,38 +11476,38 @@ internal class Program
Eval(13684, v is IEmpty[], false);
Eval(13685, v is INotEmpty, false);
Eval(13686, v is INotEmpty[], false);
- Eval(13687, v is IEmptyGen<int>, false);
- Eval(13688, v is IEmptyGen<int>[], false);
- Eval(13689, v is INotEmptyGen<int>, false);
- Eval(13690, v is INotEmptyGen<int>[], false);
+// Eval(13687, v is IEmptyGen<int>, false);
+// Eval(13688, v is IEmptyGen<int>[], false);
+// Eval(13689, v is INotEmptyGen<int>, false);
+// Eval(13690, v is INotEmptyGen<int>[], false);
Eval(13691, v is SimpleDelegate, false);
Eval(13692, v is SimpleDelegate[], false);
- Eval(13693, v is GenericDelegate<int>, false);
- Eval(13694, v is GenericDelegate<int>[], false);
+// Eval(13693, v is GenericDelegate<int>, false);
+// Eval(13694, v is GenericDelegate<int>[], false);
Eval(13695, v is EmptyClass, false);
Eval(13696, v is EmptyClass[], false);
Eval(13697, v is NotEmptyClass, false);
Eval(13698, v is NotEmptyClass[], false);
- Eval(13699, v is EmptyClassGen<int>, false);
- Eval(13700, v is EmptyClassGen<int>[], false);
- Eval(13701, v is NotEmptyClassGen<Guid>, false);
- Eval(13702, v is NotEmptyClassGen<Guid>[], false);
- Eval(13703, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13704, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13699, v is EmptyClassGen<int>, false);
+// Eval(13700, v is EmptyClassGen<int>[], false);
+// Eval(13701, v is NotEmptyClassGen<Guid>, false);
+// Eval(13702, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13703, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13704, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13705, v is NestedClass, false);
Eval(13706, v is NestedClass[], false);
- Eval(13707, v is NestedClassGen<Decimal>, false);
- Eval(13708, v is NestedClassGen<Decimal>[], false);
+// Eval(13707, v is NestedClassGen<Decimal>, false);
+// Eval(13708, v is NestedClassGen<Decimal>[], false);
Eval(13709, v is ImplementOneInterfaceC, false);
Eval(13710, v is ImplementOneInterfaceC[], false);
Eval(13711, v is ImplementTwoInterfaceC, false);
Eval(13712, v is ImplementTwoInterfaceC[], false);
- Eval(13713, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13714, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13715, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13716, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13717, v is ImplementAllInterfaceC<int>, false);
- Eval(13718, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13713, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13714, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13715, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13716, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13717, v is ImplementAllInterfaceC<int>, false);
+// Eval(13718, v is ImplementAllInterfaceC<int>[], false);
Eval(13719, v is SealedClass, false);
Eval(13720, v is SealedClass[], false);
}
@@ -11524,26 +11524,26 @@ internal class Program
Eval(13726, v is NotEmptyStruct[], false);
Eval(13727, v is NotEmptyStruct?, false);
Eval(13728, v is NotEmptyStruct?[], false);
- Eval(13729, v is EmptyStructGen<int>, false);
- Eval(13730, v is EmptyStructGen<int>[], false);
- Eval(13731, v is EmptyStructGen<int>?, false);
- Eval(13732, v is EmptyStructGen<int>?[], false);
- Eval(13733, v is NotEmptyStructGen<Guid>, false);
- Eval(13734, v is NotEmptyStructGen<Guid>[], false);
- Eval(13735, v is NotEmptyStructGen<Guid>?, false);
- Eval(13736, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13737, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13738, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13739, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13740, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13729, v is EmptyStructGen<int>, false);
+// Eval(13730, v is EmptyStructGen<int>[], false);
+// Eval(13731, v is EmptyStructGen<int>?, false);
+// Eval(13732, v is EmptyStructGen<int>?[], false);
+// Eval(13733, v is NotEmptyStructGen<Guid>, false);
+// Eval(13734, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13735, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13736, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13737, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13738, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13739, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13740, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13741, v is NestedStruct, false);
Eval(13742, v is NestedStruct[], false);
Eval(13743, v is NestedStruct?, false);
Eval(13744, v is NestedStruct?[], false);
- Eval(13745, v is NestedStructGen<Decimal>, false);
- Eval(13746, v is NestedStructGen<Decimal>[], false);
- Eval(13747, v is NestedStructGen<Decimal>?, false);
- Eval(13748, v is NestedStructGen<Decimal>?[], false);
+// Eval(13745, v is NestedStructGen<Decimal>, false);
+// Eval(13746, v is NestedStructGen<Decimal>[], false);
+// Eval(13747, v is NestedStructGen<Decimal>?, false);
+// Eval(13748, v is NestedStructGen<Decimal>?[], false);
Eval(13749, v is ExplicitFieldOffsetStruct, false);
Eval(13750, v is ExplicitFieldOffsetStruct[], false);
Eval(13751, v is ExplicitFieldOffsetStruct?, false);
@@ -11560,18 +11560,18 @@ internal class Program
Eval(13770, v is ImplementTwoInterface[], false);
Eval(13771, v is ImplementTwoInterface?, false);
Eval(13772, v is ImplementTwoInterface?[], false);
- Eval(13773, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13774, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13775, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13776, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13777, v is ImplementTwoInterfaceGen<int>, true);
- Eval(13778, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13779, v is ImplementTwoInterfaceGen<int>?, true);
- Eval(13780, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13781, v is ImplementAllInterface<int>, false);
- Eval(13782, v is ImplementAllInterface<int>[], false);
- Eval(13783, v is ImplementAllInterface<int>?, false);
- Eval(13784, v is ImplementAllInterface<int>?[], false);
+// Eval(13773, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13774, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13775, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13776, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13777, v is ImplementTwoInterfaceGen<int>, true);
+// Eval(13778, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13779, v is ImplementTwoInterfaceGen<int>?, true);
+// Eval(13780, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13781, v is ImplementAllInterface<int>, false);
+// Eval(13782, v is ImplementAllInterface<int>[], false);
+// Eval(13783, v is ImplementAllInterface<int>?, false);
+// Eval(13784, v is ImplementAllInterface<int>?[], false);
Eval(13785, v is IntE, false);
Eval(13786, v is IntE[], false);
Eval(13787, v is IntE?, false);
@@ -11670,38 +11670,38 @@ internal class Program
Eval(13880, v is IEmpty[], false);
Eval(13881, v is INotEmpty, false);
Eval(13882, v is INotEmpty[], false);
- Eval(13883, v is IEmptyGen<int>, true);
- Eval(13884, v is IEmptyGen<int>[], false);
- Eval(13885, v is INotEmptyGen<int>, true);
- Eval(13886, v is INotEmptyGen<int>[], false);
+// Eval(13883, v is IEmptyGen<int>, true);
+// Eval(13884, v is IEmptyGen<int>[], false);
+// Eval(13885, v is INotEmptyGen<int>, true);
+// Eval(13886, v is INotEmptyGen<int>[], false);
Eval(13887, v is SimpleDelegate, false);
Eval(13888, v is SimpleDelegate[], false);
- Eval(13889, v is GenericDelegate<int>, false);
- Eval(13890, v is GenericDelegate<int>[], false);
+// Eval(13889, v is GenericDelegate<int>, false);
+// Eval(13890, v is GenericDelegate<int>[], false);
Eval(13891, v is EmptyClass, false);
Eval(13892, v is EmptyClass[], false);
Eval(13893, v is NotEmptyClass, false);
Eval(13894, v is NotEmptyClass[], false);
- Eval(13895, v is EmptyClassGen<int>, false);
- Eval(13896, v is EmptyClassGen<int>[], false);
- Eval(13897, v is NotEmptyClassGen<Guid>, false);
- Eval(13898, v is NotEmptyClassGen<Guid>[], false);
- Eval(13899, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13900, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13895, v is EmptyClassGen<int>, false);
+// Eval(13896, v is EmptyClassGen<int>[], false);
+// Eval(13897, v is NotEmptyClassGen<Guid>, false);
+// Eval(13898, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13899, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13900, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13901, v is NestedClass, false);
Eval(13902, v is NestedClass[], false);
- Eval(13903, v is NestedClassGen<Decimal>, false);
- Eval(13904, v is NestedClassGen<Decimal>[], false);
+// Eval(13903, v is NestedClassGen<Decimal>, false);
+// Eval(13904, v is NestedClassGen<Decimal>[], false);
Eval(13905, v is ImplementOneInterfaceC, false);
Eval(13906, v is ImplementOneInterfaceC[], false);
Eval(13907, v is ImplementTwoInterfaceC, false);
Eval(13908, v is ImplementTwoInterfaceC[], false);
- Eval(13909, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13910, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13911, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13912, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13913, v is ImplementAllInterfaceC<int>, false);
- Eval(13914, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13909, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13910, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13911, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13912, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13913, v is ImplementAllInterfaceC<int>, false);
+// Eval(13914, v is ImplementAllInterfaceC<int>[], false);
Eval(13915, v is SealedClass, false);
Eval(13916, v is SealedClass[], false);
}
@@ -11715,26 +11715,26 @@ internal class Program
Eval(13922, v is NotEmptyStruct[], false);
Eval(13923, v is NotEmptyStruct?, false);
Eval(13924, v is NotEmptyStruct?[], false);
- Eval(13925, v is EmptyStructGen<int>, false);
- Eval(13926, v is EmptyStructGen<int>[], false);
- Eval(13927, v is EmptyStructGen<int>?, false);
- Eval(13928, v is EmptyStructGen<int>?[], false);
- Eval(13929, v is NotEmptyStructGen<Guid>, false);
- Eval(13930, v is NotEmptyStructGen<Guid>[], false);
- Eval(13931, v is NotEmptyStructGen<Guid>?, false);
- Eval(13932, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13933, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13934, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13935, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13936, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13925, v is EmptyStructGen<int>, false);
+// Eval(13926, v is EmptyStructGen<int>[], false);
+// Eval(13927, v is EmptyStructGen<int>?, false);
+// Eval(13928, v is EmptyStructGen<int>?[], false);
+// Eval(13929, v is NotEmptyStructGen<Guid>, false);
+// Eval(13930, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13931, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13932, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13933, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13934, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13935, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13936, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13937, v is NestedStruct, false);
Eval(13938, v is NestedStruct[], false);
Eval(13939, v is NestedStruct?, false);
Eval(13940, v is NestedStruct?[], false);
- Eval(13941, v is NestedStructGen<Decimal>, false);
- Eval(13942, v is NestedStructGen<Decimal>[], false);
- Eval(13943, v is NestedStructGen<Decimal>?, false);
- Eval(13944, v is NestedStructGen<Decimal>?[], false);
+// Eval(13941, v is NestedStructGen<Decimal>, false);
+// Eval(13942, v is NestedStructGen<Decimal>[], false);
+// Eval(13943, v is NestedStructGen<Decimal>?, false);
+// Eval(13944, v is NestedStructGen<Decimal>?[], false);
Eval(13945, v is ExplicitFieldOffsetStruct, false);
Eval(13946, v is ExplicitFieldOffsetStruct[], false);
Eval(13947, v is ExplicitFieldOffsetStruct?, false);
@@ -11751,18 +11751,18 @@ internal class Program
Eval(13966, v is ImplementTwoInterface[], false);
Eval(13967, v is ImplementTwoInterface?, false);
Eval(13968, v is ImplementTwoInterface?[], false);
- Eval(13969, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13970, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13971, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13972, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13973, v is ImplementTwoInterfaceGen<int>, true);
- Eval(13974, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13975, v is ImplementTwoInterfaceGen<int>?, true);
- Eval(13976, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13977, v is ImplementAllInterface<int>, false);
- Eval(13978, v is ImplementAllInterface<int>[], false);
- Eval(13979, v is ImplementAllInterface<int>?, false);
- Eval(13980, v is ImplementAllInterface<int>?[], false);
+// Eval(13969, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13970, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13971, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13972, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13973, v is ImplementTwoInterfaceGen<int>, true);
+// Eval(13974, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13975, v is ImplementTwoInterfaceGen<int>?, true);
+// Eval(13976, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13977, v is ImplementAllInterface<int>, false);
+// Eval(13978, v is ImplementAllInterface<int>[], false);
+// Eval(13979, v is ImplementAllInterface<int>?, false);
+// Eval(13980, v is ImplementAllInterface<int>?[], false);
Eval(13981, v is IntE, false);
Eval(13982, v is IntE[], false);
Eval(13983, v is IntE?, false);
@@ -11861,38 +11861,38 @@ internal class Program
Eval(14076, v is IEmpty[], false);
Eval(14077, v is INotEmpty, false);
Eval(14078, v is INotEmpty[], false);
- Eval(14079, v is IEmptyGen<int>, true);
- Eval(14080, v is IEmptyGen<int>[], false);
- Eval(14081, v is INotEmptyGen<int>, true);
- Eval(14082, v is INotEmptyGen<int>[], false);
+// Eval(14079, v is IEmptyGen<int>, true);
+// Eval(14080, v is IEmptyGen<int>[], false);
+// Eval(14081, v is INotEmptyGen<int>, true);
+// Eval(14082, v is INotEmptyGen<int>[], false);
Eval(14083, v is SimpleDelegate, false);
Eval(14084, v is SimpleDelegate[], false);
- Eval(14085, v is GenericDelegate<int>, false);
- Eval(14086, v is GenericDelegate<int>[], false);
+// Eval(14085, v is GenericDelegate<int>, false);
+// Eval(14086, v is GenericDelegate<int>[], false);
Eval(14087, v is EmptyClass, false);
Eval(14088, v is EmptyClass[], false);
Eval(14089, v is NotEmptyClass, false);
Eval(14090, v is NotEmptyClass[], false);
- Eval(14091, v is EmptyClassGen<int>, false);
- Eval(14092, v is EmptyClassGen<int>[], false);
- Eval(14093, v is NotEmptyClassGen<Guid>, false);
- Eval(14094, v is NotEmptyClassGen<Guid>[], false);
- Eval(14095, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14096, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14091, v is EmptyClassGen<int>, false);
+// Eval(14092, v is EmptyClassGen<int>[], false);
+// Eval(14093, v is NotEmptyClassGen<Guid>, false);
+// Eval(14094, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14095, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14096, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14097, v is NestedClass, false);
Eval(14098, v is NestedClass[], false);
- Eval(14099, v is NestedClassGen<Decimal>, false);
- Eval(14100, v is NestedClassGen<Decimal>[], false);
+// Eval(14099, v is NestedClassGen<Decimal>, false);
+// Eval(14100, v is NestedClassGen<Decimal>[], false);
Eval(14101, v is ImplementOneInterfaceC, false);
Eval(14102, v is ImplementOneInterfaceC[], false);
Eval(14103, v is ImplementTwoInterfaceC, false);
Eval(14104, v is ImplementTwoInterfaceC[], false);
- Eval(14105, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14106, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14107, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14108, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14109, v is ImplementAllInterfaceC<int>, false);
- Eval(14110, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14105, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14106, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14107, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14108, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14109, v is ImplementAllInterfaceC<int>, false);
+// Eval(14110, v is ImplementAllInterfaceC<int>[], false);
Eval(14111, v is SealedClass, false);
Eval(14112, v is SealedClass[], false);
}
@@ -11906,26 +11906,26 @@ internal class Program
Eval(14118, v is NotEmptyStruct[], false);
Eval(14119, v is NotEmptyStruct?, false);
Eval(14120, v is NotEmptyStruct?[], false);
- Eval(14121, v is EmptyStructGen<int>, false);
- Eval(14122, v is EmptyStructGen<int>[], false);
- Eval(14123, v is EmptyStructGen<int>?, false);
- Eval(14124, v is EmptyStructGen<int>?[], false);
- Eval(14125, v is NotEmptyStructGen<Guid>, false);
- Eval(14126, v is NotEmptyStructGen<Guid>[], false);
- Eval(14127, v is NotEmptyStructGen<Guid>?, false);
- Eval(14128, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14129, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14130, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14131, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14132, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14121, v is EmptyStructGen<int>, false);
+// Eval(14122, v is EmptyStructGen<int>[], false);
+// Eval(14123, v is EmptyStructGen<int>?, false);
+// Eval(14124, v is EmptyStructGen<int>?[], false);
+// Eval(14125, v is NotEmptyStructGen<Guid>, false);
+// Eval(14126, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14127, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14128, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14129, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14130, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14131, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14132, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14133, v is NestedStruct, false);
Eval(14134, v is NestedStruct[], false);
Eval(14135, v is NestedStruct?, false);
Eval(14136, v is NestedStruct?[], false);
- Eval(14137, v is NestedStructGen<Decimal>, false);
- Eval(14138, v is NestedStructGen<Decimal>[], false);
- Eval(14139, v is NestedStructGen<Decimal>?, false);
- Eval(14140, v is NestedStructGen<Decimal>?[], false);
+// Eval(14137, v is NestedStructGen<Decimal>, false);
+// Eval(14138, v is NestedStructGen<Decimal>[], false);
+// Eval(14139, v is NestedStructGen<Decimal>?, false);
+// Eval(14140, v is NestedStructGen<Decimal>?[], false);
Eval(14141, v is ExplicitFieldOffsetStruct, false);
Eval(14142, v is ExplicitFieldOffsetStruct[], false);
Eval(14143, v is ExplicitFieldOffsetStruct?, false);
@@ -11942,18 +11942,18 @@ internal class Program
Eval(14162, v is ImplementTwoInterface[], false);
Eval(14163, v is ImplementTwoInterface?, false);
Eval(14164, v is ImplementTwoInterface?[], false);
- Eval(14165, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14166, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14167, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14168, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14169, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14170, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14171, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14172, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14173, v is ImplementAllInterface<int>, false);
- Eval(14174, v is ImplementAllInterface<int>[], false);
- Eval(14175, v is ImplementAllInterface<int>?, false);
- Eval(14176, v is ImplementAllInterface<int>?[], false);
+// Eval(14165, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14166, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14167, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14168, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14169, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14170, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14171, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14172, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14173, v is ImplementAllInterface<int>, false);
+// Eval(14174, v is ImplementAllInterface<int>[], false);
+// Eval(14175, v is ImplementAllInterface<int>?, false);
+// Eval(14176, v is ImplementAllInterface<int>?[], false);
Eval(14177, v is IntE, false);
Eval(14178, v is IntE[], false);
Eval(14179, v is IntE?, false);
@@ -12052,38 +12052,38 @@ internal class Program
Eval(14272, v is IEmpty[], false);
Eval(14273, v is INotEmpty, false);
Eval(14274, v is INotEmpty[], false);
- Eval(14275, v is IEmptyGen<int>, false);
- Eval(14276, v is IEmptyGen<int>[], false);
- Eval(14277, v is INotEmptyGen<int>, false);
- Eval(14278, v is INotEmptyGen<int>[], false);
+// Eval(14275, v is IEmptyGen<int>, false);
+// Eval(14276, v is IEmptyGen<int>[], false);
+// Eval(14277, v is INotEmptyGen<int>, false);
+// Eval(14278, v is INotEmptyGen<int>[], false);
Eval(14279, v is SimpleDelegate, false);
Eval(14280, v is SimpleDelegate[], false);
- Eval(14281, v is GenericDelegate<int>, false);
- Eval(14282, v is GenericDelegate<int>[], false);
+// Eval(14281, v is GenericDelegate<int>, false);
+// Eval(14282, v is GenericDelegate<int>[], false);
Eval(14283, v is EmptyClass, false);
Eval(14284, v is EmptyClass[], false);
Eval(14285, v is NotEmptyClass, false);
Eval(14286, v is NotEmptyClass[], false);
- Eval(14287, v is EmptyClassGen<int>, false);
- Eval(14288, v is EmptyClassGen<int>[], false);
- Eval(14289, v is NotEmptyClassGen<Guid>, false);
- Eval(14290, v is NotEmptyClassGen<Guid>[], false);
- Eval(14291, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14292, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14287, v is EmptyClassGen<int>, false);
+// Eval(14288, v is EmptyClassGen<int>[], false);
+// Eval(14289, v is NotEmptyClassGen<Guid>, false);
+// Eval(14290, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14291, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14292, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14293, v is NestedClass, false);
Eval(14294, v is NestedClass[], false);
- Eval(14295, v is NestedClassGen<Decimal>, false);
- Eval(14296, v is NestedClassGen<Decimal>[], false);
+// Eval(14295, v is NestedClassGen<Decimal>, false);
+// Eval(14296, v is NestedClassGen<Decimal>[], false);
Eval(14297, v is ImplementOneInterfaceC, false);
Eval(14298, v is ImplementOneInterfaceC[], false);
Eval(14299, v is ImplementTwoInterfaceC, false);
Eval(14300, v is ImplementTwoInterfaceC[], false);
- Eval(14301, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14302, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14303, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14304, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14305, v is ImplementAllInterfaceC<int>, false);
- Eval(14306, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14301, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14302, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14303, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14304, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14305, v is ImplementAllInterfaceC<int>, false);
+// Eval(14306, v is ImplementAllInterfaceC<int>[], false);
Eval(14307, v is SealedClass, false);
Eval(14308, v is SealedClass[], false);
}
@@ -12097,26 +12097,26 @@ internal class Program
Eval(14314, v is NotEmptyStruct[], false);
Eval(14315, v is NotEmptyStruct?, false);
Eval(14316, v is NotEmptyStruct?[], false);
- Eval(14317, v is EmptyStructGen<int>, false);
- Eval(14318, v is EmptyStructGen<int>[], false);
- Eval(14319, v is EmptyStructGen<int>?, false);
- Eval(14320, v is EmptyStructGen<int>?[], false);
- Eval(14321, v is NotEmptyStructGen<Guid>, false);
- Eval(14322, v is NotEmptyStructGen<Guid>[], false);
- Eval(14323, v is NotEmptyStructGen<Guid>?, false);
- Eval(14324, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14325, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14326, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14327, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14328, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14317, v is EmptyStructGen<int>, false);
+// Eval(14318, v is EmptyStructGen<int>[], false);
+// Eval(14319, v is EmptyStructGen<int>?, false);
+// Eval(14320, v is EmptyStructGen<int>?[], false);
+// Eval(14321, v is NotEmptyStructGen<Guid>, false);
+// Eval(14322, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14323, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14324, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14325, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14326, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14327, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14328, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14329, v is NestedStruct, false);
Eval(14330, v is NestedStruct[], false);
Eval(14331, v is NestedStruct?, false);
Eval(14332, v is NestedStruct?[], false);
- Eval(14333, v is NestedStructGen<Decimal>, false);
- Eval(14334, v is NestedStructGen<Decimal>[], false);
- Eval(14335, v is NestedStructGen<Decimal>?, false);
- Eval(14336, v is NestedStructGen<Decimal>?[], false);
+// Eval(14333, v is NestedStructGen<Decimal>, false);
+// Eval(14334, v is NestedStructGen<Decimal>[], false);
+// Eval(14335, v is NestedStructGen<Decimal>?, false);
+// Eval(14336, v is NestedStructGen<Decimal>?[], false);
Eval(14337, v is ExplicitFieldOffsetStruct, false);
Eval(14338, v is ExplicitFieldOffsetStruct[], false);
Eval(14339, v is ExplicitFieldOffsetStruct?, false);
@@ -12133,18 +12133,18 @@ internal class Program
Eval(14358, v is ImplementTwoInterface[], false);
Eval(14359, v is ImplementTwoInterface?, false);
Eval(14360, v is ImplementTwoInterface?[], false);
- Eval(14361, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14362, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14363, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14364, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14365, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14366, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14367, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14368, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14369, v is ImplementAllInterface<int>, false);
- Eval(14370, v is ImplementAllInterface<int>[], false);
- Eval(14371, v is ImplementAllInterface<int>?, false);
- Eval(14372, v is ImplementAllInterface<int>?[], false);
+// Eval(14361, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14362, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14363, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14364, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14365, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14366, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14367, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14368, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14369, v is ImplementAllInterface<int>, false);
+// Eval(14370, v is ImplementAllInterface<int>[], false);
+// Eval(14371, v is ImplementAllInterface<int>?, false);
+// Eval(14372, v is ImplementAllInterface<int>?[], false);
Eval(14373, v is IntE, false);
Eval(14374, v is IntE[], false);
Eval(14375, v is IntE?, false);
@@ -12243,38 +12243,38 @@ internal class Program
Eval(14468, v is IEmpty[], false);
Eval(14469, v is INotEmpty, false);
Eval(14470, v is INotEmpty[], false);
- Eval(14471, v is IEmptyGen<int>, false);
- Eval(14472, v is IEmptyGen<int>[], false);
- Eval(14473, v is INotEmptyGen<int>, false);
- Eval(14474, v is INotEmptyGen<int>[], false);
+// Eval(14471, v is IEmptyGen<int>, false);
+// Eval(14472, v is IEmptyGen<int>[], false);
+// Eval(14473, v is INotEmptyGen<int>, false);
+// Eval(14474, v is INotEmptyGen<int>[], false);
Eval(14475, v is SimpleDelegate, false);
Eval(14476, v is SimpleDelegate[], false);
- Eval(14477, v is GenericDelegate<int>, false);
- Eval(14478, v is GenericDelegate<int>[], false);
+// Eval(14477, v is GenericDelegate<int>, false);
+// Eval(14478, v is GenericDelegate<int>[], false);
Eval(14479, v is EmptyClass, false);
Eval(14480, v is EmptyClass[], false);
Eval(14481, v is NotEmptyClass, false);
Eval(14482, v is NotEmptyClass[], false);
- Eval(14483, v is EmptyClassGen<int>, false);
- Eval(14484, v is EmptyClassGen<int>[], false);
- Eval(14485, v is NotEmptyClassGen<Guid>, false);
- Eval(14486, v is NotEmptyClassGen<Guid>[], false);
- Eval(14487, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14488, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14483, v is EmptyClassGen<int>, false);
+// Eval(14484, v is EmptyClassGen<int>[], false);
+// Eval(14485, v is NotEmptyClassGen<Guid>, false);
+// Eval(14486, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14487, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14488, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14489, v is NestedClass, false);
Eval(14490, v is NestedClass[], false);
- Eval(14491, v is NestedClassGen<Decimal>, false);
- Eval(14492, v is NestedClassGen<Decimal>[], false);
+// Eval(14491, v is NestedClassGen<Decimal>, false);
+// Eval(14492, v is NestedClassGen<Decimal>[], false);
Eval(14493, v is ImplementOneInterfaceC, false);
Eval(14494, v is ImplementOneInterfaceC[], false);
Eval(14495, v is ImplementTwoInterfaceC, false);
Eval(14496, v is ImplementTwoInterfaceC[], false);
- Eval(14497, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14498, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14499, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14500, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14501, v is ImplementAllInterfaceC<int>, false);
- Eval(14502, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14497, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14498, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14499, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14500, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14501, v is ImplementAllInterfaceC<int>, false);
+// Eval(14502, v is ImplementAllInterfaceC<int>[], false);
Eval(14503, v is SealedClass, false);
Eval(14504, v is SealedClass[], false);
}
@@ -12288,26 +12288,26 @@ internal class Program
Eval(14510, v is NotEmptyStruct[], false);
Eval(14511, v is NotEmptyStruct?, false);
Eval(14512, v is NotEmptyStruct?[], false);
- Eval(14513, v is EmptyStructGen<int>, false);
- Eval(14514, v is EmptyStructGen<int>[], false);
- Eval(14515, v is EmptyStructGen<int>?, false);
- Eval(14516, v is EmptyStructGen<int>?[], false);
- Eval(14517, v is NotEmptyStructGen<Guid>, false);
- Eval(14518, v is NotEmptyStructGen<Guid>[], false);
- Eval(14519, v is NotEmptyStructGen<Guid>?, false);
- Eval(14520, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14521, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14522, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14523, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14524, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14513, v is EmptyStructGen<int>, false);
+// Eval(14514, v is EmptyStructGen<int>[], false);
+// Eval(14515, v is EmptyStructGen<int>?, false);
+// Eval(14516, v is EmptyStructGen<int>?[], false);
+// Eval(14517, v is NotEmptyStructGen<Guid>, false);
+// Eval(14518, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14519, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14520, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14521, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14522, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14523, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14524, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14525, v is NestedStruct, false);
Eval(14526, v is NestedStruct[], false);
Eval(14527, v is NestedStruct?, false);
Eval(14528, v is NestedStruct?[], false);
- Eval(14529, v is NestedStructGen<Decimal>, false);
- Eval(14530, v is NestedStructGen<Decimal>[], false);
- Eval(14531, v is NestedStructGen<Decimal>?, false);
- Eval(14532, v is NestedStructGen<Decimal>?[], false);
+// Eval(14529, v is NestedStructGen<Decimal>, false);
+// Eval(14530, v is NestedStructGen<Decimal>[], false);
+// Eval(14531, v is NestedStructGen<Decimal>?, false);
+// Eval(14532, v is NestedStructGen<Decimal>?[], false);
Eval(14533, v is ExplicitFieldOffsetStruct, false);
Eval(14534, v is ExplicitFieldOffsetStruct[], false);
Eval(14535, v is ExplicitFieldOffsetStruct?, false);
@@ -12324,18 +12324,18 @@ internal class Program
Eval(14554, v is ImplementTwoInterface[], false);
Eval(14555, v is ImplementTwoInterface?, false);
Eval(14556, v is ImplementTwoInterface?[], false);
- Eval(14557, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14558, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14559, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14560, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14561, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14562, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14563, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14564, v is ImplementTwoInterfaceGen<int>?[], true);
- Eval(14565, v is ImplementAllInterface<int>, false);
- Eval(14566, v is ImplementAllInterface<int>[], false);
- Eval(14567, v is ImplementAllInterface<int>?, false);
- Eval(14568, v is ImplementAllInterface<int>?[], false);
+// Eval(14557, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14558, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14559, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14560, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14561, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14562, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14563, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14564, v is ImplementTwoInterfaceGen<int>?[], true);
+// Eval(14565, v is ImplementAllInterface<int>, false);
+// Eval(14566, v is ImplementAllInterface<int>[], false);
+// Eval(14567, v is ImplementAllInterface<int>?, false);
+// Eval(14568, v is ImplementAllInterface<int>?[], false);
Eval(14569, v is IntE, false);
Eval(14570, v is IntE[], false);
Eval(14571, v is IntE?, false);
@@ -12434,38 +12434,38 @@ internal class Program
Eval(14664, v is IEmpty[], false);
Eval(14665, v is INotEmpty, false);
Eval(14666, v is INotEmpty[], false);
- Eval(14667, v is IEmptyGen<int>, false);
- Eval(14668, v is IEmptyGen<int>[], false);
- Eval(14669, v is INotEmptyGen<int>, false);
- Eval(14670, v is INotEmptyGen<int>[], false);
+// Eval(14667, v is IEmptyGen<int>, false);
+// Eval(14668, v is IEmptyGen<int>[], false);
+// Eval(14669, v is INotEmptyGen<int>, false);
+// Eval(14670, v is INotEmptyGen<int>[], false);
Eval(14671, v is SimpleDelegate, false);
Eval(14672, v is SimpleDelegate[], false);
- Eval(14673, v is GenericDelegate<int>, false);
- Eval(14674, v is GenericDelegate<int>[], false);
+// Eval(14673, v is GenericDelegate<int>, false);
+// Eval(14674, v is GenericDelegate<int>[], false);
Eval(14675, v is EmptyClass, false);
Eval(14676, v is EmptyClass[], false);
Eval(14677, v is NotEmptyClass, false);
Eval(14678, v is NotEmptyClass[], false);
- Eval(14679, v is EmptyClassGen<int>, false);
- Eval(14680, v is EmptyClassGen<int>[], false);
- Eval(14681, v is NotEmptyClassGen<Guid>, false);
- Eval(14682, v is NotEmptyClassGen<Guid>[], false);
- Eval(14683, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14684, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14679, v is EmptyClassGen<int>, false);
+// Eval(14680, v is EmptyClassGen<int>[], false);
+// Eval(14681, v is NotEmptyClassGen<Guid>, false);
+// Eval(14682, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14683, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14684, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14685, v is NestedClass, false);
Eval(14686, v is NestedClass[], false);
- Eval(14687, v is NestedClassGen<Decimal>, false);
- Eval(14688, v is NestedClassGen<Decimal>[], false);
+// Eval(14687, v is NestedClassGen<Decimal>, false);
+// Eval(14688, v is NestedClassGen<Decimal>[], false);
Eval(14689, v is ImplementOneInterfaceC, false);
Eval(14690, v is ImplementOneInterfaceC[], false);
Eval(14691, v is ImplementTwoInterfaceC, false);
Eval(14692, v is ImplementTwoInterfaceC[], false);
- Eval(14693, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14694, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14695, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14696, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14697, v is ImplementAllInterfaceC<int>, false);
- Eval(14698, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14693, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14694, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14695, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14696, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14697, v is ImplementAllInterfaceC<int>, false);
+// Eval(14698, v is ImplementAllInterfaceC<int>[], false);
Eval(14699, v is SealedClass, false);
Eval(14700, v is SealedClass[], false);
}
@@ -12482,26 +12482,26 @@ internal class Program
Eval(14706, v is NotEmptyStruct[], false);
Eval(14707, v is NotEmptyStruct?, false);
Eval(14708, v is NotEmptyStruct?[], false);
- Eval(14709, v is EmptyStructGen<int>, false);
- Eval(14710, v is EmptyStructGen<int>[], false);
- Eval(14711, v is EmptyStructGen<int>?, false);
- Eval(14712, v is EmptyStructGen<int>?[], false);
- Eval(14713, v is NotEmptyStructGen<Guid>, false);
- Eval(14714, v is NotEmptyStructGen<Guid>[], false);
- Eval(14715, v is NotEmptyStructGen<Guid>?, false);
- Eval(14716, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14717, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14718, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14719, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14720, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14709, v is EmptyStructGen<int>, false);
+// Eval(14710, v is EmptyStructGen<int>[], false);
+// Eval(14711, v is EmptyStructGen<int>?, false);
+// Eval(14712, v is EmptyStructGen<int>?[], false);
+// Eval(14713, v is NotEmptyStructGen<Guid>, false);
+// Eval(14714, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14715, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14716, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14717, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14718, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14719, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14720, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14721, v is NestedStruct, false);
Eval(14722, v is NestedStruct[], false);
Eval(14723, v is NestedStruct?, false);
Eval(14724, v is NestedStruct?[], false);
- Eval(14725, v is NestedStructGen<Decimal>, false);
- Eval(14726, v is NestedStructGen<Decimal>[], false);
- Eval(14727, v is NestedStructGen<Decimal>?, false);
- Eval(14728, v is NestedStructGen<Decimal>?[], false);
+// Eval(14725, v is NestedStructGen<Decimal>, false);
+// Eval(14726, v is NestedStructGen<Decimal>[], false);
+// Eval(14727, v is NestedStructGen<Decimal>?, false);
+// Eval(14728, v is NestedStructGen<Decimal>?[], false);
Eval(14729, v is ExplicitFieldOffsetStruct, false);
Eval(14730, v is ExplicitFieldOffsetStruct[], false);
Eval(14731, v is ExplicitFieldOffsetStruct?, false);
@@ -12518,18 +12518,18 @@ internal class Program
Eval(14750, v is ImplementTwoInterface[], false);
Eval(14751, v is ImplementTwoInterface?, false);
Eval(14752, v is ImplementTwoInterface?[], false);
- Eval(14753, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14754, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14755, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14756, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14757, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14758, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14759, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14760, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14761, v is ImplementAllInterface<int>, true);
- Eval(14762, v is ImplementAllInterface<int>[], false);
- Eval(14763, v is ImplementAllInterface<int>?, true);
- Eval(14764, v is ImplementAllInterface<int>?[], false);
+// Eval(14753, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14754, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14755, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14756, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14757, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14758, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14759, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14760, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14761, v is ImplementAllInterface<int>, true);
+// Eval(14762, v is ImplementAllInterface<int>[], false);
+// Eval(14763, v is ImplementAllInterface<int>?, true);
+// Eval(14764, v is ImplementAllInterface<int>?[], false);
Eval(14765, v is IntE, false);
Eval(14766, v is IntE[], false);
Eval(14767, v is IntE?, false);
@@ -12628,38 +12628,38 @@ internal class Program
Eval(14860, v is IEmpty[], false);
Eval(14861, v is INotEmpty, true);
Eval(14862, v is INotEmpty[], false);
- Eval(14863, v is IEmptyGen<int>, true);
- Eval(14864, v is IEmptyGen<int>[], false);
- Eval(14865, v is INotEmptyGen<int>, true);
- Eval(14866, v is INotEmptyGen<int>[], false);
+// Eval(14863, v is IEmptyGen<int>, true);
+// Eval(14864, v is IEmptyGen<int>[], false);
+// Eval(14865, v is INotEmptyGen<int>, true);
+// Eval(14866, v is INotEmptyGen<int>[], false);
Eval(14867, v is SimpleDelegate, false);
Eval(14868, v is SimpleDelegate[], false);
- Eval(14869, v is GenericDelegate<int>, false);
- Eval(14870, v is GenericDelegate<int>[], false);
+// Eval(14869, v is GenericDelegate<int>, false);
+// Eval(14870, v is GenericDelegate<int>[], false);
Eval(14871, v is EmptyClass, false);
Eval(14872, v is EmptyClass[], false);
Eval(14873, v is NotEmptyClass, false);
Eval(14874, v is NotEmptyClass[], false);
- Eval(14875, v is EmptyClassGen<int>, false);
- Eval(14876, v is EmptyClassGen<int>[], false);
- Eval(14877, v is NotEmptyClassGen<Guid>, false);
- Eval(14878, v is NotEmptyClassGen<Guid>[], false);
- Eval(14879, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14880, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14875, v is EmptyClassGen<int>, false);
+// Eval(14876, v is EmptyClassGen<int>[], false);
+// Eval(14877, v is NotEmptyClassGen<Guid>, false);
+// Eval(14878, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14879, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14880, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14881, v is NestedClass, false);
Eval(14882, v is NestedClass[], false);
- Eval(14883, v is NestedClassGen<Decimal>, false);
- Eval(14884, v is NestedClassGen<Decimal>[], false);
+// Eval(14883, v is NestedClassGen<Decimal>, false);
+// Eval(14884, v is NestedClassGen<Decimal>[], false);
Eval(14885, v is ImplementOneInterfaceC, false);
Eval(14886, v is ImplementOneInterfaceC[], false);
Eval(14887, v is ImplementTwoInterfaceC, false);
Eval(14888, v is ImplementTwoInterfaceC[], false);
- Eval(14889, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14890, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14891, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14892, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14893, v is ImplementAllInterfaceC<int>, false);
- Eval(14894, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14889, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14890, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14891, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14892, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14893, v is ImplementAllInterfaceC<int>, false);
+// Eval(14894, v is ImplementAllInterfaceC<int>[], false);
Eval(14895, v is SealedClass, false);
Eval(14896, v is SealedClass[], false);
}
@@ -12673,26 +12673,26 @@ internal class Program
Eval(14902, v is NotEmptyStruct[], false);
Eval(14903, v is NotEmptyStruct?, false);
Eval(14904, v is NotEmptyStruct?[], false);
- Eval(14905, v is EmptyStructGen<int>, false);
- Eval(14906, v is EmptyStructGen<int>[], false);
- Eval(14907, v is EmptyStructGen<int>?, false);
- Eval(14908, v is EmptyStructGen<int>?[], false);
- Eval(14909, v is NotEmptyStructGen<Guid>, false);
- Eval(14910, v is NotEmptyStructGen<Guid>[], false);
- Eval(14911, v is NotEmptyStructGen<Guid>?, false);
- Eval(14912, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14913, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14914, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14915, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14916, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14905, v is EmptyStructGen<int>, false);
+// Eval(14906, v is EmptyStructGen<int>[], false);
+// Eval(14907, v is EmptyStructGen<int>?, false);
+// Eval(14908, v is EmptyStructGen<int>?[], false);
+// Eval(14909, v is NotEmptyStructGen<Guid>, false);
+// Eval(14910, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14911, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14912, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14913, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14914, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14915, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14916, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14917, v is NestedStruct, false);
Eval(14918, v is NestedStruct[], false);
Eval(14919, v is NestedStruct?, false);
Eval(14920, v is NestedStruct?[], false);
- Eval(14921, v is NestedStructGen<Decimal>, false);
- Eval(14922, v is NestedStructGen<Decimal>[], false);
- Eval(14923, v is NestedStructGen<Decimal>?, false);
- Eval(14924, v is NestedStructGen<Decimal>?[], false);
+// Eval(14921, v is NestedStructGen<Decimal>, false);
+// Eval(14922, v is NestedStructGen<Decimal>[], false);
+// Eval(14923, v is NestedStructGen<Decimal>?, false);
+// Eval(14924, v is NestedStructGen<Decimal>?[], false);
Eval(14925, v is ExplicitFieldOffsetStruct, false);
Eval(14926, v is ExplicitFieldOffsetStruct[], false);
Eval(14927, v is ExplicitFieldOffsetStruct?, false);
@@ -12709,18 +12709,18 @@ internal class Program
Eval(14946, v is ImplementTwoInterface[], false);
Eval(14947, v is ImplementTwoInterface?, false);
Eval(14948, v is ImplementTwoInterface?[], false);
- Eval(14949, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14950, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14951, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14952, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14953, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14954, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14955, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14956, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14957, v is ImplementAllInterface<int>, true);
- Eval(14958, v is ImplementAllInterface<int>[], false);
- Eval(14959, v is ImplementAllInterface<int>?, true);
- Eval(14960, v is ImplementAllInterface<int>?[], false);
+// Eval(14949, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14950, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14951, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14952, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14953, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14954, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14955, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14956, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14957, v is ImplementAllInterface<int>, true);
+// Eval(14958, v is ImplementAllInterface<int>[], false);
+// Eval(14959, v is ImplementAllInterface<int>?, true);
+// Eval(14960, v is ImplementAllInterface<int>?[], false);
Eval(14961, v is IntE, false);
Eval(14962, v is IntE[], false);
Eval(14963, v is IntE?, false);
@@ -12819,38 +12819,38 @@ internal class Program
Eval(15056, v is IEmpty[], false);
Eval(15057, v is INotEmpty, true);
Eval(15058, v is INotEmpty[], false);
- Eval(15059, v is IEmptyGen<int>, true);
- Eval(15060, v is IEmptyGen<int>[], false);
- Eval(15061, v is INotEmptyGen<int>, true);
- Eval(15062, v is INotEmptyGen<int>[], false);
+// Eval(15059, v is IEmptyGen<int>, true);
+// Eval(15060, v is IEmptyGen<int>[], false);
+// Eval(15061, v is INotEmptyGen<int>, true);
+// Eval(15062, v is INotEmptyGen<int>[], false);
Eval(15063, v is SimpleDelegate, false);
Eval(15064, v is SimpleDelegate[], false);
- Eval(15065, v is GenericDelegate<int>, false);
- Eval(15066, v is GenericDelegate<int>[], false);
+// Eval(15065, v is GenericDelegate<int>, false);
+// Eval(15066, v is GenericDelegate<int>[], false);
Eval(15067, v is EmptyClass, false);
Eval(15068, v is EmptyClass[], false);
Eval(15069, v is NotEmptyClass, false);
Eval(15070, v is NotEmptyClass[], false);
- Eval(15071, v is EmptyClassGen<int>, false);
- Eval(15072, v is EmptyClassGen<int>[], false);
- Eval(15073, v is NotEmptyClassGen<Guid>, false);
- Eval(15074, v is NotEmptyClassGen<Guid>[], false);
- Eval(15075, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15076, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15071, v is EmptyClassGen<int>, false);
+// Eval(15072, v is EmptyClassGen<int>[], false);
+// Eval(15073, v is NotEmptyClassGen<Guid>, false);
+// Eval(15074, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15075, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15076, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15077, v is NestedClass, false);
Eval(15078, v is NestedClass[], false);
- Eval(15079, v is NestedClassGen<Decimal>, false);
- Eval(15080, v is NestedClassGen<Decimal>[], false);
+// Eval(15079, v is NestedClassGen<Decimal>, false);
+// Eval(15080, v is NestedClassGen<Decimal>[], false);
Eval(15081, v is ImplementOneInterfaceC, false);
Eval(15082, v is ImplementOneInterfaceC[], false);
Eval(15083, v is ImplementTwoInterfaceC, false);
Eval(15084, v is ImplementTwoInterfaceC[], false);
- Eval(15085, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15086, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15087, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15088, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15089, v is ImplementAllInterfaceC<int>, false);
- Eval(15090, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15085, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15086, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15087, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15088, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15089, v is ImplementAllInterfaceC<int>, false);
+// Eval(15090, v is ImplementAllInterfaceC<int>[], false);
Eval(15091, v is SealedClass, false);
Eval(15092, v is SealedClass[], false);
}
@@ -12864,26 +12864,26 @@ internal class Program
Eval(15098, v is NotEmptyStruct[], false);
Eval(15099, v is NotEmptyStruct?, false);
Eval(15100, v is NotEmptyStruct?[], false);
- Eval(15101, v is EmptyStructGen<int>, false);
- Eval(15102, v is EmptyStructGen<int>[], false);
- Eval(15103, v is EmptyStructGen<int>?, false);
- Eval(15104, v is EmptyStructGen<int>?[], false);
- Eval(15105, v is NotEmptyStructGen<Guid>, false);
- Eval(15106, v is NotEmptyStructGen<Guid>[], false);
- Eval(15107, v is NotEmptyStructGen<Guid>?, false);
- Eval(15108, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15109, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15110, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15111, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15112, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15101, v is EmptyStructGen<int>, false);
+// Eval(15102, v is EmptyStructGen<int>[], false);
+// Eval(15103, v is EmptyStructGen<int>?, false);
+// Eval(15104, v is EmptyStructGen<int>?[], false);
+// Eval(15105, v is NotEmptyStructGen<Guid>, false);
+// Eval(15106, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15107, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15108, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15109, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15110, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15111, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15112, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15113, v is NestedStruct, false);
Eval(15114, v is NestedStruct[], false);
Eval(15115, v is NestedStruct?, false);
Eval(15116, v is NestedStruct?[], false);
- Eval(15117, v is NestedStructGen<Decimal>, false);
- Eval(15118, v is NestedStructGen<Decimal>[], false);
- Eval(15119, v is NestedStructGen<Decimal>?, false);
- Eval(15120, v is NestedStructGen<Decimal>?[], false);
+// Eval(15117, v is NestedStructGen<Decimal>, false);
+// Eval(15118, v is NestedStructGen<Decimal>[], false);
+// Eval(15119, v is NestedStructGen<Decimal>?, false);
+// Eval(15120, v is NestedStructGen<Decimal>?[], false);
Eval(15121, v is ExplicitFieldOffsetStruct, false);
Eval(15122, v is ExplicitFieldOffsetStruct[], false);
Eval(15123, v is ExplicitFieldOffsetStruct?, false);
@@ -12900,18 +12900,18 @@ internal class Program
Eval(15142, v is ImplementTwoInterface[], false);
Eval(15143, v is ImplementTwoInterface?, false);
Eval(15144, v is ImplementTwoInterface?[], false);
- Eval(15145, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15146, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15147, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15148, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15149, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15150, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15151, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15152, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15153, v is ImplementAllInterface<int>, false);
- Eval(15154, v is ImplementAllInterface<int>[], false);
- Eval(15155, v is ImplementAllInterface<int>?, false);
- Eval(15156, v is ImplementAllInterface<int>?[], false);
+// Eval(15145, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15146, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15147, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15148, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15149, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15150, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15151, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15152, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15153, v is ImplementAllInterface<int>, false);
+// Eval(15154, v is ImplementAllInterface<int>[], false);
+// Eval(15155, v is ImplementAllInterface<int>?, false);
+// Eval(15156, v is ImplementAllInterface<int>?[], false);
Eval(15157, v is IntE, false);
Eval(15158, v is IntE[], false);
Eval(15159, v is IntE?, false);
@@ -13010,38 +13010,38 @@ internal class Program
Eval(15252, v is IEmpty[], false);
Eval(15253, v is INotEmpty, false);
Eval(15254, v is INotEmpty[], false);
- Eval(15255, v is IEmptyGen<int>, false);
- Eval(15256, v is IEmptyGen<int>[], false);
- Eval(15257, v is INotEmptyGen<int>, false);
- Eval(15258, v is INotEmptyGen<int>[], false);
+// Eval(15255, v is IEmptyGen<int>, false);
+// Eval(15256, v is IEmptyGen<int>[], false);
+// Eval(15257, v is INotEmptyGen<int>, false);
+// Eval(15258, v is INotEmptyGen<int>[], false);
Eval(15259, v is SimpleDelegate, false);
Eval(15260, v is SimpleDelegate[], false);
- Eval(15261, v is GenericDelegate<int>, false);
- Eval(15262, v is GenericDelegate<int>[], false);
+// Eval(15261, v is GenericDelegate<int>, false);
+// Eval(15262, v is GenericDelegate<int>[], false);
Eval(15263, v is EmptyClass, false);
Eval(15264, v is EmptyClass[], false);
Eval(15265, v is NotEmptyClass, false);
Eval(15266, v is NotEmptyClass[], false);
- Eval(15267, v is EmptyClassGen<int>, false);
- Eval(15268, v is EmptyClassGen<int>[], false);
- Eval(15269, v is NotEmptyClassGen<Guid>, false);
- Eval(15270, v is NotEmptyClassGen<Guid>[], false);
- Eval(15271, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15272, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15267, v is EmptyClassGen<int>, false);
+// Eval(15268, v is EmptyClassGen<int>[], false);
+// Eval(15269, v is NotEmptyClassGen<Guid>, false);
+// Eval(15270, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15271, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15272, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15273, v is NestedClass, false);
Eval(15274, v is NestedClass[], false);
- Eval(15275, v is NestedClassGen<Decimal>, false);
- Eval(15276, v is NestedClassGen<Decimal>[], false);
+// Eval(15275, v is NestedClassGen<Decimal>, false);
+// Eval(15276, v is NestedClassGen<Decimal>[], false);
Eval(15277, v is ImplementOneInterfaceC, false);
Eval(15278, v is ImplementOneInterfaceC[], false);
Eval(15279, v is ImplementTwoInterfaceC, false);
Eval(15280, v is ImplementTwoInterfaceC[], false);
- Eval(15281, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15282, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15283, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15284, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15285, v is ImplementAllInterfaceC<int>, false);
- Eval(15286, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15281, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15282, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15283, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15284, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15285, v is ImplementAllInterfaceC<int>, false);
+// Eval(15286, v is ImplementAllInterfaceC<int>[], false);
Eval(15287, v is SealedClass, false);
Eval(15288, v is SealedClass[], false);
}
@@ -13055,26 +13055,26 @@ internal class Program
Eval(15294, v is NotEmptyStruct[], false);
Eval(15295, v is NotEmptyStruct?, false);
Eval(15296, v is NotEmptyStruct?[], false);
- Eval(15297, v is EmptyStructGen<int>, false);
- Eval(15298, v is EmptyStructGen<int>[], false);
- Eval(15299, v is EmptyStructGen<int>?, false);
- Eval(15300, v is EmptyStructGen<int>?[], false);
- Eval(15301, v is NotEmptyStructGen<Guid>, false);
- Eval(15302, v is NotEmptyStructGen<Guid>[], false);
- Eval(15303, v is NotEmptyStructGen<Guid>?, false);
- Eval(15304, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15305, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15306, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15307, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15308, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15297, v is EmptyStructGen<int>, false);
+// Eval(15298, v is EmptyStructGen<int>[], false);
+// Eval(15299, v is EmptyStructGen<int>?, false);
+// Eval(15300, v is EmptyStructGen<int>?[], false);
+// Eval(15301, v is NotEmptyStructGen<Guid>, false);
+// Eval(15302, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15303, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15304, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15305, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15306, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15307, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15308, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15309, v is NestedStruct, false);
Eval(15310, v is NestedStruct[], false);
Eval(15311, v is NestedStruct?, false);
Eval(15312, v is NestedStruct?[], false);
- Eval(15313, v is NestedStructGen<Decimal>, false);
- Eval(15314, v is NestedStructGen<Decimal>[], false);
- Eval(15315, v is NestedStructGen<Decimal>?, false);
- Eval(15316, v is NestedStructGen<Decimal>?[], false);
+// Eval(15313, v is NestedStructGen<Decimal>, false);
+// Eval(15314, v is NestedStructGen<Decimal>[], false);
+// Eval(15315, v is NestedStructGen<Decimal>?, false);
+// Eval(15316, v is NestedStructGen<Decimal>?[], false);
Eval(15317, v is ExplicitFieldOffsetStruct, false);
Eval(15318, v is ExplicitFieldOffsetStruct[], false);
Eval(15319, v is ExplicitFieldOffsetStruct?, false);
@@ -13091,18 +13091,18 @@ internal class Program
Eval(15338, v is ImplementTwoInterface[], false);
Eval(15339, v is ImplementTwoInterface?, false);
Eval(15340, v is ImplementTwoInterface?[], false);
- Eval(15341, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15342, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15343, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15344, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15345, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15346, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15347, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15348, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15349, v is ImplementAllInterface<int>, false);
- Eval(15350, v is ImplementAllInterface<int>[], false);
- Eval(15351, v is ImplementAllInterface<int>?, false);
- Eval(15352, v is ImplementAllInterface<int>?[], false);
+// Eval(15341, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15342, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15343, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15344, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15345, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15346, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15347, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15348, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15349, v is ImplementAllInterface<int>, false);
+// Eval(15350, v is ImplementAllInterface<int>[], false);
+// Eval(15351, v is ImplementAllInterface<int>?, false);
+// Eval(15352, v is ImplementAllInterface<int>?[], false);
Eval(15353, v is IntE, false);
Eval(15354, v is IntE[], false);
Eval(15355, v is IntE?, false);
@@ -13201,38 +13201,38 @@ internal class Program
Eval(15448, v is IEmpty[], false);
Eval(15449, v is INotEmpty, false);
Eval(15450, v is INotEmpty[], false);
- Eval(15451, v is IEmptyGen<int>, false);
- Eval(15452, v is IEmptyGen<int>[], false);
- Eval(15453, v is INotEmptyGen<int>, false);
- Eval(15454, v is INotEmptyGen<int>[], false);
+// Eval(15451, v is IEmptyGen<int>, false);
+// Eval(15452, v is IEmptyGen<int>[], false);
+// Eval(15453, v is INotEmptyGen<int>, false);
+// Eval(15454, v is INotEmptyGen<int>[], false);
Eval(15455, v is SimpleDelegate, false);
Eval(15456, v is SimpleDelegate[], false);
- Eval(15457, v is GenericDelegate<int>, false);
- Eval(15458, v is GenericDelegate<int>[], false);
+// Eval(15457, v is GenericDelegate<int>, false);
+// Eval(15458, v is GenericDelegate<int>[], false);
Eval(15459, v is EmptyClass, false);
Eval(15460, v is EmptyClass[], false);
Eval(15461, v is NotEmptyClass, false);
Eval(15462, v is NotEmptyClass[], false);
- Eval(15463, v is EmptyClassGen<int>, false);
- Eval(15464, v is EmptyClassGen<int>[], false);
- Eval(15465, v is NotEmptyClassGen<Guid>, false);
- Eval(15466, v is NotEmptyClassGen<Guid>[], false);
- Eval(15467, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15468, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15463, v is EmptyClassGen<int>, false);
+// Eval(15464, v is EmptyClassGen<int>[], false);
+// Eval(15465, v is NotEmptyClassGen<Guid>, false);
+// Eval(15466, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15467, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15468, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15469, v is NestedClass, false);
Eval(15470, v is NestedClass[], false);
- Eval(15471, v is NestedClassGen<Decimal>, false);
- Eval(15472, v is NestedClassGen<Decimal>[], false);
+// Eval(15471, v is NestedClassGen<Decimal>, false);
+// Eval(15472, v is NestedClassGen<Decimal>[], false);
Eval(15473, v is ImplementOneInterfaceC, false);
Eval(15474, v is ImplementOneInterfaceC[], false);
Eval(15475, v is ImplementTwoInterfaceC, false);
Eval(15476, v is ImplementTwoInterfaceC[], false);
- Eval(15477, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15478, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15479, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15480, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15481, v is ImplementAllInterfaceC<int>, false);
- Eval(15482, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15477, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15478, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15479, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15480, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15481, v is ImplementAllInterfaceC<int>, false);
+// Eval(15482, v is ImplementAllInterfaceC<int>[], false);
Eval(15483, v is SealedClass, false);
Eval(15484, v is SealedClass[], false);
}
@@ -13246,26 +13246,26 @@ internal class Program
Eval(15490, v is NotEmptyStruct[], false);
Eval(15491, v is NotEmptyStruct?, false);
Eval(15492, v is NotEmptyStruct?[], false);
- Eval(15493, v is EmptyStructGen<int>, false);
- Eval(15494, v is EmptyStructGen<int>[], false);
- Eval(15495, v is EmptyStructGen<int>?, false);
- Eval(15496, v is EmptyStructGen<int>?[], false);
- Eval(15497, v is NotEmptyStructGen<Guid>, false);
- Eval(15498, v is NotEmptyStructGen<Guid>[], false);
- Eval(15499, v is NotEmptyStructGen<Guid>?, false);
- Eval(15500, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15501, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15502, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15503, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15504, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15493, v is EmptyStructGen<int>, false);
+// Eval(15494, v is EmptyStructGen<int>[], false);
+// Eval(15495, v is EmptyStructGen<int>?, false);
+// Eval(15496, v is EmptyStructGen<int>?[], false);
+// Eval(15497, v is NotEmptyStructGen<Guid>, false);
+// Eval(15498, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15499, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15500, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15501, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15502, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15503, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15504, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15505, v is NestedStruct, false);
Eval(15506, v is NestedStruct[], false);
Eval(15507, v is NestedStruct?, false);
Eval(15508, v is NestedStruct?[], false);
- Eval(15509, v is NestedStructGen<Decimal>, false);
- Eval(15510, v is NestedStructGen<Decimal>[], false);
- Eval(15511, v is NestedStructGen<Decimal>?, false);
- Eval(15512, v is NestedStructGen<Decimal>?[], false);
+// Eval(15509, v is NestedStructGen<Decimal>, false);
+// Eval(15510, v is NestedStructGen<Decimal>[], false);
+// Eval(15511, v is NestedStructGen<Decimal>?, false);
+// Eval(15512, v is NestedStructGen<Decimal>?[], false);
Eval(15513, v is ExplicitFieldOffsetStruct, false);
Eval(15514, v is ExplicitFieldOffsetStruct[], false);
Eval(15515, v is ExplicitFieldOffsetStruct?, false);
@@ -13282,18 +13282,18 @@ internal class Program
Eval(15534, v is ImplementTwoInterface[], false);
Eval(15535, v is ImplementTwoInterface?, false);
Eval(15536, v is ImplementTwoInterface?[], false);
- Eval(15537, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15538, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15539, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15540, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15541, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15542, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15543, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15544, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15545, v is ImplementAllInterface<int>, false);
- Eval(15546, v is ImplementAllInterface<int>[], false);
- Eval(15547, v is ImplementAllInterface<int>?, false);
- Eval(15548, v is ImplementAllInterface<int>?[], true);
+// Eval(15537, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15538, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15539, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15540, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15541, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15542, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15543, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15544, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15545, v is ImplementAllInterface<int>, false);
+// Eval(15546, v is ImplementAllInterface<int>[], false);
+// Eval(15547, v is ImplementAllInterface<int>?, false);
+// Eval(15548, v is ImplementAllInterface<int>?[], true);
Eval(15549, v is IntE, false);
Eval(15550, v is IntE[], false);
Eval(15551, v is IntE?, false);
@@ -13392,38 +13392,38 @@ internal class Program
Eval(15644, v is IEmpty[], false);
Eval(15645, v is INotEmpty, false);
Eval(15646, v is INotEmpty[], false);
- Eval(15647, v is IEmptyGen<int>, false);
- Eval(15648, v is IEmptyGen<int>[], false);
- Eval(15649, v is INotEmptyGen<int>, false);
- Eval(15650, v is INotEmptyGen<int>[], false);
+// Eval(15647, v is IEmptyGen<int>, false);
+// Eval(15648, v is IEmptyGen<int>[], false);
+// Eval(15649, v is INotEmptyGen<int>, false);
+// Eval(15650, v is INotEmptyGen<int>[], false);
Eval(15651, v is SimpleDelegate, false);
Eval(15652, v is SimpleDelegate[], false);
- Eval(15653, v is GenericDelegate<int>, false);
- Eval(15654, v is GenericDelegate<int>[], false);
+// Eval(15653, v is GenericDelegate<int>, false);
+// Eval(15654, v is GenericDelegate<int>[], false);
Eval(15655, v is EmptyClass, false);
Eval(15656, v is EmptyClass[], false);
Eval(15657, v is NotEmptyClass, false);
Eval(15658, v is NotEmptyClass[], false);
- Eval(15659, v is EmptyClassGen<int>, false);
- Eval(15660, v is EmptyClassGen<int>[], false);
- Eval(15661, v is NotEmptyClassGen<Guid>, false);
- Eval(15662, v is NotEmptyClassGen<Guid>[], false);
- Eval(15663, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15664, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15659, v is EmptyClassGen<int>, false);
+// Eval(15660, v is EmptyClassGen<int>[], false);
+// Eval(15661, v is NotEmptyClassGen<Guid>, false);
+// Eval(15662, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15663, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15664, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15665, v is NestedClass, false);
Eval(15666, v is NestedClass[], false);
- Eval(15667, v is NestedClassGen<Decimal>, false);
- Eval(15668, v is NestedClassGen<Decimal>[], false);
+// Eval(15667, v is NestedClassGen<Decimal>, false);
+// Eval(15668, v is NestedClassGen<Decimal>[], false);
Eval(15669, v is ImplementOneInterfaceC, false);
Eval(15670, v is ImplementOneInterfaceC[], false);
Eval(15671, v is ImplementTwoInterfaceC, false);
Eval(15672, v is ImplementTwoInterfaceC[], false);
- Eval(15673, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15674, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15675, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15676, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15677, v is ImplementAllInterfaceC<int>, false);
- Eval(15678, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15673, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15674, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15675, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15676, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15677, v is ImplementAllInterfaceC<int>, false);
+// Eval(15678, v is ImplementAllInterfaceC<int>[], false);
Eval(15679, v is SealedClass, false);
Eval(15680, v is SealedClass[], false);
}
@@ -13440,26 +13440,26 @@ internal class Program
Eval(15686, v is NotEmptyStruct[], false);
Eval(15687, v is NotEmptyStruct?, false);
Eval(15688, v is NotEmptyStruct?[], false);
- Eval(15689, v is EmptyStructGen<int>, false);
- Eval(15690, v is EmptyStructGen<int>[], false);
- Eval(15691, v is EmptyStructGen<int>?, false);
- Eval(15692, v is EmptyStructGen<int>?[], false);
- Eval(15693, v is NotEmptyStructGen<Guid>, false);
- Eval(15694, v is NotEmptyStructGen<Guid>[], false);
- Eval(15695, v is NotEmptyStructGen<Guid>?, false);
- Eval(15696, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15697, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15698, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15699, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15700, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15689, v is EmptyStructGen<int>, false);
+// Eval(15690, v is EmptyStructGen<int>[], false);
+// Eval(15691, v is EmptyStructGen<int>?, false);
+// Eval(15692, v is EmptyStructGen<int>?[], false);
+// Eval(15693, v is NotEmptyStructGen<Guid>, false);
+// Eval(15694, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15695, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15696, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15697, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15698, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15699, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15700, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15701, v is NestedStruct, false);
Eval(15702, v is NestedStruct[], false);
Eval(15703, v is NestedStruct?, false);
Eval(15704, v is NestedStruct?[], false);
- Eval(15705, v is NestedStructGen<Decimal>, false);
- Eval(15706, v is NestedStructGen<Decimal>[], false);
- Eval(15707, v is NestedStructGen<Decimal>?, false);
- Eval(15708, v is NestedStructGen<Decimal>?[], false);
+// Eval(15705, v is NestedStructGen<Decimal>, false);
+// Eval(15706, v is NestedStructGen<Decimal>[], false);
+// Eval(15707, v is NestedStructGen<Decimal>?, false);
+// Eval(15708, v is NestedStructGen<Decimal>?[], false);
Eval(15709, v is ExplicitFieldOffsetStruct, false);
Eval(15710, v is ExplicitFieldOffsetStruct[], false);
Eval(15711, v is ExplicitFieldOffsetStruct?, false);
@@ -13476,18 +13476,18 @@ internal class Program
Eval(15730, v is ImplementTwoInterface[], false);
Eval(15731, v is ImplementTwoInterface?, false);
Eval(15732, v is ImplementTwoInterface?[], false);
- Eval(15733, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15734, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15735, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15736, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15737, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15738, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15739, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15740, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15741, v is ImplementAllInterface<int>, false);
- Eval(15742, v is ImplementAllInterface<int>[], false);
- Eval(15743, v is ImplementAllInterface<int>?, false);
- Eval(15744, v is ImplementAllInterface<int>?[], false);
+// Eval(15733, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15734, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15735, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15736, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15737, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15738, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15739, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15740, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15741, v is ImplementAllInterface<int>, false);
+// Eval(15742, v is ImplementAllInterface<int>[], false);
+// Eval(15743, v is ImplementAllInterface<int>?, false);
+// Eval(15744, v is ImplementAllInterface<int>?[], false);
Eval(15745, v is IntE, true);
Eval(15746, v is IntE[], false);
Eval(15747, v is IntE?, true);
@@ -13586,38 +13586,38 @@ internal class Program
Eval(15840, v is IEmpty[], false);
Eval(15841, v is INotEmpty, false);
Eval(15842, v is INotEmpty[], false);
- Eval(15843, v is IEmptyGen<int>, false);
- Eval(15844, v is IEmptyGen<int>[], false);
- Eval(15845, v is INotEmptyGen<int>, false);
- Eval(15846, v is INotEmptyGen<int>[], false);
+// Eval(15843, v is IEmptyGen<int>, false);
+// Eval(15844, v is IEmptyGen<int>[], false);
+// Eval(15845, v is INotEmptyGen<int>, false);
+// Eval(15846, v is INotEmptyGen<int>[], false);
Eval(15847, v is SimpleDelegate, false);
Eval(15848, v is SimpleDelegate[], false);
- Eval(15849, v is GenericDelegate<int>, false);
- Eval(15850, v is GenericDelegate<int>[], false);
+// Eval(15849, v is GenericDelegate<int>, false);
+// Eval(15850, v is GenericDelegate<int>[], false);
Eval(15851, v is EmptyClass, false);
Eval(15852, v is EmptyClass[], false);
Eval(15853, v is NotEmptyClass, false);
Eval(15854, v is NotEmptyClass[], false);
- Eval(15855, v is EmptyClassGen<int>, false);
- Eval(15856, v is EmptyClassGen<int>[], false);
- Eval(15857, v is NotEmptyClassGen<Guid>, false);
- Eval(15858, v is NotEmptyClassGen<Guid>[], false);
- Eval(15859, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15860, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15855, v is EmptyClassGen<int>, false);
+// Eval(15856, v is EmptyClassGen<int>[], false);
+// Eval(15857, v is NotEmptyClassGen<Guid>, false);
+// Eval(15858, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15859, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15860, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15861, v is NestedClass, false);
Eval(15862, v is NestedClass[], false);
- Eval(15863, v is NestedClassGen<Decimal>, false);
- Eval(15864, v is NestedClassGen<Decimal>[], false);
+// Eval(15863, v is NestedClassGen<Decimal>, false);
+// Eval(15864, v is NestedClassGen<Decimal>[], false);
Eval(15865, v is ImplementOneInterfaceC, false);
Eval(15866, v is ImplementOneInterfaceC[], false);
Eval(15867, v is ImplementTwoInterfaceC, false);
Eval(15868, v is ImplementTwoInterfaceC[], false);
- Eval(15869, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15870, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15871, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15872, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15873, v is ImplementAllInterfaceC<int>, false);
- Eval(15874, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15869, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15870, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15871, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15872, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15873, v is ImplementAllInterfaceC<int>, false);
+// Eval(15874, v is ImplementAllInterfaceC<int>[], false);
Eval(15875, v is SealedClass, false);
Eval(15876, v is SealedClass[], false);
}
@@ -13631,26 +13631,26 @@ internal class Program
Eval(15882, v is NotEmptyStruct[], false);
Eval(15883, v is NotEmptyStruct?, false);
Eval(15884, v is NotEmptyStruct?[], false);
- Eval(15885, v is EmptyStructGen<int>, false);
- Eval(15886, v is EmptyStructGen<int>[], false);
- Eval(15887, v is EmptyStructGen<int>?, false);
- Eval(15888, v is EmptyStructGen<int>?[], false);
- Eval(15889, v is NotEmptyStructGen<Guid>, false);
- Eval(15890, v is NotEmptyStructGen<Guid>[], false);
- Eval(15891, v is NotEmptyStructGen<Guid>?, false);
- Eval(15892, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15893, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15894, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15895, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15896, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15885, v is EmptyStructGen<int>, false);
+// Eval(15886, v is EmptyStructGen<int>[], false);
+// Eval(15887, v is EmptyStructGen<int>?, false);
+// Eval(15888, v is EmptyStructGen<int>?[], false);
+// Eval(15889, v is NotEmptyStructGen<Guid>, false);
+// Eval(15890, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15891, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15892, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15893, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15894, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15895, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15896, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15897, v is NestedStruct, false);
Eval(15898, v is NestedStruct[], false);
Eval(15899, v is NestedStruct?, false);
Eval(15900, v is NestedStruct?[], false);
- Eval(15901, v is NestedStructGen<Decimal>, false);
- Eval(15902, v is NestedStructGen<Decimal>[], false);
- Eval(15903, v is NestedStructGen<Decimal>?, false);
- Eval(15904, v is NestedStructGen<Decimal>?[], false);
+// Eval(15901, v is NestedStructGen<Decimal>, false);
+// Eval(15902, v is NestedStructGen<Decimal>[], false);
+// Eval(15903, v is NestedStructGen<Decimal>?, false);
+// Eval(15904, v is NestedStructGen<Decimal>?[], false);
Eval(15905, v is ExplicitFieldOffsetStruct, false);
Eval(15906, v is ExplicitFieldOffsetStruct[], false);
Eval(15907, v is ExplicitFieldOffsetStruct?, false);
@@ -13667,18 +13667,18 @@ internal class Program
Eval(15926, v is ImplementTwoInterface[], false);
Eval(15927, v is ImplementTwoInterface?, false);
Eval(15928, v is ImplementTwoInterface?[], false);
- Eval(15929, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15930, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15931, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15932, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15933, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15934, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15935, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15936, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15937, v is ImplementAllInterface<int>, false);
- Eval(15938, v is ImplementAllInterface<int>[], false);
- Eval(15939, v is ImplementAllInterface<int>?, false);
- Eval(15940, v is ImplementAllInterface<int>?[], false);
+// Eval(15929, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15930, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15931, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15932, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15933, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15934, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15935, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15936, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15937, v is ImplementAllInterface<int>, false);
+// Eval(15938, v is ImplementAllInterface<int>[], false);
+// Eval(15939, v is ImplementAllInterface<int>?, false);
+// Eval(15940, v is ImplementAllInterface<int>?[], false);
Eval(15941, v is IntE, true);
Eval(15942, v is IntE[], false);
Eval(15943, v is IntE?, true);
@@ -13777,38 +13777,38 @@ internal class Program
Eval(16036, v is IEmpty[], false);
Eval(16037, v is INotEmpty, false);
Eval(16038, v is INotEmpty[], false);
- Eval(16039, v is IEmptyGen<int>, false);
- Eval(16040, v is IEmptyGen<int>[], false);
- Eval(16041, v is INotEmptyGen<int>, false);
- Eval(16042, v is INotEmptyGen<int>[], false);
+// Eval(16039, v is IEmptyGen<int>, false);
+// Eval(16040, v is IEmptyGen<int>[], false);
+// Eval(16041, v is INotEmptyGen<int>, false);
+// Eval(16042, v is INotEmptyGen<int>[], false);
Eval(16043, v is SimpleDelegate, false);
Eval(16044, v is SimpleDelegate[], false);
- Eval(16045, v is GenericDelegate<int>, false);
- Eval(16046, v is GenericDelegate<int>[], false);
+// Eval(16045, v is GenericDelegate<int>, false);
+// Eval(16046, v is GenericDelegate<int>[], false);
Eval(16047, v is EmptyClass, false);
Eval(16048, v is EmptyClass[], false);
Eval(16049, v is NotEmptyClass, false);
Eval(16050, v is NotEmptyClass[], false);
- Eval(16051, v is EmptyClassGen<int>, false);
- Eval(16052, v is EmptyClassGen<int>[], false);
- Eval(16053, v is NotEmptyClassGen<Guid>, false);
- Eval(16054, v is NotEmptyClassGen<Guid>[], false);
- Eval(16055, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(16056, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16051, v is EmptyClassGen<int>, false);
+// Eval(16052, v is EmptyClassGen<int>[], false);
+// Eval(16053, v is NotEmptyClassGen<Guid>, false);
+// Eval(16054, v is NotEmptyClassGen<Guid>[], false);
+// Eval(16055, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16056, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(16057, v is NestedClass, false);
Eval(16058, v is NestedClass[], false);
- Eval(16059, v is NestedClassGen<Decimal>, false);
- Eval(16060, v is NestedClassGen<Decimal>[], false);
+// Eval(16059, v is NestedClassGen<Decimal>, false);
+// Eval(16060, v is NestedClassGen<Decimal>[], false);
Eval(16061, v is ImplementOneInterfaceC, false);
Eval(16062, v is ImplementOneInterfaceC[], false);
Eval(16063, v is ImplementTwoInterfaceC, false);
Eval(16064, v is ImplementTwoInterfaceC[], false);
- Eval(16065, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16066, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16067, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(16068, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16069, v is ImplementAllInterfaceC<int>, false);
- Eval(16070, v is ImplementAllInterfaceC<int>[], false);
+// Eval(16065, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16066, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16067, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16068, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16069, v is ImplementAllInterfaceC<int>, false);
+// Eval(16070, v is ImplementAllInterfaceC<int>[], false);
Eval(16071, v is SealedClass, false);
Eval(16072, v is SealedClass[], false);
}
@@ -13822,26 +13822,26 @@ internal class Program
Eval(16078, v is NotEmptyStruct[], false);
Eval(16079, v is NotEmptyStruct?, false);
Eval(16080, v is NotEmptyStruct?[], false);
- Eval(16081, v is EmptyStructGen<int>, false);
- Eval(16082, v is EmptyStructGen<int>[], false);
- Eval(16083, v is EmptyStructGen<int>?, false);
- Eval(16084, v is EmptyStructGen<int>?[], false);
- Eval(16085, v is NotEmptyStructGen<Guid>, false);
- Eval(16086, v is NotEmptyStructGen<Guid>[], false);
- Eval(16087, v is NotEmptyStructGen<Guid>?, false);
- Eval(16088, v is NotEmptyStructGen<Guid>?[], false);
- Eval(16089, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16090, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16091, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16092, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16081, v is EmptyStructGen<int>, false);
+// Eval(16082, v is EmptyStructGen<int>[], false);
+// Eval(16083, v is EmptyStructGen<int>?, false);
+// Eval(16084, v is EmptyStructGen<int>?[], false);
+// Eval(16085, v is NotEmptyStructGen<Guid>, false);
+// Eval(16086, v is NotEmptyStructGen<Guid>[], false);
+// Eval(16087, v is NotEmptyStructGen<Guid>?, false);
+// Eval(16088, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(16089, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16090, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16091, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16092, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16093, v is NestedStruct, false);
Eval(16094, v is NestedStruct[], false);
Eval(16095, v is NestedStruct?, false);
Eval(16096, v is NestedStruct?[], false);
- Eval(16097, v is NestedStructGen<Decimal>, false);
- Eval(16098, v is NestedStructGen<Decimal>[], false);
- Eval(16099, v is NestedStructGen<Decimal>?, false);
- Eval(16100, v is NestedStructGen<Decimal>?[], false);
+// Eval(16097, v is NestedStructGen<Decimal>, false);
+// Eval(16098, v is NestedStructGen<Decimal>[], false);
+// Eval(16099, v is NestedStructGen<Decimal>?, false);
+// Eval(16100, v is NestedStructGen<Decimal>?[], false);
Eval(16101, v is ExplicitFieldOffsetStruct, false);
Eval(16102, v is ExplicitFieldOffsetStruct[], false);
Eval(16103, v is ExplicitFieldOffsetStruct?, false);
@@ -13858,18 +13858,18 @@ internal class Program
Eval(16122, v is ImplementTwoInterface[], false);
Eval(16123, v is ImplementTwoInterface?, false);
Eval(16124, v is ImplementTwoInterface?[], false);
- Eval(16125, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16126, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16127, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16128, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16129, v is ImplementTwoInterfaceGen<int>, false);
- Eval(16130, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(16131, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(16132, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16133, v is ImplementAllInterface<int>, false);
- Eval(16134, v is ImplementAllInterface<int>[], false);
- Eval(16135, v is ImplementAllInterface<int>?, false);
- Eval(16136, v is ImplementAllInterface<int>?[], false);
+// Eval(16125, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16126, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16127, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16128, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16129, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(16130, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16131, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16132, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16133, v is ImplementAllInterface<int>, false);
+// Eval(16134, v is ImplementAllInterface<int>[], false);
+// Eval(16135, v is ImplementAllInterface<int>?, false);
+// Eval(16136, v is ImplementAllInterface<int>?[], false);
Eval(16137, v is IntE, false);
Eval(16138, v is IntE[], false);
Eval(16139, v is IntE?, false);
@@ -13968,38 +13968,38 @@ internal class Program
Eval(16232, v is IEmpty[], false);
Eval(16233, v is INotEmpty, false);
Eval(16234, v is INotEmpty[], false);
- Eval(16235, v is IEmptyGen<int>, false);
- Eval(16236, v is IEmptyGen<int>[], false);
- Eval(16237, v is INotEmptyGen<int>, false);
- Eval(16238, v is INotEmptyGen<int>[], false);
+// Eval(16235, v is IEmptyGen<int>, false);
+// Eval(16236, v is IEmptyGen<int>[], false);
+// Eval(16237, v is INotEmptyGen<int>, false);
+// Eval(16238, v is INotEmptyGen<int>[], false);
Eval(16239, v is SimpleDelegate, false);
Eval(16240, v is SimpleDelegate[], false);
- Eval(16241, v is GenericDelegate<int>, false);
- Eval(16242, v is GenericDelegate<int>[], false);
+// Eval(16241, v is GenericDelegate<int>, false);
+// Eval(16242, v is GenericDelegate<int>[], false);
Eval(16243, v is EmptyClass, false);
Eval(16244, v is EmptyClass[], false);
Eval(16245, v is NotEmptyClass, false);
Eval(16246, v is NotEmptyClass[], false);
- Eval(16247, v is EmptyClassGen<int>, false);
- Eval(16248, v is EmptyClassGen<int>[], false);
- Eval(16249, v is NotEmptyClassGen<Guid>, false);
- Eval(16250, v is NotEmptyClassGen<Guid>[], false);
- Eval(16251, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(16252, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16247, v is EmptyClassGen<int>, false);
+// Eval(16248, v is EmptyClassGen<int>[], false);
+// Eval(16249, v is NotEmptyClassGen<Guid>, false);
+// Eval(16250, v is NotEmptyClassGen<Guid>[], false);
+// Eval(16251, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16252, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(16253, v is NestedClass, false);
Eval(16254, v is NestedClass[], false);
- Eval(16255, v is NestedClassGen<Decimal>, false);
- Eval(16256, v is NestedClassGen<Decimal>[], false);
+// Eval(16255, v is NestedClassGen<Decimal>, false);
+// Eval(16256, v is NestedClassGen<Decimal>[], false);
Eval(16257, v is ImplementOneInterfaceC, false);
Eval(16258, v is ImplementOneInterfaceC[], false);
Eval(16259, v is ImplementTwoInterfaceC, false);
Eval(16260, v is ImplementTwoInterfaceC[], false);
- Eval(16261, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16262, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16263, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(16264, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16265, v is ImplementAllInterfaceC<int>, false);
- Eval(16266, v is ImplementAllInterfaceC<int>[], false);
+// Eval(16261, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16262, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16263, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16264, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16265, v is ImplementAllInterfaceC<int>, false);
+// Eval(16266, v is ImplementAllInterfaceC<int>[], false);
Eval(16267, v is SealedClass, false);
Eval(16268, v is SealedClass[], false);
}
@@ -14013,26 +14013,26 @@ internal class Program
Eval(16274, v is NotEmptyStruct[], false);
Eval(16275, v is NotEmptyStruct?, false);
Eval(16276, v is NotEmptyStruct?[], false);
- Eval(16277, v is EmptyStructGen<int>, false);
- Eval(16278, v is EmptyStructGen<int>[], false);
- Eval(16279, v is EmptyStructGen<int>?, false);
- Eval(16280, v is EmptyStructGen<int>?[], false);
- Eval(16281, v is NotEmptyStructGen<Guid>, false);
- Eval(16282, v is NotEmptyStructGen<Guid>[], false);
- Eval(16283, v is NotEmptyStructGen<Guid>?, false);
- Eval(16284, v is NotEmptyStructGen<Guid>?[], false);
- Eval(16285, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16286, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16287, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16288, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16277, v is EmptyStructGen<int>, false);
+// Eval(16278, v is EmptyStructGen<int>[], false);
+// Eval(16279, v is EmptyStructGen<int>?, false);
+// Eval(16280, v is EmptyStructGen<int>?[], false);
+// Eval(16281, v is NotEmptyStructGen<Guid>, false);
+// Eval(16282, v is NotEmptyStructGen<Guid>[], false);
+// Eval(16283, v is NotEmptyStructGen<Guid>?, false);
+// Eval(16284, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(16285, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16286, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16287, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16288, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16289, v is NestedStruct, false);
Eval(16290, v is NestedStruct[], false);
Eval(16291, v is NestedStruct?, false);
Eval(16292, v is NestedStruct?[], false);
- Eval(16293, v is NestedStructGen<Decimal>, false);
- Eval(16294, v is NestedStructGen<Decimal>[], false);
- Eval(16295, v is NestedStructGen<Decimal>?, false);
- Eval(16296, v is NestedStructGen<Decimal>?[], false);
+// Eval(16293, v is NestedStructGen<Decimal>, false);
+// Eval(16294, v is NestedStructGen<Decimal>[], false);
+// Eval(16295, v is NestedStructGen<Decimal>?, false);
+// Eval(16296, v is NestedStructGen<Decimal>?[], false);
Eval(16297, v is ExplicitFieldOffsetStruct, false);
Eval(16298, v is ExplicitFieldOffsetStruct[], false);
Eval(16299, v is ExplicitFieldOffsetStruct?, false);
@@ -14049,18 +14049,18 @@ internal class Program
Eval(16318, v is ImplementTwoInterface[], false);
Eval(16319, v is ImplementTwoInterface?, false);
Eval(16320, v is ImplementTwoInterface?[], false);
- Eval(16321, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16322, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16323, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16324, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16325, v is ImplementTwoInterfaceGen<int>, false);
- Eval(16326, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(16327, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(16328, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16329, v is ImplementAllInterface<int>, false);
- Eval(16330, v is ImplementAllInterface<int>[], false);
- Eval(16331, v is ImplementAllInterface<int>?, false);
- Eval(16332, v is ImplementAllInterface<int>?[], false);
+// Eval(16321, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16322, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16323, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16324, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16325, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(16326, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16327, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16328, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16329, v is ImplementAllInterface<int>, false);
+// Eval(16330, v is ImplementAllInterface<int>[], false);
+// Eval(16331, v is ImplementAllInterface<int>?, false);
+// Eval(16332, v is ImplementAllInterface<int>?[], false);
Eval(16333, v is IntE, false);
Eval(16334, v is IntE[], false);
Eval(16335, v is IntE?, false);
@@ -14159,38 +14159,38 @@ internal class Program
Eval(16428, v is IEmpty[], false);
Eval(16429, v is INotEmpty, false);
Eval(16430, v is INotEmpty[], false);
- Eval(16431, v is IEmptyGen<int>, false);
- Eval(16432, v is IEmptyGen<int>[], false);
- Eval(16433, v is INotEmptyGen<int>, false);
- Eval(16434, v is INotEmptyGen<int>[], false);
+// Eval(16431, v is IEmptyGen<int>, false);
+// Eval(16432, v is IEmptyGen<int>[], false);
+// Eval(16433, v is INotEmptyGen<int>, false);
+// Eval(16434, v is INotEmptyGen<int>[], false);
Eval(16435, v is SimpleDelegate, false);
Eval(16436, v is SimpleDelegate[], false);
- Eval(16437, v is GenericDelegate<int>, false);
- Eval(16438, v is GenericDelegate<int>[], false);
+// Eval(16437, v is GenericDelegate<int>, false);
+// Eval(16438, v is GenericDelegate<int>[], false);
Eval(16439, v is EmptyClass, false);
Eval(16440, v is EmptyClass[], false);
Eval(16441, v is NotEmptyClass, false);
Eval(16442, v is NotEmptyClass[], false);
- Eval(16443, v is EmptyClassGen<int>, false);
- Eval(16444, v is EmptyClassGen<int>[], false);
- Eval(16445, v is NotEmptyClassGen<Guid>, false);
- Eval(16446, v is NotEmptyClassGen<Guid>[], false);
- Eval(16447, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(16448, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16443, v is EmptyClassGen<int>, false);
+// Eval(16444, v is EmptyClassGen<int>[], false);
+// Eval(16445, v is NotEmptyClassGen<Guid>, false);
+// Eval(16446, v is NotEmptyClassGen<Guid>[], false);
+// Eval(16447, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16448, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(16449, v is NestedClass, false);
Eval(16450, v is NestedClass[], false);
- Eval(16451, v is NestedClassGen<Decimal>, false);
- Eval(16452, v is NestedClassGen<Decimal>[], false);
+// Eval(16451, v is NestedClassGen<Decimal>, false);
+// Eval(16452, v is NestedClassGen<Decimal>[], false);
Eval(16453, v is ImplementOneInterfaceC, false);
Eval(16454, v is ImplementOneInterfaceC[], false);
Eval(16455, v is ImplementTwoInterfaceC, false);
Eval(16456, v is ImplementTwoInterfaceC[], false);
- Eval(16457, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16458, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16459, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(16460, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16461, v is ImplementAllInterfaceC<int>, false);
- Eval(16462, v is ImplementAllInterfaceC<int>[], false);
+// Eval(16457, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16458, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16459, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16460, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16461, v is ImplementAllInterfaceC<int>, false);
+// Eval(16462, v is ImplementAllInterfaceC<int>[], false);
Eval(16463, v is SealedClass, false);
Eval(16464, v is SealedClass[], false);
}
@@ -14204,26 +14204,26 @@ internal class Program
Eval(16470, v is NotEmptyStruct[], false);
Eval(16471, v is NotEmptyStruct?, false);
Eval(16472, v is NotEmptyStruct?[], false);
- Eval(16473, v is EmptyStructGen<int>, false);
- Eval(16474, v is EmptyStructGen<int>[], false);
- Eval(16475, v is EmptyStructGen<int>?, false);
- Eval(16476, v is EmptyStructGen<int>?[], false);
- Eval(16477, v is NotEmptyStructGen<Guid>, false);
- Eval(16478, v is NotEmptyStructGen<Guid>[], false);
- Eval(16479, v is NotEmptyStructGen<Guid>?, false);
- Eval(16480, v is NotEmptyStructGen<Guid>?[], false);
- Eval(16481, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16482, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16483, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16484, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16473, v is EmptyStructGen<int>, false);
+// Eval(16474, v is EmptyStructGen<int>[], false);
+// Eval(16475, v is EmptyStructGen<int>?, false);
+// Eval(16476, v is EmptyStructGen<int>?[], false);
+// Eval(16477, v is NotEmptyStructGen<Guid>, false);
+// Eval(16478, v is NotEmptyStructGen<Guid>[], false);
+// Eval(16479, v is NotEmptyStructGen<Guid>?, false);
+// Eval(16480, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(16481, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16482, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16483, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16484, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16485, v is NestedStruct, false);
Eval(16486, v is NestedStruct[], false);
Eval(16487, v is NestedStruct?, false);
Eval(16488, v is NestedStruct?[], false);
- Eval(16489, v is NestedStructGen<Decimal>, false);
- Eval(16490, v is NestedStructGen<Decimal>[], false);
- Eval(16491, v is NestedStructGen<Decimal>?, false);
- Eval(16492, v is NestedStructGen<Decimal>?[], false);
+// Eval(16489, v is NestedStructGen<Decimal>, false);
+// Eval(16490, v is NestedStructGen<Decimal>[], false);
+// Eval(16491, v is NestedStructGen<Decimal>?, false);
+// Eval(16492, v is NestedStructGen<Decimal>?[], false);
Eval(16493, v is ExplicitFieldOffsetStruct, false);
Eval(16494, v is ExplicitFieldOffsetStruct[], false);
Eval(16495, v is ExplicitFieldOffsetStruct?, false);
@@ -14240,18 +14240,18 @@ internal class Program
Eval(16514, v is ImplementTwoInterface[], false);
Eval(16515, v is ImplementTwoInterface?, false);
Eval(16516, v is ImplementTwoInterface?[], false);
- Eval(16517, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16518, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16519, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16520, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16521, v is ImplementTwoInterfaceGen<int>, false);
- Eval(16522, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(16523, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(16524, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16525, v is ImplementAllInterface<int>, false);
- Eval(16526, v is ImplementAllInterface<int>[], false);
- Eval(16527, v is ImplementAllInterface<int>?, false);
- Eval(16528, v is ImplementAllInterface<int>?[], false);
+// Eval(16517, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16518, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16519, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16520, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16521, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(16522, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16523, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16524, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16525, v is ImplementAllInterface<int>, false);
+// Eval(16526, v is ImplementAllInterface<int>[], false);
+// Eval(16527, v is ImplementAllInterface<int>?, false);
+// Eval(16528, v is ImplementAllInterface<int>?[], false);
Eval(16529, v is IntE, false);
Eval(16530, v is IntE[], false);
Eval(16531, v is IntE?, false);
@@ -14350,38 +14350,38 @@ internal class Program
Eval(16624, v is IEmpty[], false);
Eval(16625, v is INotEmpty, false);
Eval(16626, v is INotEmpty[], false);
- Eval(16627, v is IEmptyGen<int>, false);
- Eval(16628, v is IEmptyGen<int>[], false);
- Eval(16629, v is INotEmptyGen<int>, false);
- Eval(16630, v is INotEmptyGen<int>[], false);
+// Eval(16627, v is IEmptyGen<int>, false);
+// Eval(16628, v is IEmptyGen<int>[], false);
+// Eval(16629, v is INotEmptyGen<int>, false);
+// Eval(16630, v is INotEmptyGen<int>[], false);
Eval(16631, v is SimpleDelegate, false);
Eval(16632, v is SimpleDelegate[], false);
- Eval(16633, v is GenericDelegate<int>, false);
- Eval(16634, v is GenericDelegate<int>[], false);
+// Eval(16633, v is GenericDelegate<int>, false);
+// Eval(16634, v is GenericDelegate<int>[], false);
Eval(16635, v is EmptyClass, false);
Eval(16636, v is EmptyClass[], false);
Eval(16637, v is NotEmptyClass, false);
Eval(16638, v is NotEmptyClass[], false);
- Eval(16639, v is EmptyClassGen<int>, false);
- Eval(16640, v is EmptyClassGen<int>[], false);
- Eval(16641, v is NotEmptyClassGen<Guid>, false);
- Eval(16642, v is NotEmptyClassGen<Guid>[], false);
- Eval(16643, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(16644, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16639, v is EmptyClassGen<int>, false);
+// Eval(16640, v is EmptyClassGen<int>[], false);
+// Eval(16641, v is NotEmptyClassGen<Guid>, false);
+// Eval(16642, v is NotEmptyClassGen<Guid>[], false);
+// Eval(16643, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16644, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(16645, v is NestedClass, false);
Eval(16646, v is NestedClass[], false);
- Eval(16647, v is NestedClassGen<Decimal>, false);
- Eval(16648, v is NestedClassGen<Decimal>[], false);
+// Eval(16647, v is NestedClassGen<Decimal>, false);
+// Eval(16648, v is NestedClassGen<Decimal>[], false);
Eval(16649, v is ImplementOneInterfaceC, false);
Eval(16650, v is ImplementOneInterfaceC[], false);
Eval(16651, v is ImplementTwoInterfaceC, false);
Eval(16652, v is ImplementTwoInterfaceC[], false);
- Eval(16653, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16654, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16655, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(16656, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16657, v is ImplementAllInterfaceC<int>, false);
- Eval(16658, v is ImplementAllInterfaceC<int>[], false);
+// Eval(16653, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16654, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16655, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16656, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16657, v is ImplementAllInterfaceC<int>, false);
+// Eval(16658, v is ImplementAllInterfaceC<int>[], false);
Eval(16659, v is SealedClass, false);
Eval(16660, v is SealedClass[], false);
}
@@ -14398,26 +14398,26 @@ internal class Program
Eval(16666, v is NotEmptyStruct[], false);
Eval(16667, v is NotEmptyStruct?, false);
Eval(16668, v is NotEmptyStruct?[], false);
- Eval(16669, v is EmptyStructGen<int>, false);
- Eval(16670, v is EmptyStructGen<int>[], false);
- Eval(16671, v is EmptyStructGen<int>?, false);
- Eval(16672, v is EmptyStructGen<int>?[], false);
- Eval(16673, v is NotEmptyStructGen<Guid>, false);
- Eval(16674, v is NotEmptyStructGen<Guid>[], false);
- Eval(16675, v is NotEmptyStructGen<Guid>?, false);
- Eval(16676, v is NotEmptyStructGen<Guid>?[], false);
- Eval(16677, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16678, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16679, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16680, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16669, v is EmptyStructGen<int>, false);
+// Eval(16670, v is EmptyStructGen<int>[], false);
+// Eval(16671, v is EmptyStructGen<int>?, false);
+// Eval(16672, v is EmptyStructGen<int>?[], false);
+// Eval(16673, v is NotEmptyStructGen<Guid>, false);
+// Eval(16674, v is NotEmptyStructGen<Guid>[], false);
+// Eval(16675, v is NotEmptyStructGen<Guid>?, false);
+// Eval(16676, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(16677, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16678, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16679, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16680, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16681, v is NestedStruct, false);
Eval(16682, v is NestedStruct[], false);
Eval(16683, v is NestedStruct?, false);
Eval(16684, v is NestedStruct?[], false);
- Eval(16685, v is NestedStructGen<Decimal>, false);
- Eval(16686, v is NestedStructGen<Decimal>[], false);
- Eval(16687, v is NestedStructGen<Decimal>?, false);
- Eval(16688, v is NestedStructGen<Decimal>?[], false);
+// Eval(16685, v is NestedStructGen<Decimal>, false);
+// Eval(16686, v is NestedStructGen<Decimal>[], false);
+// Eval(16687, v is NestedStructGen<Decimal>?, false);
+// Eval(16688, v is NestedStructGen<Decimal>?[], false);
Eval(16689, v is ExplicitFieldOffsetStruct, false);
Eval(16690, v is ExplicitFieldOffsetStruct[], false);
Eval(16691, v is ExplicitFieldOffsetStruct?, false);
@@ -14434,18 +14434,18 @@ internal class Program
Eval(16710, v is ImplementTwoInterface[], false);
Eval(16711, v is ImplementTwoInterface?, false);
Eval(16712, v is ImplementTwoInterface?[], false);
- Eval(16713, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16714, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16715, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16716, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16717, v is ImplementTwoInterfaceGen<int>, false);
- Eval(16718, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(16719, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(16720, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16721, v is ImplementAllInterface<int>, false);
- Eval(16722, v is ImplementAllInterface<int>[], false);
- Eval(16723, v is ImplementAllInterface<int>?, false);
- Eval(16724, v is ImplementAllInterface<int>?[], false);
+// Eval(16713, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16714, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16715, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16716, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16717, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(16718, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16719, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16720, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16721, v is ImplementAllInterface<int>, false);
+// Eval(16722, v is ImplementAllInterface<int>[], false);
+// Eval(16723, v is ImplementAllInterface<int>?, false);
+// Eval(16724, v is ImplementAllInterface<int>?[], false);
Eval(16725, v is IntE, false);
Eval(16726, v is IntE[], false);
Eval(16727, v is IntE?, false);
@@ -14544,38 +14544,38 @@ internal class Program
Eval(16820, v is IEmpty[], false);
Eval(16821, v is INotEmpty, false);
Eval(16822, v is INotEmpty[], false);
- Eval(16823, v is IEmptyGen<int>, false);
- Eval(16824, v is IEmptyGen<int>[], false);
- Eval(16825, v is INotEmptyGen<int>, false);
- Eval(16826, v is INotEmptyGen<int>[], false);
+// Eval(16823, v is IEmptyGen<int>, false);
+// Eval(16824, v is IEmptyGen<int>[], false);
+// Eval(16825, v is INotEmptyGen<int>, false);
+// Eval(16826, v is INotEmptyGen<int>[], false);
Eval(16827, v is SimpleDelegate, false);
Eval(16828, v is SimpleDelegate[], false);
- Eval(16829, v is GenericDelegate<int>, false);
- Eval(16830, v is GenericDelegate<int>[], false);
+// Eval(16829, v is GenericDelegate<int>, false);
+// Eval(16830, v is GenericDelegate<int>[], false);
Eval(16831, v is EmptyClass, false);
Eval(16832, v is EmptyClass[], false);
Eval(16833, v is NotEmptyClass, false);
Eval(16834, v is NotEmptyClass[], false);
- Eval(16835, v is EmptyClassGen<int>, false);
- Eval(16836, v is EmptyClassGen<int>[], false);
- Eval(16837, v is NotEmptyClassGen<Guid>, false);
- Eval(16838, v is NotEmptyClassGen<Guid>[], false);
- Eval(16839, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(16840, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16835, v is EmptyClassGen<int>, false);
+// Eval(16836, v is EmptyClassGen<int>[], false);
+// Eval(16837, v is NotEmptyClassGen<Guid>, false);
+// Eval(16838, v is NotEmptyClassGen<Guid>[], false);
+// Eval(16839, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16840, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(16841, v is NestedClass, false);
Eval(16842, v is NestedClass[], false);
- Eval(16843, v is NestedClassGen<Decimal>, false);
- Eval(16844, v is NestedClassGen<Decimal>[], false);
+// Eval(16843, v is NestedClassGen<Decimal>, false);
+// Eval(16844, v is NestedClassGen<Decimal>[], false);
Eval(16845, v is ImplementOneInterfaceC, false);
Eval(16846, v is ImplementOneInterfaceC[], false);
Eval(16847, v is ImplementTwoInterfaceC, false);
Eval(16848, v is ImplementTwoInterfaceC[], false);
- Eval(16849, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16850, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16851, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(16852, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16853, v is ImplementAllInterfaceC<int>, false);
- Eval(16854, v is ImplementAllInterfaceC<int>[], false);
+// Eval(16849, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16850, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16851, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16852, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16853, v is ImplementAllInterfaceC<int>, false);
+// Eval(16854, v is ImplementAllInterfaceC<int>[], false);
Eval(16855, v is SealedClass, false);
Eval(16856, v is SealedClass[], false);
}
@@ -14589,26 +14589,26 @@ internal class Program
Eval(16862, v is NotEmptyStruct[], false);
Eval(16863, v is NotEmptyStruct?, false);
Eval(16864, v is NotEmptyStruct?[], false);
- Eval(16865, v is EmptyStructGen<int>, false);
- Eval(16866, v is EmptyStructGen<int>[], false);
- Eval(16867, v is EmptyStructGen<int>?, false);
- Eval(16868, v is EmptyStructGen<int>?[], false);
- Eval(16869, v is NotEmptyStructGen<Guid>, false);
- Eval(16870, v is NotEmptyStructGen<Guid>[], false);
- Eval(16871, v is NotEmptyStructGen<Guid>?, false);
- Eval(16872, v is NotEmptyStructGen<Guid>?[], false);
- Eval(16873, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16874, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16875, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16876, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16865, v is EmptyStructGen<int>, false);
+// Eval(16866, v is EmptyStructGen<int>[], false);
+// Eval(16867, v is EmptyStructGen<int>?, false);
+// Eval(16868, v is EmptyStructGen<int>?[], false);
+// Eval(16869, v is NotEmptyStructGen<Guid>, false);
+// Eval(16870, v is NotEmptyStructGen<Guid>[], false);
+// Eval(16871, v is NotEmptyStructGen<Guid>?, false);
+// Eval(16872, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(16873, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16874, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16875, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16876, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16877, v is NestedStruct, false);
Eval(16878, v is NestedStruct[], false);
Eval(16879, v is NestedStruct?, false);
Eval(16880, v is NestedStruct?[], false);
- Eval(16881, v is NestedStructGen<Decimal>, false);
- Eval(16882, v is NestedStructGen<Decimal>[], false);
- Eval(16883, v is NestedStructGen<Decimal>?, false);
- Eval(16884, v is NestedStructGen<Decimal>?[], false);
+// Eval(16881, v is NestedStructGen<Decimal>, false);
+// Eval(16882, v is NestedStructGen<Decimal>[], false);
+// Eval(16883, v is NestedStructGen<Decimal>?, false);
+// Eval(16884, v is NestedStructGen<Decimal>?[], false);
Eval(16885, v is ExplicitFieldOffsetStruct, false);
Eval(16886, v is ExplicitFieldOffsetStruct[], false);
Eval(16887, v is ExplicitFieldOffsetStruct?, false);
@@ -14625,18 +14625,18 @@ internal class Program
Eval(16906, v is ImplementTwoInterface[], false);
Eval(16907, v is ImplementTwoInterface?, false);
Eval(16908, v is ImplementTwoInterface?[], false);
- Eval(16909, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16910, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16911, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16912, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16913, v is ImplementTwoInterfaceGen<int>, false);
- Eval(16914, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(16915, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(16916, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16917, v is ImplementAllInterface<int>, false);
- Eval(16918, v is ImplementAllInterface<int>[], false);
- Eval(16919, v is ImplementAllInterface<int>?, false);
- Eval(16920, v is ImplementAllInterface<int>?[], false);
+// Eval(16909, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16910, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16911, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16912, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16913, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(16914, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16915, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16916, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16917, v is ImplementAllInterface<int>, false);
+// Eval(16918, v is ImplementAllInterface<int>[], false);
+// Eval(16919, v is ImplementAllInterface<int>?, false);
+// Eval(16920, v is ImplementAllInterface<int>?[], false);
Eval(16921, v is IntE, false);
Eval(16922, v is IntE[], false);
Eval(16923, v is IntE?, false);
@@ -14735,38 +14735,38 @@ internal class Program
Eval(17016, v is IEmpty[], false);
Eval(17017, v is INotEmpty, false);
Eval(17018, v is INotEmpty[], false);
- Eval(17019, v is IEmptyGen<int>, false);
- Eval(17020, v is IEmptyGen<int>[], false);
- Eval(17021, v is INotEmptyGen<int>, false);
- Eval(17022, v is INotEmptyGen<int>[], false);
+// Eval(17019, v is IEmptyGen<int>, false);
+// Eval(17020, v is IEmptyGen<int>[], false);
+// Eval(17021, v is INotEmptyGen<int>, false);
+// Eval(17022, v is INotEmptyGen<int>[], false);
Eval(17023, v is SimpleDelegate, false);
Eval(17024, v is SimpleDelegate[], false);
- Eval(17025, v is GenericDelegate<int>, false);
- Eval(17026, v is GenericDelegate<int>[], false);
+// Eval(17025, v is GenericDelegate<int>, false);
+// Eval(17026, v is GenericDelegate<int>[], false);
Eval(17027, v is EmptyClass, false);
Eval(17028, v is EmptyClass[], false);
Eval(17029, v is NotEmptyClass, false);
Eval(17030, v is NotEmptyClass[], false);
- Eval(17031, v is EmptyClassGen<int>, false);
- Eval(17032, v is EmptyClassGen<int>[], false);
- Eval(17033, v is NotEmptyClassGen<Guid>, false);
- Eval(17034, v is NotEmptyClassGen<Guid>[], false);
- Eval(17035, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(17036, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17031, v is EmptyClassGen<int>, false);
+// Eval(17032, v is EmptyClassGen<int>[], false);
+// Eval(17033, v is NotEmptyClassGen<Guid>, false);
+// Eval(17034, v is NotEmptyClassGen<Guid>[], false);
+// Eval(17035, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17036, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(17037, v is NestedClass, false);
Eval(17038, v is NestedClass[], false);
- Eval(17039, v is NestedClassGen<Decimal>, false);
- Eval(17040, v is NestedClassGen<Decimal>[], false);
+// Eval(17039, v is NestedClassGen<Decimal>, false);
+// Eval(17040, v is NestedClassGen<Decimal>[], false);
Eval(17041, v is ImplementOneInterfaceC, false);
Eval(17042, v is ImplementOneInterfaceC[], false);
Eval(17043, v is ImplementTwoInterfaceC, false);
Eval(17044, v is ImplementTwoInterfaceC[], false);
- Eval(17045, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17046, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17047, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(17048, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17049, v is ImplementAllInterfaceC<int>, false);
- Eval(17050, v is ImplementAllInterfaceC<int>[], false);
+// Eval(17045, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17046, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17047, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17048, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17049, v is ImplementAllInterfaceC<int>, false);
+// Eval(17050, v is ImplementAllInterfaceC<int>[], false);
Eval(17051, v is SealedClass, false);
Eval(17052, v is SealedClass[], false);
}
@@ -14780,26 +14780,26 @@ internal class Program
Eval(17058, v is NotEmptyStruct[], false);
Eval(17059, v is NotEmptyStruct?, false);
Eval(17060, v is NotEmptyStruct?[], false);
- Eval(17061, v is EmptyStructGen<int>, false);
- Eval(17062, v is EmptyStructGen<int>[], false);
- Eval(17063, v is EmptyStructGen<int>?, false);
- Eval(17064, v is EmptyStructGen<int>?[], false);
- Eval(17065, v is NotEmptyStructGen<Guid>, false);
- Eval(17066, v is NotEmptyStructGen<Guid>[], false);
- Eval(17067, v is NotEmptyStructGen<Guid>?, false);
- Eval(17068, v is NotEmptyStructGen<Guid>?[], false);
- Eval(17069, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17070, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17071, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17072, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17061, v is EmptyStructGen<int>, false);
+// Eval(17062, v is EmptyStructGen<int>[], false);
+// Eval(17063, v is EmptyStructGen<int>?, false);
+// Eval(17064, v is EmptyStructGen<int>?[], false);
+// Eval(17065, v is NotEmptyStructGen<Guid>, false);
+// Eval(17066, v is NotEmptyStructGen<Guid>[], false);
+// Eval(17067, v is NotEmptyStructGen<Guid>?, false);
+// Eval(17068, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(17069, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17070, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17071, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17072, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17073, v is NestedStruct, false);
Eval(17074, v is NestedStruct[], false);
Eval(17075, v is NestedStruct?, false);
Eval(17076, v is NestedStruct?[], false);
- Eval(17077, v is NestedStructGen<Decimal>, false);
- Eval(17078, v is NestedStructGen<Decimal>[], false);
- Eval(17079, v is NestedStructGen<Decimal>?, false);
- Eval(17080, v is NestedStructGen<Decimal>?[], false);
+// Eval(17077, v is NestedStructGen<Decimal>, false);
+// Eval(17078, v is NestedStructGen<Decimal>[], false);
+// Eval(17079, v is NestedStructGen<Decimal>?, false);
+// Eval(17080, v is NestedStructGen<Decimal>?[], false);
Eval(17081, v is ExplicitFieldOffsetStruct, false);
Eval(17082, v is ExplicitFieldOffsetStruct[], false);
Eval(17083, v is ExplicitFieldOffsetStruct?, false);
@@ -14816,18 +14816,18 @@ internal class Program
Eval(17102, v is ImplementTwoInterface[], false);
Eval(17103, v is ImplementTwoInterface?, false);
Eval(17104, v is ImplementTwoInterface?[], false);
- Eval(17105, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17106, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17107, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17108, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17109, v is ImplementTwoInterfaceGen<int>, false);
- Eval(17110, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(17111, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(17112, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17113, v is ImplementAllInterface<int>, false);
- Eval(17114, v is ImplementAllInterface<int>[], false);
- Eval(17115, v is ImplementAllInterface<int>?, false);
- Eval(17116, v is ImplementAllInterface<int>?[], false);
+// Eval(17105, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17106, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17107, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17108, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17109, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(17110, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17111, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17112, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17113, v is ImplementAllInterface<int>, false);
+// Eval(17114, v is ImplementAllInterface<int>[], false);
+// Eval(17115, v is ImplementAllInterface<int>?, false);
+// Eval(17116, v is ImplementAllInterface<int>?[], false);
Eval(17117, v is IntE, false);
Eval(17118, v is IntE[], false);
Eval(17119, v is IntE?, false);
@@ -14926,38 +14926,38 @@ internal class Program
Eval(17212, v is IEmpty[], false);
Eval(17213, v is INotEmpty, false);
Eval(17214, v is INotEmpty[], false);
- Eval(17215, v is IEmptyGen<int>, false);
- Eval(17216, v is IEmptyGen<int>[], false);
- Eval(17217, v is INotEmptyGen<int>, false);
- Eval(17218, v is INotEmptyGen<int>[], false);
+// Eval(17215, v is IEmptyGen<int>, false);
+// Eval(17216, v is IEmptyGen<int>[], false);
+// Eval(17217, v is INotEmptyGen<int>, false);
+// Eval(17218, v is INotEmptyGen<int>[], false);
Eval(17219, v is SimpleDelegate, false);
Eval(17220, v is SimpleDelegate[], false);
- Eval(17221, v is GenericDelegate<int>, false);
- Eval(17222, v is GenericDelegate<int>[], false);
+// Eval(17221, v is GenericDelegate<int>, false);
+// Eval(17222, v is GenericDelegate<int>[], false);
Eval(17223, v is EmptyClass, false);
Eval(17224, v is EmptyClass[], false);
Eval(17225, v is NotEmptyClass, false);
Eval(17226, v is NotEmptyClass[], false);
- Eval(17227, v is EmptyClassGen<int>, false);
- Eval(17228, v is EmptyClassGen<int>[], false);
- Eval(17229, v is NotEmptyClassGen<Guid>, false);
- Eval(17230, v is NotEmptyClassGen<Guid>[], false);
- Eval(17231, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(17232, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17227, v is EmptyClassGen<int>, false);
+// Eval(17228, v is EmptyClassGen<int>[], false);
+// Eval(17229, v is NotEmptyClassGen<Guid>, false);
+// Eval(17230, v is NotEmptyClassGen<Guid>[], false);
+// Eval(17231, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17232, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(17233, v is NestedClass, false);
Eval(17234, v is NestedClass[], false);
- Eval(17235, v is NestedClassGen<Decimal>, false);
- Eval(17236, v is NestedClassGen<Decimal>[], false);
+// Eval(17235, v is NestedClassGen<Decimal>, false);
+// Eval(17236, v is NestedClassGen<Decimal>[], false);
Eval(17237, v is ImplementOneInterfaceC, false);
Eval(17238, v is ImplementOneInterfaceC[], false);
Eval(17239, v is ImplementTwoInterfaceC, false);
Eval(17240, v is ImplementTwoInterfaceC[], false);
- Eval(17241, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17242, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17243, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(17244, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17245, v is ImplementAllInterfaceC<int>, false);
- Eval(17246, v is ImplementAllInterfaceC<int>[], false);
+// Eval(17241, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17242, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17243, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17244, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17245, v is ImplementAllInterfaceC<int>, false);
+// Eval(17246, v is ImplementAllInterfaceC<int>[], false);
Eval(17247, v is SealedClass, false);
Eval(17248, v is SealedClass[], false);
}
@@ -14971,26 +14971,26 @@ internal class Program
Eval(17254, v is NotEmptyStruct[], false);
Eval(17255, v is NotEmptyStruct?, false);
Eval(17256, v is NotEmptyStruct?[], false);
- Eval(17257, v is EmptyStructGen<int>, false);
- Eval(17258, v is EmptyStructGen<int>[], false);
- Eval(17259, v is EmptyStructGen<int>?, false);
- Eval(17260, v is EmptyStructGen<int>?[], false);
- Eval(17261, v is NotEmptyStructGen<Guid>, false);
- Eval(17262, v is NotEmptyStructGen<Guid>[], false);
- Eval(17263, v is NotEmptyStructGen<Guid>?, false);
- Eval(17264, v is NotEmptyStructGen<Guid>?[], false);
- Eval(17265, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17266, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17267, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17268, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17257, v is EmptyStructGen<int>, false);
+// Eval(17258, v is EmptyStructGen<int>[], false);
+// Eval(17259, v is EmptyStructGen<int>?, false);
+// Eval(17260, v is EmptyStructGen<int>?[], false);
+// Eval(17261, v is NotEmptyStructGen<Guid>, false);
+// Eval(17262, v is NotEmptyStructGen<Guid>[], false);
+// Eval(17263, v is NotEmptyStructGen<Guid>?, false);
+// Eval(17264, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(17265, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17266, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17267, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17268, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17269, v is NestedStruct, false);
Eval(17270, v is NestedStruct[], false);
Eval(17271, v is NestedStruct?, false);
Eval(17272, v is NestedStruct?[], false);
- Eval(17273, v is NestedStructGen<Decimal>, false);
- Eval(17274, v is NestedStructGen<Decimal>[], false);
- Eval(17275, v is NestedStructGen<Decimal>?, false);
- Eval(17276, v is NestedStructGen<Decimal>?[], false);
+// Eval(17273, v is NestedStructGen<Decimal>, false);
+// Eval(17274, v is NestedStructGen<Decimal>[], false);
+// Eval(17275, v is NestedStructGen<Decimal>?, false);
+// Eval(17276, v is NestedStructGen<Decimal>?[], false);
Eval(17277, v is ExplicitFieldOffsetStruct, false);
Eval(17278, v is ExplicitFieldOffsetStruct[], false);
Eval(17279, v is ExplicitFieldOffsetStruct?, false);
@@ -15007,18 +15007,18 @@ internal class Program
Eval(17298, v is ImplementTwoInterface[], false);
Eval(17299, v is ImplementTwoInterface?, false);
Eval(17300, v is ImplementTwoInterface?[], false);
- Eval(17301, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17302, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17303, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17304, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17305, v is ImplementTwoInterfaceGen<int>, false);
- Eval(17306, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(17307, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(17308, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17309, v is ImplementAllInterface<int>, false);
- Eval(17310, v is ImplementAllInterface<int>[], false);
- Eval(17311, v is ImplementAllInterface<int>?, false);
- Eval(17312, v is ImplementAllInterface<int>?[], false);
+// Eval(17301, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17302, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17303, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17304, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17305, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(17306, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17307, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17308, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17309, v is ImplementAllInterface<int>, false);
+// Eval(17310, v is ImplementAllInterface<int>[], false);
+// Eval(17311, v is ImplementAllInterface<int>?, false);
+// Eval(17312, v is ImplementAllInterface<int>?[], false);
Eval(17313, v is IntE, false);
Eval(17314, v is IntE[], false);
Eval(17315, v is IntE?, false);
@@ -15117,38 +15117,38 @@ internal class Program
Eval(17408, v is IEmpty[], false);
Eval(17409, v is INotEmpty, false);
Eval(17410, v is INotEmpty[], false);
- Eval(17411, v is IEmptyGen<int>, false);
- Eval(17412, v is IEmptyGen<int>[], false);
- Eval(17413, v is INotEmptyGen<int>, false);
- Eval(17414, v is INotEmptyGen<int>[], false);
+// Eval(17411, v is IEmptyGen<int>, false);
+// Eval(17412, v is IEmptyGen<int>[], false);
+// Eval(17413, v is INotEmptyGen<int>, false);
+// Eval(17414, v is INotEmptyGen<int>[], false);
Eval(17415, v is SimpleDelegate, false);
Eval(17416, v is SimpleDelegate[], false);
- Eval(17417, v is GenericDelegate<int>, false);
- Eval(17418, v is GenericDelegate<int>[], false);
+// Eval(17417, v is GenericDelegate<int>, false);
+// Eval(17418, v is GenericDelegate<int>[], false);
Eval(17419, v is EmptyClass, false);
Eval(17420, v is EmptyClass[], false);
Eval(17421, v is NotEmptyClass, false);
Eval(17422, v is NotEmptyClass[], false);
- Eval(17423, v is EmptyClassGen<int>, false);
- Eval(17424, v is EmptyClassGen<int>[], false);
- Eval(17425, v is NotEmptyClassGen<Guid>, false);
- Eval(17426, v is NotEmptyClassGen<Guid>[], false);
- Eval(17427, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(17428, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17423, v is EmptyClassGen<int>, false);
+// Eval(17424, v is EmptyClassGen<int>[], false);
+// Eval(17425, v is NotEmptyClassGen<Guid>, false);
+// Eval(17426, v is NotEmptyClassGen<Guid>[], false);
+// Eval(17427, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17428, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(17429, v is NestedClass, false);
Eval(17430, v is NestedClass[], false);
- Eval(17431, v is NestedClassGen<Decimal>, false);
- Eval(17432, v is NestedClassGen<Decimal>[], false);
+// Eval(17431, v is NestedClassGen<Decimal>, false);
+// Eval(17432, v is NestedClassGen<Decimal>[], false);
Eval(17433, v is ImplementOneInterfaceC, false);
Eval(17434, v is ImplementOneInterfaceC[], false);
Eval(17435, v is ImplementTwoInterfaceC, false);
Eval(17436, v is ImplementTwoInterfaceC[], false);
- Eval(17437, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17438, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17439, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(17440, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17441, v is ImplementAllInterfaceC<int>, false);
- Eval(17442, v is ImplementAllInterfaceC<int>[], false);
+// Eval(17437, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17438, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17439, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17440, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17441, v is ImplementAllInterfaceC<int>, false);
+// Eval(17442, v is ImplementAllInterfaceC<int>[], false);
Eval(17443, v is SealedClass, false);
Eval(17444, v is SealedClass[], false);
}
@@ -15162,26 +15162,26 @@ internal class Program
Eval(17450, v is NotEmptyStruct[], false);
Eval(17451, v is NotEmptyStruct?, false);
Eval(17452, v is NotEmptyStruct?[], false);
- Eval(17453, v is EmptyStructGen<int>, false);
- Eval(17454, v is EmptyStructGen<int>[], false);
- Eval(17455, v is EmptyStructGen<int>?, false);
- Eval(17456, v is EmptyStructGen<int>?[], false);
- Eval(17457, v is NotEmptyStructGen<Guid>, false);
- Eval(17458, v is NotEmptyStructGen<Guid>[], false);
- Eval(17459, v is NotEmptyStructGen<Guid>?, false);
- Eval(17460, v is NotEmptyStructGen<Guid>?[], false);
- Eval(17461, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17462, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17463, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17464, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17453, v is EmptyStructGen<int>, false);
+// Eval(17454, v is EmptyStructGen<int>[], false);
+// Eval(17455, v is EmptyStructGen<int>?, false);
+// Eval(17456, v is EmptyStructGen<int>?[], false);
+// Eval(17457, v is NotEmptyStructGen<Guid>, false);
+// Eval(17458, v is NotEmptyStructGen<Guid>[], false);
+// Eval(17459, v is NotEmptyStructGen<Guid>?, false);
+// Eval(17460, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(17461, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17462, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17463, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17464, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17465, v is NestedStruct, false);
Eval(17466, v is NestedStruct[], false);
Eval(17467, v is NestedStruct?, false);
Eval(17468, v is NestedStruct?[], false);
- Eval(17469, v is NestedStructGen<Decimal>, false);
- Eval(17470, v is NestedStructGen<Decimal>[], false);
- Eval(17471, v is NestedStructGen<Decimal>?, false);
- Eval(17472, v is NestedStructGen<Decimal>?[], false);
+// Eval(17469, v is NestedStructGen<Decimal>, false);
+// Eval(17470, v is NestedStructGen<Decimal>[], false);
+// Eval(17471, v is NestedStructGen<Decimal>?, false);
+// Eval(17472, v is NestedStructGen<Decimal>?[], false);
Eval(17473, v is ExplicitFieldOffsetStruct, false);
Eval(17474, v is ExplicitFieldOffsetStruct[], false);
Eval(17475, v is ExplicitFieldOffsetStruct?, false);
@@ -15198,18 +15198,18 @@ internal class Program
Eval(17494, v is ImplementTwoInterface[], false);
Eval(17495, v is ImplementTwoInterface?, false);
Eval(17496, v is ImplementTwoInterface?[], false);
- Eval(17497, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17498, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17499, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17500, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17501, v is ImplementTwoInterfaceGen<int>, false);
- Eval(17502, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(17503, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(17504, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17505, v is ImplementAllInterface<int>, false);
- Eval(17506, v is ImplementAllInterface<int>[], false);
- Eval(17507, v is ImplementAllInterface<int>?, false);
- Eval(17508, v is ImplementAllInterface<int>?[], false);
+// Eval(17497, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17498, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17499, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17500, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17501, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(17502, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17503, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17504, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17505, v is ImplementAllInterface<int>, false);
+// Eval(17506, v is ImplementAllInterface<int>[], false);
+// Eval(17507, v is ImplementAllInterface<int>?, false);
+// Eval(17508, v is ImplementAllInterface<int>?[], false);
Eval(17509, v is IntE, false);
Eval(17510, v is IntE[], false);
Eval(17511, v is IntE?, false);
@@ -15308,38 +15308,38 @@ internal class Program
Eval(17604, v is IEmpty[], false);
Eval(17605, v is INotEmpty, false);
Eval(17606, v is INotEmpty[], false);
- Eval(17607, v is IEmptyGen<int>, false);
- Eval(17608, v is IEmptyGen<int>[], false);
- Eval(17609, v is INotEmptyGen<int>, false);
- Eval(17610, v is INotEmptyGen<int>[], false);
+// Eval(17607, v is IEmptyGen<int>, false);
+// Eval(17608, v is IEmptyGen<int>[], false);
+// Eval(17609, v is INotEmptyGen<int>, false);
+// Eval(17610, v is INotEmptyGen<int>[], false);
Eval(17611, v is SimpleDelegate, false);
Eval(17612, v is SimpleDelegate[], false);
- Eval(17613, v is GenericDelegate<int>, false);
- Eval(17614, v is GenericDelegate<int>[], false);
+// Eval(17613, v is GenericDelegate<int>, false);
+// Eval(17614, v is GenericDelegate<int>[], false);
Eval(17615, v is EmptyClass, false);
Eval(17616, v is EmptyClass[], false);
Eval(17617, v is NotEmptyClass, false);
Eval(17618, v is NotEmptyClass[], false);
- Eval(17619, v is EmptyClassGen<int>, false);
- Eval(17620, v is EmptyClassGen<int>[], false);
- Eval(17621, v is NotEmptyClassGen<Guid>, false);
- Eval(17622, v is NotEmptyClassGen<Guid>[], false);
- Eval(17623, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(17624, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17619, v is EmptyClassGen<int>, false);
+// Eval(17620, v is EmptyClassGen<int>[], false);
+// Eval(17621, v is NotEmptyClassGen<Guid>, false);
+// Eval(17622, v is NotEmptyClassGen<Guid>[], false);
+// Eval(17623, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17624, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(17625, v is NestedClass, false);
Eval(17626, v is NestedClass[], false);
- Eval(17627, v is NestedClassGen<Decimal>, false);
- Eval(17628, v is NestedClassGen<Decimal>[], false);
+// Eval(17627, v is NestedClassGen<Decimal>, false);
+// Eval(17628, v is NestedClassGen<Decimal>[], false);
Eval(17629, v is ImplementOneInterfaceC, false);
Eval(17630, v is ImplementOneInterfaceC[], false);
Eval(17631, v is ImplementTwoInterfaceC, false);
Eval(17632, v is ImplementTwoInterfaceC[], false);
- Eval(17633, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17634, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17635, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(17636, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17637, v is ImplementAllInterfaceC<int>, false);
- Eval(17638, v is ImplementAllInterfaceC<int>[], false);
+// Eval(17633, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17634, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17635, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17636, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17637, v is ImplementAllInterfaceC<int>, false);
+// Eval(17638, v is ImplementAllInterfaceC<int>[], false);
Eval(17639, v is SealedClass, false);
Eval(17640, v is SealedClass[], false);
}
diff --git a/tests/src/JIT/Directed/nullabletypes/isinst2.cs b/tests/src/JIT/Directed/nullabletypes/isinst2.cs
index 83b8b00fb5..e0db60b351 100644
--- a/tests/src/JIT/Directed/nullabletypes/isinst2.cs
+++ b/tests/src/JIT/Directed/nullabletypes/isinst2.cs
@@ -28,26 +28,26 @@ internal class Program
Eval(17646, v is NotEmptyStruct[], false);
Eval(17647, v is NotEmptyStruct?, false);
Eval(17648, v is NotEmptyStruct?[], false);
- Eval(17649, v is EmptyStructGen<int>, false);
- Eval(17650, v is EmptyStructGen<int>[], false);
- Eval(17651, v is EmptyStructGen<int>?, false);
- Eval(17652, v is EmptyStructGen<int>?[], false);
- Eval(17653, v is NotEmptyStructGen<Guid>, false);
- Eval(17654, v is NotEmptyStructGen<Guid>[], false);
- Eval(17655, v is NotEmptyStructGen<Guid>?, false);
- Eval(17656, v is NotEmptyStructGen<Guid>?[], false);
- Eval(17657, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17658, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17659, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17660, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17649, v is EmptyStructGen<int>, false);
+// Eval(17650, v is EmptyStructGen<int>[], false);
+// Eval(17651, v is EmptyStructGen<int>?, false);
+// Eval(17652, v is EmptyStructGen<int>?[], false);
+// Eval(17653, v is NotEmptyStructGen<Guid>, false);
+// Eval(17654, v is NotEmptyStructGen<Guid>[], false);
+// Eval(17655, v is NotEmptyStructGen<Guid>?, false);
+// Eval(17656, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(17657, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17658, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17659, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17660, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17661, v is NestedStruct, false);
Eval(17662, v is NestedStruct[], false);
Eval(17663, v is NestedStruct?, false);
Eval(17664, v is NestedStruct?[], false);
- Eval(17665, v is NestedStructGen<Decimal>, false);
- Eval(17666, v is NestedStructGen<Decimal>[], false);
- Eval(17667, v is NestedStructGen<Decimal>?, false);
- Eval(17668, v is NestedStructGen<Decimal>?[], false);
+// Eval(17665, v is NestedStructGen<Decimal>, false);
+// Eval(17666, v is NestedStructGen<Decimal>[], false);
+// Eval(17667, v is NestedStructGen<Decimal>?, false);
+// Eval(17668, v is NestedStructGen<Decimal>?[], false);
Eval(17669, v is ExplicitFieldOffsetStruct, false);
Eval(17670, v is ExplicitFieldOffsetStruct[], false);
Eval(17671, v is ExplicitFieldOffsetStruct?, false);
@@ -64,18 +64,18 @@ internal class Program
Eval(17690, v is ImplementTwoInterface[], false);
Eval(17691, v is ImplementTwoInterface?, false);
Eval(17692, v is ImplementTwoInterface?[], false);
- Eval(17693, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17694, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17695, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17696, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17697, v is ImplementTwoInterfaceGen<int>, false);
- Eval(17698, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(17699, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(17700, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17701, v is ImplementAllInterface<int>, false);
- Eval(17702, v is ImplementAllInterface<int>[], false);
- Eval(17703, v is ImplementAllInterface<int>?, false);
- Eval(17704, v is ImplementAllInterface<int>?[], false);
+// Eval(17693, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17694, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17695, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17696, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17697, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(17698, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17699, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17700, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17701, v is ImplementAllInterface<int>, false);
+// Eval(17702, v is ImplementAllInterface<int>[], false);
+// Eval(17703, v is ImplementAllInterface<int>?, false);
+// Eval(17704, v is ImplementAllInterface<int>?[], false);
Eval(17705, v is IntE, false);
Eval(17706, v is IntE[], false);
Eval(17707, v is IntE?, false);
@@ -174,38 +174,38 @@ internal class Program
Eval(17800, v is IEmpty[], false);
Eval(17801, v is INotEmpty, false);
Eval(17802, v is INotEmpty[], false);
- Eval(17803, v is IEmptyGen<int>, false);
- Eval(17804, v is IEmptyGen<int>[], false);
- Eval(17805, v is INotEmptyGen<int>, false);
- Eval(17806, v is INotEmptyGen<int>[], false);
+// Eval(17803, v is IEmptyGen<int>, false);
+// Eval(17804, v is IEmptyGen<int>[], false);
+// Eval(17805, v is INotEmptyGen<int>, false);
+// Eval(17806, v is INotEmptyGen<int>[], false);
Eval(17807, v is SimpleDelegate, false);
Eval(17808, v is SimpleDelegate[], false);
- Eval(17809, v is GenericDelegate<int>, false);
- Eval(17810, v is GenericDelegate<int>[], false);
+// Eval(17809, v is GenericDelegate<int>, false);
+// Eval(17810, v is GenericDelegate<int>[], false);
Eval(17811, v is EmptyClass, false);
Eval(17812, v is EmptyClass[], false);
Eval(17813, v is NotEmptyClass, false);
Eval(17814, v is NotEmptyClass[], false);
- Eval(17815, v is EmptyClassGen<int>, false);
- Eval(17816, v is EmptyClassGen<int>[], false);
- Eval(17817, v is NotEmptyClassGen<Guid>, false);
- Eval(17818, v is NotEmptyClassGen<Guid>[], false);
- Eval(17819, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(17820, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17815, v is EmptyClassGen<int>, false);
+// Eval(17816, v is EmptyClassGen<int>[], false);
+// Eval(17817, v is NotEmptyClassGen<Guid>, false);
+// Eval(17818, v is NotEmptyClassGen<Guid>[], false);
+// Eval(17819, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17820, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(17821, v is NestedClass, false);
Eval(17822, v is NestedClass[], false);
- Eval(17823, v is NestedClassGen<Decimal>, false);
- Eval(17824, v is NestedClassGen<Decimal>[], false);
+// Eval(17823, v is NestedClassGen<Decimal>, false);
+// Eval(17824, v is NestedClassGen<Decimal>[], false);
Eval(17825, v is ImplementOneInterfaceC, false);
Eval(17826, v is ImplementOneInterfaceC[], false);
Eval(17827, v is ImplementTwoInterfaceC, false);
Eval(17828, v is ImplementTwoInterfaceC[], false);
- Eval(17829, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17830, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17831, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(17832, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17833, v is ImplementAllInterfaceC<int>, false);
- Eval(17834, v is ImplementAllInterfaceC<int>[], false);
+// Eval(17829, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17830, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17831, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17832, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17833, v is ImplementAllInterfaceC<int>, false);
+// Eval(17834, v is ImplementAllInterfaceC<int>[], false);
Eval(17835, v is SealedClass, false);
Eval(17836, v is SealedClass[], false);
}
@@ -219,26 +219,26 @@ internal class Program
Eval(17842, v is NotEmptyStruct[], false);
Eval(17843, v is NotEmptyStruct?, false);
Eval(17844, v is NotEmptyStruct?[], false);
- Eval(17845, v is EmptyStructGen<int>, false);
- Eval(17846, v is EmptyStructGen<int>[], false);
- Eval(17847, v is EmptyStructGen<int>?, false);
- Eval(17848, v is EmptyStructGen<int>?[], false);
- Eval(17849, v is NotEmptyStructGen<Guid>, false);
- Eval(17850, v is NotEmptyStructGen<Guid>[], false);
- Eval(17851, v is NotEmptyStructGen<Guid>?, false);
- Eval(17852, v is NotEmptyStructGen<Guid>?[], false);
- Eval(17853, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17854, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17855, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17856, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17845, v is EmptyStructGen<int>, false);
+// Eval(17846, v is EmptyStructGen<int>[], false);
+// Eval(17847, v is EmptyStructGen<int>?, false);
+// Eval(17848, v is EmptyStructGen<int>?[], false);
+// Eval(17849, v is NotEmptyStructGen<Guid>, false);
+// Eval(17850, v is NotEmptyStructGen<Guid>[], false);
+// Eval(17851, v is NotEmptyStructGen<Guid>?, false);
+// Eval(17852, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(17853, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17854, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17855, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17856, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17857, v is NestedStruct, false);
Eval(17858, v is NestedStruct[], false);
Eval(17859, v is NestedStruct?, false);
Eval(17860, v is NestedStruct?[], false);
- Eval(17861, v is NestedStructGen<Decimal>, false);
- Eval(17862, v is NestedStructGen<Decimal>[], false);
- Eval(17863, v is NestedStructGen<Decimal>?, false);
- Eval(17864, v is NestedStructGen<Decimal>?[], false);
+// Eval(17861, v is NestedStructGen<Decimal>, false);
+// Eval(17862, v is NestedStructGen<Decimal>[], false);
+// Eval(17863, v is NestedStructGen<Decimal>?, false);
+// Eval(17864, v is NestedStructGen<Decimal>?[], false);
Eval(17865, v is ExplicitFieldOffsetStruct, false);
Eval(17866, v is ExplicitFieldOffsetStruct[], false);
Eval(17867, v is ExplicitFieldOffsetStruct?, false);
@@ -255,18 +255,18 @@ internal class Program
Eval(17886, v is ImplementTwoInterface[], false);
Eval(17887, v is ImplementTwoInterface?, false);
Eval(17888, v is ImplementTwoInterface?[], false);
- Eval(17889, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17890, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17891, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17892, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17893, v is ImplementTwoInterfaceGen<int>, false);
- Eval(17894, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(17895, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(17896, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17897, v is ImplementAllInterface<int>, false);
- Eval(17898, v is ImplementAllInterface<int>[], false);
- Eval(17899, v is ImplementAllInterface<int>?, false);
- Eval(17900, v is ImplementAllInterface<int>?[], false);
+// Eval(17889, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17890, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17891, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17892, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17893, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(17894, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17895, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17896, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17897, v is ImplementAllInterface<int>, false);
+// Eval(17898, v is ImplementAllInterface<int>[], false);
+// Eval(17899, v is ImplementAllInterface<int>?, false);
+// Eval(17900, v is ImplementAllInterface<int>?[], false);
Eval(17901, v is IntE, false);
Eval(17902, v is IntE[], false);
Eval(17903, v is IntE?, false);
@@ -365,38 +365,38 @@ internal class Program
Eval(17996, v is IEmpty[], false);
Eval(17997, v is INotEmpty, false);
Eval(17998, v is INotEmpty[], false);
- Eval(17999, v is IEmptyGen<int>, false);
- Eval(18000, v is IEmptyGen<int>[], false);
- Eval(18001, v is INotEmptyGen<int>, false);
- Eval(18002, v is INotEmptyGen<int>[], false);
+// Eval(17999, v is IEmptyGen<int>, false);
+// Eval(18000, v is IEmptyGen<int>[], false);
+// Eval(18001, v is INotEmptyGen<int>, false);
+// Eval(18002, v is INotEmptyGen<int>[], false);
Eval(18003, v is SimpleDelegate, false);
Eval(18004, v is SimpleDelegate[], false);
- Eval(18005, v is GenericDelegate<int>, false);
- Eval(18006, v is GenericDelegate<int>[], false);
+// Eval(18005, v is GenericDelegate<int>, false);
+// Eval(18006, v is GenericDelegate<int>[], false);
Eval(18007, v is EmptyClass, false);
Eval(18008, v is EmptyClass[], false);
Eval(18009, v is NotEmptyClass, false);
Eval(18010, v is NotEmptyClass[], false);
- Eval(18011, v is EmptyClassGen<int>, false);
- Eval(18012, v is EmptyClassGen<int>[], false);
- Eval(18013, v is NotEmptyClassGen<Guid>, false);
- Eval(18014, v is NotEmptyClassGen<Guid>[], false);
- Eval(18015, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(18016, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18011, v is EmptyClassGen<int>, false);
+// Eval(18012, v is EmptyClassGen<int>[], false);
+// Eval(18013, v is NotEmptyClassGen<Guid>, false);
+// Eval(18014, v is NotEmptyClassGen<Guid>[], false);
+// Eval(18015, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18016, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(18017, v is NestedClass, false);
Eval(18018, v is NestedClass[], false);
- Eval(18019, v is NestedClassGen<Decimal>, false);
- Eval(18020, v is NestedClassGen<Decimal>[], false);
+// Eval(18019, v is NestedClassGen<Decimal>, false);
+// Eval(18020, v is NestedClassGen<Decimal>[], false);
Eval(18021, v is ImplementOneInterfaceC, false);
Eval(18022, v is ImplementOneInterfaceC[], false);
Eval(18023, v is ImplementTwoInterfaceC, false);
Eval(18024, v is ImplementTwoInterfaceC[], false);
- Eval(18025, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18026, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18027, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(18028, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18029, v is ImplementAllInterfaceC<int>, false);
- Eval(18030, v is ImplementAllInterfaceC<int>[], false);
+// Eval(18025, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18026, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18027, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18028, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18029, v is ImplementAllInterfaceC<int>, false);
+// Eval(18030, v is ImplementAllInterfaceC<int>[], false);
Eval(18031, v is SealedClass, false);
Eval(18032, v is SealedClass[], false);
}
@@ -410,26 +410,26 @@ internal class Program
Eval(18038, v is NotEmptyStruct[], false);
Eval(18039, v is NotEmptyStruct?, false);
Eval(18040, v is NotEmptyStruct?[], false);
- Eval(18041, v is EmptyStructGen<int>, false);
- Eval(18042, v is EmptyStructGen<int>[], false);
- Eval(18043, v is EmptyStructGen<int>?, false);
- Eval(18044, v is EmptyStructGen<int>?[], false);
- Eval(18045, v is NotEmptyStructGen<Guid>, false);
- Eval(18046, v is NotEmptyStructGen<Guid>[], false);
- Eval(18047, v is NotEmptyStructGen<Guid>?, false);
- Eval(18048, v is NotEmptyStructGen<Guid>?[], false);
- Eval(18049, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18050, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18051, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18052, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18041, v is EmptyStructGen<int>, false);
+// Eval(18042, v is EmptyStructGen<int>[], false);
+// Eval(18043, v is EmptyStructGen<int>?, false);
+// Eval(18044, v is EmptyStructGen<int>?[], false);
+// Eval(18045, v is NotEmptyStructGen<Guid>, false);
+// Eval(18046, v is NotEmptyStructGen<Guid>[], false);
+// Eval(18047, v is NotEmptyStructGen<Guid>?, false);
+// Eval(18048, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(18049, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18050, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18051, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18052, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18053, v is NestedStruct, false);
Eval(18054, v is NestedStruct[], false);
Eval(18055, v is NestedStruct?, false);
Eval(18056, v is NestedStruct?[], false);
- Eval(18057, v is NestedStructGen<Decimal>, false);
- Eval(18058, v is NestedStructGen<Decimal>[], false);
- Eval(18059, v is NestedStructGen<Decimal>?, false);
- Eval(18060, v is NestedStructGen<Decimal>?[], false);
+// Eval(18057, v is NestedStructGen<Decimal>, false);
+// Eval(18058, v is NestedStructGen<Decimal>[], false);
+// Eval(18059, v is NestedStructGen<Decimal>?, false);
+// Eval(18060, v is NestedStructGen<Decimal>?[], false);
Eval(18061, v is ExplicitFieldOffsetStruct, false);
Eval(18062, v is ExplicitFieldOffsetStruct[], false);
Eval(18063, v is ExplicitFieldOffsetStruct?, false);
@@ -446,18 +446,18 @@ internal class Program
Eval(18082, v is ImplementTwoInterface[], false);
Eval(18083, v is ImplementTwoInterface?, false);
Eval(18084, v is ImplementTwoInterface?[], false);
- Eval(18085, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18086, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18087, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18088, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18089, v is ImplementTwoInterfaceGen<int>, false);
- Eval(18090, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(18091, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(18092, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18093, v is ImplementAllInterface<int>, false);
- Eval(18094, v is ImplementAllInterface<int>[], false);
- Eval(18095, v is ImplementAllInterface<int>?, false);
- Eval(18096, v is ImplementAllInterface<int>?[], false);
+// Eval(18085, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18086, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18087, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18088, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18089, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(18090, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18091, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18092, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18093, v is ImplementAllInterface<int>, false);
+// Eval(18094, v is ImplementAllInterface<int>[], false);
+// Eval(18095, v is ImplementAllInterface<int>?, false);
+// Eval(18096, v is ImplementAllInterface<int>?[], false);
Eval(18097, v is IntE, false);
Eval(18098, v is IntE[], false);
Eval(18099, v is IntE?, false);
@@ -556,38 +556,38 @@ internal class Program
Eval(18192, v is IEmpty[], false);
Eval(18193, v is INotEmpty, false);
Eval(18194, v is INotEmpty[], false);
- Eval(18195, v is IEmptyGen<int>, false);
- Eval(18196, v is IEmptyGen<int>[], false);
- Eval(18197, v is INotEmptyGen<int>, false);
- Eval(18198, v is INotEmptyGen<int>[], false);
+// Eval(18195, v is IEmptyGen<int>, false);
+// Eval(18196, v is IEmptyGen<int>[], false);
+// Eval(18197, v is INotEmptyGen<int>, false);
+// Eval(18198, v is INotEmptyGen<int>[], false);
Eval(18199, v is SimpleDelegate, false);
Eval(18200, v is SimpleDelegate[], false);
- Eval(18201, v is GenericDelegate<int>, false);
- Eval(18202, v is GenericDelegate<int>[], false);
+// Eval(18201, v is GenericDelegate<int>, false);
+// Eval(18202, v is GenericDelegate<int>[], false);
Eval(18203, v is EmptyClass, false);
Eval(18204, v is EmptyClass[], false);
Eval(18205, v is NotEmptyClass, false);
Eval(18206, v is NotEmptyClass[], false);
- Eval(18207, v is EmptyClassGen<int>, false);
- Eval(18208, v is EmptyClassGen<int>[], false);
- Eval(18209, v is NotEmptyClassGen<Guid>, false);
- Eval(18210, v is NotEmptyClassGen<Guid>[], false);
- Eval(18211, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(18212, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18207, v is EmptyClassGen<int>, false);
+// Eval(18208, v is EmptyClassGen<int>[], false);
+// Eval(18209, v is NotEmptyClassGen<Guid>, false);
+// Eval(18210, v is NotEmptyClassGen<Guid>[], false);
+// Eval(18211, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18212, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(18213, v is NestedClass, false);
Eval(18214, v is NestedClass[], false);
- Eval(18215, v is NestedClassGen<Decimal>, false);
- Eval(18216, v is NestedClassGen<Decimal>[], false);
+// Eval(18215, v is NestedClassGen<Decimal>, false);
+// Eval(18216, v is NestedClassGen<Decimal>[], false);
Eval(18217, v is ImplementOneInterfaceC, false);
Eval(18218, v is ImplementOneInterfaceC[], false);
Eval(18219, v is ImplementTwoInterfaceC, false);
Eval(18220, v is ImplementTwoInterfaceC[], false);
- Eval(18221, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18222, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18223, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(18224, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18225, v is ImplementAllInterfaceC<int>, false);
- Eval(18226, v is ImplementAllInterfaceC<int>[], false);
+// Eval(18221, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18222, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18223, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18224, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18225, v is ImplementAllInterfaceC<int>, false);
+// Eval(18226, v is ImplementAllInterfaceC<int>[], false);
Eval(18227, v is SealedClass, false);
Eval(18228, v is SealedClass[], false);
}
@@ -601,26 +601,26 @@ internal class Program
Eval(18234, v is NotEmptyStruct[], false);
Eval(18235, v is NotEmptyStruct?, false);
Eval(18236, v is NotEmptyStruct?[], false);
- Eval(18237, v is EmptyStructGen<int>, false);
- Eval(18238, v is EmptyStructGen<int>[], false);
- Eval(18239, v is EmptyStructGen<int>?, false);
- Eval(18240, v is EmptyStructGen<int>?[], false);
- Eval(18241, v is NotEmptyStructGen<Guid>, false);
- Eval(18242, v is NotEmptyStructGen<Guid>[], false);
- Eval(18243, v is NotEmptyStructGen<Guid>?, false);
- Eval(18244, v is NotEmptyStructGen<Guid>?[], false);
- Eval(18245, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18246, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18247, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18248, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18237, v is EmptyStructGen<int>, false);
+// Eval(18238, v is EmptyStructGen<int>[], false);
+// Eval(18239, v is EmptyStructGen<int>?, false);
+// Eval(18240, v is EmptyStructGen<int>?[], false);
+// Eval(18241, v is NotEmptyStructGen<Guid>, false);
+// Eval(18242, v is NotEmptyStructGen<Guid>[], false);
+// Eval(18243, v is NotEmptyStructGen<Guid>?, false);
+// Eval(18244, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(18245, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18246, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18247, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18248, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18249, v is NestedStruct, false);
Eval(18250, v is NestedStruct[], false);
Eval(18251, v is NestedStruct?, false);
Eval(18252, v is NestedStruct?[], false);
- Eval(18253, v is NestedStructGen<Decimal>, false);
- Eval(18254, v is NestedStructGen<Decimal>[], false);
- Eval(18255, v is NestedStructGen<Decimal>?, false);
- Eval(18256, v is NestedStructGen<Decimal>?[], false);
+// Eval(18253, v is NestedStructGen<Decimal>, false);
+// Eval(18254, v is NestedStructGen<Decimal>[], false);
+// Eval(18255, v is NestedStructGen<Decimal>?, false);
+// Eval(18256, v is NestedStructGen<Decimal>?[], false);
Eval(18257, v is ExplicitFieldOffsetStruct, false);
Eval(18258, v is ExplicitFieldOffsetStruct[], false);
Eval(18259, v is ExplicitFieldOffsetStruct?, false);
@@ -637,18 +637,18 @@ internal class Program
Eval(18278, v is ImplementTwoInterface[], false);
Eval(18279, v is ImplementTwoInterface?, false);
Eval(18280, v is ImplementTwoInterface?[], false);
- Eval(18281, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18282, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18283, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18284, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18285, v is ImplementTwoInterfaceGen<int>, false);
- Eval(18286, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(18287, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(18288, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18289, v is ImplementAllInterface<int>, false);
- Eval(18290, v is ImplementAllInterface<int>[], false);
- Eval(18291, v is ImplementAllInterface<int>?, false);
- Eval(18292, v is ImplementAllInterface<int>?[], false);
+// Eval(18281, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18282, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18283, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18284, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18285, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(18286, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18287, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18288, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18289, v is ImplementAllInterface<int>, false);
+// Eval(18290, v is ImplementAllInterface<int>[], false);
+// Eval(18291, v is ImplementAllInterface<int>?, false);
+// Eval(18292, v is ImplementAllInterface<int>?[], false);
Eval(18293, v is IntE, false);
Eval(18294, v is IntE[], false);
Eval(18295, v is IntE?, false);
@@ -747,38 +747,38 @@ internal class Program
Eval(18388, v is IEmpty[], false);
Eval(18389, v is INotEmpty, false);
Eval(18390, v is INotEmpty[], false);
- Eval(18391, v is IEmptyGen<int>, false);
- Eval(18392, v is IEmptyGen<int>[], false);
- Eval(18393, v is INotEmptyGen<int>, false);
- Eval(18394, v is INotEmptyGen<int>[], false);
+// Eval(18391, v is IEmptyGen<int>, false);
+// Eval(18392, v is IEmptyGen<int>[], false);
+// Eval(18393, v is INotEmptyGen<int>, false);
+// Eval(18394, v is INotEmptyGen<int>[], false);
Eval(18395, v is SimpleDelegate, false);
Eval(18396, v is SimpleDelegate[], false);
- Eval(18397, v is GenericDelegate<int>, false);
- Eval(18398, v is GenericDelegate<int>[], false);
+// Eval(18397, v is GenericDelegate<int>, false);
+// Eval(18398, v is GenericDelegate<int>[], false);
Eval(18399, v is EmptyClass, false);
Eval(18400, v is EmptyClass[], false);
Eval(18401, v is NotEmptyClass, false);
Eval(18402, v is NotEmptyClass[], false);
- Eval(18403, v is EmptyClassGen<int>, false);
- Eval(18404, v is EmptyClassGen<int>[], false);
- Eval(18405, v is NotEmptyClassGen<Guid>, false);
- Eval(18406, v is NotEmptyClassGen<Guid>[], false);
- Eval(18407, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(18408, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18403, v is EmptyClassGen<int>, false);
+// Eval(18404, v is EmptyClassGen<int>[], false);
+// Eval(18405, v is NotEmptyClassGen<Guid>, false);
+// Eval(18406, v is NotEmptyClassGen<Guid>[], false);
+// Eval(18407, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18408, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(18409, v is NestedClass, false);
Eval(18410, v is NestedClass[], false);
- Eval(18411, v is NestedClassGen<Decimal>, false);
- Eval(18412, v is NestedClassGen<Decimal>[], false);
+// Eval(18411, v is NestedClassGen<Decimal>, false);
+// Eval(18412, v is NestedClassGen<Decimal>[], false);
Eval(18413, v is ImplementOneInterfaceC, false);
Eval(18414, v is ImplementOneInterfaceC[], false);
Eval(18415, v is ImplementTwoInterfaceC, false);
Eval(18416, v is ImplementTwoInterfaceC[], false);
- Eval(18417, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18418, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18419, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(18420, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18421, v is ImplementAllInterfaceC<int>, false);
- Eval(18422, v is ImplementAllInterfaceC<int>[], false);
+// Eval(18417, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18418, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18419, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18420, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18421, v is ImplementAllInterfaceC<int>, false);
+// Eval(18422, v is ImplementAllInterfaceC<int>[], false);
Eval(18423, v is SealedClass, false);
Eval(18424, v is SealedClass[], false);
}
@@ -792,26 +792,26 @@ internal class Program
Eval(18430, v is NotEmptyStruct[], false);
Eval(18431, v is NotEmptyStruct?, false);
Eval(18432, v is NotEmptyStruct?[], false);
- Eval(18433, v is EmptyStructGen<int>, false);
- Eval(18434, v is EmptyStructGen<int>[], false);
- Eval(18435, v is EmptyStructGen<int>?, false);
- Eval(18436, v is EmptyStructGen<int>?[], false);
- Eval(18437, v is NotEmptyStructGen<Guid>, false);
- Eval(18438, v is NotEmptyStructGen<Guid>[], false);
- Eval(18439, v is NotEmptyStructGen<Guid>?, false);
- Eval(18440, v is NotEmptyStructGen<Guid>?[], false);
- Eval(18441, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18442, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18443, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18444, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18433, v is EmptyStructGen<int>, false);
+// Eval(18434, v is EmptyStructGen<int>[], false);
+// Eval(18435, v is EmptyStructGen<int>?, false);
+// Eval(18436, v is EmptyStructGen<int>?[], false);
+// Eval(18437, v is NotEmptyStructGen<Guid>, false);
+// Eval(18438, v is NotEmptyStructGen<Guid>[], false);
+// Eval(18439, v is NotEmptyStructGen<Guid>?, false);
+// Eval(18440, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(18441, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18442, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18443, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18444, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18445, v is NestedStruct, false);
Eval(18446, v is NestedStruct[], false);
Eval(18447, v is NestedStruct?, false);
Eval(18448, v is NestedStruct?[], false);
- Eval(18449, v is NestedStructGen<Decimal>, false);
- Eval(18450, v is NestedStructGen<Decimal>[], false);
- Eval(18451, v is NestedStructGen<Decimal>?, false);
- Eval(18452, v is NestedStructGen<Decimal>?[], false);
+// Eval(18449, v is NestedStructGen<Decimal>, false);
+// Eval(18450, v is NestedStructGen<Decimal>[], false);
+// Eval(18451, v is NestedStructGen<Decimal>?, false);
+// Eval(18452, v is NestedStructGen<Decimal>?[], false);
Eval(18453, v is ExplicitFieldOffsetStruct, false);
Eval(18454, v is ExplicitFieldOffsetStruct[], false);
Eval(18455, v is ExplicitFieldOffsetStruct?, false);
@@ -828,18 +828,18 @@ internal class Program
Eval(18474, v is ImplementTwoInterface[], false);
Eval(18475, v is ImplementTwoInterface?, false);
Eval(18476, v is ImplementTwoInterface?[], false);
- Eval(18477, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18478, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18479, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18480, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18481, v is ImplementTwoInterfaceGen<int>, false);
- Eval(18482, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(18483, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(18484, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18485, v is ImplementAllInterface<int>, false);
- Eval(18486, v is ImplementAllInterface<int>[], false);
- Eval(18487, v is ImplementAllInterface<int>?, false);
- Eval(18488, v is ImplementAllInterface<int>?[], false);
+// Eval(18477, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18478, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18479, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18480, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18481, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(18482, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18483, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18484, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18485, v is ImplementAllInterface<int>, false);
+// Eval(18486, v is ImplementAllInterface<int>[], false);
+// Eval(18487, v is ImplementAllInterface<int>?, false);
+// Eval(18488, v is ImplementAllInterface<int>?[], false);
Eval(18489, v is IntE, false);
Eval(18490, v is IntE[], false);
Eval(18491, v is IntE?, false);
@@ -938,38 +938,38 @@ internal class Program
Eval(18584, v is IEmpty[], false);
Eval(18585, v is INotEmpty, false);
Eval(18586, v is INotEmpty[], false);
- Eval(18587, v is IEmptyGen<int>, false);
- Eval(18588, v is IEmptyGen<int>[], false);
- Eval(18589, v is INotEmptyGen<int>, false);
- Eval(18590, v is INotEmptyGen<int>[], false);
+// Eval(18587, v is IEmptyGen<int>, false);
+// Eval(18588, v is IEmptyGen<int>[], false);
+// Eval(18589, v is INotEmptyGen<int>, false);
+// Eval(18590, v is INotEmptyGen<int>[], false);
Eval(18591, v is SimpleDelegate, false);
Eval(18592, v is SimpleDelegate[], false);
- Eval(18593, v is GenericDelegate<int>, false);
- Eval(18594, v is GenericDelegate<int>[], false);
+// Eval(18593, v is GenericDelegate<int>, false);
+// Eval(18594, v is GenericDelegate<int>[], false);
Eval(18595, v is EmptyClass, false);
Eval(18596, v is EmptyClass[], false);
Eval(18597, v is NotEmptyClass, false);
Eval(18598, v is NotEmptyClass[], false);
- Eval(18599, v is EmptyClassGen<int>, false);
- Eval(18600, v is EmptyClassGen<int>[], false);
- Eval(18601, v is NotEmptyClassGen<Guid>, false);
- Eval(18602, v is NotEmptyClassGen<Guid>[], false);
- Eval(18603, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(18604, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18599, v is EmptyClassGen<int>, false);
+// Eval(18600, v is EmptyClassGen<int>[], false);
+// Eval(18601, v is NotEmptyClassGen<Guid>, false);
+// Eval(18602, v is NotEmptyClassGen<Guid>[], false);
+// Eval(18603, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18604, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(18605, v is NestedClass, false);
Eval(18606, v is NestedClass[], false);
- Eval(18607, v is NestedClassGen<Decimal>, false);
- Eval(18608, v is NestedClassGen<Decimal>[], false);
+// Eval(18607, v is NestedClassGen<Decimal>, false);
+// Eval(18608, v is NestedClassGen<Decimal>[], false);
Eval(18609, v is ImplementOneInterfaceC, false);
Eval(18610, v is ImplementOneInterfaceC[], false);
Eval(18611, v is ImplementTwoInterfaceC, false);
Eval(18612, v is ImplementTwoInterfaceC[], false);
- Eval(18613, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18614, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18615, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(18616, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18617, v is ImplementAllInterfaceC<int>, false);
- Eval(18618, v is ImplementAllInterfaceC<int>[], false);
+// Eval(18613, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18614, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18615, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18616, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18617, v is ImplementAllInterfaceC<int>, false);
+// Eval(18618, v is ImplementAllInterfaceC<int>[], false);
Eval(18619, v is SealedClass, false);
Eval(18620, v is SealedClass[], false);
}
@@ -986,26 +986,26 @@ internal class Program
Eval(18626, v is NotEmptyStruct[], false);
Eval(18627, v is NotEmptyStruct?, false);
Eval(18628, v is NotEmptyStruct?[], false);
- Eval(18629, v is EmptyStructGen<int>, false);
- Eval(18630, v is EmptyStructGen<int>[], false);
- Eval(18631, v is EmptyStructGen<int>?, false);
- Eval(18632, v is EmptyStructGen<int>?[], false);
- Eval(18633, v is NotEmptyStructGen<Guid>, false);
- Eval(18634, v is NotEmptyStructGen<Guid>[], false);
- Eval(18635, v is NotEmptyStructGen<Guid>?, false);
- Eval(18636, v is NotEmptyStructGen<Guid>?[], false);
- Eval(18637, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18638, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18639, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18640, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18629, v is EmptyStructGen<int>, false);
+// Eval(18630, v is EmptyStructGen<int>[], false);
+// Eval(18631, v is EmptyStructGen<int>?, false);
+// Eval(18632, v is EmptyStructGen<int>?[], false);
+// Eval(18633, v is NotEmptyStructGen<Guid>, false);
+// Eval(18634, v is NotEmptyStructGen<Guid>[], false);
+// Eval(18635, v is NotEmptyStructGen<Guid>?, false);
+// Eval(18636, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(18637, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18638, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18639, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18640, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18641, v is NestedStruct, false);
Eval(18642, v is NestedStruct[], false);
Eval(18643, v is NestedStruct?, false);
Eval(18644, v is NestedStruct?[], false);
- Eval(18645, v is NestedStructGen<Decimal>, false);
- Eval(18646, v is NestedStructGen<Decimal>[], false);
- Eval(18647, v is NestedStructGen<Decimal>?, false);
- Eval(18648, v is NestedStructGen<Decimal>?[], false);
+// Eval(18645, v is NestedStructGen<Decimal>, false);
+// Eval(18646, v is NestedStructGen<Decimal>[], false);
+// Eval(18647, v is NestedStructGen<Decimal>?, false);
+// Eval(18648, v is NestedStructGen<Decimal>?[], false);
Eval(18649, v is ExplicitFieldOffsetStruct, false);
Eval(18650, v is ExplicitFieldOffsetStruct[], false);
Eval(18651, v is ExplicitFieldOffsetStruct?, false);
@@ -1022,18 +1022,18 @@ internal class Program
Eval(18670, v is ImplementTwoInterface[], false);
Eval(18671, v is ImplementTwoInterface?, false);
Eval(18672, v is ImplementTwoInterface?[], false);
- Eval(18673, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18674, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18675, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18676, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18677, v is ImplementTwoInterfaceGen<int>, false);
- Eval(18678, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(18679, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(18680, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18681, v is ImplementAllInterface<int>, false);
- Eval(18682, v is ImplementAllInterface<int>[], false);
- Eval(18683, v is ImplementAllInterface<int>?, false);
- Eval(18684, v is ImplementAllInterface<int>?[], false);
+// Eval(18673, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18674, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18675, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18676, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18677, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(18678, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18679, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18680, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18681, v is ImplementAllInterface<int>, false);
+// Eval(18682, v is ImplementAllInterface<int>[], false);
+// Eval(18683, v is ImplementAllInterface<int>?, false);
+// Eval(18684, v is ImplementAllInterface<int>?[], false);
Eval(18685, v is IntE, false);
Eval(18686, v is IntE[], false);
Eval(18687, v is IntE?, false);
@@ -1132,38 +1132,38 @@ internal class Program
Eval(18780, v is IEmpty[], false);
Eval(18781, v is INotEmpty, false);
Eval(18782, v is INotEmpty[], false);
- Eval(18783, v is IEmptyGen<int>, false);
- Eval(18784, v is IEmptyGen<int>[], false);
- Eval(18785, v is INotEmptyGen<int>, false);
- Eval(18786, v is INotEmptyGen<int>[], false);
+// Eval(18783, v is IEmptyGen<int>, false);
+// Eval(18784, v is IEmptyGen<int>[], false);
+// Eval(18785, v is INotEmptyGen<int>, false);
+// Eval(18786, v is INotEmptyGen<int>[], false);
Eval(18787, v is SimpleDelegate, false);
Eval(18788, v is SimpleDelegate[], false);
- Eval(18789, v is GenericDelegate<int>, false);
- Eval(18790, v is GenericDelegate<int>[], false);
+// Eval(18789, v is GenericDelegate<int>, false);
+// Eval(18790, v is GenericDelegate<int>[], false);
Eval(18791, v is EmptyClass, false);
Eval(18792, v is EmptyClass[], false);
Eval(18793, v is NotEmptyClass, false);
Eval(18794, v is NotEmptyClass[], false);
- Eval(18795, v is EmptyClassGen<int>, false);
- Eval(18796, v is EmptyClassGen<int>[], false);
- Eval(18797, v is NotEmptyClassGen<Guid>, false);
- Eval(18798, v is NotEmptyClassGen<Guid>[], false);
- Eval(18799, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(18800, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18795, v is EmptyClassGen<int>, false);
+// Eval(18796, v is EmptyClassGen<int>[], false);
+// Eval(18797, v is NotEmptyClassGen<Guid>, false);
+// Eval(18798, v is NotEmptyClassGen<Guid>[], false);
+// Eval(18799, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18800, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(18801, v is NestedClass, false);
Eval(18802, v is NestedClass[], false);
- Eval(18803, v is NestedClassGen<Decimal>, false);
- Eval(18804, v is NestedClassGen<Decimal>[], false);
+// Eval(18803, v is NestedClassGen<Decimal>, false);
+// Eval(18804, v is NestedClassGen<Decimal>[], false);
Eval(18805, v is ImplementOneInterfaceC, false);
Eval(18806, v is ImplementOneInterfaceC[], false);
Eval(18807, v is ImplementTwoInterfaceC, false);
Eval(18808, v is ImplementTwoInterfaceC[], false);
- Eval(18809, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18810, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18811, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(18812, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18813, v is ImplementAllInterfaceC<int>, false);
- Eval(18814, v is ImplementAllInterfaceC<int>[], false);
+// Eval(18809, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18810, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18811, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18812, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18813, v is ImplementAllInterfaceC<int>, false);
+// Eval(18814, v is ImplementAllInterfaceC<int>[], false);
Eval(18815, v is SealedClass, false);
Eval(18816, v is SealedClass[], false);
}
@@ -1177,26 +1177,26 @@ internal class Program
Eval(18822, v is NotEmptyStruct[], false);
Eval(18823, v is NotEmptyStruct?, false);
Eval(18824, v is NotEmptyStruct?[], false);
- Eval(18825, v is EmptyStructGen<int>, false);
- Eval(18826, v is EmptyStructGen<int>[], false);
- Eval(18827, v is EmptyStructGen<int>?, false);
- Eval(18828, v is EmptyStructGen<int>?[], false);
- Eval(18829, v is NotEmptyStructGen<Guid>, false);
- Eval(18830, v is NotEmptyStructGen<Guid>[], false);
- Eval(18831, v is NotEmptyStructGen<Guid>?, false);
- Eval(18832, v is NotEmptyStructGen<Guid>?[], false);
- Eval(18833, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18834, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18835, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18836, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18825, v is EmptyStructGen<int>, false);
+// Eval(18826, v is EmptyStructGen<int>[], false);
+// Eval(18827, v is EmptyStructGen<int>?, false);
+// Eval(18828, v is EmptyStructGen<int>?[], false);
+// Eval(18829, v is NotEmptyStructGen<Guid>, false);
+// Eval(18830, v is NotEmptyStructGen<Guid>[], false);
+// Eval(18831, v is NotEmptyStructGen<Guid>?, false);
+// Eval(18832, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(18833, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18834, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18835, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18836, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18837, v is NestedStruct, false);
Eval(18838, v is NestedStruct[], false);
Eval(18839, v is NestedStruct?, false);
Eval(18840, v is NestedStruct?[], false);
- Eval(18841, v is NestedStructGen<Decimal>, false);
- Eval(18842, v is NestedStructGen<Decimal>[], false);
- Eval(18843, v is NestedStructGen<Decimal>?, false);
- Eval(18844, v is NestedStructGen<Decimal>?[], false);
+// Eval(18841, v is NestedStructGen<Decimal>, false);
+// Eval(18842, v is NestedStructGen<Decimal>[], false);
+// Eval(18843, v is NestedStructGen<Decimal>?, false);
+// Eval(18844, v is NestedStructGen<Decimal>?[], false);
Eval(18845, v is ExplicitFieldOffsetStruct, false);
Eval(18846, v is ExplicitFieldOffsetStruct[], false);
Eval(18847, v is ExplicitFieldOffsetStruct?, false);
@@ -1213,18 +1213,18 @@ internal class Program
Eval(18866, v is ImplementTwoInterface[], false);
Eval(18867, v is ImplementTwoInterface?, false);
Eval(18868, v is ImplementTwoInterface?[], false);
- Eval(18869, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18870, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18871, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18872, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18873, v is ImplementTwoInterfaceGen<int>, false);
- Eval(18874, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(18875, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(18876, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18877, v is ImplementAllInterface<int>, false);
- Eval(18878, v is ImplementAllInterface<int>[], false);
- Eval(18879, v is ImplementAllInterface<int>?, false);
- Eval(18880, v is ImplementAllInterface<int>?[], false);
+// Eval(18869, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18870, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18871, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18872, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18873, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(18874, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18875, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18876, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18877, v is ImplementAllInterface<int>, false);
+// Eval(18878, v is ImplementAllInterface<int>[], false);
+// Eval(18879, v is ImplementAllInterface<int>?, false);
+// Eval(18880, v is ImplementAllInterface<int>?[], false);
Eval(18881, v is IntE, false);
Eval(18882, v is IntE[], false);
Eval(18883, v is IntE?, false);
@@ -1323,38 +1323,38 @@ internal class Program
Eval(18976, v is IEmpty[], false);
Eval(18977, v is INotEmpty, false);
Eval(18978, v is INotEmpty[], false);
- Eval(18979, v is IEmptyGen<int>, false);
- Eval(18980, v is IEmptyGen<int>[], false);
- Eval(18981, v is INotEmptyGen<int>, false);
- Eval(18982, v is INotEmptyGen<int>[], false);
+// Eval(18979, v is IEmptyGen<int>, false);
+// Eval(18980, v is IEmptyGen<int>[], false);
+// Eval(18981, v is INotEmptyGen<int>, false);
+// Eval(18982, v is INotEmptyGen<int>[], false);
Eval(18983, v is SimpleDelegate, false);
Eval(18984, v is SimpleDelegate[], false);
- Eval(18985, v is GenericDelegate<int>, false);
- Eval(18986, v is GenericDelegate<int>[], false);
+// Eval(18985, v is GenericDelegate<int>, false);
+// Eval(18986, v is GenericDelegate<int>[], false);
Eval(18987, v is EmptyClass, false);
Eval(18988, v is EmptyClass[], false);
Eval(18989, v is NotEmptyClass, false);
Eval(18990, v is NotEmptyClass[], false);
- Eval(18991, v is EmptyClassGen<int>, false);
- Eval(18992, v is EmptyClassGen<int>[], false);
- Eval(18993, v is NotEmptyClassGen<Guid>, false);
- Eval(18994, v is NotEmptyClassGen<Guid>[], false);
- Eval(18995, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(18996, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18991, v is EmptyClassGen<int>, false);
+// Eval(18992, v is EmptyClassGen<int>[], false);
+// Eval(18993, v is NotEmptyClassGen<Guid>, false);
+// Eval(18994, v is NotEmptyClassGen<Guid>[], false);
+// Eval(18995, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18996, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(18997, v is NestedClass, false);
Eval(18998, v is NestedClass[], false);
- Eval(18999, v is NestedClassGen<Decimal>, false);
- Eval(19000, v is NestedClassGen<Decimal>[], false);
+// Eval(18999, v is NestedClassGen<Decimal>, false);
+// Eval(19000, v is NestedClassGen<Decimal>[], false);
Eval(19001, v is ImplementOneInterfaceC, false);
Eval(19002, v is ImplementOneInterfaceC[], false);
Eval(19003, v is ImplementTwoInterfaceC, false);
Eval(19004, v is ImplementTwoInterfaceC[], false);
- Eval(19005, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19006, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19007, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(19008, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19009, v is ImplementAllInterfaceC<int>, false);
- Eval(19010, v is ImplementAllInterfaceC<int>[], false);
+// Eval(19005, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19006, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19007, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19008, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19009, v is ImplementAllInterfaceC<int>, false);
+// Eval(19010, v is ImplementAllInterfaceC<int>[], false);
Eval(19011, v is SealedClass, false);
Eval(19012, v is SealedClass[], false);
}
@@ -1368,26 +1368,26 @@ internal class Program
Eval(19018, v is NotEmptyStruct[], false);
Eval(19019, v is NotEmptyStruct?, false);
Eval(19020, v is NotEmptyStruct?[], false);
- Eval(19021, v is EmptyStructGen<int>, false);
- Eval(19022, v is EmptyStructGen<int>[], false);
- Eval(19023, v is EmptyStructGen<int>?, false);
- Eval(19024, v is EmptyStructGen<int>?[], false);
- Eval(19025, v is NotEmptyStructGen<Guid>, false);
- Eval(19026, v is NotEmptyStructGen<Guid>[], false);
- Eval(19027, v is NotEmptyStructGen<Guid>?, false);
- Eval(19028, v is NotEmptyStructGen<Guid>?[], false);
- Eval(19029, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19030, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19031, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19032, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19021, v is EmptyStructGen<int>, false);
+// Eval(19022, v is EmptyStructGen<int>[], false);
+// Eval(19023, v is EmptyStructGen<int>?, false);
+// Eval(19024, v is EmptyStructGen<int>?[], false);
+// Eval(19025, v is NotEmptyStructGen<Guid>, false);
+// Eval(19026, v is NotEmptyStructGen<Guid>[], false);
+// Eval(19027, v is NotEmptyStructGen<Guid>?, false);
+// Eval(19028, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(19029, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19030, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19031, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19032, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19033, v is NestedStruct, false);
Eval(19034, v is NestedStruct[], false);
Eval(19035, v is NestedStruct?, false);
Eval(19036, v is NestedStruct?[], false);
- Eval(19037, v is NestedStructGen<Decimal>, false);
- Eval(19038, v is NestedStructGen<Decimal>[], false);
- Eval(19039, v is NestedStructGen<Decimal>?, false);
- Eval(19040, v is NestedStructGen<Decimal>?[], false);
+// Eval(19037, v is NestedStructGen<Decimal>, false);
+// Eval(19038, v is NestedStructGen<Decimal>[], false);
+// Eval(19039, v is NestedStructGen<Decimal>?, false);
+// Eval(19040, v is NestedStructGen<Decimal>?[], false);
Eval(19041, v is ExplicitFieldOffsetStruct, false);
Eval(19042, v is ExplicitFieldOffsetStruct[], false);
Eval(19043, v is ExplicitFieldOffsetStruct?, false);
@@ -1404,18 +1404,18 @@ internal class Program
Eval(19062, v is ImplementTwoInterface[], false);
Eval(19063, v is ImplementTwoInterface?, false);
Eval(19064, v is ImplementTwoInterface?[], false);
- Eval(19065, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19066, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19067, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19068, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19069, v is ImplementTwoInterfaceGen<int>, false);
- Eval(19070, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(19071, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(19072, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19073, v is ImplementAllInterface<int>, false);
- Eval(19074, v is ImplementAllInterface<int>[], false);
- Eval(19075, v is ImplementAllInterface<int>?, false);
- Eval(19076, v is ImplementAllInterface<int>?[], false);
+// Eval(19065, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19066, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19067, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19068, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19069, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(19070, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19071, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19072, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19073, v is ImplementAllInterface<int>, false);
+// Eval(19074, v is ImplementAllInterface<int>[], false);
+// Eval(19075, v is ImplementAllInterface<int>?, false);
+// Eval(19076, v is ImplementAllInterface<int>?[], false);
Eval(19077, v is IntE, false);
Eval(19078, v is IntE[], false);
Eval(19079, v is IntE?, false);
@@ -1514,38 +1514,38 @@ internal class Program
Eval(19172, v is IEmpty[], false);
Eval(19173, v is INotEmpty, false);
Eval(19174, v is INotEmpty[], false);
- Eval(19175, v is IEmptyGen<int>, false);
- Eval(19176, v is IEmptyGen<int>[], false);
- Eval(19177, v is INotEmptyGen<int>, false);
- Eval(19178, v is INotEmptyGen<int>[], false);
+// Eval(19175, v is IEmptyGen<int>, false);
+// Eval(19176, v is IEmptyGen<int>[], false);
+// Eval(19177, v is INotEmptyGen<int>, false);
+// Eval(19178, v is INotEmptyGen<int>[], false);
Eval(19179, v is SimpleDelegate, false);
Eval(19180, v is SimpleDelegate[], false);
- Eval(19181, v is GenericDelegate<int>, false);
- Eval(19182, v is GenericDelegate<int>[], false);
+// Eval(19181, v is GenericDelegate<int>, false);
+// Eval(19182, v is GenericDelegate<int>[], false);
Eval(19183, v is EmptyClass, false);
Eval(19184, v is EmptyClass[], false);
Eval(19185, v is NotEmptyClass, false);
Eval(19186, v is NotEmptyClass[], false);
- Eval(19187, v is EmptyClassGen<int>, false);
- Eval(19188, v is EmptyClassGen<int>[], false);
- Eval(19189, v is NotEmptyClassGen<Guid>, false);
- Eval(19190, v is NotEmptyClassGen<Guid>[], false);
- Eval(19191, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(19192, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19187, v is EmptyClassGen<int>, false);
+// Eval(19188, v is EmptyClassGen<int>[], false);
+// Eval(19189, v is NotEmptyClassGen<Guid>, false);
+// Eval(19190, v is NotEmptyClassGen<Guid>[], false);
+// Eval(19191, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19192, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(19193, v is NestedClass, false);
Eval(19194, v is NestedClass[], false);
- Eval(19195, v is NestedClassGen<Decimal>, false);
- Eval(19196, v is NestedClassGen<Decimal>[], false);
+// Eval(19195, v is NestedClassGen<Decimal>, false);
+// Eval(19196, v is NestedClassGen<Decimal>[], false);
Eval(19197, v is ImplementOneInterfaceC, false);
Eval(19198, v is ImplementOneInterfaceC[], false);
Eval(19199, v is ImplementTwoInterfaceC, false);
Eval(19200, v is ImplementTwoInterfaceC[], false);
- Eval(19201, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19202, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19203, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(19204, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19205, v is ImplementAllInterfaceC<int>, false);
- Eval(19206, v is ImplementAllInterfaceC<int>[], false);
+// Eval(19201, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19202, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19203, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19204, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19205, v is ImplementAllInterfaceC<int>, false);
+// Eval(19206, v is ImplementAllInterfaceC<int>[], false);
Eval(19207, v is SealedClass, false);
Eval(19208, v is SealedClass[], false);
}
@@ -1559,26 +1559,26 @@ internal class Program
Eval(19214, v is NotEmptyStruct[], false);
Eval(19215, v is NotEmptyStruct?, false);
Eval(19216, v is NotEmptyStruct?[], false);
- Eval(19217, v is EmptyStructGen<int>, false);
- Eval(19218, v is EmptyStructGen<int>[], false);
- Eval(19219, v is EmptyStructGen<int>?, false);
- Eval(19220, v is EmptyStructGen<int>?[], false);
- Eval(19221, v is NotEmptyStructGen<Guid>, false);
- Eval(19222, v is NotEmptyStructGen<Guid>[], false);
- Eval(19223, v is NotEmptyStructGen<Guid>?, false);
- Eval(19224, v is NotEmptyStructGen<Guid>?[], false);
- Eval(19225, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19226, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19227, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19228, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19217, v is EmptyStructGen<int>, false);
+// Eval(19218, v is EmptyStructGen<int>[], false);
+// Eval(19219, v is EmptyStructGen<int>?, false);
+// Eval(19220, v is EmptyStructGen<int>?[], false);
+// Eval(19221, v is NotEmptyStructGen<Guid>, false);
+// Eval(19222, v is NotEmptyStructGen<Guid>[], false);
+// Eval(19223, v is NotEmptyStructGen<Guid>?, false);
+// Eval(19224, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(19225, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19226, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19227, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19228, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19229, v is NestedStruct, false);
Eval(19230, v is NestedStruct[], false);
Eval(19231, v is NestedStruct?, false);
Eval(19232, v is NestedStruct?[], false);
- Eval(19233, v is NestedStructGen<Decimal>, false);
- Eval(19234, v is NestedStructGen<Decimal>[], false);
- Eval(19235, v is NestedStructGen<Decimal>?, false);
- Eval(19236, v is NestedStructGen<Decimal>?[], false);
+// Eval(19233, v is NestedStructGen<Decimal>, false);
+// Eval(19234, v is NestedStructGen<Decimal>[], false);
+// Eval(19235, v is NestedStructGen<Decimal>?, false);
+// Eval(19236, v is NestedStructGen<Decimal>?[], false);
Eval(19237, v is ExplicitFieldOffsetStruct, false);
Eval(19238, v is ExplicitFieldOffsetStruct[], false);
Eval(19239, v is ExplicitFieldOffsetStruct?, false);
@@ -1595,18 +1595,18 @@ internal class Program
Eval(19258, v is ImplementTwoInterface[], false);
Eval(19259, v is ImplementTwoInterface?, false);
Eval(19260, v is ImplementTwoInterface?[], false);
- Eval(19261, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19262, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19263, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19264, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19265, v is ImplementTwoInterfaceGen<int>, false);
- Eval(19266, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(19267, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(19268, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19269, v is ImplementAllInterface<int>, false);
- Eval(19270, v is ImplementAllInterface<int>[], false);
- Eval(19271, v is ImplementAllInterface<int>?, false);
- Eval(19272, v is ImplementAllInterface<int>?[], false);
+// Eval(19261, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19262, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19263, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19264, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19265, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(19266, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19267, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19268, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19269, v is ImplementAllInterface<int>, false);
+// Eval(19270, v is ImplementAllInterface<int>[], false);
+// Eval(19271, v is ImplementAllInterface<int>?, false);
+// Eval(19272, v is ImplementAllInterface<int>?[], false);
Eval(19273, v is IntE, false);
Eval(19274, v is IntE[], false);
Eval(19275, v is IntE?, false);
@@ -1705,38 +1705,38 @@ internal class Program
Eval(19368, v is IEmpty[], false);
Eval(19369, v is INotEmpty, false);
Eval(19370, v is INotEmpty[], false);
- Eval(19371, v is IEmptyGen<int>, false);
- Eval(19372, v is IEmptyGen<int>[], false);
- Eval(19373, v is INotEmptyGen<int>, false);
- Eval(19374, v is INotEmptyGen<int>[], false);
+// Eval(19371, v is IEmptyGen<int>, false);
+// Eval(19372, v is IEmptyGen<int>[], false);
+// Eval(19373, v is INotEmptyGen<int>, false);
+// Eval(19374, v is INotEmptyGen<int>[], false);
Eval(19375, v is SimpleDelegate, false);
Eval(19376, v is SimpleDelegate[], false);
- Eval(19377, v is GenericDelegate<int>, false);
- Eval(19378, v is GenericDelegate<int>[], false);
+// Eval(19377, v is GenericDelegate<int>, false);
+// Eval(19378, v is GenericDelegate<int>[], false);
Eval(19379, v is EmptyClass, false);
Eval(19380, v is EmptyClass[], false);
Eval(19381, v is NotEmptyClass, false);
Eval(19382, v is NotEmptyClass[], false);
- Eval(19383, v is EmptyClassGen<int>, false);
- Eval(19384, v is EmptyClassGen<int>[], false);
- Eval(19385, v is NotEmptyClassGen<Guid>, false);
- Eval(19386, v is NotEmptyClassGen<Guid>[], false);
- Eval(19387, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(19388, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19383, v is EmptyClassGen<int>, false);
+// Eval(19384, v is EmptyClassGen<int>[], false);
+// Eval(19385, v is NotEmptyClassGen<Guid>, false);
+// Eval(19386, v is NotEmptyClassGen<Guid>[], false);
+// Eval(19387, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19388, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(19389, v is NestedClass, false);
Eval(19390, v is NestedClass[], false);
- Eval(19391, v is NestedClassGen<Decimal>, false);
- Eval(19392, v is NestedClassGen<Decimal>[], false);
+// Eval(19391, v is NestedClassGen<Decimal>, false);
+// Eval(19392, v is NestedClassGen<Decimal>[], false);
Eval(19393, v is ImplementOneInterfaceC, false);
Eval(19394, v is ImplementOneInterfaceC[], false);
Eval(19395, v is ImplementTwoInterfaceC, false);
Eval(19396, v is ImplementTwoInterfaceC[], false);
- Eval(19397, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19398, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19399, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(19400, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19401, v is ImplementAllInterfaceC<int>, false);
- Eval(19402, v is ImplementAllInterfaceC<int>[], false);
+// Eval(19397, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19398, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19399, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19400, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19401, v is ImplementAllInterfaceC<int>, false);
+// Eval(19402, v is ImplementAllInterfaceC<int>[], false);
Eval(19403, v is SealedClass, false);
Eval(19404, v is SealedClass[], false);
}
@@ -1750,26 +1750,26 @@ internal class Program
Eval(19410, v is NotEmptyStruct[], false);
Eval(19411, v is NotEmptyStruct?, false);
Eval(19412, v is NotEmptyStruct?[], false);
- Eval(19413, v is EmptyStructGen<int>, false);
- Eval(19414, v is EmptyStructGen<int>[], false);
- Eval(19415, v is EmptyStructGen<int>?, false);
- Eval(19416, v is EmptyStructGen<int>?[], false);
- Eval(19417, v is NotEmptyStructGen<Guid>, false);
- Eval(19418, v is NotEmptyStructGen<Guid>[], false);
- Eval(19419, v is NotEmptyStructGen<Guid>?, false);
- Eval(19420, v is NotEmptyStructGen<Guid>?[], false);
- Eval(19421, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19422, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19423, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19424, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19413, v is EmptyStructGen<int>, false);
+// Eval(19414, v is EmptyStructGen<int>[], false);
+// Eval(19415, v is EmptyStructGen<int>?, false);
+// Eval(19416, v is EmptyStructGen<int>?[], false);
+// Eval(19417, v is NotEmptyStructGen<Guid>, false);
+// Eval(19418, v is NotEmptyStructGen<Guid>[], false);
+// Eval(19419, v is NotEmptyStructGen<Guid>?, false);
+// Eval(19420, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(19421, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19422, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19423, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19424, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19425, v is NestedStruct, false);
Eval(19426, v is NestedStruct[], false);
Eval(19427, v is NestedStruct?, false);
Eval(19428, v is NestedStruct?[], false);
- Eval(19429, v is NestedStructGen<Decimal>, false);
- Eval(19430, v is NestedStructGen<Decimal>[], false);
- Eval(19431, v is NestedStructGen<Decimal>?, false);
- Eval(19432, v is NestedStructGen<Decimal>?[], false);
+// Eval(19429, v is NestedStructGen<Decimal>, false);
+// Eval(19430, v is NestedStructGen<Decimal>[], false);
+// Eval(19431, v is NestedStructGen<Decimal>?, false);
+// Eval(19432, v is NestedStructGen<Decimal>?[], false);
Eval(19433, v is ExplicitFieldOffsetStruct, false);
Eval(19434, v is ExplicitFieldOffsetStruct[], false);
Eval(19435, v is ExplicitFieldOffsetStruct?, false);
@@ -1786,18 +1786,18 @@ internal class Program
Eval(19454, v is ImplementTwoInterface[], false);
Eval(19455, v is ImplementTwoInterface?, false);
Eval(19456, v is ImplementTwoInterface?[], false);
- Eval(19457, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19458, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19459, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19460, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19461, v is ImplementTwoInterfaceGen<int>, false);
- Eval(19462, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(19463, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(19464, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19465, v is ImplementAllInterface<int>, false);
- Eval(19466, v is ImplementAllInterface<int>[], false);
- Eval(19467, v is ImplementAllInterface<int>?, false);
- Eval(19468, v is ImplementAllInterface<int>?[], false);
+// Eval(19457, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19458, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19459, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19460, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19461, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(19462, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19463, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19464, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19465, v is ImplementAllInterface<int>, false);
+// Eval(19466, v is ImplementAllInterface<int>[], false);
+// Eval(19467, v is ImplementAllInterface<int>?, false);
+// Eval(19468, v is ImplementAllInterface<int>?[], false);
Eval(19469, v is IntE, false);
Eval(19470, v is IntE[], false);
Eval(19471, v is IntE?, false);
@@ -1896,38 +1896,38 @@ internal class Program
Eval(19564, v is IEmpty[], false);
Eval(19565, v is INotEmpty, false);
Eval(19566, v is INotEmpty[], false);
- Eval(19567, v is IEmptyGen<int>, false);
- Eval(19568, v is IEmptyGen<int>[], false);
- Eval(19569, v is INotEmptyGen<int>, false);
- Eval(19570, v is INotEmptyGen<int>[], false);
+// Eval(19567, v is IEmptyGen<int>, false);
+// Eval(19568, v is IEmptyGen<int>[], false);
+// Eval(19569, v is INotEmptyGen<int>, false);
+// Eval(19570, v is INotEmptyGen<int>[], false);
Eval(19571, v is SimpleDelegate, false);
Eval(19572, v is SimpleDelegate[], false);
- Eval(19573, v is GenericDelegate<int>, false);
- Eval(19574, v is GenericDelegate<int>[], false);
+// Eval(19573, v is GenericDelegate<int>, false);
+// Eval(19574, v is GenericDelegate<int>[], false);
Eval(19575, v is EmptyClass, false);
Eval(19576, v is EmptyClass[], false);
Eval(19577, v is NotEmptyClass, false);
Eval(19578, v is NotEmptyClass[], false);
- Eval(19579, v is EmptyClassGen<int>, false);
- Eval(19580, v is EmptyClassGen<int>[], false);
- Eval(19581, v is NotEmptyClassGen<Guid>, false);
- Eval(19582, v is NotEmptyClassGen<Guid>[], false);
- Eval(19583, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(19584, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19579, v is EmptyClassGen<int>, false);
+// Eval(19580, v is EmptyClassGen<int>[], false);
+// Eval(19581, v is NotEmptyClassGen<Guid>, false);
+// Eval(19582, v is NotEmptyClassGen<Guid>[], false);
+// Eval(19583, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19584, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(19585, v is NestedClass, false);
Eval(19586, v is NestedClass[], false);
- Eval(19587, v is NestedClassGen<Decimal>, false);
- Eval(19588, v is NestedClassGen<Decimal>[], false);
+// Eval(19587, v is NestedClassGen<Decimal>, false);
+// Eval(19588, v is NestedClassGen<Decimal>[], false);
Eval(19589, v is ImplementOneInterfaceC, false);
Eval(19590, v is ImplementOneInterfaceC[], false);
Eval(19591, v is ImplementTwoInterfaceC, false);
Eval(19592, v is ImplementTwoInterfaceC[], false);
- Eval(19593, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19594, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19595, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(19596, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19597, v is ImplementAllInterfaceC<int>, false);
- Eval(19598, v is ImplementAllInterfaceC<int>[], false);
+// Eval(19593, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19594, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19595, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19596, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19597, v is ImplementAllInterfaceC<int>, false);
+// Eval(19598, v is ImplementAllInterfaceC<int>[], false);
Eval(19599, v is SealedClass, false);
Eval(19600, v is SealedClass[], false);
}
@@ -1944,26 +1944,26 @@ internal class Program
Eval(19606, v is NotEmptyStruct[], false);
Eval(19607, v is NotEmptyStruct?, false);
Eval(19608, v is NotEmptyStruct?[], false);
- Eval(19609, v is EmptyStructGen<int>, false);
- Eval(19610, v is EmptyStructGen<int>[], false);
- Eval(19611, v is EmptyStructGen<int>?, false);
- Eval(19612, v is EmptyStructGen<int>?[], false);
- Eval(19613, v is NotEmptyStructGen<Guid>, false);
- Eval(19614, v is NotEmptyStructGen<Guid>[], false);
- Eval(19615, v is NotEmptyStructGen<Guid>?, false);
- Eval(19616, v is NotEmptyStructGen<Guid>?[], false);
- Eval(19617, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19618, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19619, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19620, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19609, v is EmptyStructGen<int>, false);
+// Eval(19610, v is EmptyStructGen<int>[], false);
+// Eval(19611, v is EmptyStructGen<int>?, false);
+// Eval(19612, v is EmptyStructGen<int>?[], false);
+// Eval(19613, v is NotEmptyStructGen<Guid>, false);
+// Eval(19614, v is NotEmptyStructGen<Guid>[], false);
+// Eval(19615, v is NotEmptyStructGen<Guid>?, false);
+// Eval(19616, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(19617, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19618, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19619, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19620, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19621, v is NestedStruct, false);
Eval(19622, v is NestedStruct[], false);
Eval(19623, v is NestedStruct?, false);
Eval(19624, v is NestedStruct?[], false);
- Eval(19625, v is NestedStructGen<Decimal>, false);
- Eval(19626, v is NestedStructGen<Decimal>[], false);
- Eval(19627, v is NestedStructGen<Decimal>?, false);
- Eval(19628, v is NestedStructGen<Decimal>?[], false);
+// Eval(19625, v is NestedStructGen<Decimal>, false);
+// Eval(19626, v is NestedStructGen<Decimal>[], false);
+// Eval(19627, v is NestedStructGen<Decimal>?, false);
+// Eval(19628, v is NestedStructGen<Decimal>?[], false);
Eval(19629, v is ExplicitFieldOffsetStruct, false);
Eval(19630, v is ExplicitFieldOffsetStruct[], false);
Eval(19631, v is ExplicitFieldOffsetStruct?, false);
@@ -1980,18 +1980,18 @@ internal class Program
Eval(19650, v is ImplementTwoInterface[], false);
Eval(19651, v is ImplementTwoInterface?, false);
Eval(19652, v is ImplementTwoInterface?[], false);
- Eval(19653, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19654, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19655, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19656, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19657, v is ImplementTwoInterfaceGen<int>, false);
- Eval(19658, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(19659, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(19660, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19661, v is ImplementAllInterface<int>, false);
- Eval(19662, v is ImplementAllInterface<int>[], false);
- Eval(19663, v is ImplementAllInterface<int>?, false);
- Eval(19664, v is ImplementAllInterface<int>?[], false);
+// Eval(19653, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19654, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19655, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19656, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19657, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(19658, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19659, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19660, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19661, v is ImplementAllInterface<int>, false);
+// Eval(19662, v is ImplementAllInterface<int>[], false);
+// Eval(19663, v is ImplementAllInterface<int>?, false);
+// Eval(19664, v is ImplementAllInterface<int>?[], false);
Eval(19665, v is IntE, false);
Eval(19666, v is IntE[], false);
Eval(19667, v is IntE?, false);
@@ -2090,38 +2090,38 @@ internal class Program
Eval(19760, v is IEmpty[], false);
Eval(19761, v is INotEmpty, false);
Eval(19762, v is INotEmpty[], false);
- Eval(19763, v is IEmptyGen<int>, false);
- Eval(19764, v is IEmptyGen<int>[], false);
- Eval(19765, v is INotEmptyGen<int>, false);
- Eval(19766, v is INotEmptyGen<int>[], false);
+// Eval(19763, v is IEmptyGen<int>, false);
+// Eval(19764, v is IEmptyGen<int>[], false);
+// Eval(19765, v is INotEmptyGen<int>, false);
+// Eval(19766, v is INotEmptyGen<int>[], false);
Eval(19767, v is SimpleDelegate, false);
Eval(19768, v is SimpleDelegate[], false);
- Eval(19769, v is GenericDelegate<int>, false);
- Eval(19770, v is GenericDelegate<int>[], false);
+// Eval(19769, v is GenericDelegate<int>, false);
+// Eval(19770, v is GenericDelegate<int>[], false);
Eval(19771, v is EmptyClass, false);
Eval(19772, v is EmptyClass[], false);
Eval(19773, v is NotEmptyClass, false);
Eval(19774, v is NotEmptyClass[], false);
- Eval(19775, v is EmptyClassGen<int>, false);
- Eval(19776, v is EmptyClassGen<int>[], false);
- Eval(19777, v is NotEmptyClassGen<Guid>, false);
- Eval(19778, v is NotEmptyClassGen<Guid>[], false);
- Eval(19779, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(19780, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19775, v is EmptyClassGen<int>, false);
+// Eval(19776, v is EmptyClassGen<int>[], false);
+// Eval(19777, v is NotEmptyClassGen<Guid>, false);
+// Eval(19778, v is NotEmptyClassGen<Guid>[], false);
+// Eval(19779, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19780, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(19781, v is NestedClass, false);
Eval(19782, v is NestedClass[], false);
- Eval(19783, v is NestedClassGen<Decimal>, false);
- Eval(19784, v is NestedClassGen<Decimal>[], false);
+// Eval(19783, v is NestedClassGen<Decimal>, false);
+// Eval(19784, v is NestedClassGen<Decimal>[], false);
Eval(19785, v is ImplementOneInterfaceC, false);
Eval(19786, v is ImplementOneInterfaceC[], false);
Eval(19787, v is ImplementTwoInterfaceC, false);
Eval(19788, v is ImplementTwoInterfaceC[], false);
- Eval(19789, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19790, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19791, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(19792, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19793, v is ImplementAllInterfaceC<int>, false);
- Eval(19794, v is ImplementAllInterfaceC<int>[], false);
+// Eval(19789, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19790, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19791, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19792, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19793, v is ImplementAllInterfaceC<int>, false);
+// Eval(19794, v is ImplementAllInterfaceC<int>[], false);
Eval(19795, v is SealedClass, false);
Eval(19796, v is SealedClass[], false);
}
@@ -2135,26 +2135,26 @@ internal class Program
Eval(19802, v is NotEmptyStruct[], false);
Eval(19803, v is NotEmptyStruct?, false);
Eval(19804, v is NotEmptyStruct?[], false);
- Eval(19805, v is EmptyStructGen<int>, false);
- Eval(19806, v is EmptyStructGen<int>[], false);
- Eval(19807, v is EmptyStructGen<int>?, false);
- Eval(19808, v is EmptyStructGen<int>?[], false);
- Eval(19809, v is NotEmptyStructGen<Guid>, false);
- Eval(19810, v is NotEmptyStructGen<Guid>[], false);
- Eval(19811, v is NotEmptyStructGen<Guid>?, false);
- Eval(19812, v is NotEmptyStructGen<Guid>?[], false);
- Eval(19813, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19814, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19815, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19816, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19805, v is EmptyStructGen<int>, false);
+// Eval(19806, v is EmptyStructGen<int>[], false);
+// Eval(19807, v is EmptyStructGen<int>?, false);
+// Eval(19808, v is EmptyStructGen<int>?[], false);
+// Eval(19809, v is NotEmptyStructGen<Guid>, false);
+// Eval(19810, v is NotEmptyStructGen<Guid>[], false);
+// Eval(19811, v is NotEmptyStructGen<Guid>?, false);
+// Eval(19812, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(19813, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19814, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19815, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19816, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19817, v is NestedStruct, false);
Eval(19818, v is NestedStruct[], false);
Eval(19819, v is NestedStruct?, false);
Eval(19820, v is NestedStruct?[], false);
- Eval(19821, v is NestedStructGen<Decimal>, false);
- Eval(19822, v is NestedStructGen<Decimal>[], false);
- Eval(19823, v is NestedStructGen<Decimal>?, false);
- Eval(19824, v is NestedStructGen<Decimal>?[], false);
+// Eval(19821, v is NestedStructGen<Decimal>, false);
+// Eval(19822, v is NestedStructGen<Decimal>[], false);
+// Eval(19823, v is NestedStructGen<Decimal>?, false);
+// Eval(19824, v is NestedStructGen<Decimal>?[], false);
Eval(19825, v is ExplicitFieldOffsetStruct, false);
Eval(19826, v is ExplicitFieldOffsetStruct[], false);
Eval(19827, v is ExplicitFieldOffsetStruct?, false);
@@ -2171,18 +2171,18 @@ internal class Program
Eval(19846, v is ImplementTwoInterface[], false);
Eval(19847, v is ImplementTwoInterface?, false);
Eval(19848, v is ImplementTwoInterface?[], false);
- Eval(19849, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19850, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19851, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19852, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19853, v is ImplementTwoInterfaceGen<int>, false);
- Eval(19854, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(19855, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(19856, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19857, v is ImplementAllInterface<int>, false);
- Eval(19858, v is ImplementAllInterface<int>[], false);
- Eval(19859, v is ImplementAllInterface<int>?, false);
- Eval(19860, v is ImplementAllInterface<int>?[], false);
+// Eval(19849, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19850, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19851, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19852, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19853, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(19854, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19855, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19856, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19857, v is ImplementAllInterface<int>, false);
+// Eval(19858, v is ImplementAllInterface<int>[], false);
+// Eval(19859, v is ImplementAllInterface<int>?, false);
+// Eval(19860, v is ImplementAllInterface<int>?[], false);
Eval(19861, v is IntE, false);
Eval(19862, v is IntE[], false);
Eval(19863, v is IntE?, false);
@@ -2281,38 +2281,38 @@ internal class Program
Eval(19956, v is IEmpty[], false);
Eval(19957, v is INotEmpty, false);
Eval(19958, v is INotEmpty[], false);
- Eval(19959, v is IEmptyGen<int>, false);
- Eval(19960, v is IEmptyGen<int>[], false);
- Eval(19961, v is INotEmptyGen<int>, false);
- Eval(19962, v is INotEmptyGen<int>[], false);
+// Eval(19959, v is IEmptyGen<int>, false);
+// Eval(19960, v is IEmptyGen<int>[], false);
+// Eval(19961, v is INotEmptyGen<int>, false);
+// Eval(19962, v is INotEmptyGen<int>[], false);
Eval(19963, v is SimpleDelegate, false);
Eval(19964, v is SimpleDelegate[], false);
- Eval(19965, v is GenericDelegate<int>, false);
- Eval(19966, v is GenericDelegate<int>[], false);
+// Eval(19965, v is GenericDelegate<int>, false);
+// Eval(19966, v is GenericDelegate<int>[], false);
Eval(19967, v is EmptyClass, false);
Eval(19968, v is EmptyClass[], false);
Eval(19969, v is NotEmptyClass, false);
Eval(19970, v is NotEmptyClass[], false);
- Eval(19971, v is EmptyClassGen<int>, false);
- Eval(19972, v is EmptyClassGen<int>[], false);
- Eval(19973, v is NotEmptyClassGen<Guid>, false);
- Eval(19974, v is NotEmptyClassGen<Guid>[], false);
- Eval(19975, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(19976, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19971, v is EmptyClassGen<int>, false);
+// Eval(19972, v is EmptyClassGen<int>[], false);
+// Eval(19973, v is NotEmptyClassGen<Guid>, false);
+// Eval(19974, v is NotEmptyClassGen<Guid>[], false);
+// Eval(19975, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19976, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(19977, v is NestedClass, false);
Eval(19978, v is NestedClass[], false);
- Eval(19979, v is NestedClassGen<Decimal>, false);
- Eval(19980, v is NestedClassGen<Decimal>[], false);
+// Eval(19979, v is NestedClassGen<Decimal>, false);
+// Eval(19980, v is NestedClassGen<Decimal>[], false);
Eval(19981, v is ImplementOneInterfaceC, false);
Eval(19982, v is ImplementOneInterfaceC[], false);
Eval(19983, v is ImplementTwoInterfaceC, false);
Eval(19984, v is ImplementTwoInterfaceC[], false);
- Eval(19985, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19986, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19987, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(19988, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19989, v is ImplementAllInterfaceC<int>, false);
- Eval(19990, v is ImplementAllInterfaceC<int>[], false);
+// Eval(19985, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19986, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19987, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19988, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19989, v is ImplementAllInterfaceC<int>, false);
+// Eval(19990, v is ImplementAllInterfaceC<int>[], false);
Eval(19991, v is SealedClass, false);
Eval(19992, v is SealedClass[], false);
}
@@ -2326,26 +2326,26 @@ internal class Program
Eval(19998, v is NotEmptyStruct[], false);
Eval(19999, v is NotEmptyStruct?, false);
Eval(20000, v is NotEmptyStruct?[], false);
- Eval(20001, v is EmptyStructGen<int>, false);
- Eval(20002, v is EmptyStructGen<int>[], false);
- Eval(20003, v is EmptyStructGen<int>?, false);
- Eval(20004, v is EmptyStructGen<int>?[], false);
- Eval(20005, v is NotEmptyStructGen<Guid>, false);
- Eval(20006, v is NotEmptyStructGen<Guid>[], false);
- Eval(20007, v is NotEmptyStructGen<Guid>?, false);
- Eval(20008, v is NotEmptyStructGen<Guid>?[], false);
- Eval(20009, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20010, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20011, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20012, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20001, v is EmptyStructGen<int>, false);
+// Eval(20002, v is EmptyStructGen<int>[], false);
+// Eval(20003, v is EmptyStructGen<int>?, false);
+// Eval(20004, v is EmptyStructGen<int>?[], false);
+// Eval(20005, v is NotEmptyStructGen<Guid>, false);
+// Eval(20006, v is NotEmptyStructGen<Guid>[], false);
+// Eval(20007, v is NotEmptyStructGen<Guid>?, false);
+// Eval(20008, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(20009, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20010, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20011, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20012, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20013, v is NestedStruct, false);
Eval(20014, v is NestedStruct[], false);
Eval(20015, v is NestedStruct?, false);
Eval(20016, v is NestedStruct?[], false);
- Eval(20017, v is NestedStructGen<Decimal>, false);
- Eval(20018, v is NestedStructGen<Decimal>[], false);
- Eval(20019, v is NestedStructGen<Decimal>?, false);
- Eval(20020, v is NestedStructGen<Decimal>?[], false);
+// Eval(20017, v is NestedStructGen<Decimal>, false);
+// Eval(20018, v is NestedStructGen<Decimal>[], false);
+// Eval(20019, v is NestedStructGen<Decimal>?, false);
+// Eval(20020, v is NestedStructGen<Decimal>?[], false);
Eval(20021, v is ExplicitFieldOffsetStruct, false);
Eval(20022, v is ExplicitFieldOffsetStruct[], false);
Eval(20023, v is ExplicitFieldOffsetStruct?, false);
@@ -2362,18 +2362,18 @@ internal class Program
Eval(20042, v is ImplementTwoInterface[], false);
Eval(20043, v is ImplementTwoInterface?, false);
Eval(20044, v is ImplementTwoInterface?[], false);
- Eval(20045, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20046, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20047, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20048, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20049, v is ImplementTwoInterfaceGen<int>, false);
- Eval(20050, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(20051, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(20052, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20053, v is ImplementAllInterface<int>, false);
- Eval(20054, v is ImplementAllInterface<int>[], false);
- Eval(20055, v is ImplementAllInterface<int>?, false);
- Eval(20056, v is ImplementAllInterface<int>?[], false);
+// Eval(20045, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20046, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20047, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20048, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20049, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(20050, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20051, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20052, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20053, v is ImplementAllInterface<int>, false);
+// Eval(20054, v is ImplementAllInterface<int>[], false);
+// Eval(20055, v is ImplementAllInterface<int>?, false);
+// Eval(20056, v is ImplementAllInterface<int>?[], false);
Eval(20057, v is IntE, false);
Eval(20058, v is IntE[], false);
Eval(20059, v is IntE?, false);
@@ -2472,38 +2472,38 @@ internal class Program
Eval(20152, v is IEmpty[], false);
Eval(20153, v is INotEmpty, false);
Eval(20154, v is INotEmpty[], false);
- Eval(20155, v is IEmptyGen<int>, false);
- Eval(20156, v is IEmptyGen<int>[], false);
- Eval(20157, v is INotEmptyGen<int>, false);
- Eval(20158, v is INotEmptyGen<int>[], false);
+// Eval(20155, v is IEmptyGen<int>, false);
+// Eval(20156, v is IEmptyGen<int>[], false);
+// Eval(20157, v is INotEmptyGen<int>, false);
+// Eval(20158, v is INotEmptyGen<int>[], false);
Eval(20159, v is SimpleDelegate, false);
Eval(20160, v is SimpleDelegate[], false);
- Eval(20161, v is GenericDelegate<int>, false);
- Eval(20162, v is GenericDelegate<int>[], false);
+// Eval(20161, v is GenericDelegate<int>, false);
+// Eval(20162, v is GenericDelegate<int>[], false);
Eval(20163, v is EmptyClass, false);
Eval(20164, v is EmptyClass[], false);
Eval(20165, v is NotEmptyClass, false);
Eval(20166, v is NotEmptyClass[], false);
- Eval(20167, v is EmptyClassGen<int>, false);
- Eval(20168, v is EmptyClassGen<int>[], false);
- Eval(20169, v is NotEmptyClassGen<Guid>, false);
- Eval(20170, v is NotEmptyClassGen<Guid>[], false);
- Eval(20171, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(20172, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20167, v is EmptyClassGen<int>, false);
+// Eval(20168, v is EmptyClassGen<int>[], false);
+// Eval(20169, v is NotEmptyClassGen<Guid>, false);
+// Eval(20170, v is NotEmptyClassGen<Guid>[], false);
+// Eval(20171, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20172, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(20173, v is NestedClass, false);
Eval(20174, v is NestedClass[], false);
- Eval(20175, v is NestedClassGen<Decimal>, false);
- Eval(20176, v is NestedClassGen<Decimal>[], false);
+// Eval(20175, v is NestedClassGen<Decimal>, false);
+// Eval(20176, v is NestedClassGen<Decimal>[], false);
Eval(20177, v is ImplementOneInterfaceC, false);
Eval(20178, v is ImplementOneInterfaceC[], false);
Eval(20179, v is ImplementTwoInterfaceC, false);
Eval(20180, v is ImplementTwoInterfaceC[], false);
- Eval(20181, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20182, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20183, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(20184, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20185, v is ImplementAllInterfaceC<int>, false);
- Eval(20186, v is ImplementAllInterfaceC<int>[], false);
+// Eval(20181, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20182, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20183, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20184, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20185, v is ImplementAllInterfaceC<int>, false);
+// Eval(20186, v is ImplementAllInterfaceC<int>[], false);
Eval(20187, v is SealedClass, false);
Eval(20188, v is SealedClass[], false);
}
@@ -2517,26 +2517,26 @@ internal class Program
Eval(20194, v is NotEmptyStruct[], false);
Eval(20195, v is NotEmptyStruct?, false);
Eval(20196, v is NotEmptyStruct?[], false);
- Eval(20197, v is EmptyStructGen<int>, false);
- Eval(20198, v is EmptyStructGen<int>[], false);
- Eval(20199, v is EmptyStructGen<int>?, false);
- Eval(20200, v is EmptyStructGen<int>?[], false);
- Eval(20201, v is NotEmptyStructGen<Guid>, false);
- Eval(20202, v is NotEmptyStructGen<Guid>[], false);
- Eval(20203, v is NotEmptyStructGen<Guid>?, false);
- Eval(20204, v is NotEmptyStructGen<Guid>?[], false);
- Eval(20205, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20206, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20207, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20208, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20197, v is EmptyStructGen<int>, false);
+// Eval(20198, v is EmptyStructGen<int>[], false);
+// Eval(20199, v is EmptyStructGen<int>?, false);
+// Eval(20200, v is EmptyStructGen<int>?[], false);
+// Eval(20201, v is NotEmptyStructGen<Guid>, false);
+// Eval(20202, v is NotEmptyStructGen<Guid>[], false);
+// Eval(20203, v is NotEmptyStructGen<Guid>?, false);
+// Eval(20204, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(20205, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20206, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20207, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20208, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20209, v is NestedStruct, false);
Eval(20210, v is NestedStruct[], false);
Eval(20211, v is NestedStruct?, false);
Eval(20212, v is NestedStruct?[], false);
- Eval(20213, v is NestedStructGen<Decimal>, false);
- Eval(20214, v is NestedStructGen<Decimal>[], false);
- Eval(20215, v is NestedStructGen<Decimal>?, false);
- Eval(20216, v is NestedStructGen<Decimal>?[], false);
+// Eval(20213, v is NestedStructGen<Decimal>, false);
+// Eval(20214, v is NestedStructGen<Decimal>[], false);
+// Eval(20215, v is NestedStructGen<Decimal>?, false);
+// Eval(20216, v is NestedStructGen<Decimal>?[], false);
Eval(20217, v is ExplicitFieldOffsetStruct, false);
Eval(20218, v is ExplicitFieldOffsetStruct[], false);
Eval(20219, v is ExplicitFieldOffsetStruct?, false);
@@ -2553,18 +2553,18 @@ internal class Program
Eval(20238, v is ImplementTwoInterface[], false);
Eval(20239, v is ImplementTwoInterface?, false);
Eval(20240, v is ImplementTwoInterface?[], false);
- Eval(20241, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20242, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20243, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20244, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20245, v is ImplementTwoInterfaceGen<int>, false);
- Eval(20246, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(20247, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(20248, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20249, v is ImplementAllInterface<int>, false);
- Eval(20250, v is ImplementAllInterface<int>[], false);
- Eval(20251, v is ImplementAllInterface<int>?, false);
- Eval(20252, v is ImplementAllInterface<int>?[], false);
+// Eval(20241, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20242, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20243, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20244, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20245, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(20246, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20247, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20248, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20249, v is ImplementAllInterface<int>, false);
+// Eval(20250, v is ImplementAllInterface<int>[], false);
+// Eval(20251, v is ImplementAllInterface<int>?, false);
+// Eval(20252, v is ImplementAllInterface<int>?[], false);
Eval(20253, v is IntE, false);
Eval(20254, v is IntE[], false);
Eval(20255, v is IntE?, false);
@@ -2663,38 +2663,38 @@ internal class Program
Eval(20348, v is IEmpty[], false);
Eval(20349, v is INotEmpty, false);
Eval(20350, v is INotEmpty[], false);
- Eval(20351, v is IEmptyGen<int>, false);
- Eval(20352, v is IEmptyGen<int>[], false);
- Eval(20353, v is INotEmptyGen<int>, false);
- Eval(20354, v is INotEmptyGen<int>[], false);
+// Eval(20351, v is IEmptyGen<int>, false);
+// Eval(20352, v is IEmptyGen<int>[], false);
+// Eval(20353, v is INotEmptyGen<int>, false);
+// Eval(20354, v is INotEmptyGen<int>[], false);
Eval(20355, v is SimpleDelegate, false);
Eval(20356, v is SimpleDelegate[], false);
- Eval(20357, v is GenericDelegate<int>, false);
- Eval(20358, v is GenericDelegate<int>[], false);
+// Eval(20357, v is GenericDelegate<int>, false);
+// Eval(20358, v is GenericDelegate<int>[], false);
Eval(20359, v is EmptyClass, false);
Eval(20360, v is EmptyClass[], false);
Eval(20361, v is NotEmptyClass, false);
Eval(20362, v is NotEmptyClass[], false);
- Eval(20363, v is EmptyClassGen<int>, false);
- Eval(20364, v is EmptyClassGen<int>[], false);
- Eval(20365, v is NotEmptyClassGen<Guid>, false);
- Eval(20366, v is NotEmptyClassGen<Guid>[], false);
- Eval(20367, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(20368, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20363, v is EmptyClassGen<int>, false);
+// Eval(20364, v is EmptyClassGen<int>[], false);
+// Eval(20365, v is NotEmptyClassGen<Guid>, false);
+// Eval(20366, v is NotEmptyClassGen<Guid>[], false);
+// Eval(20367, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20368, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(20369, v is NestedClass, false);
Eval(20370, v is NestedClass[], false);
- Eval(20371, v is NestedClassGen<Decimal>, false);
- Eval(20372, v is NestedClassGen<Decimal>[], false);
+// Eval(20371, v is NestedClassGen<Decimal>, false);
+// Eval(20372, v is NestedClassGen<Decimal>[], false);
Eval(20373, v is ImplementOneInterfaceC, false);
Eval(20374, v is ImplementOneInterfaceC[], false);
Eval(20375, v is ImplementTwoInterfaceC, false);
Eval(20376, v is ImplementTwoInterfaceC[], false);
- Eval(20377, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20378, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20379, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(20380, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20381, v is ImplementAllInterfaceC<int>, false);
- Eval(20382, v is ImplementAllInterfaceC<int>[], false);
+// Eval(20377, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20378, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20379, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20380, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20381, v is ImplementAllInterfaceC<int>, false);
+// Eval(20382, v is ImplementAllInterfaceC<int>[], false);
Eval(20383, v is SealedClass, false);
Eval(20384, v is SealedClass[], false);
}
@@ -2708,26 +2708,26 @@ internal class Program
Eval(20390, v is NotEmptyStruct[], false);
Eval(20391, v is NotEmptyStruct?, false);
Eval(20392, v is NotEmptyStruct?[], false);
- Eval(20393, v is EmptyStructGen<int>, false);
- Eval(20394, v is EmptyStructGen<int>[], false);
- Eval(20395, v is EmptyStructGen<int>?, false);
- Eval(20396, v is EmptyStructGen<int>?[], false);
- Eval(20397, v is NotEmptyStructGen<Guid>, false);
- Eval(20398, v is NotEmptyStructGen<Guid>[], false);
- Eval(20399, v is NotEmptyStructGen<Guid>?, false);
- Eval(20400, v is NotEmptyStructGen<Guid>?[], false);
- Eval(20401, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20402, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20403, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20404, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20393, v is EmptyStructGen<int>, false);
+// Eval(20394, v is EmptyStructGen<int>[], false);
+// Eval(20395, v is EmptyStructGen<int>?, false);
+// Eval(20396, v is EmptyStructGen<int>?[], false);
+// Eval(20397, v is NotEmptyStructGen<Guid>, false);
+// Eval(20398, v is NotEmptyStructGen<Guid>[], false);
+// Eval(20399, v is NotEmptyStructGen<Guid>?, false);
+// Eval(20400, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(20401, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20402, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20403, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20404, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20405, v is NestedStruct, false);
Eval(20406, v is NestedStruct[], false);
Eval(20407, v is NestedStruct?, false);
Eval(20408, v is NestedStruct?[], false);
- Eval(20409, v is NestedStructGen<Decimal>, false);
- Eval(20410, v is NestedStructGen<Decimal>[], false);
- Eval(20411, v is NestedStructGen<Decimal>?, false);
- Eval(20412, v is NestedStructGen<Decimal>?[], false);
+// Eval(20409, v is NestedStructGen<Decimal>, false);
+// Eval(20410, v is NestedStructGen<Decimal>[], false);
+// Eval(20411, v is NestedStructGen<Decimal>?, false);
+// Eval(20412, v is NestedStructGen<Decimal>?[], false);
Eval(20413, v is ExplicitFieldOffsetStruct, false);
Eval(20414, v is ExplicitFieldOffsetStruct[], false);
Eval(20415, v is ExplicitFieldOffsetStruct?, false);
@@ -2744,18 +2744,18 @@ internal class Program
Eval(20434, v is ImplementTwoInterface[], false);
Eval(20435, v is ImplementTwoInterface?, false);
Eval(20436, v is ImplementTwoInterface?[], false);
- Eval(20437, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20438, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20439, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20440, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20441, v is ImplementTwoInterfaceGen<int>, false);
- Eval(20442, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(20443, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(20444, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20445, v is ImplementAllInterface<int>, false);
- Eval(20446, v is ImplementAllInterface<int>[], false);
- Eval(20447, v is ImplementAllInterface<int>?, false);
- Eval(20448, v is ImplementAllInterface<int>?[], false);
+// Eval(20437, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20438, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20439, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20440, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20441, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(20442, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20443, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20444, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20445, v is ImplementAllInterface<int>, false);
+// Eval(20446, v is ImplementAllInterface<int>[], false);
+// Eval(20447, v is ImplementAllInterface<int>?, false);
+// Eval(20448, v is ImplementAllInterface<int>?[], false);
Eval(20449, v is IntE, false);
Eval(20450, v is IntE[], false);
Eval(20451, v is IntE?, false);
@@ -2854,38 +2854,38 @@ internal class Program
Eval(20544, v is IEmpty[], false);
Eval(20545, v is INotEmpty, false);
Eval(20546, v is INotEmpty[], false);
- Eval(20547, v is IEmptyGen<int>, false);
- Eval(20548, v is IEmptyGen<int>[], false);
- Eval(20549, v is INotEmptyGen<int>, false);
- Eval(20550, v is INotEmptyGen<int>[], false);
+// Eval(20547, v is IEmptyGen<int>, false);
+// Eval(20548, v is IEmptyGen<int>[], false);
+// Eval(20549, v is INotEmptyGen<int>, false);
+// Eval(20550, v is INotEmptyGen<int>[], false);
Eval(20551, v is SimpleDelegate, false);
Eval(20552, v is SimpleDelegate[], false);
- Eval(20553, v is GenericDelegate<int>, false);
- Eval(20554, v is GenericDelegate<int>[], false);
+// Eval(20553, v is GenericDelegate<int>, false);
+// Eval(20554, v is GenericDelegate<int>[], false);
Eval(20555, v is EmptyClass, false);
Eval(20556, v is EmptyClass[], false);
Eval(20557, v is NotEmptyClass, false);
Eval(20558, v is NotEmptyClass[], false);
- Eval(20559, v is EmptyClassGen<int>, false);
- Eval(20560, v is EmptyClassGen<int>[], false);
- Eval(20561, v is NotEmptyClassGen<Guid>, false);
- Eval(20562, v is NotEmptyClassGen<Guid>[], false);
- Eval(20563, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(20564, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20559, v is EmptyClassGen<int>, false);
+// Eval(20560, v is EmptyClassGen<int>[], false);
+// Eval(20561, v is NotEmptyClassGen<Guid>, false);
+// Eval(20562, v is NotEmptyClassGen<Guid>[], false);
+// Eval(20563, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20564, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(20565, v is NestedClass, false);
Eval(20566, v is NestedClass[], false);
- Eval(20567, v is NestedClassGen<Decimal>, false);
- Eval(20568, v is NestedClassGen<Decimal>[], false);
+// Eval(20567, v is NestedClassGen<Decimal>, false);
+// Eval(20568, v is NestedClassGen<Decimal>[], false);
Eval(20569, v is ImplementOneInterfaceC, false);
Eval(20570, v is ImplementOneInterfaceC[], false);
Eval(20571, v is ImplementTwoInterfaceC, false);
Eval(20572, v is ImplementTwoInterfaceC[], false);
- Eval(20573, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20574, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20575, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(20576, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20577, v is ImplementAllInterfaceC<int>, false);
- Eval(20578, v is ImplementAllInterfaceC<int>[], false);
+// Eval(20573, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20574, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20575, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20576, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20577, v is ImplementAllInterfaceC<int>, false);
+// Eval(20578, v is ImplementAllInterfaceC<int>[], false);
Eval(20579, v is SealedClass, false);
Eval(20580, v is SealedClass[], false);
}
@@ -2902,26 +2902,26 @@ internal class Program
Eval(20586, v is NotEmptyStruct[], false);
Eval(20587, v is NotEmptyStruct?, false);
Eval(20588, v is NotEmptyStruct?[], false);
- Eval(20589, v is EmptyStructGen<int>, false);
- Eval(20590, v is EmptyStructGen<int>[], false);
- Eval(20591, v is EmptyStructGen<int>?, false);
- Eval(20592, v is EmptyStructGen<int>?[], false);
- Eval(20593, v is NotEmptyStructGen<Guid>, false);
- Eval(20594, v is NotEmptyStructGen<Guid>[], false);
- Eval(20595, v is NotEmptyStructGen<Guid>?, false);
- Eval(20596, v is NotEmptyStructGen<Guid>?[], false);
- Eval(20597, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20598, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20599, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20600, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20589, v is EmptyStructGen<int>, false);
+// Eval(20590, v is EmptyStructGen<int>[], false);
+// Eval(20591, v is EmptyStructGen<int>?, false);
+// Eval(20592, v is EmptyStructGen<int>?[], false);
+// Eval(20593, v is NotEmptyStructGen<Guid>, false);
+// Eval(20594, v is NotEmptyStructGen<Guid>[], false);
+// Eval(20595, v is NotEmptyStructGen<Guid>?, false);
+// Eval(20596, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(20597, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20598, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20599, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20600, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20601, v is NestedStruct, false);
Eval(20602, v is NestedStruct[], false);
Eval(20603, v is NestedStruct?, false);
Eval(20604, v is NestedStruct?[], false);
- Eval(20605, v is NestedStructGen<Decimal>, false);
- Eval(20606, v is NestedStructGen<Decimal>[], false);
- Eval(20607, v is NestedStructGen<Decimal>?, false);
- Eval(20608, v is NestedStructGen<Decimal>?[], false);
+// Eval(20605, v is NestedStructGen<Decimal>, false);
+// Eval(20606, v is NestedStructGen<Decimal>[], false);
+// Eval(20607, v is NestedStructGen<Decimal>?, false);
+// Eval(20608, v is NestedStructGen<Decimal>?[], false);
Eval(20609, v is ExplicitFieldOffsetStruct, false);
Eval(20610, v is ExplicitFieldOffsetStruct[], false);
Eval(20611, v is ExplicitFieldOffsetStruct?, false);
@@ -2938,18 +2938,18 @@ internal class Program
Eval(20630, v is ImplementTwoInterface[], false);
Eval(20631, v is ImplementTwoInterface?, false);
Eval(20632, v is ImplementTwoInterface?[], false);
- Eval(20633, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20634, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20635, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20636, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20637, v is ImplementTwoInterfaceGen<int>, false);
- Eval(20638, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(20639, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(20640, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20641, v is ImplementAllInterface<int>, false);
- Eval(20642, v is ImplementAllInterface<int>[], false);
- Eval(20643, v is ImplementAllInterface<int>?, false);
- Eval(20644, v is ImplementAllInterface<int>?[], false);
+// Eval(20633, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20634, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20635, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20636, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20637, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(20638, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20639, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20640, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20641, v is ImplementAllInterface<int>, false);
+// Eval(20642, v is ImplementAllInterface<int>[], false);
+// Eval(20643, v is ImplementAllInterface<int>?, false);
+// Eval(20644, v is ImplementAllInterface<int>?[], false);
Eval(20645, v is IntE, false);
Eval(20646, v is IntE[], false);
Eval(20647, v is IntE?, false);
@@ -3048,38 +3048,38 @@ internal class Program
Eval(20740, v is IEmpty[], false);
Eval(20741, v is INotEmpty, false);
Eval(20742, v is INotEmpty[], false);
- Eval(20743, v is IEmptyGen<int>, false);
- Eval(20744, v is IEmptyGen<int>[], false);
- Eval(20745, v is INotEmptyGen<int>, false);
- Eval(20746, v is INotEmptyGen<int>[], false);
+// Eval(20743, v is IEmptyGen<int>, false);
+// Eval(20744, v is IEmptyGen<int>[], false);
+// Eval(20745, v is INotEmptyGen<int>, false);
+// Eval(20746, v is INotEmptyGen<int>[], false);
Eval(20747, v is SimpleDelegate, false);
Eval(20748, v is SimpleDelegate[], false);
- Eval(20749, v is GenericDelegate<int>, false);
- Eval(20750, v is GenericDelegate<int>[], false);
+// Eval(20749, v is GenericDelegate<int>, false);
+// Eval(20750, v is GenericDelegate<int>[], false);
Eval(20751, v is EmptyClass, false);
Eval(20752, v is EmptyClass[], false);
Eval(20753, v is NotEmptyClass, false);
Eval(20754, v is NotEmptyClass[], false);
- Eval(20755, v is EmptyClassGen<int>, false);
- Eval(20756, v is EmptyClassGen<int>[], false);
- Eval(20757, v is NotEmptyClassGen<Guid>, false);
- Eval(20758, v is NotEmptyClassGen<Guid>[], false);
- Eval(20759, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(20760, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20755, v is EmptyClassGen<int>, false);
+// Eval(20756, v is EmptyClassGen<int>[], false);
+// Eval(20757, v is NotEmptyClassGen<Guid>, false);
+// Eval(20758, v is NotEmptyClassGen<Guid>[], false);
+// Eval(20759, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20760, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(20761, v is NestedClass, false);
Eval(20762, v is NestedClass[], false);
- Eval(20763, v is NestedClassGen<Decimal>, false);
- Eval(20764, v is NestedClassGen<Decimal>[], false);
+// Eval(20763, v is NestedClassGen<Decimal>, false);
+// Eval(20764, v is NestedClassGen<Decimal>[], false);
Eval(20765, v is ImplementOneInterfaceC, false);
Eval(20766, v is ImplementOneInterfaceC[], false);
Eval(20767, v is ImplementTwoInterfaceC, false);
Eval(20768, v is ImplementTwoInterfaceC[], false);
- Eval(20769, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20770, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20771, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(20772, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20773, v is ImplementAllInterfaceC<int>, false);
- Eval(20774, v is ImplementAllInterfaceC<int>[], false);
+// Eval(20769, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20770, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20771, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20772, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20773, v is ImplementAllInterfaceC<int>, false);
+// Eval(20774, v is ImplementAllInterfaceC<int>[], false);
Eval(20775, v is SealedClass, false);
Eval(20776, v is SealedClass[], false);
}
@@ -3093,26 +3093,26 @@ internal class Program
Eval(20782, v is NotEmptyStruct[], false);
Eval(20783, v is NotEmptyStruct?, false);
Eval(20784, v is NotEmptyStruct?[], false);
- Eval(20785, v is EmptyStructGen<int>, false);
- Eval(20786, v is EmptyStructGen<int>[], false);
- Eval(20787, v is EmptyStructGen<int>?, false);
- Eval(20788, v is EmptyStructGen<int>?[], false);
- Eval(20789, v is NotEmptyStructGen<Guid>, false);
- Eval(20790, v is NotEmptyStructGen<Guid>[], false);
- Eval(20791, v is NotEmptyStructGen<Guid>?, false);
- Eval(20792, v is NotEmptyStructGen<Guid>?[], false);
- Eval(20793, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20794, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20795, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20796, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20785, v is EmptyStructGen<int>, false);
+// Eval(20786, v is EmptyStructGen<int>[], false);
+// Eval(20787, v is EmptyStructGen<int>?, false);
+// Eval(20788, v is EmptyStructGen<int>?[], false);
+// Eval(20789, v is NotEmptyStructGen<Guid>, false);
+// Eval(20790, v is NotEmptyStructGen<Guid>[], false);
+// Eval(20791, v is NotEmptyStructGen<Guid>?, false);
+// Eval(20792, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(20793, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20794, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20795, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20796, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20797, v is NestedStruct, false);
Eval(20798, v is NestedStruct[], false);
Eval(20799, v is NestedStruct?, false);
Eval(20800, v is NestedStruct?[], false);
- Eval(20801, v is NestedStructGen<Decimal>, false);
- Eval(20802, v is NestedStructGen<Decimal>[], false);
- Eval(20803, v is NestedStructGen<Decimal>?, false);
- Eval(20804, v is NestedStructGen<Decimal>?[], false);
+// Eval(20801, v is NestedStructGen<Decimal>, false);
+// Eval(20802, v is NestedStructGen<Decimal>[], false);
+// Eval(20803, v is NestedStructGen<Decimal>?, false);
+// Eval(20804, v is NestedStructGen<Decimal>?[], false);
Eval(20805, v is ExplicitFieldOffsetStruct, false);
Eval(20806, v is ExplicitFieldOffsetStruct[], false);
Eval(20807, v is ExplicitFieldOffsetStruct?, false);
@@ -3129,18 +3129,18 @@ internal class Program
Eval(20826, v is ImplementTwoInterface[], false);
Eval(20827, v is ImplementTwoInterface?, false);
Eval(20828, v is ImplementTwoInterface?[], false);
- Eval(20829, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20830, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20831, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20832, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20833, v is ImplementTwoInterfaceGen<int>, false);
- Eval(20834, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(20835, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(20836, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20837, v is ImplementAllInterface<int>, false);
- Eval(20838, v is ImplementAllInterface<int>[], false);
- Eval(20839, v is ImplementAllInterface<int>?, false);
- Eval(20840, v is ImplementAllInterface<int>?[], false);
+// Eval(20829, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20830, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20831, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20832, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20833, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(20834, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20835, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20836, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20837, v is ImplementAllInterface<int>, false);
+// Eval(20838, v is ImplementAllInterface<int>[], false);
+// Eval(20839, v is ImplementAllInterface<int>?, false);
+// Eval(20840, v is ImplementAllInterface<int>?[], false);
Eval(20841, v is IntE, false);
Eval(20842, v is IntE[], false);
Eval(20843, v is IntE?, false);
@@ -3239,38 +3239,38 @@ internal class Program
Eval(20936, v is IEmpty[], false);
Eval(20937, v is INotEmpty, false);
Eval(20938, v is INotEmpty[], false);
- Eval(20939, v is IEmptyGen<int>, false);
- Eval(20940, v is IEmptyGen<int>[], false);
- Eval(20941, v is INotEmptyGen<int>, false);
- Eval(20942, v is INotEmptyGen<int>[], false);
+// Eval(20939, v is IEmptyGen<int>, false);
+// Eval(20940, v is IEmptyGen<int>[], false);
+// Eval(20941, v is INotEmptyGen<int>, false);
+// Eval(20942, v is INotEmptyGen<int>[], false);
Eval(20943, v is SimpleDelegate, false);
Eval(20944, v is SimpleDelegate[], false);
- Eval(20945, v is GenericDelegate<int>, false);
- Eval(20946, v is GenericDelegate<int>[], false);
+// Eval(20945, v is GenericDelegate<int>, false);
+// Eval(20946, v is GenericDelegate<int>[], false);
Eval(20947, v is EmptyClass, false);
Eval(20948, v is EmptyClass[], false);
Eval(20949, v is NotEmptyClass, false);
Eval(20950, v is NotEmptyClass[], false);
- Eval(20951, v is EmptyClassGen<int>, false);
- Eval(20952, v is EmptyClassGen<int>[], false);
- Eval(20953, v is NotEmptyClassGen<Guid>, false);
- Eval(20954, v is NotEmptyClassGen<Guid>[], false);
- Eval(20955, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(20956, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20951, v is EmptyClassGen<int>, false);
+// Eval(20952, v is EmptyClassGen<int>[], false);
+// Eval(20953, v is NotEmptyClassGen<Guid>, false);
+// Eval(20954, v is NotEmptyClassGen<Guid>[], false);
+// Eval(20955, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20956, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(20957, v is NestedClass, false);
Eval(20958, v is NestedClass[], false);
- Eval(20959, v is NestedClassGen<Decimal>, false);
- Eval(20960, v is NestedClassGen<Decimal>[], false);
+// Eval(20959, v is NestedClassGen<Decimal>, false);
+// Eval(20960, v is NestedClassGen<Decimal>[], false);
Eval(20961, v is ImplementOneInterfaceC, false);
Eval(20962, v is ImplementOneInterfaceC[], false);
Eval(20963, v is ImplementTwoInterfaceC, false);
Eval(20964, v is ImplementTwoInterfaceC[], false);
- Eval(20965, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20966, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20967, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(20968, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20969, v is ImplementAllInterfaceC<int>, false);
- Eval(20970, v is ImplementAllInterfaceC<int>[], false);
+// Eval(20965, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20966, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20967, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20968, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20969, v is ImplementAllInterfaceC<int>, false);
+// Eval(20970, v is ImplementAllInterfaceC<int>[], false);
Eval(20971, v is SealedClass, false);
Eval(20972, v is SealedClass[], false);
}
@@ -3284,26 +3284,26 @@ internal class Program
Eval(20978, v is NotEmptyStruct[], false);
Eval(20979, v is NotEmptyStruct?, false);
Eval(20980, v is NotEmptyStruct?[], false);
- Eval(20981, v is EmptyStructGen<int>, false);
- Eval(20982, v is EmptyStructGen<int>[], false);
- Eval(20983, v is EmptyStructGen<int>?, false);
- Eval(20984, v is EmptyStructGen<int>?[], false);
- Eval(20985, v is NotEmptyStructGen<Guid>, false);
- Eval(20986, v is NotEmptyStructGen<Guid>[], false);
- Eval(20987, v is NotEmptyStructGen<Guid>?, false);
- Eval(20988, v is NotEmptyStructGen<Guid>?[], false);
- Eval(20989, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20990, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20991, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20992, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20981, v is EmptyStructGen<int>, false);
+// Eval(20982, v is EmptyStructGen<int>[], false);
+// Eval(20983, v is EmptyStructGen<int>?, false);
+// Eval(20984, v is EmptyStructGen<int>?[], false);
+// Eval(20985, v is NotEmptyStructGen<Guid>, false);
+// Eval(20986, v is NotEmptyStructGen<Guid>[], false);
+// Eval(20987, v is NotEmptyStructGen<Guid>?, false);
+// Eval(20988, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(20989, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20990, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20991, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20992, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20993, v is NestedStruct, false);
Eval(20994, v is NestedStruct[], false);
Eval(20995, v is NestedStruct?, false);
Eval(20996, v is NestedStruct?[], false);
- Eval(20997, v is NestedStructGen<Decimal>, false);
- Eval(20998, v is NestedStructGen<Decimal>[], false);
- Eval(20999, v is NestedStructGen<Decimal>?, false);
- Eval(21000, v is NestedStructGen<Decimal>?[], false);
+// Eval(20997, v is NestedStructGen<Decimal>, false);
+// Eval(20998, v is NestedStructGen<Decimal>[], false);
+// Eval(20999, v is NestedStructGen<Decimal>?, false);
+// Eval(21000, v is NestedStructGen<Decimal>?[], false);
Eval(21001, v is ExplicitFieldOffsetStruct, false);
Eval(21002, v is ExplicitFieldOffsetStruct[], false);
Eval(21003, v is ExplicitFieldOffsetStruct?, false);
@@ -3320,18 +3320,18 @@ internal class Program
Eval(21022, v is ImplementTwoInterface[], false);
Eval(21023, v is ImplementTwoInterface?, false);
Eval(21024, v is ImplementTwoInterface?[], false);
- Eval(21025, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(21026, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(21027, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(21028, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(21029, v is ImplementTwoInterfaceGen<int>, false);
- Eval(21030, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(21031, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(21032, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(21033, v is ImplementAllInterface<int>, false);
- Eval(21034, v is ImplementAllInterface<int>[], false);
- Eval(21035, v is ImplementAllInterface<int>?, false);
- Eval(21036, v is ImplementAllInterface<int>?[], false);
+// Eval(21025, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(21026, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(21027, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(21028, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(21029, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(21030, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(21031, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(21032, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(21033, v is ImplementAllInterface<int>, false);
+// Eval(21034, v is ImplementAllInterface<int>[], false);
+// Eval(21035, v is ImplementAllInterface<int>?, false);
+// Eval(21036, v is ImplementAllInterface<int>?[], false);
Eval(21037, v is IntE, false);
Eval(21038, v is IntE[], false);
Eval(21039, v is IntE?, false);
@@ -3430,38 +3430,38 @@ internal class Program
Eval(21132, v is IEmpty[], false);
Eval(21133, v is INotEmpty, false);
Eval(21134, v is INotEmpty[], false);
- Eval(21135, v is IEmptyGen<int>, false);
- Eval(21136, v is IEmptyGen<int>[], false);
- Eval(21137, v is INotEmptyGen<int>, false);
- Eval(21138, v is INotEmptyGen<int>[], false);
+// Eval(21135, v is IEmptyGen<int>, false);
+// Eval(21136, v is IEmptyGen<int>[], false);
+// Eval(21137, v is INotEmptyGen<int>, false);
+// Eval(21138, v is INotEmptyGen<int>[], false);
Eval(21139, v is SimpleDelegate, false);
Eval(21140, v is SimpleDelegate[], false);
- Eval(21141, v is GenericDelegate<int>, false);
- Eval(21142, v is GenericDelegate<int>[], false);
+// Eval(21141, v is GenericDelegate<int>, false);
+// Eval(21142, v is GenericDelegate<int>[], false);
Eval(21143, v is EmptyClass, false);
Eval(21144, v is EmptyClass[], false);
Eval(21145, v is NotEmptyClass, false);
Eval(21146, v is NotEmptyClass[], false);
- Eval(21147, v is EmptyClassGen<int>, false);
- Eval(21148, v is EmptyClassGen<int>[], false);
- Eval(21149, v is NotEmptyClassGen<Guid>, false);
- Eval(21150, v is NotEmptyClassGen<Guid>[], false);
- Eval(21151, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(21152, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(21147, v is EmptyClassGen<int>, false);
+// Eval(21148, v is EmptyClassGen<int>[], false);
+// Eval(21149, v is NotEmptyClassGen<Guid>, false);
+// Eval(21150, v is NotEmptyClassGen<Guid>[], false);
+// Eval(21151, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(21152, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(21153, v is NestedClass, false);
Eval(21154, v is NestedClass[], false);
- Eval(21155, v is NestedClassGen<Decimal>, false);
- Eval(21156, v is NestedClassGen<Decimal>[], false);
+// Eval(21155, v is NestedClassGen<Decimal>, false);
+// Eval(21156, v is NestedClassGen<Decimal>[], false);
Eval(21157, v is ImplementOneInterfaceC, false);
Eval(21158, v is ImplementOneInterfaceC[], false);
Eval(21159, v is ImplementTwoInterfaceC, false);
Eval(21160, v is ImplementTwoInterfaceC[], false);
- Eval(21161, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(21162, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(21163, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(21164, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(21165, v is ImplementAllInterfaceC<int>, false);
- Eval(21166, v is ImplementAllInterfaceC<int>[], false);
+// Eval(21161, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(21162, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(21163, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(21164, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(21165, v is ImplementAllInterfaceC<int>, false);
+// Eval(21166, v is ImplementAllInterfaceC<int>[], false);
Eval(21167, v is SealedClass, false);
Eval(21168, v is SealedClass[], false);
}
@@ -3475,26 +3475,26 @@ internal class Program
Eval(21174, v is NotEmptyStruct[], false);
Eval(21175, v is NotEmptyStruct?, false);
Eval(21176, v is NotEmptyStruct?[], false);
- Eval(21177, v is EmptyStructGen<int>, false);
- Eval(21178, v is EmptyStructGen<int>[], false);
- Eval(21179, v is EmptyStructGen<int>?, false);
- Eval(21180, v is EmptyStructGen<int>?[], false);
- Eval(21181, v is NotEmptyStructGen<Guid>, false);
- Eval(21182, v is NotEmptyStructGen<Guid>[], false);
- Eval(21183, v is NotEmptyStructGen<Guid>?, false);
- Eval(21184, v is NotEmptyStructGen<Guid>?[], false);
- Eval(21185, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(21186, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(21187, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(21188, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(21177, v is EmptyStructGen<int>, false);
+// Eval(21178, v is EmptyStructGen<int>[], false);
+// Eval(21179, v is EmptyStructGen<int>?, false);
+// Eval(21180, v is EmptyStructGen<int>?[], false);
+// Eval(21181, v is NotEmptyStructGen<Guid>, false);
+// Eval(21182, v is NotEmptyStructGen<Guid>[], false);
+// Eval(21183, v is NotEmptyStructGen<Guid>?, false);
+// Eval(21184, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(21185, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(21186, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(21187, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(21188, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(21189, v is NestedStruct, false);
Eval(21190, v is NestedStruct[], false);
Eval(21191, v is NestedStruct?, false);
Eval(21192, v is NestedStruct?[], false);
- Eval(21193, v is NestedStructGen<Decimal>, false);
- Eval(21194, v is NestedStructGen<Decimal>[], false);
- Eval(21195, v is NestedStructGen<Decimal>?, false);
- Eval(21196, v is NestedStructGen<Decimal>?[], false);
+// Eval(21193, v is NestedStructGen<Decimal>, false);
+// Eval(21194, v is NestedStructGen<Decimal>[], false);
+// Eval(21195, v is NestedStructGen<Decimal>?, false);
+// Eval(21196, v is NestedStructGen<Decimal>?[], false);
Eval(21197, v is ExplicitFieldOffsetStruct, false);
Eval(21198, v is ExplicitFieldOffsetStruct[], false);
Eval(21199, v is ExplicitFieldOffsetStruct?, false);
@@ -3511,18 +3511,18 @@ internal class Program
Eval(21218, v is ImplementTwoInterface[], false);
Eval(21219, v is ImplementTwoInterface?, false);
Eval(21220, v is ImplementTwoInterface?[], false);
- Eval(21221, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(21222, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(21223, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(21224, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(21225, v is ImplementTwoInterfaceGen<int>, false);
- Eval(21226, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(21227, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(21228, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(21229, v is ImplementAllInterface<int>, false);
- Eval(21230, v is ImplementAllInterface<int>[], false);
- Eval(21231, v is ImplementAllInterface<int>?, false);
- Eval(21232, v is ImplementAllInterface<int>?[], false);
+// Eval(21221, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(21222, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(21223, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(21224, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(21225, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(21226, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(21227, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(21228, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(21229, v is ImplementAllInterface<int>, false);
+// Eval(21230, v is ImplementAllInterface<int>[], false);
+// Eval(21231, v is ImplementAllInterface<int>?, false);
+// Eval(21232, v is ImplementAllInterface<int>?[], false);
Eval(21233, v is IntE, false);
Eval(21234, v is IntE[], false);
Eval(21235, v is IntE?, false);
@@ -3621,38 +3621,38 @@ internal class Program
Eval(21328, v is IEmpty[], false);
Eval(21329, v is INotEmpty, false);
Eval(21330, v is INotEmpty[], false);
- Eval(21331, v is IEmptyGen<int>, false);
- Eval(21332, v is IEmptyGen<int>[], false);
- Eval(21333, v is INotEmptyGen<int>, false);
- Eval(21334, v is INotEmptyGen<int>[], false);
+// Eval(21331, v is IEmptyGen<int>, false);
+// Eval(21332, v is IEmptyGen<int>[], false);
+// Eval(21333, v is INotEmptyGen<int>, false);
+// Eval(21334, v is INotEmptyGen<int>[], false);
Eval(21335, v is SimpleDelegate, false);
Eval(21336, v is SimpleDelegate[], false);
- Eval(21337, v is GenericDelegate<int>, false);
- Eval(21338, v is GenericDelegate<int>[], false);
+// Eval(21337, v is GenericDelegate<int>, false);
+// Eval(21338, v is GenericDelegate<int>[], false);
Eval(21339, v is EmptyClass, false);
Eval(21340, v is EmptyClass[], false);
Eval(21341, v is NotEmptyClass, false);
Eval(21342, v is NotEmptyClass[], false);
- Eval(21343, v is EmptyClassGen<int>, false);
- Eval(21344, v is EmptyClassGen<int>[], false);
- Eval(21345, v is NotEmptyClassGen<Guid>, false);
- Eval(21346, v is NotEmptyClassGen<Guid>[], false);
- Eval(21347, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(21348, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(21343, v is EmptyClassGen<int>, false);
+// Eval(21344, v is EmptyClassGen<int>[], false);
+// Eval(21345, v is NotEmptyClassGen<Guid>, false);
+// Eval(21346, v is NotEmptyClassGen<Guid>[], false);
+// Eval(21347, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(21348, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(21349, v is NestedClass, false);
Eval(21350, v is NestedClass[], false);
- Eval(21351, v is NestedClassGen<Decimal>, false);
- Eval(21352, v is NestedClassGen<Decimal>[], false);
+// Eval(21351, v is NestedClassGen<Decimal>, false);
+// Eval(21352, v is NestedClassGen<Decimal>[], false);
Eval(21353, v is ImplementOneInterfaceC, false);
Eval(21354, v is ImplementOneInterfaceC[], false);
Eval(21355, v is ImplementTwoInterfaceC, false);
Eval(21356, v is ImplementTwoInterfaceC[], false);
- Eval(21357, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(21358, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(21359, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(21360, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(21361, v is ImplementAllInterfaceC<int>, false);
- Eval(21362, v is ImplementAllInterfaceC<int>[], false);
+// Eval(21357, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(21358, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(21359, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(21360, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(21361, v is ImplementAllInterfaceC<int>, false);
+// Eval(21362, v is ImplementAllInterfaceC<int>[], false);
Eval(21363, v is SealedClass, false);
Eval(21364, v is SealedClass[], false);
}
@@ -3666,26 +3666,26 @@ internal class Program
Eval(21370, v is NotEmptyStruct[], false);
Eval(21371, v is NotEmptyStruct?, false);
Eval(21372, v is NotEmptyStruct?[], false);
- Eval(21373, v is EmptyStructGen<int>, false);
- Eval(21374, v is EmptyStructGen<int>[], false);
- Eval(21375, v is EmptyStructGen<int>?, false);
- Eval(21376, v is EmptyStructGen<int>?[], false);
- Eval(21377, v is NotEmptyStructGen<Guid>, false);
- Eval(21378, v is NotEmptyStructGen<Guid>[], false);
- Eval(21379, v is NotEmptyStructGen<Guid>?, false);
- Eval(21380, v is NotEmptyStructGen<Guid>?[], false);
- Eval(21381, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(21382, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(21383, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(21384, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(21373, v is EmptyStructGen<int>, false);
+// Eval(21374, v is EmptyStructGen<int>[], false);
+// Eval(21375, v is EmptyStructGen<int>?, false);
+// Eval(21376, v is EmptyStructGen<int>?[], false);
+// Eval(21377, v is NotEmptyStructGen<Guid>, false);
+// Eval(21378, v is NotEmptyStructGen<Guid>[], false);
+// Eval(21379, v is NotEmptyStructGen<Guid>?, false);
+// Eval(21380, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(21381, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(21382, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(21383, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(21384, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(21385, v is NestedStruct, false);
Eval(21386, v is NestedStruct[], false);
Eval(21387, v is NestedStruct?, false);
Eval(21388, v is NestedStruct?[], false);
- Eval(21389, v is NestedStructGen<Decimal>, false);
- Eval(21390, v is NestedStructGen<Decimal>[], false);
- Eval(21391, v is NestedStructGen<Decimal>?, false);
- Eval(21392, v is NestedStructGen<Decimal>?[], false);
+// Eval(21389, v is NestedStructGen<Decimal>, false);
+// Eval(21390, v is NestedStructGen<Decimal>[], false);
+// Eval(21391, v is NestedStructGen<Decimal>?, false);
+// Eval(21392, v is NestedStructGen<Decimal>?[], false);
Eval(21393, v is ExplicitFieldOffsetStruct, false);
Eval(21394, v is ExplicitFieldOffsetStruct[], false);
Eval(21395, v is ExplicitFieldOffsetStruct?, false);
@@ -3702,18 +3702,18 @@ internal class Program
Eval(21414, v is ImplementTwoInterface[], false);
Eval(21415, v is ImplementTwoInterface?, false);
Eval(21416, v is ImplementTwoInterface?[], false);
- Eval(21417, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(21418, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(21419, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(21420, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(21421, v is ImplementTwoInterfaceGen<int>, false);
- Eval(21422, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(21423, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(21424, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(21425, v is ImplementAllInterface<int>, false);
- Eval(21426, v is ImplementAllInterface<int>[], false);
- Eval(21427, v is ImplementAllInterface<int>?, false);
- Eval(21428, v is ImplementAllInterface<int>?[], false);
+// Eval(21417, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(21418, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(21419, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(21420, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(21421, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(21422, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(21423, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(21424, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(21425, v is ImplementAllInterface<int>, false);
+// Eval(21426, v is ImplementAllInterface<int>[], false);
+// Eval(21427, v is ImplementAllInterface<int>?, false);
+// Eval(21428, v is ImplementAllInterface<int>?[], false);
Eval(21429, v is IntE, false);
Eval(21430, v is IntE[], false);
Eval(21431, v is IntE?, false);
@@ -3812,38 +3812,38 @@ internal class Program
Eval(21524, v is IEmpty[], false);
Eval(21525, v is INotEmpty, false);
Eval(21526, v is INotEmpty[], false);
- Eval(21527, v is IEmptyGen<int>, false);
- Eval(21528, v is IEmptyGen<int>[], false);
- Eval(21529, v is INotEmptyGen<int>, false);
- Eval(21530, v is INotEmptyGen<int>[], false);
+// Eval(21527, v is IEmptyGen<int>, false);
+// Eval(21528, v is IEmptyGen<int>[], false);
+// Eval(21529, v is INotEmptyGen<int>, false);
+// Eval(21530, v is INotEmptyGen<int>[], false);
Eval(21531, v is SimpleDelegate, false);
Eval(21532, v is SimpleDelegate[], false);
- Eval(21533, v is GenericDelegate<int>, false);
- Eval(21534, v is GenericDelegate<int>[], false);
+// Eval(21533, v is GenericDelegate<int>, false);
+// Eval(21534, v is GenericDelegate<int>[], false);
Eval(21535, v is EmptyClass, false);
Eval(21536, v is EmptyClass[], false);
Eval(21537, v is NotEmptyClass, false);
Eval(21538, v is NotEmptyClass[], false);
- Eval(21539, v is EmptyClassGen<int>, false);
- Eval(21540, v is EmptyClassGen<int>[], false);
- Eval(21541, v is NotEmptyClassGen<Guid>, false);
- Eval(21542, v is NotEmptyClassGen<Guid>[], false);
- Eval(21543, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(21544, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(21539, v is EmptyClassGen<int>, false);
+// Eval(21540, v is EmptyClassGen<int>[], false);
+// Eval(21541, v is NotEmptyClassGen<Guid>, false);
+// Eval(21542, v is NotEmptyClassGen<Guid>[], false);
+// Eval(21543, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(21544, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(21545, v is NestedClass, false);
Eval(21546, v is NestedClass[], false);
- Eval(21547, v is NestedClassGen<Decimal>, false);
- Eval(21548, v is NestedClassGen<Decimal>[], false);
+// Eval(21547, v is NestedClassGen<Decimal>, false);
+// Eval(21548, v is NestedClassGen<Decimal>[], false);
Eval(21549, v is ImplementOneInterfaceC, false);
Eval(21550, v is ImplementOneInterfaceC[], false);
Eval(21551, v is ImplementTwoInterfaceC, false);
Eval(21552, v is ImplementTwoInterfaceC[], false);
- Eval(21553, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(21554, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(21555, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(21556, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(21557, v is ImplementAllInterfaceC<int>, false);
- Eval(21558, v is ImplementAllInterfaceC<int>[], false);
+// Eval(21553, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(21554, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(21555, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(21556, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(21557, v is ImplementAllInterfaceC<int>, false);
+// Eval(21558, v is ImplementAllInterfaceC<int>[], false);
Eval(21559, v is SealedClass, false);
Eval(21560, v is SealedClass[], false);
}
@@ -3860,26 +3860,26 @@ internal class Program
Eval(21566, v is NotEmptyStruct[], false);
Eval(21567, v is NotEmptyStruct?, false);
Eval(21568, v is NotEmptyStruct?[], false);
- Eval(21569, v is EmptyStructGen<int>, false);
- Eval(21570, v is EmptyStructGen<int>[], false);
- Eval(21571, v is EmptyStructGen<int>?, false);
- Eval(21572, v is EmptyStructGen<int>?[], false);
- Eval(21573, v is NotEmptyStructGen<Guid>, false);
- Eval(21574, v is NotEmptyStructGen<Guid>[], false);
- Eval(21575, v is NotEmptyStructGen<Guid>?, false);
- Eval(21576, v is NotEmptyStructGen<Guid>?[], false);
- Eval(21577, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(21578, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(21579, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(21580, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(21569, v is EmptyStructGen<int>, false);
+// Eval(21570, v is EmptyStructGen<int>[], false);
+// Eval(21571, v is EmptyStructGen<int>?, false);
+// Eval(21572, v is EmptyStructGen<int>?[], false);
+// Eval(21573, v is NotEmptyStructGen<Guid>, false);
+// Eval(21574, v is NotEmptyStructGen<Guid>[], false);
+// Eval(21575, v is NotEmptyStructGen<Guid>?, false);
+// Eval(21576, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(21577, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(21578, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(21579, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(21580, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(21581, v is NestedStruct, false);
Eval(21582, v is NestedStruct[], false);
Eval(21583, v is NestedStruct?, false);
Eval(21584, v is NestedStruct?[], false);
- Eval(21585, v is NestedStructGen<Decimal>, false);
- Eval(21586, v is NestedStructGen<Decimal>[], false);
- Eval(21587, v is NestedStructGen<Decimal>?, false);
- Eval(21588, v is NestedStructGen<Decimal>?[], false);
+// Eval(21585, v is NestedStructGen<Decimal>, false);
+// Eval(21586, v is NestedStructGen<Decimal>[], false);
+// Eval(21587, v is NestedStructGen<Decimal>?, false);
+// Eval(21588, v is NestedStructGen<Decimal>?[], false);
Eval(21589, v is ExplicitFieldOffsetStruct, false);
Eval(21590, v is ExplicitFieldOffsetStruct[], false);
Eval(21591, v is ExplicitFieldOffsetStruct?, false);
@@ -3896,18 +3896,18 @@ internal class Program
Eval(21610, v is ImplementTwoInterface[], false);
Eval(21611, v is ImplementTwoInterface?, false);
Eval(21612, v is ImplementTwoInterface?[], false);
- Eval(21613, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(21614, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(21615, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(21616, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(21617, v is ImplementTwoInterfaceGen<int>, false);
- Eval(21618, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(21619, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(21620, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(21621, v is ImplementAllInterface<int>, false);
- Eval(21622, v is ImplementAllInterface<int>[], false);
- Eval(21623, v is ImplementAllInterface<int>?, false);
- Eval(21624, v is ImplementAllInterface<int>?[], false);
+// Eval(21613, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(21614, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(21615, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(21616, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(21617, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(21618, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(21619, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(21620, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(21621, v is ImplementAllInterface<int>, false);
+// Eval(21622, v is ImplementAllInterface<int>[], false);
+// Eval(21623, v is ImplementAllInterface<int>?, false);
+// Eval(21624, v is ImplementAllInterface<int>?[], false);
Eval(21625, v is IntE, false);
Eval(21626, v is IntE[], false);
Eval(21627, v is IntE?, false);
@@ -4006,38 +4006,38 @@ internal class Program
Eval(21720, v is IEmpty[], false);
Eval(21721, v is INotEmpty, false);
Eval(21722, v is INotEmpty[], false);
- Eval(21723, v is IEmptyGen<int>, false);
- Eval(21724, v is IEmptyGen<int>[], false);
- Eval(21725, v is INotEmptyGen<int>, false);
- Eval(21726, v is INotEmptyGen<int>[], false);
+// Eval(21723, v is IEmptyGen<int>, false);
+// Eval(21724, v is IEmptyGen<int>[], false);
+// Eval(21725, v is INotEmptyGen<int>, false);
+// Eval(21726, v is INotEmptyGen<int>[], false);
Eval(21727, v is SimpleDelegate, false);
Eval(21728, v is SimpleDelegate[], false);
- Eval(21729, v is GenericDelegate<int>, false);
- Eval(21730, v is GenericDelegate<int>[], false);
+// Eval(21729, v is GenericDelegate<int>, false);
+// Eval(21730, v is GenericDelegate<int>[], false);
Eval(21731, v is EmptyClass, false);
Eval(21732, v is EmptyClass[], false);
Eval(21733, v is NotEmptyClass, false);
Eval(21734, v is NotEmptyClass[], false);
- Eval(21735, v is EmptyClassGen<int>, false);
- Eval(21736, v is EmptyClassGen<int>[], false);
- Eval(21737, v is NotEmptyClassGen<Guid>, false);
- Eval(21738, v is NotEmptyClassGen<Guid>[], false);
- Eval(21739, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(21740, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(21735, v is EmptyClassGen<int>, false);
+// Eval(21736, v is EmptyClassGen<int>[], false);
+// Eval(21737, v is NotEmptyClassGen<Guid>, false);
+// Eval(21738, v is NotEmptyClassGen<Guid>[], false);
+// Eval(21739, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(21740, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(21741, v is NestedClass, false);
Eval(21742, v is NestedClass[], false);
- Eval(21743, v is NestedClassGen<Decimal>, false);
- Eval(21744, v is NestedClassGen<Decimal>[], false);
+// Eval(21743, v is NestedClassGen<Decimal>, false);
+// Eval(21744, v is NestedClassGen<Decimal>[], false);
Eval(21745, v is ImplementOneInterfaceC, false);
Eval(21746, v is ImplementOneInterfaceC[], false);
Eval(21747, v is ImplementTwoInterfaceC, false);
Eval(21748, v is ImplementTwoInterfaceC[], false);
- Eval(21749, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(21750, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(21751, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(21752, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(21753, v is ImplementAllInterfaceC<int>, false);
- Eval(21754, v is ImplementAllInterfaceC<int>[], false);
+// Eval(21749, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(21750, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(21751, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(21752, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(21753, v is ImplementAllInterfaceC<int>, false);
+// Eval(21754, v is ImplementAllInterfaceC<int>[], false);
Eval(21755, v is SealedClass, false);
Eval(21756, v is SealedClass[], false);
}
@@ -4051,26 +4051,26 @@ internal class Program
Eval(21762, v is NotEmptyStruct[], false);
Eval(21763, v is NotEmptyStruct?, false);
Eval(21764, v is NotEmptyStruct?[], false);
- Eval(21765, v is EmptyStructGen<int>, false);
- Eval(21766, v is EmptyStructGen<int>[], false);
- Eval(21767, v is EmptyStructGen<int>?, false);
- Eval(21768, v is EmptyStructGen<int>?[], false);
- Eval(21769, v is NotEmptyStructGen<Guid>, false);
- Eval(21770, v is NotEmptyStructGen<Guid>[], false);
- Eval(21771, v is NotEmptyStructGen<Guid>?, false);
- Eval(21772, v is NotEmptyStructGen<Guid>?[], false);
- Eval(21773, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(21774, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(21775, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(21776, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(21765, v is EmptyStructGen<int>, false);
+// Eval(21766, v is EmptyStructGen<int>[], false);
+// Eval(21767, v is EmptyStructGen<int>?, false);
+// Eval(21768, v is EmptyStructGen<int>?[], false);
+// Eval(21769, v is NotEmptyStructGen<Guid>, false);
+// Eval(21770, v is NotEmptyStructGen<Guid>[], false);
+// Eval(21771, v is NotEmptyStructGen<Guid>?, false);
+// Eval(21772, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(21773, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(21774, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(21775, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(21776, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(21777, v is NestedStruct, false);
Eval(21778, v is NestedStruct[], false);
Eval(21779, v is NestedStruct?, false);
Eval(21780, v is NestedStruct?[], false);
- Eval(21781, v is NestedStructGen<Decimal>, false);
- Eval(21782, v is NestedStructGen<Decimal>[], false);
- Eval(21783, v is NestedStructGen<Decimal>?, false);
- Eval(21784, v is NestedStructGen<Decimal>?[], false);
+// Eval(21781, v is NestedStructGen<Decimal>, false);
+// Eval(21782, v is NestedStructGen<Decimal>[], false);
+// Eval(21783, v is NestedStructGen<Decimal>?, false);
+// Eval(21784, v is NestedStructGen<Decimal>?[], false);
Eval(21785, v is ExplicitFieldOffsetStruct, false);
Eval(21786, v is ExplicitFieldOffsetStruct[], false);
Eval(21787, v is ExplicitFieldOffsetStruct?, false);
@@ -4087,18 +4087,18 @@ internal class Program
Eval(21806, v is ImplementTwoInterface[], false);
Eval(21807, v is ImplementTwoInterface?, false);
Eval(21808, v is ImplementTwoInterface?[], false);
- Eval(21809, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(21810, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(21811, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(21812, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(21813, v is ImplementTwoInterfaceGen<int>, false);
- Eval(21814, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(21815, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(21816, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(21817, v is ImplementAllInterface<int>, false);
- Eval(21818, v is ImplementAllInterface<int>[], false);
- Eval(21819, v is ImplementAllInterface<int>?, false);
- Eval(21820, v is ImplementAllInterface<int>?[], false);
+// Eval(21809, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(21810, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(21811, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(21812, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(21813, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(21814, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(21815, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(21816, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(21817, v is ImplementAllInterface<int>, false);
+// Eval(21818, v is ImplementAllInterface<int>[], false);
+// Eval(21819, v is ImplementAllInterface<int>?, false);
+// Eval(21820, v is ImplementAllInterface<int>?[], false);
Eval(21821, v is IntE, false);
Eval(21822, v is IntE[], false);
Eval(21823, v is IntE?, false);
@@ -4197,38 +4197,38 @@ internal class Program
Eval(21916, v is IEmpty[], false);
Eval(21917, v is INotEmpty, false);
Eval(21918, v is INotEmpty[], false);
- Eval(21919, v is IEmptyGen<int>, false);
- Eval(21920, v is IEmptyGen<int>[], false);
- Eval(21921, v is INotEmptyGen<int>, false);
- Eval(21922, v is INotEmptyGen<int>[], false);
+// Eval(21919, v is IEmptyGen<int>, false);
+// Eval(21920, v is IEmptyGen<int>[], false);
+// Eval(21921, v is INotEmptyGen<int>, false);
+// Eval(21922, v is INotEmptyGen<int>[], false);
Eval(21923, v is SimpleDelegate, false);
Eval(21924, v is SimpleDelegate[], false);
- Eval(21925, v is GenericDelegate<int>, false);
- Eval(21926, v is GenericDelegate<int>[], false);
+// Eval(21925, v is GenericDelegate<int>, false);
+// Eval(21926, v is GenericDelegate<int>[], false);
Eval(21927, v is EmptyClass, false);
Eval(21928, v is EmptyClass[], false);
Eval(21929, v is NotEmptyClass, false);
Eval(21930, v is NotEmptyClass[], false);
- Eval(21931, v is EmptyClassGen<int>, false);
- Eval(21932, v is EmptyClassGen<int>[], false);
- Eval(21933, v is NotEmptyClassGen<Guid>, false);
- Eval(21934, v is NotEmptyClassGen<Guid>[], false);
- Eval(21935, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(21936, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(21931, v is EmptyClassGen<int>, false);
+// Eval(21932, v is EmptyClassGen<int>[], false);
+// Eval(21933, v is NotEmptyClassGen<Guid>, false);
+// Eval(21934, v is NotEmptyClassGen<Guid>[], false);
+// Eval(21935, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(21936, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(21937, v is NestedClass, false);
Eval(21938, v is NestedClass[], false);
- Eval(21939, v is NestedClassGen<Decimal>, false);
- Eval(21940, v is NestedClassGen<Decimal>[], false);
+// Eval(21939, v is NestedClassGen<Decimal>, false);
+// Eval(21940, v is NestedClassGen<Decimal>[], false);
Eval(21941, v is ImplementOneInterfaceC, false);
Eval(21942, v is ImplementOneInterfaceC[], false);
Eval(21943, v is ImplementTwoInterfaceC, false);
Eval(21944, v is ImplementTwoInterfaceC[], false);
- Eval(21945, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(21946, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(21947, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(21948, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(21949, v is ImplementAllInterfaceC<int>, false);
- Eval(21950, v is ImplementAllInterfaceC<int>[], false);
+// Eval(21945, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(21946, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(21947, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(21948, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(21949, v is ImplementAllInterfaceC<int>, false);
+// Eval(21950, v is ImplementAllInterfaceC<int>[], false);
Eval(21951, v is SealedClass, false);
Eval(21952, v is SealedClass[], false);
}
@@ -4242,26 +4242,26 @@ internal class Program
Eval(21958, v is NotEmptyStruct[], false);
Eval(21959, v is NotEmptyStruct?, false);
Eval(21960, v is NotEmptyStruct?[], false);
- Eval(21961, v is EmptyStructGen<int>, false);
- Eval(21962, v is EmptyStructGen<int>[], false);
- Eval(21963, v is EmptyStructGen<int>?, false);
- Eval(21964, v is EmptyStructGen<int>?[], false);
- Eval(21965, v is NotEmptyStructGen<Guid>, false);
- Eval(21966, v is NotEmptyStructGen<Guid>[], false);
- Eval(21967, v is NotEmptyStructGen<Guid>?, false);
- Eval(21968, v is NotEmptyStructGen<Guid>?[], false);
- Eval(21969, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(21970, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(21971, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(21972, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(21961, v is EmptyStructGen<int>, false);
+// Eval(21962, v is EmptyStructGen<int>[], false);
+// Eval(21963, v is EmptyStructGen<int>?, false);
+// Eval(21964, v is EmptyStructGen<int>?[], false);
+// Eval(21965, v is NotEmptyStructGen<Guid>, false);
+// Eval(21966, v is NotEmptyStructGen<Guid>[], false);
+// Eval(21967, v is NotEmptyStructGen<Guid>?, false);
+// Eval(21968, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(21969, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(21970, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(21971, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(21972, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(21973, v is NestedStruct, false);
Eval(21974, v is NestedStruct[], false);
Eval(21975, v is NestedStruct?, false);
Eval(21976, v is NestedStruct?[], false);
- Eval(21977, v is NestedStructGen<Decimal>, false);
- Eval(21978, v is NestedStructGen<Decimal>[], false);
- Eval(21979, v is NestedStructGen<Decimal>?, false);
- Eval(21980, v is NestedStructGen<Decimal>?[], false);
+// Eval(21977, v is NestedStructGen<Decimal>, false);
+// Eval(21978, v is NestedStructGen<Decimal>[], false);
+// Eval(21979, v is NestedStructGen<Decimal>?, false);
+// Eval(21980, v is NestedStructGen<Decimal>?[], false);
Eval(21981, v is ExplicitFieldOffsetStruct, false);
Eval(21982, v is ExplicitFieldOffsetStruct[], false);
Eval(21983, v is ExplicitFieldOffsetStruct?, false);
@@ -4278,18 +4278,18 @@ internal class Program
Eval(22002, v is ImplementTwoInterface[], false);
Eval(22003, v is ImplementTwoInterface?, false);
Eval(22004, v is ImplementTwoInterface?[], false);
- Eval(22005, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(22006, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(22007, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(22008, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(22009, v is ImplementTwoInterfaceGen<int>, false);
- Eval(22010, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(22011, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(22012, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(22013, v is ImplementAllInterface<int>, false);
- Eval(22014, v is ImplementAllInterface<int>[], false);
- Eval(22015, v is ImplementAllInterface<int>?, false);
- Eval(22016, v is ImplementAllInterface<int>?[], false);
+// Eval(22005, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(22006, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(22007, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(22008, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(22009, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(22010, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(22011, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(22012, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(22013, v is ImplementAllInterface<int>, false);
+// Eval(22014, v is ImplementAllInterface<int>[], false);
+// Eval(22015, v is ImplementAllInterface<int>?, false);
+// Eval(22016, v is ImplementAllInterface<int>?[], false);
Eval(22017, v is IntE, false);
Eval(22018, v is IntE[], false);
Eval(22019, v is IntE?, false);
@@ -4388,38 +4388,38 @@ internal class Program
Eval(22112, v is IEmpty[], false);
Eval(22113, v is INotEmpty, false);
Eval(22114, v is INotEmpty[], false);
- Eval(22115, v is IEmptyGen<int>, false);
- Eval(22116, v is IEmptyGen<int>[], false);
- Eval(22117, v is INotEmptyGen<int>, false);
- Eval(22118, v is INotEmptyGen<int>[], false);
+// Eval(22115, v is IEmptyGen<int>, false);
+// Eval(22116, v is IEmptyGen<int>[], false);
+// Eval(22117, v is INotEmptyGen<int>, false);
+// Eval(22118, v is INotEmptyGen<int>[], false);
Eval(22119, v is SimpleDelegate, false);
Eval(22120, v is SimpleDelegate[], false);
- Eval(22121, v is GenericDelegate<int>, false);
- Eval(22122, v is GenericDelegate<int>[], false);
+// Eval(22121, v is GenericDelegate<int>, false);
+// Eval(22122, v is GenericDelegate<int>[], false);
Eval(22123, v is EmptyClass, false);
Eval(22124, v is EmptyClass[], false);
Eval(22125, v is NotEmptyClass, false);
Eval(22126, v is NotEmptyClass[], false);
- Eval(22127, v is EmptyClassGen<int>, false);
- Eval(22128, v is EmptyClassGen<int>[], false);
- Eval(22129, v is NotEmptyClassGen<Guid>, false);
- Eval(22130, v is NotEmptyClassGen<Guid>[], false);
- Eval(22131, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(22132, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(22127, v is EmptyClassGen<int>, false);
+// Eval(22128, v is EmptyClassGen<int>[], false);
+// Eval(22129, v is NotEmptyClassGen<Guid>, false);
+// Eval(22130, v is NotEmptyClassGen<Guid>[], false);
+// Eval(22131, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(22132, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(22133, v is NestedClass, false);
Eval(22134, v is NestedClass[], false);
- Eval(22135, v is NestedClassGen<Decimal>, false);
- Eval(22136, v is NestedClassGen<Decimal>[], false);
+// Eval(22135, v is NestedClassGen<Decimal>, false);
+// Eval(22136, v is NestedClassGen<Decimal>[], false);
Eval(22137, v is ImplementOneInterfaceC, false);
Eval(22138, v is ImplementOneInterfaceC[], false);
Eval(22139, v is ImplementTwoInterfaceC, false);
Eval(22140, v is ImplementTwoInterfaceC[], false);
- Eval(22141, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(22142, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(22143, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(22144, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(22145, v is ImplementAllInterfaceC<int>, false);
- Eval(22146, v is ImplementAllInterfaceC<int>[], false);
+// Eval(22141, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(22142, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(22143, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(22144, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(22145, v is ImplementAllInterfaceC<int>, false);
+// Eval(22146, v is ImplementAllInterfaceC<int>[], false);
Eval(22147, v is SealedClass, false);
Eval(22148, v is SealedClass[], false);
}
@@ -4433,26 +4433,26 @@ internal class Program
Eval(22154, v is NotEmptyStruct[], false);
Eval(22155, v is NotEmptyStruct?, false);
Eval(22156, v is NotEmptyStruct?[], false);
- Eval(22157, v is EmptyStructGen<int>, false);
- Eval(22158, v is EmptyStructGen<int>[], false);
- Eval(22159, v is EmptyStructGen<int>?, false);
- Eval(22160, v is EmptyStructGen<int>?[], false);
- Eval(22161, v is NotEmptyStructGen<Guid>, false);
- Eval(22162, v is NotEmptyStructGen<Guid>[], false);
- Eval(22163, v is NotEmptyStructGen<Guid>?, false);
- Eval(22164, v is NotEmptyStructGen<Guid>?[], false);
- Eval(22165, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(22166, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(22167, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(22168, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(22157, v is EmptyStructGen<int>, false);
+// Eval(22158, v is EmptyStructGen<int>[], false);
+// Eval(22159, v is EmptyStructGen<int>?, false);
+// Eval(22160, v is EmptyStructGen<int>?[], false);
+// Eval(22161, v is NotEmptyStructGen<Guid>, false);
+// Eval(22162, v is NotEmptyStructGen<Guid>[], false);
+// Eval(22163, v is NotEmptyStructGen<Guid>?, false);
+// Eval(22164, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(22165, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(22166, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(22167, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(22168, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(22169, v is NestedStruct, false);
Eval(22170, v is NestedStruct[], false);
Eval(22171, v is NestedStruct?, false);
Eval(22172, v is NestedStruct?[], false);
- Eval(22173, v is NestedStructGen<Decimal>, false);
- Eval(22174, v is NestedStructGen<Decimal>[], false);
- Eval(22175, v is NestedStructGen<Decimal>?, false);
- Eval(22176, v is NestedStructGen<Decimal>?[], false);
+// Eval(22173, v is NestedStructGen<Decimal>, false);
+// Eval(22174, v is NestedStructGen<Decimal>[], false);
+// Eval(22175, v is NestedStructGen<Decimal>?, false);
+// Eval(22176, v is NestedStructGen<Decimal>?[], false);
Eval(22177, v is ExplicitFieldOffsetStruct, false);
Eval(22178, v is ExplicitFieldOffsetStruct[], false);
Eval(22179, v is ExplicitFieldOffsetStruct?, false);
@@ -4469,18 +4469,18 @@ internal class Program
Eval(22198, v is ImplementTwoInterface[], false);
Eval(22199, v is ImplementTwoInterface?, false);
Eval(22200, v is ImplementTwoInterface?[], false);
- Eval(22201, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(22202, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(22203, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(22204, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(22205, v is ImplementTwoInterfaceGen<int>, false);
- Eval(22206, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(22207, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(22208, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(22209, v is ImplementAllInterface<int>, false);
- Eval(22210, v is ImplementAllInterface<int>[], false);
- Eval(22211, v is ImplementAllInterface<int>?, false);
- Eval(22212, v is ImplementAllInterface<int>?[], false);
+// Eval(22201, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(22202, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(22203, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(22204, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(22205, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(22206, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(22207, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(22208, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(22209, v is ImplementAllInterface<int>, false);
+// Eval(22210, v is ImplementAllInterface<int>[], false);
+// Eval(22211, v is ImplementAllInterface<int>?, false);
+// Eval(22212, v is ImplementAllInterface<int>?[], false);
Eval(22213, v is IntE, false);
Eval(22214, v is IntE[], false);
Eval(22215, v is IntE?, false);
@@ -4579,38 +4579,38 @@ internal class Program
Eval(22308, v is IEmpty[], false);
Eval(22309, v is INotEmpty, false);
Eval(22310, v is INotEmpty[], false);
- Eval(22311, v is IEmptyGen<int>, false);
- Eval(22312, v is IEmptyGen<int>[], false);
- Eval(22313, v is INotEmptyGen<int>, false);
- Eval(22314, v is INotEmptyGen<int>[], false);
+// Eval(22311, v is IEmptyGen<int>, false);
+// Eval(22312, v is IEmptyGen<int>[], false);
+// Eval(22313, v is INotEmptyGen<int>, false);
+// Eval(22314, v is INotEmptyGen<int>[], false);
Eval(22315, v is SimpleDelegate, false);
Eval(22316, v is SimpleDelegate[], false);
- Eval(22317, v is GenericDelegate<int>, false);
- Eval(22318, v is GenericDelegate<int>[], false);
+// Eval(22317, v is GenericDelegate<int>, false);
+// Eval(22318, v is GenericDelegate<int>[], false);
Eval(22319, v is EmptyClass, false);
Eval(22320, v is EmptyClass[], false);
Eval(22321, v is NotEmptyClass, false);
Eval(22322, v is NotEmptyClass[], false);
- Eval(22323, v is EmptyClassGen<int>, false);
- Eval(22324, v is EmptyClassGen<int>[], false);
- Eval(22325, v is NotEmptyClassGen<Guid>, false);
- Eval(22326, v is NotEmptyClassGen<Guid>[], false);
- Eval(22327, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(22328, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(22323, v is EmptyClassGen<int>, false);
+// Eval(22324, v is EmptyClassGen<int>[], false);
+// Eval(22325, v is NotEmptyClassGen<Guid>, false);
+// Eval(22326, v is NotEmptyClassGen<Guid>[], false);
+// Eval(22327, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(22328, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(22329, v is NestedClass, false);
Eval(22330, v is NestedClass[], false);
- Eval(22331, v is NestedClassGen<Decimal>, false);
- Eval(22332, v is NestedClassGen<Decimal>[], false);
+// Eval(22331, v is NestedClassGen<Decimal>, false);
+// Eval(22332, v is NestedClassGen<Decimal>[], false);
Eval(22333, v is ImplementOneInterfaceC, false);
Eval(22334, v is ImplementOneInterfaceC[], false);
Eval(22335, v is ImplementTwoInterfaceC, false);
Eval(22336, v is ImplementTwoInterfaceC[], false);
- Eval(22337, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(22338, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(22339, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(22340, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(22341, v is ImplementAllInterfaceC<int>, false);
- Eval(22342, v is ImplementAllInterfaceC<int>[], false);
+// Eval(22337, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(22338, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(22339, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(22340, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(22341, v is ImplementAllInterfaceC<int>, false);
+// Eval(22342, v is ImplementAllInterfaceC<int>[], false);
Eval(22343, v is SealedClass, false);
Eval(22344, v is SealedClass[], false);
}
@@ -4624,26 +4624,26 @@ internal class Program
Eval(22350, v is NotEmptyStruct[], false);
Eval(22351, v is NotEmptyStruct?, false);
Eval(22352, v is NotEmptyStruct?[], false);
- Eval(22353, v is EmptyStructGen<int>, false);
- Eval(22354, v is EmptyStructGen<int>[], false);
- Eval(22355, v is EmptyStructGen<int>?, false);
- Eval(22356, v is EmptyStructGen<int>?[], false);
- Eval(22357, v is NotEmptyStructGen<Guid>, false);
- Eval(22358, v is NotEmptyStructGen<Guid>[], false);
- Eval(22359, v is NotEmptyStructGen<Guid>?, false);
- Eval(22360, v is NotEmptyStructGen<Guid>?[], false);
- Eval(22361, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(22362, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(22363, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(22364, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(22353, v is EmptyStructGen<int>, false);
+// Eval(22354, v is EmptyStructGen<int>[], false);
+// Eval(22355, v is EmptyStructGen<int>?, false);
+// Eval(22356, v is EmptyStructGen<int>?[], false);
+// Eval(22357, v is NotEmptyStructGen<Guid>, false);
+// Eval(22358, v is NotEmptyStructGen<Guid>[], false);
+// Eval(22359, v is NotEmptyStructGen<Guid>?, false);
+// Eval(22360, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(22361, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(22362, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(22363, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(22364, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(22365, v is NestedStruct, false);
Eval(22366, v is NestedStruct[], false);
Eval(22367, v is NestedStruct?, false);
Eval(22368, v is NestedStruct?[], false);
- Eval(22369, v is NestedStructGen<Decimal>, false);
- Eval(22370, v is NestedStructGen<Decimal>[], false);
- Eval(22371, v is NestedStructGen<Decimal>?, false);
- Eval(22372, v is NestedStructGen<Decimal>?[], false);
+// Eval(22369, v is NestedStructGen<Decimal>, false);
+// Eval(22370, v is NestedStructGen<Decimal>[], false);
+// Eval(22371, v is NestedStructGen<Decimal>?, false);
+// Eval(22372, v is NestedStructGen<Decimal>?[], false);
Eval(22373, v is ExplicitFieldOffsetStruct, false);
Eval(22374, v is ExplicitFieldOffsetStruct[], false);
Eval(22375, v is ExplicitFieldOffsetStruct?, false);
@@ -4660,18 +4660,18 @@ internal class Program
Eval(22394, v is ImplementTwoInterface[], false);
Eval(22395, v is ImplementTwoInterface?, false);
Eval(22396, v is ImplementTwoInterface?[], false);
- Eval(22397, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(22398, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(22399, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(22400, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(22401, v is ImplementTwoInterfaceGen<int>, false);
- Eval(22402, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(22403, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(22404, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(22405, v is ImplementAllInterface<int>, false);
- Eval(22406, v is ImplementAllInterface<int>[], false);
- Eval(22407, v is ImplementAllInterface<int>?, false);
- Eval(22408, v is ImplementAllInterface<int>?[], false);
+// Eval(22397, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(22398, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(22399, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(22400, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(22401, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(22402, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(22403, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(22404, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(22405, v is ImplementAllInterface<int>, false);
+// Eval(22406, v is ImplementAllInterface<int>[], false);
+// Eval(22407, v is ImplementAllInterface<int>?, false);
+// Eval(22408, v is ImplementAllInterface<int>?[], false);
Eval(22409, v is IntE, false);
Eval(22410, v is IntE[], false);
Eval(22411, v is IntE?, false);
@@ -4770,38 +4770,38 @@ internal class Program
Eval(22504, v is IEmpty[], false);
Eval(22505, v is INotEmpty, false);
Eval(22506, v is INotEmpty[], false);
- Eval(22507, v is IEmptyGen<int>, false);
- Eval(22508, v is IEmptyGen<int>[], false);
- Eval(22509, v is INotEmptyGen<int>, false);
- Eval(22510, v is INotEmptyGen<int>[], false);
+// Eval(22507, v is IEmptyGen<int>, false);
+// Eval(22508, v is IEmptyGen<int>[], false);
+// Eval(22509, v is INotEmptyGen<int>, false);
+// Eval(22510, v is INotEmptyGen<int>[], false);
Eval(22511, v is SimpleDelegate, false);
Eval(22512, v is SimpleDelegate[], false);
- Eval(22513, v is GenericDelegate<int>, false);
- Eval(22514, v is GenericDelegate<int>[], false);
+// Eval(22513, v is GenericDelegate<int>, false);
+// Eval(22514, v is GenericDelegate<int>[], false);
Eval(22515, v is EmptyClass, false);
Eval(22516, v is EmptyClass[], false);
Eval(22517, v is NotEmptyClass, false);
Eval(22518, v is NotEmptyClass[], false);
- Eval(22519, v is EmptyClassGen<int>, false);
- Eval(22520, v is EmptyClassGen<int>[], false);
- Eval(22521, v is NotEmptyClassGen<Guid>, false);
- Eval(22522, v is NotEmptyClassGen<Guid>[], false);
- Eval(22523, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(22524, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(22519, v is EmptyClassGen<int>, false);
+// Eval(22520, v is EmptyClassGen<int>[], false);
+// Eval(22521, v is NotEmptyClassGen<Guid>, false);
+// Eval(22522, v is NotEmptyClassGen<Guid>[], false);
+// Eval(22523, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(22524, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(22525, v is NestedClass, false);
Eval(22526, v is NestedClass[], false);
- Eval(22527, v is NestedClassGen<Decimal>, false);
- Eval(22528, v is NestedClassGen<Decimal>[], false);
+// Eval(22527, v is NestedClassGen<Decimal>, false);
+// Eval(22528, v is NestedClassGen<Decimal>[], false);
Eval(22529, v is ImplementOneInterfaceC, false);
Eval(22530, v is ImplementOneInterfaceC[], false);
Eval(22531, v is ImplementTwoInterfaceC, false);
Eval(22532, v is ImplementTwoInterfaceC[], false);
- Eval(22533, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(22534, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(22535, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(22536, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(22537, v is ImplementAllInterfaceC<int>, false);
- Eval(22538, v is ImplementAllInterfaceC<int>[], false);
+// Eval(22533, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(22534, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(22535, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(22536, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(22537, v is ImplementAllInterfaceC<int>, false);
+// Eval(22538, v is ImplementAllInterfaceC<int>[], false);
Eval(22539, v is SealedClass, false);
Eval(22540, v is SealedClass[], false);
}
@@ -4818,26 +4818,26 @@ internal class Program
Eval(22546, v is NotEmptyStruct[], false);
Eval(22547, v is NotEmptyStruct?, false);
Eval(22548, v is NotEmptyStruct?[], false);
- Eval(22549, v is EmptyStructGen<int>, false);
- Eval(22550, v is EmptyStructGen<int>[], false);
- Eval(22551, v is EmptyStructGen<int>?, false);
- Eval(22552, v is EmptyStructGen<int>?[], false);
- Eval(22553, v is NotEmptyStructGen<Guid>, false);
- Eval(22554, v is NotEmptyStructGen<Guid>[], false);
- Eval(22555, v is NotEmptyStructGen<Guid>?, false);
- Eval(22556, v is NotEmptyStructGen<Guid>?[], false);
- Eval(22557, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(22558, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(22559, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(22560, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(22549, v is EmptyStructGen<int>, false);
+// Eval(22550, v is EmptyStructGen<int>[], false);
+// Eval(22551, v is EmptyStructGen<int>?, false);
+// Eval(22552, v is EmptyStructGen<int>?[], false);
+// Eval(22553, v is NotEmptyStructGen<Guid>, false);
+// Eval(22554, v is NotEmptyStructGen<Guid>[], false);
+// Eval(22555, v is NotEmptyStructGen<Guid>?, false);
+// Eval(22556, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(22557, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(22558, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(22559, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(22560, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(22561, v is NestedStruct, false);
Eval(22562, v is NestedStruct[], false);
Eval(22563, v is NestedStruct?, false);
Eval(22564, v is NestedStruct?[], false);
- Eval(22565, v is NestedStructGen<Decimal>, false);
- Eval(22566, v is NestedStructGen<Decimal>[], false);
- Eval(22567, v is NestedStructGen<Decimal>?, false);
- Eval(22568, v is NestedStructGen<Decimal>?[], false);
+// Eval(22565, v is NestedStructGen<Decimal>, false);
+// Eval(22566, v is NestedStructGen<Decimal>[], false);
+// Eval(22567, v is NestedStructGen<Decimal>?, false);
+// Eval(22568, v is NestedStructGen<Decimal>?[], false);
Eval(22569, v is ExplicitFieldOffsetStruct, false);
Eval(22570, v is ExplicitFieldOffsetStruct[], false);
Eval(22571, v is ExplicitFieldOffsetStruct?, false);
@@ -4854,18 +4854,18 @@ internal class Program
Eval(22590, v is ImplementTwoInterface[], false);
Eval(22591, v is ImplementTwoInterface?, false);
Eval(22592, v is ImplementTwoInterface?[], false);
- Eval(22593, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(22594, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(22595, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(22596, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(22597, v is ImplementTwoInterfaceGen<int>, false);
- Eval(22598, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(22599, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(22600, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(22601, v is ImplementAllInterface<int>, false);
- Eval(22602, v is ImplementAllInterface<int>[], false);
- Eval(22603, v is ImplementAllInterface<int>?, false);
- Eval(22604, v is ImplementAllInterface<int>?[], false);
+// Eval(22593, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(22594, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(22595, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(22596, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(22597, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(22598, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(22599, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(22600, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(22601, v is ImplementAllInterface<int>, false);
+// Eval(22602, v is ImplementAllInterface<int>[], false);
+// Eval(22603, v is ImplementAllInterface<int>?, false);
+// Eval(22604, v is ImplementAllInterface<int>?[], false);
Eval(22605, v is IntE, false);
Eval(22606, v is IntE[], false);
Eval(22607, v is IntE?, false);
@@ -4964,38 +4964,38 @@ internal class Program
Eval(22700, v is IEmpty[], false);
Eval(22701, v is INotEmpty, false);
Eval(22702, v is INotEmpty[], false);
- Eval(22703, v is IEmptyGen<int>, false);
- Eval(22704, v is IEmptyGen<int>[], false);
- Eval(22705, v is INotEmptyGen<int>, false);
- Eval(22706, v is INotEmptyGen<int>[], false);
+// Eval(22703, v is IEmptyGen<int>, false);
+// Eval(22704, v is IEmptyGen<int>[], false);
+// Eval(22705, v is INotEmptyGen<int>, false);
+// Eval(22706, v is INotEmptyGen<int>[], false);
Eval(22707, v is SimpleDelegate, false);
Eval(22708, v is SimpleDelegate[], false);
- Eval(22709, v is GenericDelegate<int>, false);
- Eval(22710, v is GenericDelegate<int>[], false);
+// Eval(22709, v is GenericDelegate<int>, false);
+// Eval(22710, v is GenericDelegate<int>[], false);
Eval(22711, v is EmptyClass, false);
Eval(22712, v is EmptyClass[], false);
Eval(22713, v is NotEmptyClass, false);
Eval(22714, v is NotEmptyClass[], false);
- Eval(22715, v is EmptyClassGen<int>, false);
- Eval(22716, v is EmptyClassGen<int>[], false);
- Eval(22717, v is NotEmptyClassGen<Guid>, false);
- Eval(22718, v is NotEmptyClassGen<Guid>[], false);
- Eval(22719, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(22720, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(22715, v is EmptyClassGen<int>, false);
+// Eval(22716, v is EmptyClassGen<int>[], false);
+// Eval(22717, v is NotEmptyClassGen<Guid>, false);
+// Eval(22718, v is NotEmptyClassGen<Guid>[], false);
+// Eval(22719, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(22720, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(22721, v is NestedClass, false);
Eval(22722, v is NestedClass[], false);
- Eval(22723, v is NestedClassGen<Decimal>, false);
- Eval(22724, v is NestedClassGen<Decimal>[], false);
+// Eval(22723, v is NestedClassGen<Decimal>, false);
+// Eval(22724, v is NestedClassGen<Decimal>[], false);
Eval(22725, v is ImplementOneInterfaceC, false);
Eval(22726, v is ImplementOneInterfaceC[], false);
Eval(22727, v is ImplementTwoInterfaceC, false);
Eval(22728, v is ImplementTwoInterfaceC[], false);
- Eval(22729, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(22730, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(22731, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(22732, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(22733, v is ImplementAllInterfaceC<int>, false);
- Eval(22734, v is ImplementAllInterfaceC<int>[], false);
+// Eval(22729, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(22730, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(22731, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(22732, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(22733, v is ImplementAllInterfaceC<int>, false);
+// Eval(22734, v is ImplementAllInterfaceC<int>[], false);
Eval(22735, v is SealedClass, false);
Eval(22736, v is SealedClass[], false);
}
@@ -5009,26 +5009,26 @@ internal class Program
Eval(22742, v is NotEmptyStruct[], false);
Eval(22743, v is NotEmptyStruct?, false);
Eval(22744, v is NotEmptyStruct?[], false);
- Eval(22745, v is EmptyStructGen<int>, false);
- Eval(22746, v is EmptyStructGen<int>[], false);
- Eval(22747, v is EmptyStructGen<int>?, false);
- Eval(22748, v is EmptyStructGen<int>?[], false);
- Eval(22749, v is NotEmptyStructGen<Guid>, false);
- Eval(22750, v is NotEmptyStructGen<Guid>[], false);
- Eval(22751, v is NotEmptyStructGen<Guid>?, false);
- Eval(22752, v is NotEmptyStructGen<Guid>?[], false);
- Eval(22753, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(22754, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(22755, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(22756, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(22745, v is EmptyStructGen<int>, false);
+// Eval(22746, v is EmptyStructGen<int>[], false);
+// Eval(22747, v is EmptyStructGen<int>?, false);
+// Eval(22748, v is EmptyStructGen<int>?[], false);
+// Eval(22749, v is NotEmptyStructGen<Guid>, false);
+// Eval(22750, v is NotEmptyStructGen<Guid>[], false);
+// Eval(22751, v is NotEmptyStructGen<Guid>?, false);
+// Eval(22752, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(22753, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(22754, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(22755, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(22756, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(22757, v is NestedStruct, false);
Eval(22758, v is NestedStruct[], false);
Eval(22759, v is NestedStruct?, false);
Eval(22760, v is NestedStruct?[], false);
- Eval(22761, v is NestedStructGen<Decimal>, false);
- Eval(22762, v is NestedStructGen<Decimal>[], false);
- Eval(22763, v is NestedStructGen<Decimal>?, false);
- Eval(22764, v is NestedStructGen<Decimal>?[], false);
+// Eval(22761, v is NestedStructGen<Decimal>, false);
+// Eval(22762, v is NestedStructGen<Decimal>[], false);
+// Eval(22763, v is NestedStructGen<Decimal>?, false);
+// Eval(22764, v is NestedStructGen<Decimal>?[], false);
Eval(22765, v is ExplicitFieldOffsetStruct, false);
Eval(22766, v is ExplicitFieldOffsetStruct[], false);
Eval(22767, v is ExplicitFieldOffsetStruct?, false);
@@ -5045,18 +5045,18 @@ internal class Program
Eval(22786, v is ImplementTwoInterface[], false);
Eval(22787, v is ImplementTwoInterface?, false);
Eval(22788, v is ImplementTwoInterface?[], false);
- Eval(22789, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(22790, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(22791, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(22792, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(22793, v is ImplementTwoInterfaceGen<int>, false);
- Eval(22794, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(22795, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(22796, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(22797, v is ImplementAllInterface<int>, false);
- Eval(22798, v is ImplementAllInterface<int>[], false);
- Eval(22799, v is ImplementAllInterface<int>?, false);
- Eval(22800, v is ImplementAllInterface<int>?[], false);
+// Eval(22789, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(22790, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(22791, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(22792, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(22793, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(22794, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(22795, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(22796, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(22797, v is ImplementAllInterface<int>, false);
+// Eval(22798, v is ImplementAllInterface<int>[], false);
+// Eval(22799, v is ImplementAllInterface<int>?, false);
+// Eval(22800, v is ImplementAllInterface<int>?[], false);
Eval(22801, v is IntE, false);
Eval(22802, v is IntE[], false);
Eval(22803, v is IntE?, false);
@@ -5155,38 +5155,38 @@ internal class Program
Eval(22896, v is IEmpty[], false);
Eval(22897, v is INotEmpty, false);
Eval(22898, v is INotEmpty[], false);
- Eval(22899, v is IEmptyGen<int>, false);
- Eval(22900, v is IEmptyGen<int>[], false);
- Eval(22901, v is INotEmptyGen<int>, false);
- Eval(22902, v is INotEmptyGen<int>[], false);
+// Eval(22899, v is IEmptyGen<int>, false);
+// Eval(22900, v is IEmptyGen<int>[], false);
+// Eval(22901, v is INotEmptyGen<int>, false);
+// Eval(22902, v is INotEmptyGen<int>[], false);
Eval(22903, v is SimpleDelegate, false);
Eval(22904, v is SimpleDelegate[], false);
- Eval(22905, v is GenericDelegate<int>, false);
- Eval(22906, v is GenericDelegate<int>[], false);
+// Eval(22905, v is GenericDelegate<int>, false);
+// Eval(22906, v is GenericDelegate<int>[], false);
Eval(22907, v is EmptyClass, false);
Eval(22908, v is EmptyClass[], false);
Eval(22909, v is NotEmptyClass, false);
Eval(22910, v is NotEmptyClass[], false);
- Eval(22911, v is EmptyClassGen<int>, false);
- Eval(22912, v is EmptyClassGen<int>[], false);
- Eval(22913, v is NotEmptyClassGen<Guid>, false);
- Eval(22914, v is NotEmptyClassGen<Guid>[], false);
- Eval(22915, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(22916, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(22911, v is EmptyClassGen<int>, false);
+// Eval(22912, v is EmptyClassGen<int>[], false);
+// Eval(22913, v is NotEmptyClassGen<Guid>, false);
+// Eval(22914, v is NotEmptyClassGen<Guid>[], false);
+// Eval(22915, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(22916, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(22917, v is NestedClass, false);
Eval(22918, v is NestedClass[], false);
- Eval(22919, v is NestedClassGen<Decimal>, false);
- Eval(22920, v is NestedClassGen<Decimal>[], false);
+// Eval(22919, v is NestedClassGen<Decimal>, false);
+// Eval(22920, v is NestedClassGen<Decimal>[], false);
Eval(22921, v is ImplementOneInterfaceC, false);
Eval(22922, v is ImplementOneInterfaceC[], false);
Eval(22923, v is ImplementTwoInterfaceC, false);
Eval(22924, v is ImplementTwoInterfaceC[], false);
- Eval(22925, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(22926, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(22927, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(22928, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(22929, v is ImplementAllInterfaceC<int>, false);
- Eval(22930, v is ImplementAllInterfaceC<int>[], false);
+// Eval(22925, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(22926, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(22927, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(22928, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(22929, v is ImplementAllInterfaceC<int>, false);
+// Eval(22930, v is ImplementAllInterfaceC<int>[], false);
Eval(22931, v is SealedClass, false);
Eval(22932, v is SealedClass[], false);
}
@@ -5200,26 +5200,26 @@ internal class Program
Eval(22938, v is NotEmptyStruct[], false);
Eval(22939, v is NotEmptyStruct?, false);
Eval(22940, v is NotEmptyStruct?[], false);
- Eval(22941, v is EmptyStructGen<int>, false);
- Eval(22942, v is EmptyStructGen<int>[], false);
- Eval(22943, v is EmptyStructGen<int>?, false);
- Eval(22944, v is EmptyStructGen<int>?[], false);
- Eval(22945, v is NotEmptyStructGen<Guid>, false);
- Eval(22946, v is NotEmptyStructGen<Guid>[], false);
- Eval(22947, v is NotEmptyStructGen<Guid>?, false);
- Eval(22948, v is NotEmptyStructGen<Guid>?[], false);
- Eval(22949, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(22950, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(22951, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(22952, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(22941, v is EmptyStructGen<int>, false);
+// Eval(22942, v is EmptyStructGen<int>[], false);
+// Eval(22943, v is EmptyStructGen<int>?, false);
+// Eval(22944, v is EmptyStructGen<int>?[], false);
+// Eval(22945, v is NotEmptyStructGen<Guid>, false);
+// Eval(22946, v is NotEmptyStructGen<Guid>[], false);
+// Eval(22947, v is NotEmptyStructGen<Guid>?, false);
+// Eval(22948, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(22949, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(22950, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(22951, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(22952, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(22953, v is NestedStruct, false);
Eval(22954, v is NestedStruct[], false);
Eval(22955, v is NestedStruct?, false);
Eval(22956, v is NestedStruct?[], false);
- Eval(22957, v is NestedStructGen<Decimal>, false);
- Eval(22958, v is NestedStructGen<Decimal>[], false);
- Eval(22959, v is NestedStructGen<Decimal>?, false);
- Eval(22960, v is NestedStructGen<Decimal>?[], false);
+// Eval(22957, v is NestedStructGen<Decimal>, false);
+// Eval(22958, v is NestedStructGen<Decimal>[], false);
+// Eval(22959, v is NestedStructGen<Decimal>?, false);
+// Eval(22960, v is NestedStructGen<Decimal>?[], false);
Eval(22961, v is ExplicitFieldOffsetStruct, false);
Eval(22962, v is ExplicitFieldOffsetStruct[], false);
Eval(22963, v is ExplicitFieldOffsetStruct?, false);
@@ -5236,18 +5236,18 @@ internal class Program
Eval(22982, v is ImplementTwoInterface[], false);
Eval(22983, v is ImplementTwoInterface?, false);
Eval(22984, v is ImplementTwoInterface?[], false);
- Eval(22985, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(22986, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(22987, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(22988, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(22989, v is ImplementTwoInterfaceGen<int>, false);
- Eval(22990, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(22991, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(22992, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(22993, v is ImplementAllInterface<int>, false);
- Eval(22994, v is ImplementAllInterface<int>[], false);
- Eval(22995, v is ImplementAllInterface<int>?, false);
- Eval(22996, v is ImplementAllInterface<int>?[], false);
+// Eval(22985, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(22986, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(22987, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(22988, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(22989, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(22990, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(22991, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(22992, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(22993, v is ImplementAllInterface<int>, false);
+// Eval(22994, v is ImplementAllInterface<int>[], false);
+// Eval(22995, v is ImplementAllInterface<int>?, false);
+// Eval(22996, v is ImplementAllInterface<int>?[], false);
Eval(22997, v is IntE, false);
Eval(22998, v is IntE[], false);
Eval(22999, v is IntE?, false);
@@ -5346,38 +5346,38 @@ internal class Program
Eval(23092, v is IEmpty[], false);
Eval(23093, v is INotEmpty, false);
Eval(23094, v is INotEmpty[], false);
- Eval(23095, v is IEmptyGen<int>, false);
- Eval(23096, v is IEmptyGen<int>[], false);
- Eval(23097, v is INotEmptyGen<int>, false);
- Eval(23098, v is INotEmptyGen<int>[], false);
+// Eval(23095, v is IEmptyGen<int>, false);
+// Eval(23096, v is IEmptyGen<int>[], false);
+// Eval(23097, v is INotEmptyGen<int>, false);
+// Eval(23098, v is INotEmptyGen<int>[], false);
Eval(23099, v is SimpleDelegate, false);
Eval(23100, v is SimpleDelegate[], false);
- Eval(23101, v is GenericDelegate<int>, false);
- Eval(23102, v is GenericDelegate<int>[], false);
+// Eval(23101, v is GenericDelegate<int>, false);
+// Eval(23102, v is GenericDelegate<int>[], false);
Eval(23103, v is EmptyClass, false);
Eval(23104, v is EmptyClass[], false);
Eval(23105, v is NotEmptyClass, false);
Eval(23106, v is NotEmptyClass[], false);
- Eval(23107, v is EmptyClassGen<int>, false);
- Eval(23108, v is EmptyClassGen<int>[], false);
- Eval(23109, v is NotEmptyClassGen<Guid>, false);
- Eval(23110, v is NotEmptyClassGen<Guid>[], false);
- Eval(23111, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(23112, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(23107, v is EmptyClassGen<int>, false);
+// Eval(23108, v is EmptyClassGen<int>[], false);
+// Eval(23109, v is NotEmptyClassGen<Guid>, false);
+// Eval(23110, v is NotEmptyClassGen<Guid>[], false);
+// Eval(23111, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(23112, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(23113, v is NestedClass, false);
Eval(23114, v is NestedClass[], false);
- Eval(23115, v is NestedClassGen<Decimal>, false);
- Eval(23116, v is NestedClassGen<Decimal>[], false);
+// Eval(23115, v is NestedClassGen<Decimal>, false);
+// Eval(23116, v is NestedClassGen<Decimal>[], false);
Eval(23117, v is ImplementOneInterfaceC, false);
Eval(23118, v is ImplementOneInterfaceC[], false);
Eval(23119, v is ImplementTwoInterfaceC, false);
Eval(23120, v is ImplementTwoInterfaceC[], false);
- Eval(23121, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(23122, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(23123, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(23124, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(23125, v is ImplementAllInterfaceC<int>, false);
- Eval(23126, v is ImplementAllInterfaceC<int>[], false);
+// Eval(23121, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(23122, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(23123, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(23124, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(23125, v is ImplementAllInterfaceC<int>, false);
+// Eval(23126, v is ImplementAllInterfaceC<int>[], false);
Eval(23127, v is SealedClass, false);
Eval(23128, v is SealedClass[], false);
}
@@ -5391,26 +5391,26 @@ internal class Program
Eval(23134, v is NotEmptyStruct[], false);
Eval(23135, v is NotEmptyStruct?, false);
Eval(23136, v is NotEmptyStruct?[], false);
- Eval(23137, v is EmptyStructGen<int>, false);
- Eval(23138, v is EmptyStructGen<int>[], false);
- Eval(23139, v is EmptyStructGen<int>?, false);
- Eval(23140, v is EmptyStructGen<int>?[], false);
- Eval(23141, v is NotEmptyStructGen<Guid>, false);
- Eval(23142, v is NotEmptyStructGen<Guid>[], false);
- Eval(23143, v is NotEmptyStructGen<Guid>?, false);
- Eval(23144, v is NotEmptyStructGen<Guid>?[], false);
- Eval(23145, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(23146, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(23147, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(23148, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(23137, v is EmptyStructGen<int>, false);
+// Eval(23138, v is EmptyStructGen<int>[], false);
+// Eval(23139, v is EmptyStructGen<int>?, false);
+// Eval(23140, v is EmptyStructGen<int>?[], false);
+// Eval(23141, v is NotEmptyStructGen<Guid>, false);
+// Eval(23142, v is NotEmptyStructGen<Guid>[], false);
+// Eval(23143, v is NotEmptyStructGen<Guid>?, false);
+// Eval(23144, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(23145, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(23146, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(23147, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(23148, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(23149, v is NestedStruct, false);
Eval(23150, v is NestedStruct[], false);
Eval(23151, v is NestedStruct?, false);
Eval(23152, v is NestedStruct?[], false);
- Eval(23153, v is NestedStructGen<Decimal>, false);
- Eval(23154, v is NestedStructGen<Decimal>[], false);
- Eval(23155, v is NestedStructGen<Decimal>?, false);
- Eval(23156, v is NestedStructGen<Decimal>?[], false);
+// Eval(23153, v is NestedStructGen<Decimal>, false);
+// Eval(23154, v is NestedStructGen<Decimal>[], false);
+// Eval(23155, v is NestedStructGen<Decimal>?, false);
+// Eval(23156, v is NestedStructGen<Decimal>?[], false);
Eval(23157, v is ExplicitFieldOffsetStruct, false);
Eval(23158, v is ExplicitFieldOffsetStruct[], false);
Eval(23159, v is ExplicitFieldOffsetStruct?, false);
@@ -5427,18 +5427,18 @@ internal class Program
Eval(23178, v is ImplementTwoInterface[], false);
Eval(23179, v is ImplementTwoInterface?, false);
Eval(23180, v is ImplementTwoInterface?[], false);
- Eval(23181, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(23182, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(23183, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(23184, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(23185, v is ImplementTwoInterfaceGen<int>, false);
- Eval(23186, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(23187, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(23188, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(23189, v is ImplementAllInterface<int>, false);
- Eval(23190, v is ImplementAllInterface<int>[], false);
- Eval(23191, v is ImplementAllInterface<int>?, false);
- Eval(23192, v is ImplementAllInterface<int>?[], false);
+// Eval(23181, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(23182, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(23183, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(23184, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(23185, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(23186, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(23187, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(23188, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(23189, v is ImplementAllInterface<int>, false);
+// Eval(23190, v is ImplementAllInterface<int>[], false);
+// Eval(23191, v is ImplementAllInterface<int>?, false);
+// Eval(23192, v is ImplementAllInterface<int>?[], false);
Eval(23193, v is IntE, false);
Eval(23194, v is IntE[], false);
Eval(23195, v is IntE?, false);
@@ -5537,38 +5537,38 @@ internal class Program
Eval(23288, v is IEmpty[], false);
Eval(23289, v is INotEmpty, false);
Eval(23290, v is INotEmpty[], false);
- Eval(23291, v is IEmptyGen<int>, false);
- Eval(23292, v is IEmptyGen<int>[], false);
- Eval(23293, v is INotEmptyGen<int>, false);
- Eval(23294, v is INotEmptyGen<int>[], false);
+// Eval(23291, v is IEmptyGen<int>, false);
+// Eval(23292, v is IEmptyGen<int>[], false);
+// Eval(23293, v is INotEmptyGen<int>, false);
+// Eval(23294, v is INotEmptyGen<int>[], false);
Eval(23295, v is SimpleDelegate, false);
Eval(23296, v is SimpleDelegate[], false);
- Eval(23297, v is GenericDelegate<int>, false);
- Eval(23298, v is GenericDelegate<int>[], false);
+// Eval(23297, v is GenericDelegate<int>, false);
+// Eval(23298, v is GenericDelegate<int>[], false);
Eval(23299, v is EmptyClass, false);
Eval(23300, v is EmptyClass[], false);
Eval(23301, v is NotEmptyClass, false);
Eval(23302, v is NotEmptyClass[], false);
- Eval(23303, v is EmptyClassGen<int>, false);
- Eval(23304, v is EmptyClassGen<int>[], false);
- Eval(23305, v is NotEmptyClassGen<Guid>, false);
- Eval(23306, v is NotEmptyClassGen<Guid>[], false);
- Eval(23307, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(23308, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(23303, v is EmptyClassGen<int>, false);
+// Eval(23304, v is EmptyClassGen<int>[], false);
+// Eval(23305, v is NotEmptyClassGen<Guid>, false);
+// Eval(23306, v is NotEmptyClassGen<Guid>[], false);
+// Eval(23307, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(23308, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(23309, v is NestedClass, false);
Eval(23310, v is NestedClass[], false);
- Eval(23311, v is NestedClassGen<Decimal>, false);
- Eval(23312, v is NestedClassGen<Decimal>[], false);
+// Eval(23311, v is NestedClassGen<Decimal>, false);
+// Eval(23312, v is NestedClassGen<Decimal>[], false);
Eval(23313, v is ImplementOneInterfaceC, false);
Eval(23314, v is ImplementOneInterfaceC[], false);
Eval(23315, v is ImplementTwoInterfaceC, false);
Eval(23316, v is ImplementTwoInterfaceC[], false);
- Eval(23317, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(23318, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(23319, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(23320, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(23321, v is ImplementAllInterfaceC<int>, false);
- Eval(23322, v is ImplementAllInterfaceC<int>[], false);
+// Eval(23317, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(23318, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(23319, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(23320, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(23321, v is ImplementAllInterfaceC<int>, false);
+// Eval(23322, v is ImplementAllInterfaceC<int>[], false);
Eval(23323, v is SealedClass, false);
Eval(23324, v is SealedClass[], false);
}
@@ -5582,26 +5582,26 @@ internal class Program
Eval(23330, v is NotEmptyStruct[], false);
Eval(23331, v is NotEmptyStruct?, false);
Eval(23332, v is NotEmptyStruct?[], false);
- Eval(23333, v is EmptyStructGen<int>, false);
- Eval(23334, v is EmptyStructGen<int>[], false);
- Eval(23335, v is EmptyStructGen<int>?, false);
- Eval(23336, v is EmptyStructGen<int>?[], false);
- Eval(23337, v is NotEmptyStructGen<Guid>, false);
- Eval(23338, v is NotEmptyStructGen<Guid>[], false);
- Eval(23339, v is NotEmptyStructGen<Guid>?, false);
- Eval(23340, v is NotEmptyStructGen<Guid>?[], false);
- Eval(23341, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(23342, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(23343, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(23344, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(23333, v is EmptyStructGen<int>, false);
+// Eval(23334, v is EmptyStructGen<int>[], false);
+// Eval(23335, v is EmptyStructGen<int>?, false);
+// Eval(23336, v is EmptyStructGen<int>?[], false);
+// Eval(23337, v is NotEmptyStructGen<Guid>, false);
+// Eval(23338, v is NotEmptyStructGen<Guid>[], false);
+// Eval(23339, v is NotEmptyStructGen<Guid>?, false);
+// Eval(23340, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(23341, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(23342, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(23343, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(23344, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(23345, v is NestedStruct, false);
Eval(23346, v is NestedStruct[], false);
Eval(23347, v is NestedStruct?, false);
Eval(23348, v is NestedStruct?[], false);
- Eval(23349, v is NestedStructGen<Decimal>, false);
- Eval(23350, v is NestedStructGen<Decimal>[], false);
- Eval(23351, v is NestedStructGen<Decimal>?, false);
- Eval(23352, v is NestedStructGen<Decimal>?[], false);
+// Eval(23349, v is NestedStructGen<Decimal>, false);
+// Eval(23350, v is NestedStructGen<Decimal>[], false);
+// Eval(23351, v is NestedStructGen<Decimal>?, false);
+// Eval(23352, v is NestedStructGen<Decimal>?[], false);
Eval(23353, v is ExplicitFieldOffsetStruct, false);
Eval(23354, v is ExplicitFieldOffsetStruct[], false);
Eval(23355, v is ExplicitFieldOffsetStruct?, false);
@@ -5618,18 +5618,18 @@ internal class Program
Eval(23374, v is ImplementTwoInterface[], false);
Eval(23375, v is ImplementTwoInterface?, false);
Eval(23376, v is ImplementTwoInterface?[], false);
- Eval(23377, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(23378, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(23379, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(23380, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(23381, v is ImplementTwoInterfaceGen<int>, false);
- Eval(23382, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(23383, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(23384, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(23385, v is ImplementAllInterface<int>, false);
- Eval(23386, v is ImplementAllInterface<int>[], false);
- Eval(23387, v is ImplementAllInterface<int>?, false);
- Eval(23388, v is ImplementAllInterface<int>?[], false);
+// Eval(23377, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(23378, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(23379, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(23380, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(23381, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(23382, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(23383, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(23384, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(23385, v is ImplementAllInterface<int>, false);
+// Eval(23386, v is ImplementAllInterface<int>[], false);
+// Eval(23387, v is ImplementAllInterface<int>?, false);
+// Eval(23388, v is ImplementAllInterface<int>?[], false);
Eval(23389, v is IntE, false);
Eval(23390, v is IntE[], false);
Eval(23391, v is IntE?, false);
@@ -5728,38 +5728,38 @@ internal class Program
Eval(23484, v is IEmpty[], false);
Eval(23485, v is INotEmpty, false);
Eval(23486, v is INotEmpty[], false);
- Eval(23487, v is IEmptyGen<int>, false);
- Eval(23488, v is IEmptyGen<int>[], false);
- Eval(23489, v is INotEmptyGen<int>, false);
- Eval(23490, v is INotEmptyGen<int>[], false);
+// Eval(23487, v is IEmptyGen<int>, false);
+// Eval(23488, v is IEmptyGen<int>[], false);
+// Eval(23489, v is INotEmptyGen<int>, false);
+// Eval(23490, v is INotEmptyGen<int>[], false);
Eval(23491, v is SimpleDelegate, false);
Eval(23492, v is SimpleDelegate[], false);
- Eval(23493, v is GenericDelegate<int>, false);
- Eval(23494, v is GenericDelegate<int>[], false);
+// Eval(23493, v is GenericDelegate<int>, false);
+// Eval(23494, v is GenericDelegate<int>[], false);
Eval(23495, v is EmptyClass, false);
Eval(23496, v is EmptyClass[], false);
Eval(23497, v is NotEmptyClass, false);
Eval(23498, v is NotEmptyClass[], false);
- Eval(23499, v is EmptyClassGen<int>, false);
- Eval(23500, v is EmptyClassGen<int>[], false);
- Eval(23501, v is NotEmptyClassGen<Guid>, false);
- Eval(23502, v is NotEmptyClassGen<Guid>[], false);
- Eval(23503, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(23504, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(23499, v is EmptyClassGen<int>, false);
+// Eval(23500, v is EmptyClassGen<int>[], false);
+// Eval(23501, v is NotEmptyClassGen<Guid>, false);
+// Eval(23502, v is NotEmptyClassGen<Guid>[], false);
+// Eval(23503, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(23504, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(23505, v is NestedClass, false);
Eval(23506, v is NestedClass[], false);
- Eval(23507, v is NestedClassGen<Decimal>, false);
- Eval(23508, v is NestedClassGen<Decimal>[], false);
+// Eval(23507, v is NestedClassGen<Decimal>, false);
+// Eval(23508, v is NestedClassGen<Decimal>[], false);
Eval(23509, v is ImplementOneInterfaceC, false);
Eval(23510, v is ImplementOneInterfaceC[], false);
Eval(23511, v is ImplementTwoInterfaceC, false);
Eval(23512, v is ImplementTwoInterfaceC[], false);
- Eval(23513, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(23514, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(23515, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(23516, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(23517, v is ImplementAllInterfaceC<int>, false);
- Eval(23518, v is ImplementAllInterfaceC<int>[], false);
+// Eval(23513, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(23514, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(23515, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(23516, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(23517, v is ImplementAllInterfaceC<int>, false);
+// Eval(23518, v is ImplementAllInterfaceC<int>[], false);
Eval(23519, v is SealedClass, false);
Eval(23520, v is SealedClass[], false);
}
@@ -5776,26 +5776,26 @@ internal class Program
Eval(23526, v is NotEmptyStruct[], false);
Eval(23527, v is NotEmptyStruct?, false);
Eval(23528, v is NotEmptyStruct?[], false);
- Eval(23529, v is EmptyStructGen<int>, false);
- Eval(23530, v is EmptyStructGen<int>[], false);
- Eval(23531, v is EmptyStructGen<int>?, false);
- Eval(23532, v is EmptyStructGen<int>?[], false);
- Eval(23533, v is NotEmptyStructGen<Guid>, false);
- Eval(23534, v is NotEmptyStructGen<Guid>[], false);
- Eval(23535, v is NotEmptyStructGen<Guid>?, false);
- Eval(23536, v is NotEmptyStructGen<Guid>?[], false);
- Eval(23537, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(23538, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(23539, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(23540, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(23529, v is EmptyStructGen<int>, false);
+// Eval(23530, v is EmptyStructGen<int>[], false);
+// Eval(23531, v is EmptyStructGen<int>?, false);
+// Eval(23532, v is EmptyStructGen<int>?[], false);
+// Eval(23533, v is NotEmptyStructGen<Guid>, false);
+// Eval(23534, v is NotEmptyStructGen<Guid>[], false);
+// Eval(23535, v is NotEmptyStructGen<Guid>?, false);
+// Eval(23536, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(23537, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(23538, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(23539, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(23540, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(23541, v is NestedStruct, false);
Eval(23542, v is NestedStruct[], false);
Eval(23543, v is NestedStruct?, false);
Eval(23544, v is NestedStruct?[], false);
- Eval(23545, v is NestedStructGen<Decimal>, false);
- Eval(23546, v is NestedStructGen<Decimal>[], false);
- Eval(23547, v is NestedStructGen<Decimal>?, false);
- Eval(23548, v is NestedStructGen<Decimal>?[], false);
+// Eval(23545, v is NestedStructGen<Decimal>, false);
+// Eval(23546, v is NestedStructGen<Decimal>[], false);
+// Eval(23547, v is NestedStructGen<Decimal>?, false);
+// Eval(23548, v is NestedStructGen<Decimal>?[], false);
Eval(23549, v is ExplicitFieldOffsetStruct, false);
Eval(23550, v is ExplicitFieldOffsetStruct[], false);
Eval(23551, v is ExplicitFieldOffsetStruct?, false);
@@ -5812,18 +5812,18 @@ internal class Program
Eval(23570, v is ImplementTwoInterface[], false);
Eval(23571, v is ImplementTwoInterface?, false);
Eval(23572, v is ImplementTwoInterface?[], false);
- Eval(23573, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(23574, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(23575, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(23576, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(23577, v is ImplementTwoInterfaceGen<int>, false);
- Eval(23578, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(23579, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(23580, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(23581, v is ImplementAllInterface<int>, false);
- Eval(23582, v is ImplementAllInterface<int>[], false);
- Eval(23583, v is ImplementAllInterface<int>?, false);
- Eval(23584, v is ImplementAllInterface<int>?[], false);
+// Eval(23573, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(23574, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(23575, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(23576, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(23577, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(23578, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(23579, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(23580, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(23581, v is ImplementAllInterface<int>, false);
+// Eval(23582, v is ImplementAllInterface<int>[], false);
+// Eval(23583, v is ImplementAllInterface<int>?, false);
+// Eval(23584, v is ImplementAllInterface<int>?[], false);
Eval(23585, v is IntE, false);
Eval(23586, v is IntE[], false);
Eval(23587, v is IntE?, false);
@@ -5922,38 +5922,38 @@ internal class Program
Eval(23680, v is IEmpty[], false);
Eval(23681, v is INotEmpty, false);
Eval(23682, v is INotEmpty[], false);
- Eval(23683, v is IEmptyGen<int>, false);
- Eval(23684, v is IEmptyGen<int>[], false);
- Eval(23685, v is INotEmptyGen<int>, false);
- Eval(23686, v is INotEmptyGen<int>[], false);
+// Eval(23683, v is IEmptyGen<int>, false);
+// Eval(23684, v is IEmptyGen<int>[], false);
+// Eval(23685, v is INotEmptyGen<int>, false);
+// Eval(23686, v is INotEmptyGen<int>[], false);
Eval(23687, v is SimpleDelegate, false);
Eval(23688, v is SimpleDelegate[], false);
- Eval(23689, v is GenericDelegate<int>, false);
- Eval(23690, v is GenericDelegate<int>[], false);
+// Eval(23689, v is GenericDelegate<int>, false);
+// Eval(23690, v is GenericDelegate<int>[], false);
Eval(23691, v is EmptyClass, false);
Eval(23692, v is EmptyClass[], false);
Eval(23693, v is NotEmptyClass, false);
Eval(23694, v is NotEmptyClass[], false);
- Eval(23695, v is EmptyClassGen<int>, false);
- Eval(23696, v is EmptyClassGen<int>[], false);
- Eval(23697, v is NotEmptyClassGen<Guid>, false);
- Eval(23698, v is NotEmptyClassGen<Guid>[], false);
- Eval(23699, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(23700, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(23695, v is EmptyClassGen<int>, false);
+// Eval(23696, v is EmptyClassGen<int>[], false);
+// Eval(23697, v is NotEmptyClassGen<Guid>, false);
+// Eval(23698, v is NotEmptyClassGen<Guid>[], false);
+// Eval(23699, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(23700, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(23701, v is NestedClass, false);
Eval(23702, v is NestedClass[], false);
- Eval(23703, v is NestedClassGen<Decimal>, false);
- Eval(23704, v is NestedClassGen<Decimal>[], false);
+// Eval(23703, v is NestedClassGen<Decimal>, false);
+// Eval(23704, v is NestedClassGen<Decimal>[], false);
Eval(23705, v is ImplementOneInterfaceC, false);
Eval(23706, v is ImplementOneInterfaceC[], false);
Eval(23707, v is ImplementTwoInterfaceC, false);
Eval(23708, v is ImplementTwoInterfaceC[], false);
- Eval(23709, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(23710, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(23711, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(23712, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(23713, v is ImplementAllInterfaceC<int>, false);
- Eval(23714, v is ImplementAllInterfaceC<int>[], false);
+// Eval(23709, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(23710, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(23711, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(23712, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(23713, v is ImplementAllInterfaceC<int>, false);
+// Eval(23714, v is ImplementAllInterfaceC<int>[], false);
Eval(23715, v is SealedClass, false);
Eval(23716, v is SealedClass[], false);
}
@@ -5967,26 +5967,26 @@ internal class Program
Eval(23722, v is NotEmptyStruct[], false);
Eval(23723, v is NotEmptyStruct?, false);
Eval(23724, v is NotEmptyStruct?[], false);
- Eval(23725, v is EmptyStructGen<int>, false);
- Eval(23726, v is EmptyStructGen<int>[], false);
- Eval(23727, v is EmptyStructGen<int>?, false);
- Eval(23728, v is EmptyStructGen<int>?[], false);
- Eval(23729, v is NotEmptyStructGen<Guid>, false);
- Eval(23730, v is NotEmptyStructGen<Guid>[], false);
- Eval(23731, v is NotEmptyStructGen<Guid>?, false);
- Eval(23732, v is NotEmptyStructGen<Guid>?[], false);
- Eval(23733, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(23734, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(23735, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(23736, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(23725, v is EmptyStructGen<int>, false);
+// Eval(23726, v is EmptyStructGen<int>[], false);
+// Eval(23727, v is EmptyStructGen<int>?, false);
+// Eval(23728, v is EmptyStructGen<int>?[], false);
+// Eval(23729, v is NotEmptyStructGen<Guid>, false);
+// Eval(23730, v is NotEmptyStructGen<Guid>[], false);
+// Eval(23731, v is NotEmptyStructGen<Guid>?, false);
+// Eval(23732, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(23733, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(23734, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(23735, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(23736, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(23737, v is NestedStruct, false);
Eval(23738, v is NestedStruct[], false);
Eval(23739, v is NestedStruct?, false);
Eval(23740, v is NestedStruct?[], false);
- Eval(23741, v is NestedStructGen<Decimal>, false);
- Eval(23742, v is NestedStructGen<Decimal>[], false);
- Eval(23743, v is NestedStructGen<Decimal>?, false);
- Eval(23744, v is NestedStructGen<Decimal>?[], false);
+// Eval(23741, v is NestedStructGen<Decimal>, false);
+// Eval(23742, v is NestedStructGen<Decimal>[], false);
+// Eval(23743, v is NestedStructGen<Decimal>?, false);
+// Eval(23744, v is NestedStructGen<Decimal>?[], false);
Eval(23745, v is ExplicitFieldOffsetStruct, false);
Eval(23746, v is ExplicitFieldOffsetStruct[], false);
Eval(23747, v is ExplicitFieldOffsetStruct?, false);
@@ -6003,18 +6003,18 @@ internal class Program
Eval(23766, v is ImplementTwoInterface[], false);
Eval(23767, v is ImplementTwoInterface?, false);
Eval(23768, v is ImplementTwoInterface?[], false);
- Eval(23769, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(23770, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(23771, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(23772, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(23773, v is ImplementTwoInterfaceGen<int>, false);
- Eval(23774, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(23775, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(23776, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(23777, v is ImplementAllInterface<int>, false);
- Eval(23778, v is ImplementAllInterface<int>[], false);
- Eval(23779, v is ImplementAllInterface<int>?, false);
- Eval(23780, v is ImplementAllInterface<int>?[], false);
+// Eval(23769, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(23770, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(23771, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(23772, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(23773, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(23774, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(23775, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(23776, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(23777, v is ImplementAllInterface<int>, false);
+// Eval(23778, v is ImplementAllInterface<int>[], false);
+// Eval(23779, v is ImplementAllInterface<int>?, false);
+// Eval(23780, v is ImplementAllInterface<int>?[], false);
Eval(23781, v is IntE, false);
Eval(23782, v is IntE[], false);
Eval(23783, v is IntE?, false);
@@ -6113,38 +6113,38 @@ internal class Program
Eval(23876, v is IEmpty[], false);
Eval(23877, v is INotEmpty, false);
Eval(23878, v is INotEmpty[], false);
- Eval(23879, v is IEmptyGen<int>, false);
- Eval(23880, v is IEmptyGen<int>[], false);
- Eval(23881, v is INotEmptyGen<int>, false);
- Eval(23882, v is INotEmptyGen<int>[], false);
+// Eval(23879, v is IEmptyGen<int>, false);
+// Eval(23880, v is IEmptyGen<int>[], false);
+// Eval(23881, v is INotEmptyGen<int>, false);
+// Eval(23882, v is INotEmptyGen<int>[], false);
Eval(23883, v is SimpleDelegate, false);
Eval(23884, v is SimpleDelegate[], false);
- Eval(23885, v is GenericDelegate<int>, false);
- Eval(23886, v is GenericDelegate<int>[], false);
+// Eval(23885, v is GenericDelegate<int>, false);
+// Eval(23886, v is GenericDelegate<int>[], false);
Eval(23887, v is EmptyClass, false);
Eval(23888, v is EmptyClass[], false);
Eval(23889, v is NotEmptyClass, false);
Eval(23890, v is NotEmptyClass[], false);
- Eval(23891, v is EmptyClassGen<int>, false);
- Eval(23892, v is EmptyClassGen<int>[], false);
- Eval(23893, v is NotEmptyClassGen<Guid>, false);
- Eval(23894, v is NotEmptyClassGen<Guid>[], false);
- Eval(23895, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(23896, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(23891, v is EmptyClassGen<int>, false);
+// Eval(23892, v is EmptyClassGen<int>[], false);
+// Eval(23893, v is NotEmptyClassGen<Guid>, false);
+// Eval(23894, v is NotEmptyClassGen<Guid>[], false);
+// Eval(23895, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(23896, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(23897, v is NestedClass, false);
Eval(23898, v is NestedClass[], false);
- Eval(23899, v is NestedClassGen<Decimal>, false);
- Eval(23900, v is NestedClassGen<Decimal>[], false);
+// Eval(23899, v is NestedClassGen<Decimal>, false);
+// Eval(23900, v is NestedClassGen<Decimal>[], false);
Eval(23901, v is ImplementOneInterfaceC, false);
Eval(23902, v is ImplementOneInterfaceC[], false);
Eval(23903, v is ImplementTwoInterfaceC, false);
Eval(23904, v is ImplementTwoInterfaceC[], false);
- Eval(23905, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(23906, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(23907, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(23908, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(23909, v is ImplementAllInterfaceC<int>, false);
- Eval(23910, v is ImplementAllInterfaceC<int>[], false);
+// Eval(23905, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(23906, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(23907, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(23908, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(23909, v is ImplementAllInterfaceC<int>, false);
+// Eval(23910, v is ImplementAllInterfaceC<int>[], false);
Eval(23911, v is SealedClass, false);
Eval(23912, v is SealedClass[], false);
}
@@ -6158,26 +6158,26 @@ internal class Program
Eval(23918, v is NotEmptyStruct[], false);
Eval(23919, v is NotEmptyStruct?, false);
Eval(23920, v is NotEmptyStruct?[], false);
- Eval(23921, v is EmptyStructGen<int>, false);
- Eval(23922, v is EmptyStructGen<int>[], false);
- Eval(23923, v is EmptyStructGen<int>?, false);
- Eval(23924, v is EmptyStructGen<int>?[], false);
- Eval(23925, v is NotEmptyStructGen<Guid>, false);
- Eval(23926, v is NotEmptyStructGen<Guid>[], false);
- Eval(23927, v is NotEmptyStructGen<Guid>?, false);
- Eval(23928, v is NotEmptyStructGen<Guid>?[], false);
- Eval(23929, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(23930, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(23931, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(23932, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(23921, v is EmptyStructGen<int>, false);
+// Eval(23922, v is EmptyStructGen<int>[], false);
+// Eval(23923, v is EmptyStructGen<int>?, false);
+// Eval(23924, v is EmptyStructGen<int>?[], false);
+// Eval(23925, v is NotEmptyStructGen<Guid>, false);
+// Eval(23926, v is NotEmptyStructGen<Guid>[], false);
+// Eval(23927, v is NotEmptyStructGen<Guid>?, false);
+// Eval(23928, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(23929, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(23930, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(23931, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(23932, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(23933, v is NestedStruct, false);
Eval(23934, v is NestedStruct[], false);
Eval(23935, v is NestedStruct?, false);
Eval(23936, v is NestedStruct?[], false);
- Eval(23937, v is NestedStructGen<Decimal>, false);
- Eval(23938, v is NestedStructGen<Decimal>[], false);
- Eval(23939, v is NestedStructGen<Decimal>?, false);
- Eval(23940, v is NestedStructGen<Decimal>?[], false);
+// Eval(23937, v is NestedStructGen<Decimal>, false);
+// Eval(23938, v is NestedStructGen<Decimal>[], false);
+// Eval(23939, v is NestedStructGen<Decimal>?, false);
+// Eval(23940, v is NestedStructGen<Decimal>?[], false);
Eval(23941, v is ExplicitFieldOffsetStruct, false);
Eval(23942, v is ExplicitFieldOffsetStruct[], false);
Eval(23943, v is ExplicitFieldOffsetStruct?, false);
@@ -6194,18 +6194,18 @@ internal class Program
Eval(23962, v is ImplementTwoInterface[], false);
Eval(23963, v is ImplementTwoInterface?, false);
Eval(23964, v is ImplementTwoInterface?[], false);
- Eval(23965, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(23966, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(23967, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(23968, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(23969, v is ImplementTwoInterfaceGen<int>, false);
- Eval(23970, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(23971, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(23972, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(23973, v is ImplementAllInterface<int>, false);
- Eval(23974, v is ImplementAllInterface<int>[], false);
- Eval(23975, v is ImplementAllInterface<int>?, false);
- Eval(23976, v is ImplementAllInterface<int>?[], false);
+// Eval(23965, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(23966, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(23967, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(23968, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(23969, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(23970, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(23971, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(23972, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(23973, v is ImplementAllInterface<int>, false);
+// Eval(23974, v is ImplementAllInterface<int>[], false);
+// Eval(23975, v is ImplementAllInterface<int>?, false);
+// Eval(23976, v is ImplementAllInterface<int>?[], false);
Eval(23977, v is IntE, false);
Eval(23978, v is IntE[], false);
Eval(23979, v is IntE?, false);
@@ -6304,38 +6304,38 @@ internal class Program
Eval(24072, v is IEmpty[], false);
Eval(24073, v is INotEmpty, false);
Eval(24074, v is INotEmpty[], false);
- Eval(24075, v is IEmptyGen<int>, false);
- Eval(24076, v is IEmptyGen<int>[], false);
- Eval(24077, v is INotEmptyGen<int>, false);
- Eval(24078, v is INotEmptyGen<int>[], false);
+// Eval(24075, v is IEmptyGen<int>, false);
+// Eval(24076, v is IEmptyGen<int>[], false);
+// Eval(24077, v is INotEmptyGen<int>, false);
+// Eval(24078, v is INotEmptyGen<int>[], false);
Eval(24079, v is SimpleDelegate, false);
Eval(24080, v is SimpleDelegate[], false);
- Eval(24081, v is GenericDelegate<int>, false);
- Eval(24082, v is GenericDelegate<int>[], false);
+// Eval(24081, v is GenericDelegate<int>, false);
+// Eval(24082, v is GenericDelegate<int>[], false);
Eval(24083, v is EmptyClass, false);
Eval(24084, v is EmptyClass[], false);
Eval(24085, v is NotEmptyClass, false);
Eval(24086, v is NotEmptyClass[], false);
- Eval(24087, v is EmptyClassGen<int>, false);
- Eval(24088, v is EmptyClassGen<int>[], false);
- Eval(24089, v is NotEmptyClassGen<Guid>, false);
- Eval(24090, v is NotEmptyClassGen<Guid>[], false);
- Eval(24091, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(24092, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(24087, v is EmptyClassGen<int>, false);
+// Eval(24088, v is EmptyClassGen<int>[], false);
+// Eval(24089, v is NotEmptyClassGen<Guid>, false);
+// Eval(24090, v is NotEmptyClassGen<Guid>[], false);
+// Eval(24091, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(24092, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(24093, v is NestedClass, false);
Eval(24094, v is NestedClass[], false);
- Eval(24095, v is NestedClassGen<Decimal>, false);
- Eval(24096, v is NestedClassGen<Decimal>[], false);
+// Eval(24095, v is NestedClassGen<Decimal>, false);
+// Eval(24096, v is NestedClassGen<Decimal>[], false);
Eval(24097, v is ImplementOneInterfaceC, false);
Eval(24098, v is ImplementOneInterfaceC[], false);
Eval(24099, v is ImplementTwoInterfaceC, false);
Eval(24100, v is ImplementTwoInterfaceC[], false);
- Eval(24101, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(24102, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(24103, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(24104, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(24105, v is ImplementAllInterfaceC<int>, false);
- Eval(24106, v is ImplementAllInterfaceC<int>[], false);
+// Eval(24101, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(24102, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(24103, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(24104, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(24105, v is ImplementAllInterfaceC<int>, false);
+// Eval(24106, v is ImplementAllInterfaceC<int>[], false);
Eval(24107, v is SealedClass, false);
Eval(24108, v is SealedClass[], false);
}
@@ -6349,26 +6349,26 @@ internal class Program
Eval(24114, v is NotEmptyStruct[], false);
Eval(24115, v is NotEmptyStruct?, false);
Eval(24116, v is NotEmptyStruct?[], false);
- Eval(24117, v is EmptyStructGen<int>, false);
- Eval(24118, v is EmptyStructGen<int>[], false);
- Eval(24119, v is EmptyStructGen<int>?, false);
- Eval(24120, v is EmptyStructGen<int>?[], false);
- Eval(24121, v is NotEmptyStructGen<Guid>, false);
- Eval(24122, v is NotEmptyStructGen<Guid>[], false);
- Eval(24123, v is NotEmptyStructGen<Guid>?, false);
- Eval(24124, v is NotEmptyStructGen<Guid>?[], false);
- Eval(24125, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(24126, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(24127, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(24128, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(24117, v is EmptyStructGen<int>, false);
+// Eval(24118, v is EmptyStructGen<int>[], false);
+// Eval(24119, v is EmptyStructGen<int>?, false);
+// Eval(24120, v is EmptyStructGen<int>?[], false);
+// Eval(24121, v is NotEmptyStructGen<Guid>, false);
+// Eval(24122, v is NotEmptyStructGen<Guid>[], false);
+// Eval(24123, v is NotEmptyStructGen<Guid>?, false);
+// Eval(24124, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(24125, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(24126, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(24127, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(24128, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(24129, v is NestedStruct, false);
Eval(24130, v is NestedStruct[], false);
Eval(24131, v is NestedStruct?, false);
Eval(24132, v is NestedStruct?[], false);
- Eval(24133, v is NestedStructGen<Decimal>, false);
- Eval(24134, v is NestedStructGen<Decimal>[], false);
- Eval(24135, v is NestedStructGen<Decimal>?, false);
- Eval(24136, v is NestedStructGen<Decimal>?[], false);
+// Eval(24133, v is NestedStructGen<Decimal>, false);
+// Eval(24134, v is NestedStructGen<Decimal>[], false);
+// Eval(24135, v is NestedStructGen<Decimal>?, false);
+// Eval(24136, v is NestedStructGen<Decimal>?[], false);
Eval(24137, v is ExplicitFieldOffsetStruct, false);
Eval(24138, v is ExplicitFieldOffsetStruct[], false);
Eval(24139, v is ExplicitFieldOffsetStruct?, false);
@@ -6385,18 +6385,18 @@ internal class Program
Eval(24158, v is ImplementTwoInterface[], false);
Eval(24159, v is ImplementTwoInterface?, false);
Eval(24160, v is ImplementTwoInterface?[], false);
- Eval(24161, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(24162, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(24163, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(24164, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(24165, v is ImplementTwoInterfaceGen<int>, false);
- Eval(24166, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(24167, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(24168, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(24169, v is ImplementAllInterface<int>, false);
- Eval(24170, v is ImplementAllInterface<int>[], false);
- Eval(24171, v is ImplementAllInterface<int>?, false);
- Eval(24172, v is ImplementAllInterface<int>?[], false);
+// Eval(24161, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(24162, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(24163, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(24164, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(24165, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(24166, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(24167, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(24168, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(24169, v is ImplementAllInterface<int>, false);
+// Eval(24170, v is ImplementAllInterface<int>[], false);
+// Eval(24171, v is ImplementAllInterface<int>?, false);
+// Eval(24172, v is ImplementAllInterface<int>?[], false);
Eval(24173, v is IntE, false);
Eval(24174, v is IntE[], false);
Eval(24175, v is IntE?, false);
@@ -6495,38 +6495,38 @@ internal class Program
Eval(24268, v is IEmpty[], false);
Eval(24269, v is INotEmpty, false);
Eval(24270, v is INotEmpty[], false);
- Eval(24271, v is IEmptyGen<int>, false);
- Eval(24272, v is IEmptyGen<int>[], false);
- Eval(24273, v is INotEmptyGen<int>, false);
- Eval(24274, v is INotEmptyGen<int>[], false);
+// Eval(24271, v is IEmptyGen<int>, false);
+// Eval(24272, v is IEmptyGen<int>[], false);
+// Eval(24273, v is INotEmptyGen<int>, false);
+// Eval(24274, v is INotEmptyGen<int>[], false);
Eval(24275, v is SimpleDelegate, false);
Eval(24276, v is SimpleDelegate[], false);
- Eval(24277, v is GenericDelegate<int>, false);
- Eval(24278, v is GenericDelegate<int>[], false);
+// Eval(24277, v is GenericDelegate<int>, false);
+// Eval(24278, v is GenericDelegate<int>[], false);
Eval(24279, v is EmptyClass, false);
Eval(24280, v is EmptyClass[], false);
Eval(24281, v is NotEmptyClass, false);
Eval(24282, v is NotEmptyClass[], false);
- Eval(24283, v is EmptyClassGen<int>, false);
- Eval(24284, v is EmptyClassGen<int>[], false);
- Eval(24285, v is NotEmptyClassGen<Guid>, false);
- Eval(24286, v is NotEmptyClassGen<Guid>[], false);
- Eval(24287, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(24288, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(24283, v is EmptyClassGen<int>, false);
+// Eval(24284, v is EmptyClassGen<int>[], false);
+// Eval(24285, v is NotEmptyClassGen<Guid>, false);
+// Eval(24286, v is NotEmptyClassGen<Guid>[], false);
+// Eval(24287, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(24288, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(24289, v is NestedClass, false);
Eval(24290, v is NestedClass[], false);
- Eval(24291, v is NestedClassGen<Decimal>, false);
- Eval(24292, v is NestedClassGen<Decimal>[], false);
+// Eval(24291, v is NestedClassGen<Decimal>, false);
+// Eval(24292, v is NestedClassGen<Decimal>[], false);
Eval(24293, v is ImplementOneInterfaceC, false);
Eval(24294, v is ImplementOneInterfaceC[], false);
Eval(24295, v is ImplementTwoInterfaceC, false);
Eval(24296, v is ImplementTwoInterfaceC[], false);
- Eval(24297, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(24298, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(24299, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(24300, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(24301, v is ImplementAllInterfaceC<int>, false);
- Eval(24302, v is ImplementAllInterfaceC<int>[], false);
+// Eval(24297, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(24298, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(24299, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(24300, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(24301, v is ImplementAllInterfaceC<int>, false);
+// Eval(24302, v is ImplementAllInterfaceC<int>[], false);
Eval(24303, v is SealedClass, false);
Eval(24304, v is SealedClass[], false);
}
@@ -6540,26 +6540,26 @@ internal class Program
Eval(24310, v is NotEmptyStruct[], false);
Eval(24311, v is NotEmptyStruct?, false);
Eval(24312, v is NotEmptyStruct?[], false);
- Eval(24313, v is EmptyStructGen<int>, false);
- Eval(24314, v is EmptyStructGen<int>[], false);
- Eval(24315, v is EmptyStructGen<int>?, false);
- Eval(24316, v is EmptyStructGen<int>?[], false);
- Eval(24317, v is NotEmptyStructGen<Guid>, false);
- Eval(24318, v is NotEmptyStructGen<Guid>[], false);
- Eval(24319, v is NotEmptyStructGen<Guid>?, false);
- Eval(24320, v is NotEmptyStructGen<Guid>?[], false);
- Eval(24321, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(24322, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(24323, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(24324, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(24313, v is EmptyStructGen<int>, false);
+// Eval(24314, v is EmptyStructGen<int>[], false);
+// Eval(24315, v is EmptyStructGen<int>?, false);
+// Eval(24316, v is EmptyStructGen<int>?[], false);
+// Eval(24317, v is NotEmptyStructGen<Guid>, false);
+// Eval(24318, v is NotEmptyStructGen<Guid>[], false);
+// Eval(24319, v is NotEmptyStructGen<Guid>?, false);
+// Eval(24320, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(24321, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(24322, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(24323, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(24324, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(24325, v is NestedStruct, false);
Eval(24326, v is NestedStruct[], false);
Eval(24327, v is NestedStruct?, false);
Eval(24328, v is NestedStruct?[], false);
- Eval(24329, v is NestedStructGen<Decimal>, false);
- Eval(24330, v is NestedStructGen<Decimal>[], false);
- Eval(24331, v is NestedStructGen<Decimal>?, false);
- Eval(24332, v is NestedStructGen<Decimal>?[], false);
+// Eval(24329, v is NestedStructGen<Decimal>, false);
+// Eval(24330, v is NestedStructGen<Decimal>[], false);
+// Eval(24331, v is NestedStructGen<Decimal>?, false);
+// Eval(24332, v is NestedStructGen<Decimal>?[], false);
Eval(24333, v is ExplicitFieldOffsetStruct, false);
Eval(24334, v is ExplicitFieldOffsetStruct[], false);
Eval(24335, v is ExplicitFieldOffsetStruct?, false);
@@ -6576,18 +6576,18 @@ internal class Program
Eval(24354, v is ImplementTwoInterface[], false);
Eval(24355, v is ImplementTwoInterface?, false);
Eval(24356, v is ImplementTwoInterface?[], false);
- Eval(24357, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(24358, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(24359, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(24360, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(24361, v is ImplementTwoInterfaceGen<int>, false);
- Eval(24362, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(24363, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(24364, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(24365, v is ImplementAllInterface<int>, false);
- Eval(24366, v is ImplementAllInterface<int>[], false);
- Eval(24367, v is ImplementAllInterface<int>?, false);
- Eval(24368, v is ImplementAllInterface<int>?[], false);
+// Eval(24357, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(24358, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(24359, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(24360, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(24361, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(24362, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(24363, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(24364, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(24365, v is ImplementAllInterface<int>, false);
+// Eval(24366, v is ImplementAllInterface<int>[], false);
+// Eval(24367, v is ImplementAllInterface<int>?, false);
+// Eval(24368, v is ImplementAllInterface<int>?[], false);
Eval(24369, v is IntE, false);
Eval(24370, v is IntE[], false);
Eval(24371, v is IntE?, false);
@@ -6686,38 +6686,38 @@ internal class Program
Eval(24464, v is IEmpty[], false);
Eval(24465, v is INotEmpty, false);
Eval(24466, v is INotEmpty[], false);
- Eval(24467, v is IEmptyGen<int>, false);
- Eval(24468, v is IEmptyGen<int>[], false);
- Eval(24469, v is INotEmptyGen<int>, false);
- Eval(24470, v is INotEmptyGen<int>[], false);
+// Eval(24467, v is IEmptyGen<int>, false);
+// Eval(24468, v is IEmptyGen<int>[], false);
+// Eval(24469, v is INotEmptyGen<int>, false);
+// Eval(24470, v is INotEmptyGen<int>[], false);
Eval(24471, v is SimpleDelegate, false);
Eval(24472, v is SimpleDelegate[], false);
- Eval(24473, v is GenericDelegate<int>, false);
- Eval(24474, v is GenericDelegate<int>[], false);
+// Eval(24473, v is GenericDelegate<int>, false);
+// Eval(24474, v is GenericDelegate<int>[], false);
Eval(24475, v is EmptyClass, false);
Eval(24476, v is EmptyClass[], false);
Eval(24477, v is NotEmptyClass, false);
Eval(24478, v is NotEmptyClass[], false);
- Eval(24479, v is EmptyClassGen<int>, false);
- Eval(24480, v is EmptyClassGen<int>[], false);
- Eval(24481, v is NotEmptyClassGen<Guid>, false);
- Eval(24482, v is NotEmptyClassGen<Guid>[], false);
- Eval(24483, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(24484, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(24479, v is EmptyClassGen<int>, false);
+// Eval(24480, v is EmptyClassGen<int>[], false);
+// Eval(24481, v is NotEmptyClassGen<Guid>, false);
+// Eval(24482, v is NotEmptyClassGen<Guid>[], false);
+// Eval(24483, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(24484, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(24485, v is NestedClass, false);
Eval(24486, v is NestedClass[], false);
- Eval(24487, v is NestedClassGen<Decimal>, false);
- Eval(24488, v is NestedClassGen<Decimal>[], false);
+// Eval(24487, v is NestedClassGen<Decimal>, false);
+// Eval(24488, v is NestedClassGen<Decimal>[], false);
Eval(24489, v is ImplementOneInterfaceC, false);
Eval(24490, v is ImplementOneInterfaceC[], false);
Eval(24491, v is ImplementTwoInterfaceC, false);
Eval(24492, v is ImplementTwoInterfaceC[], false);
- Eval(24493, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(24494, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(24495, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(24496, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(24497, v is ImplementAllInterfaceC<int>, false);
- Eval(24498, v is ImplementAllInterfaceC<int>[], false);
+// Eval(24493, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(24494, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(24495, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(24496, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(24497, v is ImplementAllInterfaceC<int>, false);
+// Eval(24498, v is ImplementAllInterfaceC<int>[], false);
Eval(24499, v is SealedClass, false);
Eval(24500, v is SealedClass[], false);
}
@@ -6734,26 +6734,26 @@ internal class Program
Eval(24506, v is NotEmptyStruct[], false);
Eval(24507, v is NotEmptyStruct?, false);
Eval(24508, v is NotEmptyStruct?[], false);
- Eval(24509, v is EmptyStructGen<int>, false);
- Eval(24510, v is EmptyStructGen<int>[], false);
- Eval(24511, v is EmptyStructGen<int>?, false);
- Eval(24512, v is EmptyStructGen<int>?[], false);
- Eval(24513, v is NotEmptyStructGen<Guid>, false);
- Eval(24514, v is NotEmptyStructGen<Guid>[], false);
- Eval(24515, v is NotEmptyStructGen<Guid>?, false);
- Eval(24516, v is NotEmptyStructGen<Guid>?[], false);
- Eval(24517, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(24518, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(24519, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(24520, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(24509, v is EmptyStructGen<int>, false);
+// Eval(24510, v is EmptyStructGen<int>[], false);
+// Eval(24511, v is EmptyStructGen<int>?, false);
+// Eval(24512, v is EmptyStructGen<int>?[], false);
+// Eval(24513, v is NotEmptyStructGen<Guid>, false);
+// Eval(24514, v is NotEmptyStructGen<Guid>[], false);
+// Eval(24515, v is NotEmptyStructGen<Guid>?, false);
+// Eval(24516, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(24517, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(24518, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(24519, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(24520, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(24521, v is NestedStruct, false);
Eval(24522, v is NestedStruct[], false);
Eval(24523, v is NestedStruct?, false);
Eval(24524, v is NestedStruct?[], false);
- Eval(24525, v is NestedStructGen<Decimal>, false);
- Eval(24526, v is NestedStructGen<Decimal>[], false);
- Eval(24527, v is NestedStructGen<Decimal>?, false);
- Eval(24528, v is NestedStructGen<Decimal>?[], false);
+// Eval(24525, v is NestedStructGen<Decimal>, false);
+// Eval(24526, v is NestedStructGen<Decimal>[], false);
+// Eval(24527, v is NestedStructGen<Decimal>?, false);
+// Eval(24528, v is NestedStructGen<Decimal>?[], false);
Eval(24529, v is ExplicitFieldOffsetStruct, false);
Eval(24530, v is ExplicitFieldOffsetStruct[], false);
Eval(24531, v is ExplicitFieldOffsetStruct?, false);
@@ -6770,18 +6770,18 @@ internal class Program
Eval(24550, v is ImplementTwoInterface[], false);
Eval(24551, v is ImplementTwoInterface?, false);
Eval(24552, v is ImplementTwoInterface?[], false);
- Eval(24553, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(24554, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(24555, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(24556, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(24557, v is ImplementTwoInterfaceGen<int>, false);
- Eval(24558, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(24559, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(24560, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(24561, v is ImplementAllInterface<int>, false);
- Eval(24562, v is ImplementAllInterface<int>[], false);
- Eval(24563, v is ImplementAllInterface<int>?, false);
- Eval(24564, v is ImplementAllInterface<int>?[], false);
+// Eval(24553, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(24554, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(24555, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(24556, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(24557, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(24558, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(24559, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(24560, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(24561, v is ImplementAllInterface<int>, false);
+// Eval(24562, v is ImplementAllInterface<int>[], false);
+// Eval(24563, v is ImplementAllInterface<int>?, false);
+// Eval(24564, v is ImplementAllInterface<int>?[], false);
Eval(24565, v is IntE, false);
Eval(24566, v is IntE[], false);
Eval(24567, v is IntE?, false);
@@ -6880,38 +6880,38 @@ internal class Program
Eval(24660, v is IEmpty[], false);
Eval(24661, v is INotEmpty, false);
Eval(24662, v is INotEmpty[], false);
- Eval(24663, v is IEmptyGen<int>, false);
- Eval(24664, v is IEmptyGen<int>[], false);
- Eval(24665, v is INotEmptyGen<int>, false);
- Eval(24666, v is INotEmptyGen<int>[], false);
+// Eval(24663, v is IEmptyGen<int>, false);
+// Eval(24664, v is IEmptyGen<int>[], false);
+// Eval(24665, v is INotEmptyGen<int>, false);
+// Eval(24666, v is INotEmptyGen<int>[], false);
Eval(24667, v is SimpleDelegate, false);
Eval(24668, v is SimpleDelegate[], false);
- Eval(24669, v is GenericDelegate<int>, false);
- Eval(24670, v is GenericDelegate<int>[], false);
+// Eval(24669, v is GenericDelegate<int>, false);
+// Eval(24670, v is GenericDelegate<int>[], false);
Eval(24671, v is EmptyClass, false);
Eval(24672, v is EmptyClass[], false);
Eval(24673, v is NotEmptyClass, false);
Eval(24674, v is NotEmptyClass[], false);
- Eval(24675, v is EmptyClassGen<int>, false);
- Eval(24676, v is EmptyClassGen<int>[], false);
- Eval(24677, v is NotEmptyClassGen<Guid>, false);
- Eval(24678, v is NotEmptyClassGen<Guid>[], false);
- Eval(24679, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(24680, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(24675, v is EmptyClassGen<int>, false);
+// Eval(24676, v is EmptyClassGen<int>[], false);
+// Eval(24677, v is NotEmptyClassGen<Guid>, false);
+// Eval(24678, v is NotEmptyClassGen<Guid>[], false);
+// Eval(24679, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(24680, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(24681, v is NestedClass, false);
Eval(24682, v is NestedClass[], false);
- Eval(24683, v is NestedClassGen<Decimal>, false);
- Eval(24684, v is NestedClassGen<Decimal>[], false);
+// Eval(24683, v is NestedClassGen<Decimal>, false);
+// Eval(24684, v is NestedClassGen<Decimal>[], false);
Eval(24685, v is ImplementOneInterfaceC, false);
Eval(24686, v is ImplementOneInterfaceC[], false);
Eval(24687, v is ImplementTwoInterfaceC, false);
Eval(24688, v is ImplementTwoInterfaceC[], false);
- Eval(24689, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(24690, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(24691, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(24692, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(24693, v is ImplementAllInterfaceC<int>, false);
- Eval(24694, v is ImplementAllInterfaceC<int>[], false);
+// Eval(24689, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(24690, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(24691, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(24692, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(24693, v is ImplementAllInterfaceC<int>, false);
+// Eval(24694, v is ImplementAllInterfaceC<int>[], false);
Eval(24695, v is SealedClass, false);
Eval(24696, v is SealedClass[], false);
}
@@ -6925,26 +6925,26 @@ internal class Program
Eval(24702, v is NotEmptyStruct[], false);
Eval(24703, v is NotEmptyStruct?, false);
Eval(24704, v is NotEmptyStruct?[], false);
- Eval(24705, v is EmptyStructGen<int>, false);
- Eval(24706, v is EmptyStructGen<int>[], false);
- Eval(24707, v is EmptyStructGen<int>?, false);
- Eval(24708, v is EmptyStructGen<int>?[], false);
- Eval(24709, v is NotEmptyStructGen<Guid>, false);
- Eval(24710, v is NotEmptyStructGen<Guid>[], false);
- Eval(24711, v is NotEmptyStructGen<Guid>?, false);
- Eval(24712, v is NotEmptyStructGen<Guid>?[], false);
- Eval(24713, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(24714, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(24715, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(24716, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(24705, v is EmptyStructGen<int>, false);
+// Eval(24706, v is EmptyStructGen<int>[], false);
+// Eval(24707, v is EmptyStructGen<int>?, false);
+// Eval(24708, v is EmptyStructGen<int>?[], false);
+// Eval(24709, v is NotEmptyStructGen<Guid>, false);
+// Eval(24710, v is NotEmptyStructGen<Guid>[], false);
+// Eval(24711, v is NotEmptyStructGen<Guid>?, false);
+// Eval(24712, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(24713, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(24714, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(24715, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(24716, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(24717, v is NestedStruct, false);
Eval(24718, v is NestedStruct[], false);
Eval(24719, v is NestedStruct?, false);
Eval(24720, v is NestedStruct?[], false);
- Eval(24721, v is NestedStructGen<Decimal>, false);
- Eval(24722, v is NestedStructGen<Decimal>[], false);
- Eval(24723, v is NestedStructGen<Decimal>?, false);
- Eval(24724, v is NestedStructGen<Decimal>?[], false);
+// Eval(24721, v is NestedStructGen<Decimal>, false);
+// Eval(24722, v is NestedStructGen<Decimal>[], false);
+// Eval(24723, v is NestedStructGen<Decimal>?, false);
+// Eval(24724, v is NestedStructGen<Decimal>?[], false);
Eval(24725, v is ExplicitFieldOffsetStruct, false);
Eval(24726, v is ExplicitFieldOffsetStruct[], false);
Eval(24727, v is ExplicitFieldOffsetStruct?, false);
@@ -6961,18 +6961,18 @@ internal class Program
Eval(24746, v is ImplementTwoInterface[], false);
Eval(24747, v is ImplementTwoInterface?, false);
Eval(24748, v is ImplementTwoInterface?[], false);
- Eval(24749, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(24750, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(24751, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(24752, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(24753, v is ImplementTwoInterfaceGen<int>, false);
- Eval(24754, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(24755, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(24756, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(24757, v is ImplementAllInterface<int>, false);
- Eval(24758, v is ImplementAllInterface<int>[], false);
- Eval(24759, v is ImplementAllInterface<int>?, false);
- Eval(24760, v is ImplementAllInterface<int>?[], false);
+// Eval(24749, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(24750, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(24751, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(24752, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(24753, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(24754, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(24755, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(24756, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(24757, v is ImplementAllInterface<int>, false);
+// Eval(24758, v is ImplementAllInterface<int>[], false);
+// Eval(24759, v is ImplementAllInterface<int>?, false);
+// Eval(24760, v is ImplementAllInterface<int>?[], false);
Eval(24761, v is IntE, false);
Eval(24762, v is IntE[], false);
Eval(24763, v is IntE?, false);
@@ -7071,38 +7071,38 @@ internal class Program
Eval(24856, v is IEmpty[], false);
Eval(24857, v is INotEmpty, false);
Eval(24858, v is INotEmpty[], false);
- Eval(24859, v is IEmptyGen<int>, false);
- Eval(24860, v is IEmptyGen<int>[], false);
- Eval(24861, v is INotEmptyGen<int>, false);
- Eval(24862, v is INotEmptyGen<int>[], false);
+// Eval(24859, v is IEmptyGen<int>, false);
+// Eval(24860, v is IEmptyGen<int>[], false);
+// Eval(24861, v is INotEmptyGen<int>, false);
+// Eval(24862, v is INotEmptyGen<int>[], false);
Eval(24863, v is SimpleDelegate, false);
Eval(24864, v is SimpleDelegate[], false);
- Eval(24865, v is GenericDelegate<int>, false);
- Eval(24866, v is GenericDelegate<int>[], false);
+// Eval(24865, v is GenericDelegate<int>, false);
+// Eval(24866, v is GenericDelegate<int>[], false);
Eval(24867, v is EmptyClass, false);
Eval(24868, v is EmptyClass[], false);
Eval(24869, v is NotEmptyClass, false);
Eval(24870, v is NotEmptyClass[], false);
- Eval(24871, v is EmptyClassGen<int>, false);
- Eval(24872, v is EmptyClassGen<int>[], false);
- Eval(24873, v is NotEmptyClassGen<Guid>, false);
- Eval(24874, v is NotEmptyClassGen<Guid>[], false);
- Eval(24875, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(24876, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(24871, v is EmptyClassGen<int>, false);
+// Eval(24872, v is EmptyClassGen<int>[], false);
+// Eval(24873, v is NotEmptyClassGen<Guid>, false);
+// Eval(24874, v is NotEmptyClassGen<Guid>[], false);
+// Eval(24875, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(24876, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(24877, v is NestedClass, false);
Eval(24878, v is NestedClass[], false);
- Eval(24879, v is NestedClassGen<Decimal>, false);
- Eval(24880, v is NestedClassGen<Decimal>[], false);
+// Eval(24879, v is NestedClassGen<Decimal>, false);
+// Eval(24880, v is NestedClassGen<Decimal>[], false);
Eval(24881, v is ImplementOneInterfaceC, false);
Eval(24882, v is ImplementOneInterfaceC[], false);
Eval(24883, v is ImplementTwoInterfaceC, false);
Eval(24884, v is ImplementTwoInterfaceC[], false);
- Eval(24885, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(24886, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(24887, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(24888, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(24889, v is ImplementAllInterfaceC<int>, false);
- Eval(24890, v is ImplementAllInterfaceC<int>[], false);
+// Eval(24885, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(24886, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(24887, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(24888, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(24889, v is ImplementAllInterfaceC<int>, false);
+// Eval(24890, v is ImplementAllInterfaceC<int>[], false);
Eval(24891, v is SealedClass, false);
Eval(24892, v is SealedClass[], false);
}
@@ -7116,26 +7116,26 @@ internal class Program
Eval(24898, v is NotEmptyStruct[], false);
Eval(24899, v is NotEmptyStruct?, false);
Eval(24900, v is NotEmptyStruct?[], false);
- Eval(24901, v is EmptyStructGen<int>, false);
- Eval(24902, v is EmptyStructGen<int>[], false);
- Eval(24903, v is EmptyStructGen<int>?, false);
- Eval(24904, v is EmptyStructGen<int>?[], false);
- Eval(24905, v is NotEmptyStructGen<Guid>, false);
- Eval(24906, v is NotEmptyStructGen<Guid>[], false);
- Eval(24907, v is NotEmptyStructGen<Guid>?, false);
- Eval(24908, v is NotEmptyStructGen<Guid>?[], false);
- Eval(24909, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(24910, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(24911, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(24912, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(24901, v is EmptyStructGen<int>, false);
+// Eval(24902, v is EmptyStructGen<int>[], false);
+// Eval(24903, v is EmptyStructGen<int>?, false);
+// Eval(24904, v is EmptyStructGen<int>?[], false);
+// Eval(24905, v is NotEmptyStructGen<Guid>, false);
+// Eval(24906, v is NotEmptyStructGen<Guid>[], false);
+// Eval(24907, v is NotEmptyStructGen<Guid>?, false);
+// Eval(24908, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(24909, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(24910, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(24911, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(24912, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(24913, v is NestedStruct, false);
Eval(24914, v is NestedStruct[], false);
Eval(24915, v is NestedStruct?, false);
Eval(24916, v is NestedStruct?[], false);
- Eval(24917, v is NestedStructGen<Decimal>, false);
- Eval(24918, v is NestedStructGen<Decimal>[], false);
- Eval(24919, v is NestedStructGen<Decimal>?, false);
- Eval(24920, v is NestedStructGen<Decimal>?[], false);
+// Eval(24917, v is NestedStructGen<Decimal>, false);
+// Eval(24918, v is NestedStructGen<Decimal>[], false);
+// Eval(24919, v is NestedStructGen<Decimal>?, false);
+// Eval(24920, v is NestedStructGen<Decimal>?[], false);
Eval(24921, v is ExplicitFieldOffsetStruct, false);
Eval(24922, v is ExplicitFieldOffsetStruct[], false);
Eval(24923, v is ExplicitFieldOffsetStruct?, false);
@@ -7152,18 +7152,18 @@ internal class Program
Eval(24942, v is ImplementTwoInterface[], false);
Eval(24943, v is ImplementTwoInterface?, false);
Eval(24944, v is ImplementTwoInterface?[], false);
- Eval(24945, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(24946, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(24947, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(24948, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(24949, v is ImplementTwoInterfaceGen<int>, false);
- Eval(24950, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(24951, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(24952, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(24953, v is ImplementAllInterface<int>, false);
- Eval(24954, v is ImplementAllInterface<int>[], false);
- Eval(24955, v is ImplementAllInterface<int>?, false);
- Eval(24956, v is ImplementAllInterface<int>?[], false);
+// Eval(24945, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(24946, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(24947, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(24948, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(24949, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(24950, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(24951, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(24952, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(24953, v is ImplementAllInterface<int>, false);
+// Eval(24954, v is ImplementAllInterface<int>[], false);
+// Eval(24955, v is ImplementAllInterface<int>?, false);
+// Eval(24956, v is ImplementAllInterface<int>?[], false);
Eval(24957, v is IntE, false);
Eval(24958, v is IntE[], false);
Eval(24959, v is IntE?, false);
@@ -7262,38 +7262,38 @@ internal class Program
Eval(25052, v is IEmpty[], false);
Eval(25053, v is INotEmpty, false);
Eval(25054, v is INotEmpty[], false);
- Eval(25055, v is IEmptyGen<int>, false);
- Eval(25056, v is IEmptyGen<int>[], false);
- Eval(25057, v is INotEmptyGen<int>, false);
- Eval(25058, v is INotEmptyGen<int>[], false);
+// Eval(25055, v is IEmptyGen<int>, false);
+// Eval(25056, v is IEmptyGen<int>[], false);
+// Eval(25057, v is INotEmptyGen<int>, false);
+// Eval(25058, v is INotEmptyGen<int>[], false);
Eval(25059, v is SimpleDelegate, false);
Eval(25060, v is SimpleDelegate[], false);
- Eval(25061, v is GenericDelegate<int>, false);
- Eval(25062, v is GenericDelegate<int>[], false);
+// Eval(25061, v is GenericDelegate<int>, false);
+// Eval(25062, v is GenericDelegate<int>[], false);
Eval(25063, v is EmptyClass, false);
Eval(25064, v is EmptyClass[], false);
Eval(25065, v is NotEmptyClass, false);
Eval(25066, v is NotEmptyClass[], false);
- Eval(25067, v is EmptyClassGen<int>, false);
- Eval(25068, v is EmptyClassGen<int>[], false);
- Eval(25069, v is NotEmptyClassGen<Guid>, false);
- Eval(25070, v is NotEmptyClassGen<Guid>[], false);
- Eval(25071, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(25072, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(25067, v is EmptyClassGen<int>, false);
+// Eval(25068, v is EmptyClassGen<int>[], false);
+// Eval(25069, v is NotEmptyClassGen<Guid>, false);
+// Eval(25070, v is NotEmptyClassGen<Guid>[], false);
+// Eval(25071, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(25072, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(25073, v is NestedClass, false);
Eval(25074, v is NestedClass[], false);
- Eval(25075, v is NestedClassGen<Decimal>, false);
- Eval(25076, v is NestedClassGen<Decimal>[], false);
+// Eval(25075, v is NestedClassGen<Decimal>, false);
+// Eval(25076, v is NestedClassGen<Decimal>[], false);
Eval(25077, v is ImplementOneInterfaceC, false);
Eval(25078, v is ImplementOneInterfaceC[], false);
Eval(25079, v is ImplementTwoInterfaceC, false);
Eval(25080, v is ImplementTwoInterfaceC[], false);
- Eval(25081, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(25082, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(25083, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(25084, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(25085, v is ImplementAllInterfaceC<int>, false);
- Eval(25086, v is ImplementAllInterfaceC<int>[], false);
+// Eval(25081, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(25082, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(25083, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(25084, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(25085, v is ImplementAllInterfaceC<int>, false);
+// Eval(25086, v is ImplementAllInterfaceC<int>[], false);
Eval(25087, v is SealedClass, false);
Eval(25088, v is SealedClass[], false);
}
@@ -7307,26 +7307,26 @@ internal class Program
Eval(25094, v is NotEmptyStruct[], false);
Eval(25095, v is NotEmptyStruct?, false);
Eval(25096, v is NotEmptyStruct?[], false);
- Eval(25097, v is EmptyStructGen<int>, false);
- Eval(25098, v is EmptyStructGen<int>[], false);
- Eval(25099, v is EmptyStructGen<int>?, false);
- Eval(25100, v is EmptyStructGen<int>?[], false);
- Eval(25101, v is NotEmptyStructGen<Guid>, false);
- Eval(25102, v is NotEmptyStructGen<Guid>[], false);
- Eval(25103, v is NotEmptyStructGen<Guid>?, false);
- Eval(25104, v is NotEmptyStructGen<Guid>?[], false);
- Eval(25105, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(25106, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(25107, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(25108, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(25097, v is EmptyStructGen<int>, false);
+// Eval(25098, v is EmptyStructGen<int>[], false);
+// Eval(25099, v is EmptyStructGen<int>?, false);
+// Eval(25100, v is EmptyStructGen<int>?[], false);
+// Eval(25101, v is NotEmptyStructGen<Guid>, false);
+// Eval(25102, v is NotEmptyStructGen<Guid>[], false);
+// Eval(25103, v is NotEmptyStructGen<Guid>?, false);
+// Eval(25104, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(25105, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(25106, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(25107, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(25108, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(25109, v is NestedStruct, false);
Eval(25110, v is NestedStruct[], false);
Eval(25111, v is NestedStruct?, false);
Eval(25112, v is NestedStruct?[], false);
- Eval(25113, v is NestedStructGen<Decimal>, false);
- Eval(25114, v is NestedStructGen<Decimal>[], false);
- Eval(25115, v is NestedStructGen<Decimal>?, false);
- Eval(25116, v is NestedStructGen<Decimal>?[], false);
+// Eval(25113, v is NestedStructGen<Decimal>, false);
+// Eval(25114, v is NestedStructGen<Decimal>[], false);
+// Eval(25115, v is NestedStructGen<Decimal>?, false);
+// Eval(25116, v is NestedStructGen<Decimal>?[], false);
Eval(25117, v is ExplicitFieldOffsetStruct, false);
Eval(25118, v is ExplicitFieldOffsetStruct[], false);
Eval(25119, v is ExplicitFieldOffsetStruct?, false);
@@ -7343,18 +7343,18 @@ internal class Program
Eval(25138, v is ImplementTwoInterface[], false);
Eval(25139, v is ImplementTwoInterface?, false);
Eval(25140, v is ImplementTwoInterface?[], false);
- Eval(25141, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(25142, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(25143, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(25144, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(25145, v is ImplementTwoInterfaceGen<int>, false);
- Eval(25146, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(25147, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(25148, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(25149, v is ImplementAllInterface<int>, false);
- Eval(25150, v is ImplementAllInterface<int>[], false);
- Eval(25151, v is ImplementAllInterface<int>?, false);
- Eval(25152, v is ImplementAllInterface<int>?[], false);
+// Eval(25141, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(25142, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(25143, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(25144, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(25145, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(25146, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(25147, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(25148, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(25149, v is ImplementAllInterface<int>, false);
+// Eval(25150, v is ImplementAllInterface<int>[], false);
+// Eval(25151, v is ImplementAllInterface<int>?, false);
+// Eval(25152, v is ImplementAllInterface<int>?[], false);
Eval(25153, v is IntE, false);
Eval(25154, v is IntE[], false);
Eval(25155, v is IntE?, false);
@@ -7453,38 +7453,38 @@ internal class Program
Eval(25248, v is IEmpty[], false);
Eval(25249, v is INotEmpty, false);
Eval(25250, v is INotEmpty[], false);
- Eval(25251, v is IEmptyGen<int>, false);
- Eval(25252, v is IEmptyGen<int>[], false);
- Eval(25253, v is INotEmptyGen<int>, false);
- Eval(25254, v is INotEmptyGen<int>[], false);
+// Eval(25251, v is IEmptyGen<int>, false);
+// Eval(25252, v is IEmptyGen<int>[], false);
+// Eval(25253, v is INotEmptyGen<int>, false);
+// Eval(25254, v is INotEmptyGen<int>[], false);
Eval(25255, v is SimpleDelegate, false);
Eval(25256, v is SimpleDelegate[], false);
- Eval(25257, v is GenericDelegate<int>, false);
- Eval(25258, v is GenericDelegate<int>[], false);
+// Eval(25257, v is GenericDelegate<int>, false);
+// Eval(25258, v is GenericDelegate<int>[], false);
Eval(25259, v is EmptyClass, false);
Eval(25260, v is EmptyClass[], false);
Eval(25261, v is NotEmptyClass, false);
Eval(25262, v is NotEmptyClass[], false);
- Eval(25263, v is EmptyClassGen<int>, false);
- Eval(25264, v is EmptyClassGen<int>[], false);
- Eval(25265, v is NotEmptyClassGen<Guid>, false);
- Eval(25266, v is NotEmptyClassGen<Guid>[], false);
- Eval(25267, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(25268, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(25263, v is EmptyClassGen<int>, false);
+// Eval(25264, v is EmptyClassGen<int>[], false);
+// Eval(25265, v is NotEmptyClassGen<Guid>, false);
+// Eval(25266, v is NotEmptyClassGen<Guid>[], false);
+// Eval(25267, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(25268, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(25269, v is NestedClass, false);
Eval(25270, v is NestedClass[], false);
- Eval(25271, v is NestedClassGen<Decimal>, false);
- Eval(25272, v is NestedClassGen<Decimal>[], false);
+// Eval(25271, v is NestedClassGen<Decimal>, false);
+// Eval(25272, v is NestedClassGen<Decimal>[], false);
Eval(25273, v is ImplementOneInterfaceC, false);
Eval(25274, v is ImplementOneInterfaceC[], false);
Eval(25275, v is ImplementTwoInterfaceC, false);
Eval(25276, v is ImplementTwoInterfaceC[], false);
- Eval(25277, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(25278, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(25279, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(25280, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(25281, v is ImplementAllInterfaceC<int>, false);
- Eval(25282, v is ImplementAllInterfaceC<int>[], false);
+// Eval(25277, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(25278, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(25279, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(25280, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(25281, v is ImplementAllInterfaceC<int>, false);
+// Eval(25282, v is ImplementAllInterfaceC<int>[], false);
Eval(25283, v is SealedClass, false);
Eval(25284, v is SealedClass[], false);
}
@@ -7498,26 +7498,26 @@ internal class Program
Eval(25290, v is NotEmptyStruct[], false);
Eval(25291, v is NotEmptyStruct?, false);
Eval(25292, v is NotEmptyStruct?[], false);
- Eval(25293, v is EmptyStructGen<int>, false);
- Eval(25294, v is EmptyStructGen<int>[], false);
- Eval(25295, v is EmptyStructGen<int>?, false);
- Eval(25296, v is EmptyStructGen<int>?[], false);
- Eval(25297, v is NotEmptyStructGen<Guid>, false);
- Eval(25298, v is NotEmptyStructGen<Guid>[], false);
- Eval(25299, v is NotEmptyStructGen<Guid>?, false);
- Eval(25300, v is NotEmptyStructGen<Guid>?[], false);
- Eval(25301, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(25302, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(25303, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(25304, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(25293, v is EmptyStructGen<int>, false);
+// Eval(25294, v is EmptyStructGen<int>[], false);
+// Eval(25295, v is EmptyStructGen<int>?, false);
+// Eval(25296, v is EmptyStructGen<int>?[], false);
+// Eval(25297, v is NotEmptyStructGen<Guid>, false);
+// Eval(25298, v is NotEmptyStructGen<Guid>[], false);
+// Eval(25299, v is NotEmptyStructGen<Guid>?, false);
+// Eval(25300, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(25301, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(25302, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(25303, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(25304, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(25305, v is NestedStruct, false);
Eval(25306, v is NestedStruct[], false);
Eval(25307, v is NestedStruct?, false);
Eval(25308, v is NestedStruct?[], false);
- Eval(25309, v is NestedStructGen<Decimal>, false);
- Eval(25310, v is NestedStructGen<Decimal>[], false);
- Eval(25311, v is NestedStructGen<Decimal>?, false);
- Eval(25312, v is NestedStructGen<Decimal>?[], false);
+// Eval(25309, v is NestedStructGen<Decimal>, false);
+// Eval(25310, v is NestedStructGen<Decimal>[], false);
+// Eval(25311, v is NestedStructGen<Decimal>?, false);
+// Eval(25312, v is NestedStructGen<Decimal>?[], false);
Eval(25313, v is ExplicitFieldOffsetStruct, false);
Eval(25314, v is ExplicitFieldOffsetStruct[], false);
Eval(25315, v is ExplicitFieldOffsetStruct?, false);
@@ -7534,18 +7534,18 @@ internal class Program
Eval(25334, v is ImplementTwoInterface[], false);
Eval(25335, v is ImplementTwoInterface?, false);
Eval(25336, v is ImplementTwoInterface?[], false);
- Eval(25337, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(25338, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(25339, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(25340, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(25341, v is ImplementTwoInterfaceGen<int>, false);
- Eval(25342, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(25343, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(25344, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(25345, v is ImplementAllInterface<int>, false);
- Eval(25346, v is ImplementAllInterface<int>[], false);
- Eval(25347, v is ImplementAllInterface<int>?, false);
- Eval(25348, v is ImplementAllInterface<int>?[], false);
+// Eval(25337, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(25338, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(25339, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(25340, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(25341, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(25342, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(25343, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(25344, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(25345, v is ImplementAllInterface<int>, false);
+// Eval(25346, v is ImplementAllInterface<int>[], false);
+// Eval(25347, v is ImplementAllInterface<int>?, false);
+// Eval(25348, v is ImplementAllInterface<int>?[], false);
Eval(25349, v is IntE, false);
Eval(25350, v is IntE[], false);
Eval(25351, v is IntE?, false);
@@ -7644,38 +7644,38 @@ internal class Program
Eval(25444, v is IEmpty[], false);
Eval(25445, v is INotEmpty, false);
Eval(25446, v is INotEmpty[], false);
- Eval(25447, v is IEmptyGen<int>, false);
- Eval(25448, v is IEmptyGen<int>[], false);
- Eval(25449, v is INotEmptyGen<int>, false);
- Eval(25450, v is INotEmptyGen<int>[], false);
+// Eval(25447, v is IEmptyGen<int>, false);
+// Eval(25448, v is IEmptyGen<int>[], false);
+// Eval(25449, v is INotEmptyGen<int>, false);
+// Eval(25450, v is INotEmptyGen<int>[], false);
Eval(25451, v is SimpleDelegate, false);
Eval(25452, v is SimpleDelegate[], false);
- Eval(25453, v is GenericDelegate<int>, false);
- Eval(25454, v is GenericDelegate<int>[], false);
+// Eval(25453, v is GenericDelegate<int>, false);
+// Eval(25454, v is GenericDelegate<int>[], false);
Eval(25455, v is EmptyClass, false);
Eval(25456, v is EmptyClass[], false);
Eval(25457, v is NotEmptyClass, false);
Eval(25458, v is NotEmptyClass[], false);
- Eval(25459, v is EmptyClassGen<int>, false);
- Eval(25460, v is EmptyClassGen<int>[], false);
- Eval(25461, v is NotEmptyClassGen<Guid>, false);
- Eval(25462, v is NotEmptyClassGen<Guid>[], false);
- Eval(25463, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(25464, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(25459, v is EmptyClassGen<int>, false);
+// Eval(25460, v is EmptyClassGen<int>[], false);
+// Eval(25461, v is NotEmptyClassGen<Guid>, false);
+// Eval(25462, v is NotEmptyClassGen<Guid>[], false);
+// Eval(25463, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(25464, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(25465, v is NestedClass, false);
Eval(25466, v is NestedClass[], false);
- Eval(25467, v is NestedClassGen<Decimal>, false);
- Eval(25468, v is NestedClassGen<Decimal>[], false);
+// Eval(25467, v is NestedClassGen<Decimal>, false);
+// Eval(25468, v is NestedClassGen<Decimal>[], false);
Eval(25469, v is ImplementOneInterfaceC, false);
Eval(25470, v is ImplementOneInterfaceC[], false);
Eval(25471, v is ImplementTwoInterfaceC, false);
Eval(25472, v is ImplementTwoInterfaceC[], false);
- Eval(25473, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(25474, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(25475, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(25476, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(25477, v is ImplementAllInterfaceC<int>, false);
- Eval(25478, v is ImplementAllInterfaceC<int>[], false);
+// Eval(25473, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(25474, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(25475, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(25476, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(25477, v is ImplementAllInterfaceC<int>, false);
+// Eval(25478, v is ImplementAllInterfaceC<int>[], false);
Eval(25479, v is SealedClass, false);
Eval(25480, v is SealedClass[], false);
}
@@ -7692,26 +7692,26 @@ internal class Program
Eval(25486, v is NotEmptyStruct[], false);
Eval(25487, v is NotEmptyStruct?, false);
Eval(25488, v is NotEmptyStruct?[], false);
- Eval(25489, v is EmptyStructGen<int>, false);
- Eval(25490, v is EmptyStructGen<int>[], false);
- Eval(25491, v is EmptyStructGen<int>?, false);
- Eval(25492, v is EmptyStructGen<int>?[], false);
- Eval(25493, v is NotEmptyStructGen<Guid>, false);
- Eval(25494, v is NotEmptyStructGen<Guid>[], false);
- Eval(25495, v is NotEmptyStructGen<Guid>?, false);
- Eval(25496, v is NotEmptyStructGen<Guid>?[], false);
- Eval(25497, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(25498, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(25499, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(25500, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(25489, v is EmptyStructGen<int>, false);
+// Eval(25490, v is EmptyStructGen<int>[], false);
+// Eval(25491, v is EmptyStructGen<int>?, false);
+// Eval(25492, v is EmptyStructGen<int>?[], false);
+// Eval(25493, v is NotEmptyStructGen<Guid>, false);
+// Eval(25494, v is NotEmptyStructGen<Guid>[], false);
+// Eval(25495, v is NotEmptyStructGen<Guid>?, false);
+// Eval(25496, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(25497, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(25498, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(25499, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(25500, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(25501, v is NestedStruct, false);
Eval(25502, v is NestedStruct[], false);
Eval(25503, v is NestedStruct?, false);
Eval(25504, v is NestedStruct?[], false);
- Eval(25505, v is NestedStructGen<Decimal>, false);
- Eval(25506, v is NestedStructGen<Decimal>[], false);
- Eval(25507, v is NestedStructGen<Decimal>?, false);
- Eval(25508, v is NestedStructGen<Decimal>?[], false);
+// Eval(25505, v is NestedStructGen<Decimal>, false);
+// Eval(25506, v is NestedStructGen<Decimal>[], false);
+// Eval(25507, v is NestedStructGen<Decimal>?, false);
+// Eval(25508, v is NestedStructGen<Decimal>?[], false);
Eval(25509, v is ExplicitFieldOffsetStruct, false);
Eval(25510, v is ExplicitFieldOffsetStruct[], false);
Eval(25511, v is ExplicitFieldOffsetStruct?, false);
@@ -7728,18 +7728,18 @@ internal class Program
Eval(25530, v is ImplementTwoInterface[], false);
Eval(25531, v is ImplementTwoInterface?, false);
Eval(25532, v is ImplementTwoInterface?[], false);
- Eval(25533, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(25534, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(25535, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(25536, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(25537, v is ImplementTwoInterfaceGen<int>, false);
- Eval(25538, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(25539, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(25540, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(25541, v is ImplementAllInterface<int>, false);
- Eval(25542, v is ImplementAllInterface<int>[], false);
- Eval(25543, v is ImplementAllInterface<int>?, false);
- Eval(25544, v is ImplementAllInterface<int>?[], false);
+// Eval(25533, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(25534, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(25535, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(25536, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(25537, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(25538, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(25539, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(25540, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(25541, v is ImplementAllInterface<int>, false);
+// Eval(25542, v is ImplementAllInterface<int>[], false);
+// Eval(25543, v is ImplementAllInterface<int>?, false);
+// Eval(25544, v is ImplementAllInterface<int>?[], false);
Eval(25545, v is IntE, false);
Eval(25546, v is IntE[], false);
Eval(25547, v is IntE?, false);
@@ -7838,38 +7838,38 @@ internal class Program
Eval(25640, v is IEmpty[], false);
Eval(25641, v is INotEmpty, false);
Eval(25642, v is INotEmpty[], false);
- Eval(25643, v is IEmptyGen<int>, false);
- Eval(25644, v is IEmptyGen<int>[], false);
- Eval(25645, v is INotEmptyGen<int>, false);
- Eval(25646, v is INotEmptyGen<int>[], false);
+// Eval(25643, v is IEmptyGen<int>, false);
+// Eval(25644, v is IEmptyGen<int>[], false);
+// Eval(25645, v is INotEmptyGen<int>, false);
+// Eval(25646, v is INotEmptyGen<int>[], false);
Eval(25647, v is SimpleDelegate, false);
Eval(25648, v is SimpleDelegate[], false);
- Eval(25649, v is GenericDelegate<int>, false);
- Eval(25650, v is GenericDelegate<int>[], false);
+// Eval(25649, v is GenericDelegate<int>, false);
+// Eval(25650, v is GenericDelegate<int>[], false);
Eval(25651, v is EmptyClass, false);
Eval(25652, v is EmptyClass[], false);
Eval(25653, v is NotEmptyClass, false);
Eval(25654, v is NotEmptyClass[], false);
- Eval(25655, v is EmptyClassGen<int>, false);
- Eval(25656, v is EmptyClassGen<int>[], false);
- Eval(25657, v is NotEmptyClassGen<Guid>, false);
- Eval(25658, v is NotEmptyClassGen<Guid>[], false);
- Eval(25659, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(25660, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(25655, v is EmptyClassGen<int>, false);
+// Eval(25656, v is EmptyClassGen<int>[], false);
+// Eval(25657, v is NotEmptyClassGen<Guid>, false);
+// Eval(25658, v is NotEmptyClassGen<Guid>[], false);
+// Eval(25659, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(25660, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(25661, v is NestedClass, false);
Eval(25662, v is NestedClass[], false);
- Eval(25663, v is NestedClassGen<Decimal>, false);
- Eval(25664, v is NestedClassGen<Decimal>[], false);
+// Eval(25663, v is NestedClassGen<Decimal>, false);
+// Eval(25664, v is NestedClassGen<Decimal>[], false);
Eval(25665, v is ImplementOneInterfaceC, false);
Eval(25666, v is ImplementOneInterfaceC[], false);
Eval(25667, v is ImplementTwoInterfaceC, false);
Eval(25668, v is ImplementTwoInterfaceC[], false);
- Eval(25669, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(25670, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(25671, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(25672, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(25673, v is ImplementAllInterfaceC<int>, false);
- Eval(25674, v is ImplementAllInterfaceC<int>[], false);
+// Eval(25669, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(25670, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(25671, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(25672, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(25673, v is ImplementAllInterfaceC<int>, false);
+// Eval(25674, v is ImplementAllInterfaceC<int>[], false);
Eval(25675, v is SealedClass, false);
Eval(25676, v is SealedClass[], false);
}
@@ -7883,26 +7883,26 @@ internal class Program
Eval(25682, v is NotEmptyStruct[], false);
Eval(25683, v is NotEmptyStruct?, false);
Eval(25684, v is NotEmptyStruct?[], false);
- Eval(25685, v is EmptyStructGen<int>, false);
- Eval(25686, v is EmptyStructGen<int>[], false);
- Eval(25687, v is EmptyStructGen<int>?, false);
- Eval(25688, v is EmptyStructGen<int>?[], false);
- Eval(25689, v is NotEmptyStructGen<Guid>, false);
- Eval(25690, v is NotEmptyStructGen<Guid>[], false);
- Eval(25691, v is NotEmptyStructGen<Guid>?, false);
- Eval(25692, v is NotEmptyStructGen<Guid>?[], false);
- Eval(25693, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(25694, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(25695, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(25696, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(25685, v is EmptyStructGen<int>, false);
+// Eval(25686, v is EmptyStructGen<int>[], false);
+// Eval(25687, v is EmptyStructGen<int>?, false);
+// Eval(25688, v is EmptyStructGen<int>?[], false);
+// Eval(25689, v is NotEmptyStructGen<Guid>, false);
+// Eval(25690, v is NotEmptyStructGen<Guid>[], false);
+// Eval(25691, v is NotEmptyStructGen<Guid>?, false);
+// Eval(25692, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(25693, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(25694, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(25695, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(25696, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(25697, v is NestedStruct, false);
Eval(25698, v is NestedStruct[], false);
Eval(25699, v is NestedStruct?, false);
Eval(25700, v is NestedStruct?[], false);
- Eval(25701, v is NestedStructGen<Decimal>, false);
- Eval(25702, v is NestedStructGen<Decimal>[], false);
- Eval(25703, v is NestedStructGen<Decimal>?, false);
- Eval(25704, v is NestedStructGen<Decimal>?[], false);
+// Eval(25701, v is NestedStructGen<Decimal>, false);
+// Eval(25702, v is NestedStructGen<Decimal>[], false);
+// Eval(25703, v is NestedStructGen<Decimal>?, false);
+// Eval(25704, v is NestedStructGen<Decimal>?[], false);
Eval(25705, v is ExplicitFieldOffsetStruct, false);
Eval(25706, v is ExplicitFieldOffsetStruct[], false);
Eval(25707, v is ExplicitFieldOffsetStruct?, false);
@@ -7919,18 +7919,18 @@ internal class Program
Eval(25726, v is ImplementTwoInterface[], false);
Eval(25727, v is ImplementTwoInterface?, false);
Eval(25728, v is ImplementTwoInterface?[], false);
- Eval(25729, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(25730, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(25731, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(25732, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(25733, v is ImplementTwoInterfaceGen<int>, false);
- Eval(25734, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(25735, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(25736, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(25737, v is ImplementAllInterface<int>, false);
- Eval(25738, v is ImplementAllInterface<int>[], false);
- Eval(25739, v is ImplementAllInterface<int>?, false);
- Eval(25740, v is ImplementAllInterface<int>?[], false);
+// Eval(25729, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(25730, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(25731, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(25732, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(25733, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(25734, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(25735, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(25736, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(25737, v is ImplementAllInterface<int>, false);
+// Eval(25738, v is ImplementAllInterface<int>[], false);
+// Eval(25739, v is ImplementAllInterface<int>?, false);
+// Eval(25740, v is ImplementAllInterface<int>?[], false);
Eval(25741, v is IntE, false);
Eval(25742, v is IntE[], false);
Eval(25743, v is IntE?, false);
@@ -8029,38 +8029,38 @@ internal class Program
Eval(25836, v is IEmpty[], false);
Eval(25837, v is INotEmpty, false);
Eval(25838, v is INotEmpty[], false);
- Eval(25839, v is IEmptyGen<int>, false);
- Eval(25840, v is IEmptyGen<int>[], false);
- Eval(25841, v is INotEmptyGen<int>, false);
- Eval(25842, v is INotEmptyGen<int>[], false);
+// Eval(25839, v is IEmptyGen<int>, false);
+// Eval(25840, v is IEmptyGen<int>[], false);
+// Eval(25841, v is INotEmptyGen<int>, false);
+// Eval(25842, v is INotEmptyGen<int>[], false);
Eval(25843, v is SimpleDelegate, false);
Eval(25844, v is SimpleDelegate[], false);
- Eval(25845, v is GenericDelegate<int>, false);
- Eval(25846, v is GenericDelegate<int>[], false);
+// Eval(25845, v is GenericDelegate<int>, false);
+// Eval(25846, v is GenericDelegate<int>[], false);
Eval(25847, v is EmptyClass, false);
Eval(25848, v is EmptyClass[], false);
Eval(25849, v is NotEmptyClass, false);
Eval(25850, v is NotEmptyClass[], false);
- Eval(25851, v is EmptyClassGen<int>, false);
- Eval(25852, v is EmptyClassGen<int>[], false);
- Eval(25853, v is NotEmptyClassGen<Guid>, false);
- Eval(25854, v is NotEmptyClassGen<Guid>[], false);
- Eval(25855, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(25856, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(25851, v is EmptyClassGen<int>, false);
+// Eval(25852, v is EmptyClassGen<int>[], false);
+// Eval(25853, v is NotEmptyClassGen<Guid>, false);
+// Eval(25854, v is NotEmptyClassGen<Guid>[], false);
+// Eval(25855, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(25856, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(25857, v is NestedClass, false);
Eval(25858, v is NestedClass[], false);
- Eval(25859, v is NestedClassGen<Decimal>, false);
- Eval(25860, v is NestedClassGen<Decimal>[], false);
+// Eval(25859, v is NestedClassGen<Decimal>, false);
+// Eval(25860, v is NestedClassGen<Decimal>[], false);
Eval(25861, v is ImplementOneInterfaceC, false);
Eval(25862, v is ImplementOneInterfaceC[], false);
Eval(25863, v is ImplementTwoInterfaceC, false);
Eval(25864, v is ImplementTwoInterfaceC[], false);
- Eval(25865, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(25866, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(25867, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(25868, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(25869, v is ImplementAllInterfaceC<int>, false);
- Eval(25870, v is ImplementAllInterfaceC<int>[], false);
+// Eval(25865, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(25866, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(25867, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(25868, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(25869, v is ImplementAllInterfaceC<int>, false);
+// Eval(25870, v is ImplementAllInterfaceC<int>[], false);
Eval(25871, v is SealedClass, false);
Eval(25872, v is SealedClass[], false);
}
@@ -8074,26 +8074,26 @@ internal class Program
Eval(25878, v is NotEmptyStruct[], false);
Eval(25879, v is NotEmptyStruct?, false);
Eval(25880, v is NotEmptyStruct?[], false);
- Eval(25881, v is EmptyStructGen<int>, false);
- Eval(25882, v is EmptyStructGen<int>[], false);
- Eval(25883, v is EmptyStructGen<int>?, false);
- Eval(25884, v is EmptyStructGen<int>?[], false);
- Eval(25885, v is NotEmptyStructGen<Guid>, false);
- Eval(25886, v is NotEmptyStructGen<Guid>[], false);
- Eval(25887, v is NotEmptyStructGen<Guid>?, false);
- Eval(25888, v is NotEmptyStructGen<Guid>?[], false);
- Eval(25889, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(25890, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(25891, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(25892, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(25881, v is EmptyStructGen<int>, false);
+// Eval(25882, v is EmptyStructGen<int>[], false);
+// Eval(25883, v is EmptyStructGen<int>?, false);
+// Eval(25884, v is EmptyStructGen<int>?[], false);
+// Eval(25885, v is NotEmptyStructGen<Guid>, false);
+// Eval(25886, v is NotEmptyStructGen<Guid>[], false);
+// Eval(25887, v is NotEmptyStructGen<Guid>?, false);
+// Eval(25888, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(25889, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(25890, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(25891, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(25892, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(25893, v is NestedStruct, false);
Eval(25894, v is NestedStruct[], false);
Eval(25895, v is NestedStruct?, false);
Eval(25896, v is NestedStruct?[], false);
- Eval(25897, v is NestedStructGen<Decimal>, false);
- Eval(25898, v is NestedStructGen<Decimal>[], false);
- Eval(25899, v is NestedStructGen<Decimal>?, false);
- Eval(25900, v is NestedStructGen<Decimal>?[], false);
+// Eval(25897, v is NestedStructGen<Decimal>, false);
+// Eval(25898, v is NestedStructGen<Decimal>[], false);
+// Eval(25899, v is NestedStructGen<Decimal>?, false);
+// Eval(25900, v is NestedStructGen<Decimal>?[], false);
Eval(25901, v is ExplicitFieldOffsetStruct, false);
Eval(25902, v is ExplicitFieldOffsetStruct[], false);
Eval(25903, v is ExplicitFieldOffsetStruct?, false);
@@ -8110,18 +8110,18 @@ internal class Program
Eval(25922, v is ImplementTwoInterface[], false);
Eval(25923, v is ImplementTwoInterface?, false);
Eval(25924, v is ImplementTwoInterface?[], false);
- Eval(25925, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(25926, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(25927, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(25928, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(25929, v is ImplementTwoInterfaceGen<int>, false);
- Eval(25930, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(25931, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(25932, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(25933, v is ImplementAllInterface<int>, false);
- Eval(25934, v is ImplementAllInterface<int>[], false);
- Eval(25935, v is ImplementAllInterface<int>?, false);
- Eval(25936, v is ImplementAllInterface<int>?[], false);
+// Eval(25925, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(25926, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(25927, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(25928, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(25929, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(25930, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(25931, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(25932, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(25933, v is ImplementAllInterface<int>, false);
+// Eval(25934, v is ImplementAllInterface<int>[], false);
+// Eval(25935, v is ImplementAllInterface<int>?, false);
+// Eval(25936, v is ImplementAllInterface<int>?[], false);
Eval(25937, v is IntE, false);
Eval(25938, v is IntE[], false);
Eval(25939, v is IntE?, false);
@@ -8220,38 +8220,38 @@ internal class Program
Eval(26032, v is IEmpty[], false);
Eval(26033, v is INotEmpty, false);
Eval(26034, v is INotEmpty[], false);
- Eval(26035, v is IEmptyGen<int>, false);
- Eval(26036, v is IEmptyGen<int>[], false);
- Eval(26037, v is INotEmptyGen<int>, false);
- Eval(26038, v is INotEmptyGen<int>[], false);
+// Eval(26035, v is IEmptyGen<int>, false);
+// Eval(26036, v is IEmptyGen<int>[], false);
+// Eval(26037, v is INotEmptyGen<int>, false);
+// Eval(26038, v is INotEmptyGen<int>[], false);
Eval(26039, v is SimpleDelegate, false);
Eval(26040, v is SimpleDelegate[], false);
- Eval(26041, v is GenericDelegate<int>, false);
- Eval(26042, v is GenericDelegate<int>[], false);
+// Eval(26041, v is GenericDelegate<int>, false);
+// Eval(26042, v is GenericDelegate<int>[], false);
Eval(26043, v is EmptyClass, false);
Eval(26044, v is EmptyClass[], false);
Eval(26045, v is NotEmptyClass, false);
Eval(26046, v is NotEmptyClass[], false);
- Eval(26047, v is EmptyClassGen<int>, false);
- Eval(26048, v is EmptyClassGen<int>[], false);
- Eval(26049, v is NotEmptyClassGen<Guid>, false);
- Eval(26050, v is NotEmptyClassGen<Guid>[], false);
- Eval(26051, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(26052, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(26047, v is EmptyClassGen<int>, false);
+// Eval(26048, v is EmptyClassGen<int>[], false);
+// Eval(26049, v is NotEmptyClassGen<Guid>, false);
+// Eval(26050, v is NotEmptyClassGen<Guid>[], false);
+// Eval(26051, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(26052, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(26053, v is NestedClass, false);
Eval(26054, v is NestedClass[], false);
- Eval(26055, v is NestedClassGen<Decimal>, false);
- Eval(26056, v is NestedClassGen<Decimal>[], false);
+// Eval(26055, v is NestedClassGen<Decimal>, false);
+// Eval(26056, v is NestedClassGen<Decimal>[], false);
Eval(26057, v is ImplementOneInterfaceC, false);
Eval(26058, v is ImplementOneInterfaceC[], false);
Eval(26059, v is ImplementTwoInterfaceC, false);
Eval(26060, v is ImplementTwoInterfaceC[], false);
- Eval(26061, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(26062, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(26063, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(26064, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(26065, v is ImplementAllInterfaceC<int>, false);
- Eval(26066, v is ImplementAllInterfaceC<int>[], false);
+// Eval(26061, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(26062, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(26063, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(26064, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(26065, v is ImplementAllInterfaceC<int>, false);
+// Eval(26066, v is ImplementAllInterfaceC<int>[], false);
Eval(26067, v is SealedClass, false);
Eval(26068, v is SealedClass[], false);
}
@@ -8265,26 +8265,26 @@ internal class Program
Eval(26074, v is NotEmptyStruct[], false);
Eval(26075, v is NotEmptyStruct?, false);
Eval(26076, v is NotEmptyStruct?[], false);
- Eval(26077, v is EmptyStructGen<int>, false);
- Eval(26078, v is EmptyStructGen<int>[], false);
- Eval(26079, v is EmptyStructGen<int>?, false);
- Eval(26080, v is EmptyStructGen<int>?[], false);
- Eval(26081, v is NotEmptyStructGen<Guid>, false);
- Eval(26082, v is NotEmptyStructGen<Guid>[], false);
- Eval(26083, v is NotEmptyStructGen<Guid>?, false);
- Eval(26084, v is NotEmptyStructGen<Guid>?[], false);
- Eval(26085, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(26086, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(26087, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(26088, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(26077, v is EmptyStructGen<int>, false);
+// Eval(26078, v is EmptyStructGen<int>[], false);
+// Eval(26079, v is EmptyStructGen<int>?, false);
+// Eval(26080, v is EmptyStructGen<int>?[], false);
+// Eval(26081, v is NotEmptyStructGen<Guid>, false);
+// Eval(26082, v is NotEmptyStructGen<Guid>[], false);
+// Eval(26083, v is NotEmptyStructGen<Guid>?, false);
+// Eval(26084, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(26085, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(26086, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(26087, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(26088, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(26089, v is NestedStruct, false);
Eval(26090, v is NestedStruct[], false);
Eval(26091, v is NestedStruct?, false);
Eval(26092, v is NestedStruct?[], false);
- Eval(26093, v is NestedStructGen<Decimal>, false);
- Eval(26094, v is NestedStructGen<Decimal>[], false);
- Eval(26095, v is NestedStructGen<Decimal>?, false);
- Eval(26096, v is NestedStructGen<Decimal>?[], false);
+// Eval(26093, v is NestedStructGen<Decimal>, false);
+// Eval(26094, v is NestedStructGen<Decimal>[], false);
+// Eval(26095, v is NestedStructGen<Decimal>?, false);
+// Eval(26096, v is NestedStructGen<Decimal>?[], false);
Eval(26097, v is ExplicitFieldOffsetStruct, false);
Eval(26098, v is ExplicitFieldOffsetStruct[], false);
Eval(26099, v is ExplicitFieldOffsetStruct?, false);
@@ -8301,18 +8301,18 @@ internal class Program
Eval(26118, v is ImplementTwoInterface[], false);
Eval(26119, v is ImplementTwoInterface?, false);
Eval(26120, v is ImplementTwoInterface?[], false);
- Eval(26121, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(26122, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(26123, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(26124, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(26125, v is ImplementTwoInterfaceGen<int>, false);
- Eval(26126, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(26127, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(26128, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(26129, v is ImplementAllInterface<int>, false);
- Eval(26130, v is ImplementAllInterface<int>[], false);
- Eval(26131, v is ImplementAllInterface<int>?, false);
- Eval(26132, v is ImplementAllInterface<int>?[], false);
+// Eval(26121, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(26122, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(26123, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(26124, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(26125, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(26126, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(26127, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(26128, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(26129, v is ImplementAllInterface<int>, false);
+// Eval(26130, v is ImplementAllInterface<int>[], false);
+// Eval(26131, v is ImplementAllInterface<int>?, false);
+// Eval(26132, v is ImplementAllInterface<int>?[], false);
Eval(26133, v is IntE, false);
Eval(26134, v is IntE[], false);
Eval(26135, v is IntE?, false);
@@ -8411,38 +8411,38 @@ internal class Program
Eval(26228, v is IEmpty[], false);
Eval(26229, v is INotEmpty, false);
Eval(26230, v is INotEmpty[], false);
- Eval(26231, v is IEmptyGen<int>, false);
- Eval(26232, v is IEmptyGen<int>[], false);
- Eval(26233, v is INotEmptyGen<int>, false);
- Eval(26234, v is INotEmptyGen<int>[], false);
+// Eval(26231, v is IEmptyGen<int>, false);
+// Eval(26232, v is IEmptyGen<int>[], false);
+// Eval(26233, v is INotEmptyGen<int>, false);
+// Eval(26234, v is INotEmptyGen<int>[], false);
Eval(26235, v is SimpleDelegate, false);
Eval(26236, v is SimpleDelegate[], false);
- Eval(26237, v is GenericDelegate<int>, false);
- Eval(26238, v is GenericDelegate<int>[], false);
+// Eval(26237, v is GenericDelegate<int>, false);
+// Eval(26238, v is GenericDelegate<int>[], false);
Eval(26239, v is EmptyClass, false);
Eval(26240, v is EmptyClass[], false);
Eval(26241, v is NotEmptyClass, false);
Eval(26242, v is NotEmptyClass[], false);
- Eval(26243, v is EmptyClassGen<int>, false);
- Eval(26244, v is EmptyClassGen<int>[], false);
- Eval(26245, v is NotEmptyClassGen<Guid>, false);
- Eval(26246, v is NotEmptyClassGen<Guid>[], false);
- Eval(26247, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(26248, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(26243, v is EmptyClassGen<int>, false);
+// Eval(26244, v is EmptyClassGen<int>[], false);
+// Eval(26245, v is NotEmptyClassGen<Guid>, false);
+// Eval(26246, v is NotEmptyClassGen<Guid>[], false);
+// Eval(26247, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(26248, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(26249, v is NestedClass, false);
Eval(26250, v is NestedClass[], false);
- Eval(26251, v is NestedClassGen<Decimal>, false);
- Eval(26252, v is NestedClassGen<Decimal>[], false);
+// Eval(26251, v is NestedClassGen<Decimal>, false);
+// Eval(26252, v is NestedClassGen<Decimal>[], false);
Eval(26253, v is ImplementOneInterfaceC, false);
Eval(26254, v is ImplementOneInterfaceC[], false);
Eval(26255, v is ImplementTwoInterfaceC, false);
Eval(26256, v is ImplementTwoInterfaceC[], false);
- Eval(26257, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(26258, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(26259, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(26260, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(26261, v is ImplementAllInterfaceC<int>, false);
- Eval(26262, v is ImplementAllInterfaceC<int>[], false);
+// Eval(26257, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(26258, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(26259, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(26260, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(26261, v is ImplementAllInterfaceC<int>, false);
+// Eval(26262, v is ImplementAllInterfaceC<int>[], false);
Eval(26263, v is SealedClass, false);
Eval(26264, v is SealedClass[], false);
}
@@ -8456,26 +8456,26 @@ internal class Program
Eval(26270, v is NotEmptyStruct[], false);
Eval(26271, v is NotEmptyStruct?, false);
Eval(26272, v is NotEmptyStruct?[], false);
- Eval(26273, v is EmptyStructGen<int>, false);
- Eval(26274, v is EmptyStructGen<int>[], false);
- Eval(26275, v is EmptyStructGen<int>?, false);
- Eval(26276, v is EmptyStructGen<int>?[], false);
- Eval(26277, v is NotEmptyStructGen<Guid>, false);
- Eval(26278, v is NotEmptyStructGen<Guid>[], false);
- Eval(26279, v is NotEmptyStructGen<Guid>?, false);
- Eval(26280, v is NotEmptyStructGen<Guid>?[], false);
- Eval(26281, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(26282, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(26283, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(26284, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(26273, v is EmptyStructGen<int>, false);
+// Eval(26274, v is EmptyStructGen<int>[], false);
+// Eval(26275, v is EmptyStructGen<int>?, false);
+// Eval(26276, v is EmptyStructGen<int>?[], false);
+// Eval(26277, v is NotEmptyStructGen<Guid>, false);
+// Eval(26278, v is NotEmptyStructGen<Guid>[], false);
+// Eval(26279, v is NotEmptyStructGen<Guid>?, false);
+// Eval(26280, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(26281, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(26282, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(26283, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(26284, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(26285, v is NestedStruct, false);
Eval(26286, v is NestedStruct[], false);
Eval(26287, v is NestedStruct?, false);
Eval(26288, v is NestedStruct?[], false);
- Eval(26289, v is NestedStructGen<Decimal>, false);
- Eval(26290, v is NestedStructGen<Decimal>[], false);
- Eval(26291, v is NestedStructGen<Decimal>?, false);
- Eval(26292, v is NestedStructGen<Decimal>?[], false);
+// Eval(26289, v is NestedStructGen<Decimal>, false);
+// Eval(26290, v is NestedStructGen<Decimal>[], false);
+// Eval(26291, v is NestedStructGen<Decimal>?, false);
+// Eval(26292, v is NestedStructGen<Decimal>?[], false);
Eval(26293, v is ExplicitFieldOffsetStruct, false);
Eval(26294, v is ExplicitFieldOffsetStruct[], false);
Eval(26295, v is ExplicitFieldOffsetStruct?, false);
@@ -8492,18 +8492,18 @@ internal class Program
Eval(26314, v is ImplementTwoInterface[], false);
Eval(26315, v is ImplementTwoInterface?, false);
Eval(26316, v is ImplementTwoInterface?[], false);
- Eval(26317, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(26318, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(26319, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(26320, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(26321, v is ImplementTwoInterfaceGen<int>, false);
- Eval(26322, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(26323, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(26324, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(26325, v is ImplementAllInterface<int>, false);
- Eval(26326, v is ImplementAllInterface<int>[], false);
- Eval(26327, v is ImplementAllInterface<int>?, false);
- Eval(26328, v is ImplementAllInterface<int>?[], false);
+// Eval(26317, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(26318, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(26319, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(26320, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(26321, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(26322, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(26323, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(26324, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(26325, v is ImplementAllInterface<int>, false);
+// Eval(26326, v is ImplementAllInterface<int>[], false);
+// Eval(26327, v is ImplementAllInterface<int>?, false);
+// Eval(26328, v is ImplementAllInterface<int>?[], false);
Eval(26329, v is IntE, false);
Eval(26330, v is IntE[], false);
Eval(26331, v is IntE?, false);
@@ -8602,38 +8602,38 @@ internal class Program
Eval(26424, v is IEmpty[], false);
Eval(26425, v is INotEmpty, false);
Eval(26426, v is INotEmpty[], false);
- Eval(26427, v is IEmptyGen<int>, false);
- Eval(26428, v is IEmptyGen<int>[], false);
- Eval(26429, v is INotEmptyGen<int>, false);
- Eval(26430, v is INotEmptyGen<int>[], false);
+// Eval(26427, v is IEmptyGen<int>, false);
+// Eval(26428, v is IEmptyGen<int>[], false);
+// Eval(26429, v is INotEmptyGen<int>, false);
+// Eval(26430, v is INotEmptyGen<int>[], false);
Eval(26431, v is SimpleDelegate, false);
Eval(26432, v is SimpleDelegate[], false);
- Eval(26433, v is GenericDelegate<int>, false);
- Eval(26434, v is GenericDelegate<int>[], false);
+// Eval(26433, v is GenericDelegate<int>, false);
+// Eval(26434, v is GenericDelegate<int>[], false);
Eval(26435, v is EmptyClass, false);
Eval(26436, v is EmptyClass[], false);
Eval(26437, v is NotEmptyClass, false);
Eval(26438, v is NotEmptyClass[], false);
- Eval(26439, v is EmptyClassGen<int>, false);
- Eval(26440, v is EmptyClassGen<int>[], false);
- Eval(26441, v is NotEmptyClassGen<Guid>, false);
- Eval(26442, v is NotEmptyClassGen<Guid>[], false);
- Eval(26443, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(26444, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(26439, v is EmptyClassGen<int>, false);
+// Eval(26440, v is EmptyClassGen<int>[], false);
+// Eval(26441, v is NotEmptyClassGen<Guid>, false);
+// Eval(26442, v is NotEmptyClassGen<Guid>[], false);
+// Eval(26443, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(26444, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(26445, v is NestedClass, false);
Eval(26446, v is NestedClass[], false);
- Eval(26447, v is NestedClassGen<Decimal>, false);
- Eval(26448, v is NestedClassGen<Decimal>[], false);
+// Eval(26447, v is NestedClassGen<Decimal>, false);
+// Eval(26448, v is NestedClassGen<Decimal>[], false);
Eval(26449, v is ImplementOneInterfaceC, false);
Eval(26450, v is ImplementOneInterfaceC[], false);
Eval(26451, v is ImplementTwoInterfaceC, false);
Eval(26452, v is ImplementTwoInterfaceC[], false);
- Eval(26453, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(26454, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(26455, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(26456, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(26457, v is ImplementAllInterfaceC<int>, false);
- Eval(26458, v is ImplementAllInterfaceC<int>[], false);
+// Eval(26453, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(26454, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(26455, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(26456, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(26457, v is ImplementAllInterfaceC<int>, false);
+// Eval(26458, v is ImplementAllInterfaceC<int>[], false);
Eval(26459, v is SealedClass, false);
Eval(26460, v is SealedClass[], false);
}
@@ -8650,26 +8650,26 @@ internal class Program
Eval(26466, v is NotEmptyStruct[], false);
Eval(26467, v is NotEmptyStruct?, false);
Eval(26468, v is NotEmptyStruct?[], false);
- Eval(26469, v is EmptyStructGen<int>, false);
- Eval(26470, v is EmptyStructGen<int>[], false);
- Eval(26471, v is EmptyStructGen<int>?, false);
- Eval(26472, v is EmptyStructGen<int>?[], false);
- Eval(26473, v is NotEmptyStructGen<Guid>, false);
- Eval(26474, v is NotEmptyStructGen<Guid>[], false);
- Eval(26475, v is NotEmptyStructGen<Guid>?, false);
- Eval(26476, v is NotEmptyStructGen<Guid>?[], false);
- Eval(26477, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(26478, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(26479, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(26480, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(26469, v is EmptyStructGen<int>, false);
+// Eval(26470, v is EmptyStructGen<int>[], false);
+// Eval(26471, v is EmptyStructGen<int>?, false);
+// Eval(26472, v is EmptyStructGen<int>?[], false);
+// Eval(26473, v is NotEmptyStructGen<Guid>, false);
+// Eval(26474, v is NotEmptyStructGen<Guid>[], false);
+// Eval(26475, v is NotEmptyStructGen<Guid>?, false);
+// Eval(26476, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(26477, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(26478, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(26479, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(26480, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(26481, v is NestedStruct, false);
Eval(26482, v is NestedStruct[], false);
Eval(26483, v is NestedStruct?, false);
Eval(26484, v is NestedStruct?[], false);
- Eval(26485, v is NestedStructGen<Decimal>, false);
- Eval(26486, v is NestedStructGen<Decimal>[], false);
- Eval(26487, v is NestedStructGen<Decimal>?, false);
- Eval(26488, v is NestedStructGen<Decimal>?[], false);
+// Eval(26485, v is NestedStructGen<Decimal>, false);
+// Eval(26486, v is NestedStructGen<Decimal>[], false);
+// Eval(26487, v is NestedStructGen<Decimal>?, false);
+// Eval(26488, v is NestedStructGen<Decimal>?[], false);
Eval(26489, v is ExplicitFieldOffsetStruct, false);
Eval(26490, v is ExplicitFieldOffsetStruct[], false);
Eval(26491, v is ExplicitFieldOffsetStruct?, false);
@@ -8686,18 +8686,18 @@ internal class Program
Eval(26510, v is ImplementTwoInterface[], false);
Eval(26511, v is ImplementTwoInterface?, false);
Eval(26512, v is ImplementTwoInterface?[], false);
- Eval(26513, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(26514, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(26515, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(26516, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(26517, v is ImplementTwoInterfaceGen<int>, false);
- Eval(26518, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(26519, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(26520, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(26521, v is ImplementAllInterface<int>, false);
- Eval(26522, v is ImplementAllInterface<int>[], false);
- Eval(26523, v is ImplementAllInterface<int>?, false);
- Eval(26524, v is ImplementAllInterface<int>?[], false);
+// Eval(26513, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(26514, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(26515, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(26516, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(26517, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(26518, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(26519, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(26520, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(26521, v is ImplementAllInterface<int>, false);
+// Eval(26522, v is ImplementAllInterface<int>[], false);
+// Eval(26523, v is ImplementAllInterface<int>?, false);
+// Eval(26524, v is ImplementAllInterface<int>?[], false);
Eval(26525, v is IntE, false);
Eval(26526, v is IntE[], false);
Eval(26527, v is IntE?, false);
@@ -8796,38 +8796,38 @@ internal class Program
Eval(26620, v is IEmpty[], false);
Eval(26621, v is INotEmpty, false);
Eval(26622, v is INotEmpty[], false);
- Eval(26623, v is IEmptyGen<int>, false);
- Eval(26624, v is IEmptyGen<int>[], false);
- Eval(26625, v is INotEmptyGen<int>, false);
- Eval(26626, v is INotEmptyGen<int>[], false);
+// Eval(26623, v is IEmptyGen<int>, false);
+// Eval(26624, v is IEmptyGen<int>[], false);
+// Eval(26625, v is INotEmptyGen<int>, false);
+// Eval(26626, v is INotEmptyGen<int>[], false);
Eval(26627, v is SimpleDelegate, false);
Eval(26628, v is SimpleDelegate[], false);
- Eval(26629, v is GenericDelegate<int>, false);
- Eval(26630, v is GenericDelegate<int>[], false);
+// Eval(26629, v is GenericDelegate<int>, false);
+// Eval(26630, v is GenericDelegate<int>[], false);
Eval(26631, v is EmptyClass, false);
Eval(26632, v is EmptyClass[], false);
Eval(26633, v is NotEmptyClass, false);
Eval(26634, v is NotEmptyClass[], false);
- Eval(26635, v is EmptyClassGen<int>, false);
- Eval(26636, v is EmptyClassGen<int>[], false);
- Eval(26637, v is NotEmptyClassGen<Guid>, false);
- Eval(26638, v is NotEmptyClassGen<Guid>[], false);
- Eval(26639, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(26640, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(26635, v is EmptyClassGen<int>, false);
+// Eval(26636, v is EmptyClassGen<int>[], false);
+// Eval(26637, v is NotEmptyClassGen<Guid>, false);
+// Eval(26638, v is NotEmptyClassGen<Guid>[], false);
+// Eval(26639, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(26640, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(26641, v is NestedClass, false);
Eval(26642, v is NestedClass[], false);
- Eval(26643, v is NestedClassGen<Decimal>, false);
- Eval(26644, v is NestedClassGen<Decimal>[], false);
+// Eval(26643, v is NestedClassGen<Decimal>, false);
+// Eval(26644, v is NestedClassGen<Decimal>[], false);
Eval(26645, v is ImplementOneInterfaceC, false);
Eval(26646, v is ImplementOneInterfaceC[], false);
Eval(26647, v is ImplementTwoInterfaceC, false);
Eval(26648, v is ImplementTwoInterfaceC[], false);
- Eval(26649, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(26650, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(26651, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(26652, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(26653, v is ImplementAllInterfaceC<int>, false);
- Eval(26654, v is ImplementAllInterfaceC<int>[], false);
+// Eval(26649, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(26650, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(26651, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(26652, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(26653, v is ImplementAllInterfaceC<int>, false);
+// Eval(26654, v is ImplementAllInterfaceC<int>[], false);
Eval(26655, v is SealedClass, false);
Eval(26656, v is SealedClass[], false);
}
@@ -8841,26 +8841,26 @@ internal class Program
Eval(26662, v is NotEmptyStruct[], false);
Eval(26663, v is NotEmptyStruct?, false);
Eval(26664, v is NotEmptyStruct?[], false);
- Eval(26665, v is EmptyStructGen<int>, false);
- Eval(26666, v is EmptyStructGen<int>[], false);
- Eval(26667, v is EmptyStructGen<int>?, false);
- Eval(26668, v is EmptyStructGen<int>?[], false);
- Eval(26669, v is NotEmptyStructGen<Guid>, false);
- Eval(26670, v is NotEmptyStructGen<Guid>[], false);
- Eval(26671, v is NotEmptyStructGen<Guid>?, false);
- Eval(26672, v is NotEmptyStructGen<Guid>?[], false);
- Eval(26673, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(26674, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(26675, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(26676, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(26665, v is EmptyStructGen<int>, false);
+// Eval(26666, v is EmptyStructGen<int>[], false);
+// Eval(26667, v is EmptyStructGen<int>?, false);
+// Eval(26668, v is EmptyStructGen<int>?[], false);
+// Eval(26669, v is NotEmptyStructGen<Guid>, false);
+// Eval(26670, v is NotEmptyStructGen<Guid>[], false);
+// Eval(26671, v is NotEmptyStructGen<Guid>?, false);
+// Eval(26672, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(26673, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(26674, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(26675, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(26676, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(26677, v is NestedStruct, false);
Eval(26678, v is NestedStruct[], false);
Eval(26679, v is NestedStruct?, false);
Eval(26680, v is NestedStruct?[], false);
- Eval(26681, v is NestedStructGen<Decimal>, false);
- Eval(26682, v is NestedStructGen<Decimal>[], false);
- Eval(26683, v is NestedStructGen<Decimal>?, false);
- Eval(26684, v is NestedStructGen<Decimal>?[], false);
+// Eval(26681, v is NestedStructGen<Decimal>, false);
+// Eval(26682, v is NestedStructGen<Decimal>[], false);
+// Eval(26683, v is NestedStructGen<Decimal>?, false);
+// Eval(26684, v is NestedStructGen<Decimal>?[], false);
Eval(26685, v is ExplicitFieldOffsetStruct, false);
Eval(26686, v is ExplicitFieldOffsetStruct[], false);
Eval(26687, v is ExplicitFieldOffsetStruct?, false);
@@ -8877,18 +8877,18 @@ internal class Program
Eval(26706, v is ImplementTwoInterface[], false);
Eval(26707, v is ImplementTwoInterface?, false);
Eval(26708, v is ImplementTwoInterface?[], false);
- Eval(26709, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(26710, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(26711, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(26712, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(26713, v is ImplementTwoInterfaceGen<int>, false);
- Eval(26714, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(26715, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(26716, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(26717, v is ImplementAllInterface<int>, false);
- Eval(26718, v is ImplementAllInterface<int>[], false);
- Eval(26719, v is ImplementAllInterface<int>?, false);
- Eval(26720, v is ImplementAllInterface<int>?[], false);
+// Eval(26709, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(26710, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(26711, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(26712, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(26713, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(26714, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(26715, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(26716, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(26717, v is ImplementAllInterface<int>, false);
+// Eval(26718, v is ImplementAllInterface<int>[], false);
+// Eval(26719, v is ImplementAllInterface<int>?, false);
+// Eval(26720, v is ImplementAllInterface<int>?[], false);
Eval(26721, v is IntE, false);
Eval(26722, v is IntE[], false);
Eval(26723, v is IntE?, false);
@@ -8987,38 +8987,38 @@ internal class Program
Eval(26816, v is IEmpty[], false);
Eval(26817, v is INotEmpty, false);
Eval(26818, v is INotEmpty[], false);
- Eval(26819, v is IEmptyGen<int>, false);
- Eval(26820, v is IEmptyGen<int>[], false);
- Eval(26821, v is INotEmptyGen<int>, false);
- Eval(26822, v is INotEmptyGen<int>[], false);
+// Eval(26819, v is IEmptyGen<int>, false);
+// Eval(26820, v is IEmptyGen<int>[], false);
+// Eval(26821, v is INotEmptyGen<int>, false);
+// Eval(26822, v is INotEmptyGen<int>[], false);
Eval(26823, v is SimpleDelegate, false);
Eval(26824, v is SimpleDelegate[], false);
- Eval(26825, v is GenericDelegate<int>, false);
- Eval(26826, v is GenericDelegate<int>[], false);
+// Eval(26825, v is GenericDelegate<int>, false);
+// Eval(26826, v is GenericDelegate<int>[], false);
Eval(26827, v is EmptyClass, false);
Eval(26828, v is EmptyClass[], false);
Eval(26829, v is NotEmptyClass, false);
Eval(26830, v is NotEmptyClass[], false);
- Eval(26831, v is EmptyClassGen<int>, false);
- Eval(26832, v is EmptyClassGen<int>[], false);
- Eval(26833, v is NotEmptyClassGen<Guid>, false);
- Eval(26834, v is NotEmptyClassGen<Guid>[], false);
- Eval(26835, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(26836, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(26831, v is EmptyClassGen<int>, false);
+// Eval(26832, v is EmptyClassGen<int>[], false);
+// Eval(26833, v is NotEmptyClassGen<Guid>, false);
+// Eval(26834, v is NotEmptyClassGen<Guid>[], false);
+// Eval(26835, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(26836, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(26837, v is NestedClass, false);
Eval(26838, v is NestedClass[], false);
- Eval(26839, v is NestedClassGen<Decimal>, false);
- Eval(26840, v is NestedClassGen<Decimal>[], false);
+// Eval(26839, v is NestedClassGen<Decimal>, false);
+// Eval(26840, v is NestedClassGen<Decimal>[], false);
Eval(26841, v is ImplementOneInterfaceC, false);
Eval(26842, v is ImplementOneInterfaceC[], false);
Eval(26843, v is ImplementTwoInterfaceC, false);
Eval(26844, v is ImplementTwoInterfaceC[], false);
- Eval(26845, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(26846, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(26847, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(26848, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(26849, v is ImplementAllInterfaceC<int>, false);
- Eval(26850, v is ImplementAllInterfaceC<int>[], false);
+// Eval(26845, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(26846, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(26847, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(26848, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(26849, v is ImplementAllInterfaceC<int>, false);
+// Eval(26850, v is ImplementAllInterfaceC<int>[], false);
Eval(26851, v is SealedClass, false);
Eval(26852, v is SealedClass[], false);
}
@@ -9032,26 +9032,26 @@ internal class Program
Eval(26858, v is NotEmptyStruct[], false);
Eval(26859, v is NotEmptyStruct?, false);
Eval(26860, v is NotEmptyStruct?[], false);
- Eval(26861, v is EmptyStructGen<int>, false);
- Eval(26862, v is EmptyStructGen<int>[], false);
- Eval(26863, v is EmptyStructGen<int>?, false);
- Eval(26864, v is EmptyStructGen<int>?[], false);
- Eval(26865, v is NotEmptyStructGen<Guid>, false);
- Eval(26866, v is NotEmptyStructGen<Guid>[], false);
- Eval(26867, v is NotEmptyStructGen<Guid>?, false);
- Eval(26868, v is NotEmptyStructGen<Guid>?[], false);
- Eval(26869, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(26870, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(26871, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(26872, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(26861, v is EmptyStructGen<int>, false);
+// Eval(26862, v is EmptyStructGen<int>[], false);
+// Eval(26863, v is EmptyStructGen<int>?, false);
+// Eval(26864, v is EmptyStructGen<int>?[], false);
+// Eval(26865, v is NotEmptyStructGen<Guid>, false);
+// Eval(26866, v is NotEmptyStructGen<Guid>[], false);
+// Eval(26867, v is NotEmptyStructGen<Guid>?, false);
+// Eval(26868, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(26869, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(26870, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(26871, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(26872, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(26873, v is NestedStruct, false);
Eval(26874, v is NestedStruct[], false);
Eval(26875, v is NestedStruct?, false);
Eval(26876, v is NestedStruct?[], false);
- Eval(26877, v is NestedStructGen<Decimal>, false);
- Eval(26878, v is NestedStructGen<Decimal>[], false);
- Eval(26879, v is NestedStructGen<Decimal>?, false);
- Eval(26880, v is NestedStructGen<Decimal>?[], false);
+// Eval(26877, v is NestedStructGen<Decimal>, false);
+// Eval(26878, v is NestedStructGen<Decimal>[], false);
+// Eval(26879, v is NestedStructGen<Decimal>?, false);
+// Eval(26880, v is NestedStructGen<Decimal>?[], false);
Eval(26881, v is ExplicitFieldOffsetStruct, false);
Eval(26882, v is ExplicitFieldOffsetStruct[], false);
Eval(26883, v is ExplicitFieldOffsetStruct?, false);
@@ -9068,18 +9068,18 @@ internal class Program
Eval(26902, v is ImplementTwoInterface[], false);
Eval(26903, v is ImplementTwoInterface?, false);
Eval(26904, v is ImplementTwoInterface?[], false);
- Eval(26905, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(26906, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(26907, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(26908, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(26909, v is ImplementTwoInterfaceGen<int>, false);
- Eval(26910, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(26911, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(26912, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(26913, v is ImplementAllInterface<int>, false);
- Eval(26914, v is ImplementAllInterface<int>[], false);
- Eval(26915, v is ImplementAllInterface<int>?, false);
- Eval(26916, v is ImplementAllInterface<int>?[], false);
+// Eval(26905, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(26906, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(26907, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(26908, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(26909, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(26910, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(26911, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(26912, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(26913, v is ImplementAllInterface<int>, false);
+// Eval(26914, v is ImplementAllInterface<int>[], false);
+// Eval(26915, v is ImplementAllInterface<int>?, false);
+// Eval(26916, v is ImplementAllInterface<int>?[], false);
Eval(26917, v is IntE, false);
Eval(26918, v is IntE[], false);
Eval(26919, v is IntE?, false);
@@ -9178,38 +9178,38 @@ internal class Program
Eval(27012, v is IEmpty[], false);
Eval(27013, v is INotEmpty, false);
Eval(27014, v is INotEmpty[], false);
- Eval(27015, v is IEmptyGen<int>, false);
- Eval(27016, v is IEmptyGen<int>[], false);
- Eval(27017, v is INotEmptyGen<int>, false);
- Eval(27018, v is INotEmptyGen<int>[], false);
+// Eval(27015, v is IEmptyGen<int>, false);
+// Eval(27016, v is IEmptyGen<int>[], false);
+// Eval(27017, v is INotEmptyGen<int>, false);
+// Eval(27018, v is INotEmptyGen<int>[], false);
Eval(27019, v is SimpleDelegate, false);
Eval(27020, v is SimpleDelegate[], false);
- Eval(27021, v is GenericDelegate<int>, false);
- Eval(27022, v is GenericDelegate<int>[], false);
+// Eval(27021, v is GenericDelegate<int>, false);
+// Eval(27022, v is GenericDelegate<int>[], false);
Eval(27023, v is EmptyClass, false);
Eval(27024, v is EmptyClass[], false);
Eval(27025, v is NotEmptyClass, false);
Eval(27026, v is NotEmptyClass[], false);
- Eval(27027, v is EmptyClassGen<int>, false);
- Eval(27028, v is EmptyClassGen<int>[], false);
- Eval(27029, v is NotEmptyClassGen<Guid>, false);
- Eval(27030, v is NotEmptyClassGen<Guid>[], false);
- Eval(27031, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(27032, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(27027, v is EmptyClassGen<int>, false);
+// Eval(27028, v is EmptyClassGen<int>[], false);
+// Eval(27029, v is NotEmptyClassGen<Guid>, false);
+// Eval(27030, v is NotEmptyClassGen<Guid>[], false);
+// Eval(27031, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(27032, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(27033, v is NestedClass, false);
Eval(27034, v is NestedClass[], false);
- Eval(27035, v is NestedClassGen<Decimal>, false);
- Eval(27036, v is NestedClassGen<Decimal>[], false);
+// Eval(27035, v is NestedClassGen<Decimal>, false);
+// Eval(27036, v is NestedClassGen<Decimal>[], false);
Eval(27037, v is ImplementOneInterfaceC, false);
Eval(27038, v is ImplementOneInterfaceC[], false);
Eval(27039, v is ImplementTwoInterfaceC, false);
Eval(27040, v is ImplementTwoInterfaceC[], false);
- Eval(27041, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(27042, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(27043, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(27044, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(27045, v is ImplementAllInterfaceC<int>, false);
- Eval(27046, v is ImplementAllInterfaceC<int>[], false);
+// Eval(27041, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(27042, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(27043, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(27044, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(27045, v is ImplementAllInterfaceC<int>, false);
+// Eval(27046, v is ImplementAllInterfaceC<int>[], false);
Eval(27047, v is SealedClass, false);
Eval(27048, v is SealedClass[], false);
}
@@ -9223,26 +9223,26 @@ internal class Program
Eval(27054, v is NotEmptyStruct[], false);
Eval(27055, v is NotEmptyStruct?, false);
Eval(27056, v is NotEmptyStruct?[], false);
- Eval(27057, v is EmptyStructGen<int>, false);
- Eval(27058, v is EmptyStructGen<int>[], false);
- Eval(27059, v is EmptyStructGen<int>?, false);
- Eval(27060, v is EmptyStructGen<int>?[], false);
- Eval(27061, v is NotEmptyStructGen<Guid>, false);
- Eval(27062, v is NotEmptyStructGen<Guid>[], false);
- Eval(27063, v is NotEmptyStructGen<Guid>?, false);
- Eval(27064, v is NotEmptyStructGen<Guid>?[], false);
- Eval(27065, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(27066, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(27067, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(27068, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(27057, v is EmptyStructGen<int>, false);
+// Eval(27058, v is EmptyStructGen<int>[], false);
+// Eval(27059, v is EmptyStructGen<int>?, false);
+// Eval(27060, v is EmptyStructGen<int>?[], false);
+// Eval(27061, v is NotEmptyStructGen<Guid>, false);
+// Eval(27062, v is NotEmptyStructGen<Guid>[], false);
+// Eval(27063, v is NotEmptyStructGen<Guid>?, false);
+// Eval(27064, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(27065, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(27066, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(27067, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(27068, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(27069, v is NestedStruct, false);
Eval(27070, v is NestedStruct[], false);
Eval(27071, v is NestedStruct?, false);
Eval(27072, v is NestedStruct?[], false);
- Eval(27073, v is NestedStructGen<Decimal>, false);
- Eval(27074, v is NestedStructGen<Decimal>[], false);
- Eval(27075, v is NestedStructGen<Decimal>?, false);
- Eval(27076, v is NestedStructGen<Decimal>?[], false);
+// Eval(27073, v is NestedStructGen<Decimal>, false);
+// Eval(27074, v is NestedStructGen<Decimal>[], false);
+// Eval(27075, v is NestedStructGen<Decimal>?, false);
+// Eval(27076, v is NestedStructGen<Decimal>?[], false);
Eval(27077, v is ExplicitFieldOffsetStruct, false);
Eval(27078, v is ExplicitFieldOffsetStruct[], false);
Eval(27079, v is ExplicitFieldOffsetStruct?, false);
@@ -9259,18 +9259,18 @@ internal class Program
Eval(27098, v is ImplementTwoInterface[], false);
Eval(27099, v is ImplementTwoInterface?, false);
Eval(27100, v is ImplementTwoInterface?[], false);
- Eval(27101, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(27102, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(27103, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(27104, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(27105, v is ImplementTwoInterfaceGen<int>, false);
- Eval(27106, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(27107, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(27108, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(27109, v is ImplementAllInterface<int>, false);
- Eval(27110, v is ImplementAllInterface<int>[], false);
- Eval(27111, v is ImplementAllInterface<int>?, false);
- Eval(27112, v is ImplementAllInterface<int>?[], false);
+// Eval(27101, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(27102, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(27103, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(27104, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(27105, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(27106, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(27107, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(27108, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(27109, v is ImplementAllInterface<int>, false);
+// Eval(27110, v is ImplementAllInterface<int>[], false);
+// Eval(27111, v is ImplementAllInterface<int>?, false);
+// Eval(27112, v is ImplementAllInterface<int>?[], false);
Eval(27113, v is IntE, false);
Eval(27114, v is IntE[], false);
Eval(27115, v is IntE?, false);
@@ -9369,38 +9369,38 @@ internal class Program
Eval(27208, v is IEmpty[], false);
Eval(27209, v is INotEmpty, false);
Eval(27210, v is INotEmpty[], false);
- Eval(27211, v is IEmptyGen<int>, false);
- Eval(27212, v is IEmptyGen<int>[], false);
- Eval(27213, v is INotEmptyGen<int>, false);
- Eval(27214, v is INotEmptyGen<int>[], false);
+// Eval(27211, v is IEmptyGen<int>, false);
+// Eval(27212, v is IEmptyGen<int>[], false);
+// Eval(27213, v is INotEmptyGen<int>, false);
+// Eval(27214, v is INotEmptyGen<int>[], false);
Eval(27215, v is SimpleDelegate, false);
Eval(27216, v is SimpleDelegate[], false);
- Eval(27217, v is GenericDelegate<int>, false);
- Eval(27218, v is GenericDelegate<int>[], false);
+// Eval(27217, v is GenericDelegate<int>, false);
+// Eval(27218, v is GenericDelegate<int>[], false);
Eval(27219, v is EmptyClass, false);
Eval(27220, v is EmptyClass[], false);
Eval(27221, v is NotEmptyClass, false);
Eval(27222, v is NotEmptyClass[], false);
- Eval(27223, v is EmptyClassGen<int>, false);
- Eval(27224, v is EmptyClassGen<int>[], false);
- Eval(27225, v is NotEmptyClassGen<Guid>, false);
- Eval(27226, v is NotEmptyClassGen<Guid>[], false);
- Eval(27227, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(27228, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(27223, v is EmptyClassGen<int>, false);
+// Eval(27224, v is EmptyClassGen<int>[], false);
+// Eval(27225, v is NotEmptyClassGen<Guid>, false);
+// Eval(27226, v is NotEmptyClassGen<Guid>[], false);
+// Eval(27227, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(27228, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(27229, v is NestedClass, false);
Eval(27230, v is NestedClass[], false);
- Eval(27231, v is NestedClassGen<Decimal>, false);
- Eval(27232, v is NestedClassGen<Decimal>[], false);
+// Eval(27231, v is NestedClassGen<Decimal>, false);
+// Eval(27232, v is NestedClassGen<Decimal>[], false);
Eval(27233, v is ImplementOneInterfaceC, false);
Eval(27234, v is ImplementOneInterfaceC[], false);
Eval(27235, v is ImplementTwoInterfaceC, false);
Eval(27236, v is ImplementTwoInterfaceC[], false);
- Eval(27237, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(27238, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(27239, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(27240, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(27241, v is ImplementAllInterfaceC<int>, false);
- Eval(27242, v is ImplementAllInterfaceC<int>[], false);
+// Eval(27237, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(27238, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(27239, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(27240, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(27241, v is ImplementAllInterfaceC<int>, false);
+// Eval(27242, v is ImplementAllInterfaceC<int>[], false);
Eval(27243, v is SealedClass, false);
Eval(27244, v is SealedClass[], false);
}
@@ -9414,26 +9414,26 @@ internal class Program
Eval(27250, v is NotEmptyStruct[], false);
Eval(27251, v is NotEmptyStruct?, false);
Eval(27252, v is NotEmptyStruct?[], false);
- Eval(27253, v is EmptyStructGen<int>, false);
- Eval(27254, v is EmptyStructGen<int>[], false);
- Eval(27255, v is EmptyStructGen<int>?, false);
- Eval(27256, v is EmptyStructGen<int>?[], false);
- Eval(27257, v is NotEmptyStructGen<Guid>, false);
- Eval(27258, v is NotEmptyStructGen<Guid>[], false);
- Eval(27259, v is NotEmptyStructGen<Guid>?, false);
- Eval(27260, v is NotEmptyStructGen<Guid>?[], false);
- Eval(27261, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(27262, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(27263, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(27264, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(27253, v is EmptyStructGen<int>, false);
+// Eval(27254, v is EmptyStructGen<int>[], false);
+// Eval(27255, v is EmptyStructGen<int>?, false);
+// Eval(27256, v is EmptyStructGen<int>?[], false);
+// Eval(27257, v is NotEmptyStructGen<Guid>, false);
+// Eval(27258, v is NotEmptyStructGen<Guid>[], false);
+// Eval(27259, v is NotEmptyStructGen<Guid>?, false);
+// Eval(27260, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(27261, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(27262, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(27263, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(27264, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(27265, v is NestedStruct, false);
Eval(27266, v is NestedStruct[], false);
Eval(27267, v is NestedStruct?, false);
Eval(27268, v is NestedStruct?[], false);
- Eval(27269, v is NestedStructGen<Decimal>, false);
- Eval(27270, v is NestedStructGen<Decimal>[], false);
- Eval(27271, v is NestedStructGen<Decimal>?, false);
- Eval(27272, v is NestedStructGen<Decimal>?[], false);
+// Eval(27269, v is NestedStructGen<Decimal>, false);
+// Eval(27270, v is NestedStructGen<Decimal>[], false);
+// Eval(27271, v is NestedStructGen<Decimal>?, false);
+// Eval(27272, v is NestedStructGen<Decimal>?[], false);
Eval(27273, v is ExplicitFieldOffsetStruct, false);
Eval(27274, v is ExplicitFieldOffsetStruct[], false);
Eval(27275, v is ExplicitFieldOffsetStruct?, false);
@@ -9450,18 +9450,18 @@ internal class Program
Eval(27294, v is ImplementTwoInterface[], false);
Eval(27295, v is ImplementTwoInterface?, false);
Eval(27296, v is ImplementTwoInterface?[], false);
- Eval(27297, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(27298, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(27299, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(27300, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(27301, v is ImplementTwoInterfaceGen<int>, false);
- Eval(27302, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(27303, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(27304, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(27305, v is ImplementAllInterface<int>, false);
- Eval(27306, v is ImplementAllInterface<int>[], false);
- Eval(27307, v is ImplementAllInterface<int>?, false);
- Eval(27308, v is ImplementAllInterface<int>?[], false);
+// Eval(27297, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(27298, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(27299, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(27300, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(27301, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(27302, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(27303, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(27304, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(27305, v is ImplementAllInterface<int>, false);
+// Eval(27306, v is ImplementAllInterface<int>[], false);
+// Eval(27307, v is ImplementAllInterface<int>?, false);
+// Eval(27308, v is ImplementAllInterface<int>?[], false);
Eval(27309, v is IntE, false);
Eval(27310, v is IntE[], false);
Eval(27311, v is IntE?, false);
@@ -9560,38 +9560,38 @@ internal class Program
Eval(27404, v is IEmpty[], false);
Eval(27405, v is INotEmpty, false);
Eval(27406, v is INotEmpty[], false);
- Eval(27407, v is IEmptyGen<int>, false);
- Eval(27408, v is IEmptyGen<int>[], false);
- Eval(27409, v is INotEmptyGen<int>, false);
- Eval(27410, v is INotEmptyGen<int>[], false);
+// Eval(27407, v is IEmptyGen<int>, false);
+// Eval(27408, v is IEmptyGen<int>[], false);
+// Eval(27409, v is INotEmptyGen<int>, false);
+// Eval(27410, v is INotEmptyGen<int>[], false);
Eval(27411, v is SimpleDelegate, false);
Eval(27412, v is SimpleDelegate[], false);
- Eval(27413, v is GenericDelegate<int>, false);
- Eval(27414, v is GenericDelegate<int>[], false);
+// Eval(27413, v is GenericDelegate<int>, false);
+// Eval(27414, v is GenericDelegate<int>[], false);
Eval(27415, v is EmptyClass, false);
Eval(27416, v is EmptyClass[], false);
Eval(27417, v is NotEmptyClass, false);
Eval(27418, v is NotEmptyClass[], false);
- Eval(27419, v is EmptyClassGen<int>, false);
- Eval(27420, v is EmptyClassGen<int>[], false);
- Eval(27421, v is NotEmptyClassGen<Guid>, false);
- Eval(27422, v is NotEmptyClassGen<Guid>[], false);
- Eval(27423, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(27424, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(27419, v is EmptyClassGen<int>, false);
+// Eval(27420, v is EmptyClassGen<int>[], false);
+// Eval(27421, v is NotEmptyClassGen<Guid>, false);
+// Eval(27422, v is NotEmptyClassGen<Guid>[], false);
+// Eval(27423, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(27424, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(27425, v is NestedClass, false);
Eval(27426, v is NestedClass[], false);
- Eval(27427, v is NestedClassGen<Decimal>, false);
- Eval(27428, v is NestedClassGen<Decimal>[], false);
+// Eval(27427, v is NestedClassGen<Decimal>, false);
+// Eval(27428, v is NestedClassGen<Decimal>[], false);
Eval(27429, v is ImplementOneInterfaceC, false);
Eval(27430, v is ImplementOneInterfaceC[], false);
Eval(27431, v is ImplementTwoInterfaceC, false);
Eval(27432, v is ImplementTwoInterfaceC[], false);
- Eval(27433, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(27434, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(27435, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(27436, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(27437, v is ImplementAllInterfaceC<int>, false);
- Eval(27438, v is ImplementAllInterfaceC<int>[], false);
+// Eval(27433, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(27434, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(27435, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(27436, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(27437, v is ImplementAllInterfaceC<int>, false);
+// Eval(27438, v is ImplementAllInterfaceC<int>[], false);
Eval(27439, v is SealedClass, false);
Eval(27440, v is SealedClass[], false);
}
@@ -9608,26 +9608,26 @@ internal class Program
Eval(27446, v is NotEmptyStruct[], false);
Eval(27447, v is NotEmptyStruct?, false);
Eval(27448, v is NotEmptyStruct?[], false);
- Eval(27449, v is EmptyStructGen<int>, false);
- Eval(27450, v is EmptyStructGen<int>[], false);
- Eval(27451, v is EmptyStructGen<int>?, false);
- Eval(27452, v is EmptyStructGen<int>?[], false);
- Eval(27453, v is NotEmptyStructGen<Guid>, false);
- Eval(27454, v is NotEmptyStructGen<Guid>[], false);
- Eval(27455, v is NotEmptyStructGen<Guid>?, false);
- Eval(27456, v is NotEmptyStructGen<Guid>?[], false);
- Eval(27457, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(27458, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(27459, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(27460, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(27449, v is EmptyStructGen<int>, false);
+// Eval(27450, v is EmptyStructGen<int>[], false);
+// Eval(27451, v is EmptyStructGen<int>?, false);
+// Eval(27452, v is EmptyStructGen<int>?[], false);
+// Eval(27453, v is NotEmptyStructGen<Guid>, false);
+// Eval(27454, v is NotEmptyStructGen<Guid>[], false);
+// Eval(27455, v is NotEmptyStructGen<Guid>?, false);
+// Eval(27456, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(27457, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(27458, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(27459, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(27460, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(27461, v is NestedStruct, false);
Eval(27462, v is NestedStruct[], false);
Eval(27463, v is NestedStruct?, false);
Eval(27464, v is NestedStruct?[], false);
- Eval(27465, v is NestedStructGen<Decimal>, false);
- Eval(27466, v is NestedStructGen<Decimal>[], false);
- Eval(27467, v is NestedStructGen<Decimal>?, false);
- Eval(27468, v is NestedStructGen<Decimal>?[], false);
+// Eval(27465, v is NestedStructGen<Decimal>, false);
+// Eval(27466, v is NestedStructGen<Decimal>[], false);
+// Eval(27467, v is NestedStructGen<Decimal>?, false);
+// Eval(27468, v is NestedStructGen<Decimal>?[], false);
Eval(27469, v is ExplicitFieldOffsetStruct, false);
Eval(27470, v is ExplicitFieldOffsetStruct[], false);
Eval(27471, v is ExplicitFieldOffsetStruct?, false);
@@ -9644,18 +9644,18 @@ internal class Program
Eval(27490, v is ImplementTwoInterface[], false);
Eval(27491, v is ImplementTwoInterface?, false);
Eval(27492, v is ImplementTwoInterface?[], false);
- Eval(27493, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(27494, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(27495, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(27496, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(27497, v is ImplementTwoInterfaceGen<int>, false);
- Eval(27498, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(27499, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(27500, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(27501, v is ImplementAllInterface<int>, false);
- Eval(27502, v is ImplementAllInterface<int>[], false);
- Eval(27503, v is ImplementAllInterface<int>?, false);
- Eval(27504, v is ImplementAllInterface<int>?[], false);
+// Eval(27493, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(27494, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(27495, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(27496, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(27497, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(27498, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(27499, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(27500, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(27501, v is ImplementAllInterface<int>, false);
+// Eval(27502, v is ImplementAllInterface<int>[], false);
+// Eval(27503, v is ImplementAllInterface<int>?, false);
+// Eval(27504, v is ImplementAllInterface<int>?[], false);
Eval(27505, v is IntE, false);
Eval(27506, v is IntE[], false);
Eval(27507, v is IntE?, false);
@@ -9754,38 +9754,38 @@ internal class Program
Eval(27600, v is IEmpty[], false);
Eval(27601, v is INotEmpty, false);
Eval(27602, v is INotEmpty[], false);
- Eval(27603, v is IEmptyGen<int>, false);
- Eval(27604, v is IEmptyGen<int>[], false);
- Eval(27605, v is INotEmptyGen<int>, false);
- Eval(27606, v is INotEmptyGen<int>[], false);
+// Eval(27603, v is IEmptyGen<int>, false);
+// Eval(27604, v is IEmptyGen<int>[], false);
+// Eval(27605, v is INotEmptyGen<int>, false);
+// Eval(27606, v is INotEmptyGen<int>[], false);
Eval(27607, v is SimpleDelegate, false);
Eval(27608, v is SimpleDelegate[], false);
- Eval(27609, v is GenericDelegate<int>, false);
- Eval(27610, v is GenericDelegate<int>[], false);
+// Eval(27609, v is GenericDelegate<int>, false);
+// Eval(27610, v is GenericDelegate<int>[], false);
Eval(27611, v is EmptyClass, false);
Eval(27612, v is EmptyClass[], false);
Eval(27613, v is NotEmptyClass, false);
Eval(27614, v is NotEmptyClass[], false);
- Eval(27615, v is EmptyClassGen<int>, false);
- Eval(27616, v is EmptyClassGen<int>[], false);
- Eval(27617, v is NotEmptyClassGen<Guid>, false);
- Eval(27618, v is NotEmptyClassGen<Guid>[], false);
- Eval(27619, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(27620, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(27615, v is EmptyClassGen<int>, false);
+// Eval(27616, v is EmptyClassGen<int>[], false);
+// Eval(27617, v is NotEmptyClassGen<Guid>, false);
+// Eval(27618, v is NotEmptyClassGen<Guid>[], false);
+// Eval(27619, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(27620, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(27621, v is NestedClass, false);
Eval(27622, v is NestedClass[], false);
- Eval(27623, v is NestedClassGen<Decimal>, false);
- Eval(27624, v is NestedClassGen<Decimal>[], false);
+// Eval(27623, v is NestedClassGen<Decimal>, false);
+// Eval(27624, v is NestedClassGen<Decimal>[], false);
Eval(27625, v is ImplementOneInterfaceC, false);
Eval(27626, v is ImplementOneInterfaceC[], false);
Eval(27627, v is ImplementTwoInterfaceC, false);
Eval(27628, v is ImplementTwoInterfaceC[], false);
- Eval(27629, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(27630, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(27631, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(27632, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(27633, v is ImplementAllInterfaceC<int>, false);
- Eval(27634, v is ImplementAllInterfaceC<int>[], false);
+// Eval(27629, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(27630, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(27631, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(27632, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(27633, v is ImplementAllInterfaceC<int>, false);
+// Eval(27634, v is ImplementAllInterfaceC<int>[], false);
Eval(27635, v is SealedClass, false);
Eval(27636, v is SealedClass[], false);
}
@@ -9799,26 +9799,26 @@ internal class Program
Eval(27642, v is NotEmptyStruct[], false);
Eval(27643, v is NotEmptyStruct?, false);
Eval(27644, v is NotEmptyStruct?[], false);
- Eval(27645, v is EmptyStructGen<int>, false);
- Eval(27646, v is EmptyStructGen<int>[], false);
- Eval(27647, v is EmptyStructGen<int>?, false);
- Eval(27648, v is EmptyStructGen<int>?[], false);
- Eval(27649, v is NotEmptyStructGen<Guid>, false);
- Eval(27650, v is NotEmptyStructGen<Guid>[], false);
- Eval(27651, v is NotEmptyStructGen<Guid>?, false);
- Eval(27652, v is NotEmptyStructGen<Guid>?[], false);
- Eval(27653, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(27654, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(27655, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(27656, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(27645, v is EmptyStructGen<int>, false);
+// Eval(27646, v is EmptyStructGen<int>[], false);
+// Eval(27647, v is EmptyStructGen<int>?, false);
+// Eval(27648, v is EmptyStructGen<int>?[], false);
+// Eval(27649, v is NotEmptyStructGen<Guid>, false);
+// Eval(27650, v is NotEmptyStructGen<Guid>[], false);
+// Eval(27651, v is NotEmptyStructGen<Guid>?, false);
+// Eval(27652, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(27653, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(27654, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(27655, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(27656, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(27657, v is NestedStruct, false);
Eval(27658, v is NestedStruct[], false);
Eval(27659, v is NestedStruct?, false);
Eval(27660, v is NestedStruct?[], false);
- Eval(27661, v is NestedStructGen<Decimal>, false);
- Eval(27662, v is NestedStructGen<Decimal>[], false);
- Eval(27663, v is NestedStructGen<Decimal>?, false);
- Eval(27664, v is NestedStructGen<Decimal>?[], false);
+// Eval(27661, v is NestedStructGen<Decimal>, false);
+// Eval(27662, v is NestedStructGen<Decimal>[], false);
+// Eval(27663, v is NestedStructGen<Decimal>?, false);
+// Eval(27664, v is NestedStructGen<Decimal>?[], false);
Eval(27665, v is ExplicitFieldOffsetStruct, false);
Eval(27666, v is ExplicitFieldOffsetStruct[], false);
Eval(27667, v is ExplicitFieldOffsetStruct?, false);
@@ -9835,18 +9835,18 @@ internal class Program
Eval(27686, v is ImplementTwoInterface[], false);
Eval(27687, v is ImplementTwoInterface?, false);
Eval(27688, v is ImplementTwoInterface?[], false);
- Eval(27689, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(27690, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(27691, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(27692, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(27693, v is ImplementTwoInterfaceGen<int>, false);
- Eval(27694, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(27695, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(27696, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(27697, v is ImplementAllInterface<int>, false);
- Eval(27698, v is ImplementAllInterface<int>[], false);
- Eval(27699, v is ImplementAllInterface<int>?, false);
- Eval(27700, v is ImplementAllInterface<int>?[], false);
+// Eval(27689, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(27690, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(27691, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(27692, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(27693, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(27694, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(27695, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(27696, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(27697, v is ImplementAllInterface<int>, false);
+// Eval(27698, v is ImplementAllInterface<int>[], false);
+// Eval(27699, v is ImplementAllInterface<int>?, false);
+// Eval(27700, v is ImplementAllInterface<int>?[], false);
Eval(27701, v is IntE, false);
Eval(27702, v is IntE[], false);
Eval(27703, v is IntE?, false);
@@ -9945,38 +9945,38 @@ internal class Program
Eval(27796, v is IEmpty[], false);
Eval(27797, v is INotEmpty, false);
Eval(27798, v is INotEmpty[], false);
- Eval(27799, v is IEmptyGen<int>, false);
- Eval(27800, v is IEmptyGen<int>[], false);
- Eval(27801, v is INotEmptyGen<int>, false);
- Eval(27802, v is INotEmptyGen<int>[], false);
+// Eval(27799, v is IEmptyGen<int>, false);
+// Eval(27800, v is IEmptyGen<int>[], false);
+// Eval(27801, v is INotEmptyGen<int>, false);
+// Eval(27802, v is INotEmptyGen<int>[], false);
Eval(27803, v is SimpleDelegate, false);
Eval(27804, v is SimpleDelegate[], false);
- Eval(27805, v is GenericDelegate<int>, false);
- Eval(27806, v is GenericDelegate<int>[], false);
+// Eval(27805, v is GenericDelegate<int>, false);
+// Eval(27806, v is GenericDelegate<int>[], false);
Eval(27807, v is EmptyClass, false);
Eval(27808, v is EmptyClass[], false);
Eval(27809, v is NotEmptyClass, false);
Eval(27810, v is NotEmptyClass[], false);
- Eval(27811, v is EmptyClassGen<int>, false);
- Eval(27812, v is EmptyClassGen<int>[], false);
- Eval(27813, v is NotEmptyClassGen<Guid>, false);
- Eval(27814, v is NotEmptyClassGen<Guid>[], false);
- Eval(27815, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(27816, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(27811, v is EmptyClassGen<int>, false);
+// Eval(27812, v is EmptyClassGen<int>[], false);
+// Eval(27813, v is NotEmptyClassGen<Guid>, false);
+// Eval(27814, v is NotEmptyClassGen<Guid>[], false);
+// Eval(27815, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(27816, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(27817, v is NestedClass, false);
Eval(27818, v is NestedClass[], false);
- Eval(27819, v is NestedClassGen<Decimal>, false);
- Eval(27820, v is NestedClassGen<Decimal>[], false);
+// Eval(27819, v is NestedClassGen<Decimal>, false);
+// Eval(27820, v is NestedClassGen<Decimal>[], false);
Eval(27821, v is ImplementOneInterfaceC, false);
Eval(27822, v is ImplementOneInterfaceC[], false);
Eval(27823, v is ImplementTwoInterfaceC, false);
Eval(27824, v is ImplementTwoInterfaceC[], false);
- Eval(27825, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(27826, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(27827, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(27828, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(27829, v is ImplementAllInterfaceC<int>, false);
- Eval(27830, v is ImplementAllInterfaceC<int>[], false);
+// Eval(27825, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(27826, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(27827, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(27828, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(27829, v is ImplementAllInterfaceC<int>, false);
+// Eval(27830, v is ImplementAllInterfaceC<int>[], false);
Eval(27831, v is SealedClass, false);
Eval(27832, v is SealedClass[], false);
}
@@ -9990,26 +9990,26 @@ internal class Program
Eval(27838, v is NotEmptyStruct[], false);
Eval(27839, v is NotEmptyStruct?, false);
Eval(27840, v is NotEmptyStruct?[], false);
- Eval(27841, v is EmptyStructGen<int>, false);
- Eval(27842, v is EmptyStructGen<int>[], false);
- Eval(27843, v is EmptyStructGen<int>?, false);
- Eval(27844, v is EmptyStructGen<int>?[], false);
- Eval(27845, v is NotEmptyStructGen<Guid>, false);
- Eval(27846, v is NotEmptyStructGen<Guid>[], false);
- Eval(27847, v is NotEmptyStructGen<Guid>?, false);
- Eval(27848, v is NotEmptyStructGen<Guid>?[], false);
- Eval(27849, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(27850, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(27851, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(27852, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(27841, v is EmptyStructGen<int>, false);
+// Eval(27842, v is EmptyStructGen<int>[], false);
+// Eval(27843, v is EmptyStructGen<int>?, false);
+// Eval(27844, v is EmptyStructGen<int>?[], false);
+// Eval(27845, v is NotEmptyStructGen<Guid>, false);
+// Eval(27846, v is NotEmptyStructGen<Guid>[], false);
+// Eval(27847, v is NotEmptyStructGen<Guid>?, false);
+// Eval(27848, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(27849, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(27850, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(27851, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(27852, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(27853, v is NestedStruct, false);
Eval(27854, v is NestedStruct[], false);
Eval(27855, v is NestedStruct?, false);
Eval(27856, v is NestedStruct?[], false);
- Eval(27857, v is NestedStructGen<Decimal>, false);
- Eval(27858, v is NestedStructGen<Decimal>[], false);
- Eval(27859, v is NestedStructGen<Decimal>?, false);
- Eval(27860, v is NestedStructGen<Decimal>?[], false);
+// Eval(27857, v is NestedStructGen<Decimal>, false);
+// Eval(27858, v is NestedStructGen<Decimal>[], false);
+// Eval(27859, v is NestedStructGen<Decimal>?, false);
+// Eval(27860, v is NestedStructGen<Decimal>?[], false);
Eval(27861, v is ExplicitFieldOffsetStruct, false);
Eval(27862, v is ExplicitFieldOffsetStruct[], false);
Eval(27863, v is ExplicitFieldOffsetStruct?, false);
@@ -10026,18 +10026,18 @@ internal class Program
Eval(27882, v is ImplementTwoInterface[], false);
Eval(27883, v is ImplementTwoInterface?, false);
Eval(27884, v is ImplementTwoInterface?[], false);
- Eval(27885, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(27886, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(27887, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(27888, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(27889, v is ImplementTwoInterfaceGen<int>, false);
- Eval(27890, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(27891, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(27892, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(27893, v is ImplementAllInterface<int>, false);
- Eval(27894, v is ImplementAllInterface<int>[], false);
- Eval(27895, v is ImplementAllInterface<int>?, false);
- Eval(27896, v is ImplementAllInterface<int>?[], false);
+// Eval(27885, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(27886, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(27887, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(27888, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(27889, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(27890, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(27891, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(27892, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(27893, v is ImplementAllInterface<int>, false);
+// Eval(27894, v is ImplementAllInterface<int>[], false);
+// Eval(27895, v is ImplementAllInterface<int>?, false);
+// Eval(27896, v is ImplementAllInterface<int>?[], false);
Eval(27897, v is IntE, false);
Eval(27898, v is IntE[], false);
Eval(27899, v is IntE?, false);
@@ -10136,38 +10136,38 @@ internal class Program
Eval(27992, v is IEmpty[], false);
Eval(27993, v is INotEmpty, false);
Eval(27994, v is INotEmpty[], false);
- Eval(27995, v is IEmptyGen<int>, false);
- Eval(27996, v is IEmptyGen<int>[], false);
- Eval(27997, v is INotEmptyGen<int>, false);
- Eval(27998, v is INotEmptyGen<int>[], false);
+// Eval(27995, v is IEmptyGen<int>, false);
+// Eval(27996, v is IEmptyGen<int>[], false);
+// Eval(27997, v is INotEmptyGen<int>, false);
+// Eval(27998, v is INotEmptyGen<int>[], false);
Eval(27999, v is SimpleDelegate, false);
Eval(28000, v is SimpleDelegate[], false);
- Eval(28001, v is GenericDelegate<int>, false);
- Eval(28002, v is GenericDelegate<int>[], false);
+// Eval(28001, v is GenericDelegate<int>, false);
+// Eval(28002, v is GenericDelegate<int>[], false);
Eval(28003, v is EmptyClass, false);
Eval(28004, v is EmptyClass[], false);
Eval(28005, v is NotEmptyClass, false);
Eval(28006, v is NotEmptyClass[], false);
- Eval(28007, v is EmptyClassGen<int>, false);
- Eval(28008, v is EmptyClassGen<int>[], false);
- Eval(28009, v is NotEmptyClassGen<Guid>, false);
- Eval(28010, v is NotEmptyClassGen<Guid>[], false);
- Eval(28011, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(28012, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(28007, v is EmptyClassGen<int>, false);
+// Eval(28008, v is EmptyClassGen<int>[], false);
+// Eval(28009, v is NotEmptyClassGen<Guid>, false);
+// Eval(28010, v is NotEmptyClassGen<Guid>[], false);
+// Eval(28011, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(28012, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(28013, v is NestedClass, false);
Eval(28014, v is NestedClass[], false);
- Eval(28015, v is NestedClassGen<Decimal>, false);
- Eval(28016, v is NestedClassGen<Decimal>[], false);
+// Eval(28015, v is NestedClassGen<Decimal>, false);
+// Eval(28016, v is NestedClassGen<Decimal>[], false);
Eval(28017, v is ImplementOneInterfaceC, false);
Eval(28018, v is ImplementOneInterfaceC[], false);
Eval(28019, v is ImplementTwoInterfaceC, false);
Eval(28020, v is ImplementTwoInterfaceC[], false);
- Eval(28021, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(28022, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(28023, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(28024, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(28025, v is ImplementAllInterfaceC<int>, false);
- Eval(28026, v is ImplementAllInterfaceC<int>[], false);
+// Eval(28021, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(28022, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(28023, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(28024, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(28025, v is ImplementAllInterfaceC<int>, false);
+// Eval(28026, v is ImplementAllInterfaceC<int>[], false);
Eval(28027, v is SealedClass, false);
Eval(28028, v is SealedClass[], false);
}
@@ -10181,26 +10181,26 @@ internal class Program
Eval(28034, v is NotEmptyStruct[], false);
Eval(28035, v is NotEmptyStruct?, false);
Eval(28036, v is NotEmptyStruct?[], false);
- Eval(28037, v is EmptyStructGen<int>, false);
- Eval(28038, v is EmptyStructGen<int>[], false);
- Eval(28039, v is EmptyStructGen<int>?, false);
- Eval(28040, v is EmptyStructGen<int>?[], false);
- Eval(28041, v is NotEmptyStructGen<Guid>, false);
- Eval(28042, v is NotEmptyStructGen<Guid>[], false);
- Eval(28043, v is NotEmptyStructGen<Guid>?, false);
- Eval(28044, v is NotEmptyStructGen<Guid>?[], false);
- Eval(28045, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(28046, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(28047, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(28048, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(28037, v is EmptyStructGen<int>, false);
+// Eval(28038, v is EmptyStructGen<int>[], false);
+// Eval(28039, v is EmptyStructGen<int>?, false);
+// Eval(28040, v is EmptyStructGen<int>?[], false);
+// Eval(28041, v is NotEmptyStructGen<Guid>, false);
+// Eval(28042, v is NotEmptyStructGen<Guid>[], false);
+// Eval(28043, v is NotEmptyStructGen<Guid>?, false);
+// Eval(28044, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(28045, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(28046, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(28047, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(28048, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(28049, v is NestedStruct, false);
Eval(28050, v is NestedStruct[], false);
Eval(28051, v is NestedStruct?, false);
Eval(28052, v is NestedStruct?[], false);
- Eval(28053, v is NestedStructGen<Decimal>, false);
- Eval(28054, v is NestedStructGen<Decimal>[], false);
- Eval(28055, v is NestedStructGen<Decimal>?, false);
- Eval(28056, v is NestedStructGen<Decimal>?[], false);
+// Eval(28053, v is NestedStructGen<Decimal>, false);
+// Eval(28054, v is NestedStructGen<Decimal>[], false);
+// Eval(28055, v is NestedStructGen<Decimal>?, false);
+// Eval(28056, v is NestedStructGen<Decimal>?[], false);
Eval(28057, v is ExplicitFieldOffsetStruct, false);
Eval(28058, v is ExplicitFieldOffsetStruct[], false);
Eval(28059, v is ExplicitFieldOffsetStruct?, false);
@@ -10217,18 +10217,18 @@ internal class Program
Eval(28078, v is ImplementTwoInterface[], false);
Eval(28079, v is ImplementTwoInterface?, false);
Eval(28080, v is ImplementTwoInterface?[], false);
- Eval(28081, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(28082, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(28083, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(28084, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(28085, v is ImplementTwoInterfaceGen<int>, false);
- Eval(28086, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(28087, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(28088, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(28089, v is ImplementAllInterface<int>, false);
- Eval(28090, v is ImplementAllInterface<int>[], false);
- Eval(28091, v is ImplementAllInterface<int>?, false);
- Eval(28092, v is ImplementAllInterface<int>?[], false);
+// Eval(28081, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(28082, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(28083, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(28084, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(28085, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(28086, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(28087, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(28088, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(28089, v is ImplementAllInterface<int>, false);
+// Eval(28090, v is ImplementAllInterface<int>[], false);
+// Eval(28091, v is ImplementAllInterface<int>?, false);
+// Eval(28092, v is ImplementAllInterface<int>?[], false);
Eval(28093, v is IntE, false);
Eval(28094, v is IntE[], false);
Eval(28095, v is IntE?, false);
@@ -10327,38 +10327,38 @@ internal class Program
Eval(28188, v is IEmpty[], false);
Eval(28189, v is INotEmpty, false);
Eval(28190, v is INotEmpty[], false);
- Eval(28191, v is IEmptyGen<int>, false);
- Eval(28192, v is IEmptyGen<int>[], false);
- Eval(28193, v is INotEmptyGen<int>, false);
- Eval(28194, v is INotEmptyGen<int>[], false);
+// Eval(28191, v is IEmptyGen<int>, false);
+// Eval(28192, v is IEmptyGen<int>[], false);
+// Eval(28193, v is INotEmptyGen<int>, false);
+// Eval(28194, v is INotEmptyGen<int>[], false);
Eval(28195, v is SimpleDelegate, false);
Eval(28196, v is SimpleDelegate[], false);
- Eval(28197, v is GenericDelegate<int>, false);
- Eval(28198, v is GenericDelegate<int>[], false);
+// Eval(28197, v is GenericDelegate<int>, false);
+// Eval(28198, v is GenericDelegate<int>[], false);
Eval(28199, v is EmptyClass, false);
Eval(28200, v is EmptyClass[], false);
Eval(28201, v is NotEmptyClass, false);
Eval(28202, v is NotEmptyClass[], false);
- Eval(28203, v is EmptyClassGen<int>, false);
- Eval(28204, v is EmptyClassGen<int>[], false);
- Eval(28205, v is NotEmptyClassGen<Guid>, false);
- Eval(28206, v is NotEmptyClassGen<Guid>[], false);
- Eval(28207, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(28208, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(28203, v is EmptyClassGen<int>, false);
+// Eval(28204, v is EmptyClassGen<int>[], false);
+// Eval(28205, v is NotEmptyClassGen<Guid>, false);
+// Eval(28206, v is NotEmptyClassGen<Guid>[], false);
+// Eval(28207, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(28208, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(28209, v is NestedClass, false);
Eval(28210, v is NestedClass[], false);
- Eval(28211, v is NestedClassGen<Decimal>, false);
- Eval(28212, v is NestedClassGen<Decimal>[], false);
+// Eval(28211, v is NestedClassGen<Decimal>, false);
+// Eval(28212, v is NestedClassGen<Decimal>[], false);
Eval(28213, v is ImplementOneInterfaceC, false);
Eval(28214, v is ImplementOneInterfaceC[], false);
Eval(28215, v is ImplementTwoInterfaceC, false);
Eval(28216, v is ImplementTwoInterfaceC[], false);
- Eval(28217, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(28218, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(28219, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(28220, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(28221, v is ImplementAllInterfaceC<int>, false);
- Eval(28222, v is ImplementAllInterfaceC<int>[], false);
+// Eval(28217, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(28218, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(28219, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(28220, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(28221, v is ImplementAllInterfaceC<int>, false);
+// Eval(28222, v is ImplementAllInterfaceC<int>[], false);
Eval(28223, v is SealedClass, false);
Eval(28224, v is SealedClass[], false);
}
@@ -10372,26 +10372,26 @@ internal class Program
Eval(28230, v is NotEmptyStruct[], false);
Eval(28231, v is NotEmptyStruct?, false);
Eval(28232, v is NotEmptyStruct?[], false);
- Eval(28233, v is EmptyStructGen<int>, false);
- Eval(28234, v is EmptyStructGen<int>[], false);
- Eval(28235, v is EmptyStructGen<int>?, false);
- Eval(28236, v is EmptyStructGen<int>?[], false);
- Eval(28237, v is NotEmptyStructGen<Guid>, false);
- Eval(28238, v is NotEmptyStructGen<Guid>[], false);
- Eval(28239, v is NotEmptyStructGen<Guid>?, false);
- Eval(28240, v is NotEmptyStructGen<Guid>?[], false);
- Eval(28241, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(28242, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(28243, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(28244, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(28233, v is EmptyStructGen<int>, false);
+// Eval(28234, v is EmptyStructGen<int>[], false);
+// Eval(28235, v is EmptyStructGen<int>?, false);
+// Eval(28236, v is EmptyStructGen<int>?[], false);
+// Eval(28237, v is NotEmptyStructGen<Guid>, false);
+// Eval(28238, v is NotEmptyStructGen<Guid>[], false);
+// Eval(28239, v is NotEmptyStructGen<Guid>?, false);
+// Eval(28240, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(28241, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(28242, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(28243, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(28244, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(28245, v is NestedStruct, false);
Eval(28246, v is NestedStruct[], false);
Eval(28247, v is NestedStruct?, false);
Eval(28248, v is NestedStruct?[], false);
- Eval(28249, v is NestedStructGen<Decimal>, false);
- Eval(28250, v is NestedStructGen<Decimal>[], false);
- Eval(28251, v is NestedStructGen<Decimal>?, false);
- Eval(28252, v is NestedStructGen<Decimal>?[], false);
+// Eval(28249, v is NestedStructGen<Decimal>, false);
+// Eval(28250, v is NestedStructGen<Decimal>[], false);
+// Eval(28251, v is NestedStructGen<Decimal>?, false);
+// Eval(28252, v is NestedStructGen<Decimal>?[], false);
Eval(28253, v is ExplicitFieldOffsetStruct, false);
Eval(28254, v is ExplicitFieldOffsetStruct[], false);
Eval(28255, v is ExplicitFieldOffsetStruct?, false);
@@ -10408,18 +10408,18 @@ internal class Program
Eval(28274, v is ImplementTwoInterface[], false);
Eval(28275, v is ImplementTwoInterface?, false);
Eval(28276, v is ImplementTwoInterface?[], false);
- Eval(28277, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(28278, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(28279, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(28280, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(28281, v is ImplementTwoInterfaceGen<int>, false);
- Eval(28282, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(28283, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(28284, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(28285, v is ImplementAllInterface<int>, false);
- Eval(28286, v is ImplementAllInterface<int>[], false);
- Eval(28287, v is ImplementAllInterface<int>?, false);
- Eval(28288, v is ImplementAllInterface<int>?[], false);
+// Eval(28277, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(28278, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(28279, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(28280, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(28281, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(28282, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(28283, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(28284, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(28285, v is ImplementAllInterface<int>, false);
+// Eval(28286, v is ImplementAllInterface<int>[], false);
+// Eval(28287, v is ImplementAllInterface<int>?, false);
+// Eval(28288, v is ImplementAllInterface<int>?[], false);
Eval(28289, v is IntE, false);
Eval(28290, v is IntE[], false);
Eval(28291, v is IntE?, false);
@@ -10518,38 +10518,38 @@ internal class Program
Eval(28384, v is IEmpty[], false);
Eval(28385, v is INotEmpty, false);
Eval(28386, v is INotEmpty[], false);
- Eval(28387, v is IEmptyGen<int>, false);
- Eval(28388, v is IEmptyGen<int>[], false);
- Eval(28389, v is INotEmptyGen<int>, false);
- Eval(28390, v is INotEmptyGen<int>[], false);
+// Eval(28387, v is IEmptyGen<int>, false);
+// Eval(28388, v is IEmptyGen<int>[], false);
+// Eval(28389, v is INotEmptyGen<int>, false);
+// Eval(28390, v is INotEmptyGen<int>[], false);
Eval(28391, v is SimpleDelegate, false);
Eval(28392, v is SimpleDelegate[], false);
- Eval(28393, v is GenericDelegate<int>, false);
- Eval(28394, v is GenericDelegate<int>[], false);
+// Eval(28393, v is GenericDelegate<int>, false);
+// Eval(28394, v is GenericDelegate<int>[], false);
Eval(28395, v is EmptyClass, false);
Eval(28396, v is EmptyClass[], false);
Eval(28397, v is NotEmptyClass, false);
Eval(28398, v is NotEmptyClass[], false);
- Eval(28399, v is EmptyClassGen<int>, false);
- Eval(28400, v is EmptyClassGen<int>[], false);
- Eval(28401, v is NotEmptyClassGen<Guid>, false);
- Eval(28402, v is NotEmptyClassGen<Guid>[], false);
- Eval(28403, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(28404, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(28399, v is EmptyClassGen<int>, false);
+// Eval(28400, v is EmptyClassGen<int>[], false);
+// Eval(28401, v is NotEmptyClassGen<Guid>, false);
+// Eval(28402, v is NotEmptyClassGen<Guid>[], false);
+// Eval(28403, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(28404, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(28405, v is NestedClass, false);
Eval(28406, v is NestedClass[], false);
- Eval(28407, v is NestedClassGen<Decimal>, false);
- Eval(28408, v is NestedClassGen<Decimal>[], false);
+// Eval(28407, v is NestedClassGen<Decimal>, false);
+// Eval(28408, v is NestedClassGen<Decimal>[], false);
Eval(28409, v is ImplementOneInterfaceC, false);
Eval(28410, v is ImplementOneInterfaceC[], false);
Eval(28411, v is ImplementTwoInterfaceC, false);
Eval(28412, v is ImplementTwoInterfaceC[], false);
- Eval(28413, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(28414, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(28415, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(28416, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(28417, v is ImplementAllInterfaceC<int>, false);
- Eval(28418, v is ImplementAllInterfaceC<int>[], false);
+// Eval(28413, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(28414, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(28415, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(28416, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(28417, v is ImplementAllInterfaceC<int>, false);
+// Eval(28418, v is ImplementAllInterfaceC<int>[], false);
Eval(28419, v is SealedClass, false);
Eval(28420, v is SealedClass[], false);
}
@@ -10566,26 +10566,26 @@ internal class Program
Eval(28426, v is NotEmptyStruct[], false);
Eval(28427, v is NotEmptyStruct?, false);
Eval(28428, v is NotEmptyStruct?[], false);
- Eval(28429, v is EmptyStructGen<int>, false);
- Eval(28430, v is EmptyStructGen<int>[], false);
- Eval(28431, v is EmptyStructGen<int>?, false);
- Eval(28432, v is EmptyStructGen<int>?[], false);
- Eval(28433, v is NotEmptyStructGen<Guid>, false);
- Eval(28434, v is NotEmptyStructGen<Guid>[], false);
- Eval(28435, v is NotEmptyStructGen<Guid>?, false);
- Eval(28436, v is NotEmptyStructGen<Guid>?[], false);
- Eval(28437, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(28438, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(28439, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(28440, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(28429, v is EmptyStructGen<int>, false);
+// Eval(28430, v is EmptyStructGen<int>[], false);
+// Eval(28431, v is EmptyStructGen<int>?, false);
+// Eval(28432, v is EmptyStructGen<int>?[], false);
+// Eval(28433, v is NotEmptyStructGen<Guid>, false);
+// Eval(28434, v is NotEmptyStructGen<Guid>[], false);
+// Eval(28435, v is NotEmptyStructGen<Guid>?, false);
+// Eval(28436, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(28437, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(28438, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(28439, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(28440, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(28441, v is NestedStruct, false);
Eval(28442, v is NestedStruct[], false);
Eval(28443, v is NestedStruct?, false);
Eval(28444, v is NestedStruct?[], false);
- Eval(28445, v is NestedStructGen<Decimal>, false);
- Eval(28446, v is NestedStructGen<Decimal>[], false);
- Eval(28447, v is NestedStructGen<Decimal>?, false);
- Eval(28448, v is NestedStructGen<Decimal>?[], false);
+// Eval(28445, v is NestedStructGen<Decimal>, false);
+// Eval(28446, v is NestedStructGen<Decimal>[], false);
+// Eval(28447, v is NestedStructGen<Decimal>?, false);
+// Eval(28448, v is NestedStructGen<Decimal>?[], false);
Eval(28449, v is ExplicitFieldOffsetStruct, false);
Eval(28450, v is ExplicitFieldOffsetStruct[], false);
Eval(28451, v is ExplicitFieldOffsetStruct?, false);
@@ -10602,18 +10602,18 @@ internal class Program
Eval(28470, v is ImplementTwoInterface[], false);
Eval(28471, v is ImplementTwoInterface?, false);
Eval(28472, v is ImplementTwoInterface?[], false);
- Eval(28473, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(28474, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(28475, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(28476, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(28477, v is ImplementTwoInterfaceGen<int>, false);
- Eval(28478, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(28479, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(28480, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(28481, v is ImplementAllInterface<int>, false);
- Eval(28482, v is ImplementAllInterface<int>[], false);
- Eval(28483, v is ImplementAllInterface<int>?, false);
- Eval(28484, v is ImplementAllInterface<int>?[], false);
+// Eval(28473, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(28474, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(28475, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(28476, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(28477, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(28478, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(28479, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(28480, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(28481, v is ImplementAllInterface<int>, false);
+// Eval(28482, v is ImplementAllInterface<int>[], false);
+// Eval(28483, v is ImplementAllInterface<int>?, false);
+// Eval(28484, v is ImplementAllInterface<int>?[], false);
Eval(28485, v is IntE, false);
Eval(28486, v is IntE[], false);
Eval(28487, v is IntE?, false);
@@ -10712,38 +10712,38 @@ internal class Program
Eval(28580, v is IEmpty[], false);
Eval(28581, v is INotEmpty, false);
Eval(28582, v is INotEmpty[], false);
- Eval(28583, v is IEmptyGen<int>, false);
- Eval(28584, v is IEmptyGen<int>[], false);
- Eval(28585, v is INotEmptyGen<int>, false);
- Eval(28586, v is INotEmptyGen<int>[], false);
+// Eval(28583, v is IEmptyGen<int>, false);
+// Eval(28584, v is IEmptyGen<int>[], false);
+// Eval(28585, v is INotEmptyGen<int>, false);
+// Eval(28586, v is INotEmptyGen<int>[], false);
Eval(28587, v is SimpleDelegate, false);
Eval(28588, v is SimpleDelegate[], false);
- Eval(28589, v is GenericDelegate<int>, false);
- Eval(28590, v is GenericDelegate<int>[], false);
+// Eval(28589, v is GenericDelegate<int>, false);
+// Eval(28590, v is GenericDelegate<int>[], false);
Eval(28591, v is EmptyClass, false);
Eval(28592, v is EmptyClass[], false);
Eval(28593, v is NotEmptyClass, false);
Eval(28594, v is NotEmptyClass[], false);
- Eval(28595, v is EmptyClassGen<int>, false);
- Eval(28596, v is EmptyClassGen<int>[], false);
- Eval(28597, v is NotEmptyClassGen<Guid>, false);
- Eval(28598, v is NotEmptyClassGen<Guid>[], false);
- Eval(28599, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(28600, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(28595, v is EmptyClassGen<int>, false);
+// Eval(28596, v is EmptyClassGen<int>[], false);
+// Eval(28597, v is NotEmptyClassGen<Guid>, false);
+// Eval(28598, v is NotEmptyClassGen<Guid>[], false);
+// Eval(28599, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(28600, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(28601, v is NestedClass, false);
Eval(28602, v is NestedClass[], false);
- Eval(28603, v is NestedClassGen<Decimal>, false);
- Eval(28604, v is NestedClassGen<Decimal>[], false);
+// Eval(28603, v is NestedClassGen<Decimal>, false);
+// Eval(28604, v is NestedClassGen<Decimal>[], false);
Eval(28605, v is ImplementOneInterfaceC, false);
Eval(28606, v is ImplementOneInterfaceC[], false);
Eval(28607, v is ImplementTwoInterfaceC, false);
Eval(28608, v is ImplementTwoInterfaceC[], false);
- Eval(28609, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(28610, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(28611, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(28612, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(28613, v is ImplementAllInterfaceC<int>, false);
- Eval(28614, v is ImplementAllInterfaceC<int>[], false);
+// Eval(28609, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(28610, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(28611, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(28612, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(28613, v is ImplementAllInterfaceC<int>, false);
+// Eval(28614, v is ImplementAllInterfaceC<int>[], false);
Eval(28615, v is SealedClass, false);
Eval(28616, v is SealedClass[], false);
}
@@ -10757,26 +10757,26 @@ internal class Program
Eval(28622, v is NotEmptyStruct[], false);
Eval(28623, v is NotEmptyStruct?, false);
Eval(28624, v is NotEmptyStruct?[], false);
- Eval(28625, v is EmptyStructGen<int>, false);
- Eval(28626, v is EmptyStructGen<int>[], false);
- Eval(28627, v is EmptyStructGen<int>?, false);
- Eval(28628, v is EmptyStructGen<int>?[], false);
- Eval(28629, v is NotEmptyStructGen<Guid>, false);
- Eval(28630, v is NotEmptyStructGen<Guid>[], false);
- Eval(28631, v is NotEmptyStructGen<Guid>?, false);
- Eval(28632, v is NotEmptyStructGen<Guid>?[], false);
- Eval(28633, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(28634, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(28635, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(28636, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(28625, v is EmptyStructGen<int>, false);
+// Eval(28626, v is EmptyStructGen<int>[], false);
+// Eval(28627, v is EmptyStructGen<int>?, false);
+// Eval(28628, v is EmptyStructGen<int>?[], false);
+// Eval(28629, v is NotEmptyStructGen<Guid>, false);
+// Eval(28630, v is NotEmptyStructGen<Guid>[], false);
+// Eval(28631, v is NotEmptyStructGen<Guid>?, false);
+// Eval(28632, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(28633, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(28634, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(28635, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(28636, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(28637, v is NestedStruct, false);
Eval(28638, v is NestedStruct[], false);
Eval(28639, v is NestedStruct?, false);
Eval(28640, v is NestedStruct?[], false);
- Eval(28641, v is NestedStructGen<Decimal>, false);
- Eval(28642, v is NestedStructGen<Decimal>[], false);
- Eval(28643, v is NestedStructGen<Decimal>?, false);
- Eval(28644, v is NestedStructGen<Decimal>?[], false);
+// Eval(28641, v is NestedStructGen<Decimal>, false);
+// Eval(28642, v is NestedStructGen<Decimal>[], false);
+// Eval(28643, v is NestedStructGen<Decimal>?, false);
+// Eval(28644, v is NestedStructGen<Decimal>?[], false);
Eval(28645, v is ExplicitFieldOffsetStruct, false);
Eval(28646, v is ExplicitFieldOffsetStruct[], false);
Eval(28647, v is ExplicitFieldOffsetStruct?, false);
@@ -10793,18 +10793,18 @@ internal class Program
Eval(28666, v is ImplementTwoInterface[], false);
Eval(28667, v is ImplementTwoInterface?, false);
Eval(28668, v is ImplementTwoInterface?[], false);
- Eval(28669, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(28670, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(28671, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(28672, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(28673, v is ImplementTwoInterfaceGen<int>, false);
- Eval(28674, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(28675, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(28676, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(28677, v is ImplementAllInterface<int>, false);
- Eval(28678, v is ImplementAllInterface<int>[], false);
- Eval(28679, v is ImplementAllInterface<int>?, false);
- Eval(28680, v is ImplementAllInterface<int>?[], false);
+// Eval(28669, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(28670, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(28671, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(28672, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(28673, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(28674, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(28675, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(28676, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(28677, v is ImplementAllInterface<int>, false);
+// Eval(28678, v is ImplementAllInterface<int>[], false);
+// Eval(28679, v is ImplementAllInterface<int>?, false);
+// Eval(28680, v is ImplementAllInterface<int>?[], false);
Eval(28681, v is IntE, false);
Eval(28682, v is IntE[], false);
Eval(28683, v is IntE?, false);
@@ -10903,38 +10903,38 @@ internal class Program
Eval(28776, v is IEmpty[], false);
Eval(28777, v is INotEmpty, false);
Eval(28778, v is INotEmpty[], false);
- Eval(28779, v is IEmptyGen<int>, false);
- Eval(28780, v is IEmptyGen<int>[], false);
- Eval(28781, v is INotEmptyGen<int>, false);
- Eval(28782, v is INotEmptyGen<int>[], false);
+// Eval(28779, v is IEmptyGen<int>, false);
+// Eval(28780, v is IEmptyGen<int>[], false);
+// Eval(28781, v is INotEmptyGen<int>, false);
+// Eval(28782, v is INotEmptyGen<int>[], false);
Eval(28783, v is SimpleDelegate, false);
Eval(28784, v is SimpleDelegate[], false);
- Eval(28785, v is GenericDelegate<int>, false);
- Eval(28786, v is GenericDelegate<int>[], false);
+// Eval(28785, v is GenericDelegate<int>, false);
+// Eval(28786, v is GenericDelegate<int>[], false);
Eval(28787, v is EmptyClass, false);
Eval(28788, v is EmptyClass[], false);
Eval(28789, v is NotEmptyClass, false);
Eval(28790, v is NotEmptyClass[], false);
- Eval(28791, v is EmptyClassGen<int>, false);
- Eval(28792, v is EmptyClassGen<int>[], false);
- Eval(28793, v is NotEmptyClassGen<Guid>, false);
- Eval(28794, v is NotEmptyClassGen<Guid>[], false);
- Eval(28795, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(28796, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(28791, v is EmptyClassGen<int>, false);
+// Eval(28792, v is EmptyClassGen<int>[], false);
+// Eval(28793, v is NotEmptyClassGen<Guid>, false);
+// Eval(28794, v is NotEmptyClassGen<Guid>[], false);
+// Eval(28795, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(28796, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(28797, v is NestedClass, false);
Eval(28798, v is NestedClass[], false);
- Eval(28799, v is NestedClassGen<Decimal>, false);
- Eval(28800, v is NestedClassGen<Decimal>[], false);
+// Eval(28799, v is NestedClassGen<Decimal>, false);
+// Eval(28800, v is NestedClassGen<Decimal>[], false);
Eval(28801, v is ImplementOneInterfaceC, false);
Eval(28802, v is ImplementOneInterfaceC[], false);
Eval(28803, v is ImplementTwoInterfaceC, false);
Eval(28804, v is ImplementTwoInterfaceC[], false);
- Eval(28805, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(28806, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(28807, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(28808, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(28809, v is ImplementAllInterfaceC<int>, false);
- Eval(28810, v is ImplementAllInterfaceC<int>[], false);
+// Eval(28805, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(28806, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(28807, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(28808, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(28809, v is ImplementAllInterfaceC<int>, false);
+// Eval(28810, v is ImplementAllInterfaceC<int>[], false);
Eval(28811, v is SealedClass, false);
Eval(28812, v is SealedClass[], false);
}
@@ -10948,26 +10948,26 @@ internal class Program
Eval(28818, v is NotEmptyStruct[], false);
Eval(28819, v is NotEmptyStruct?, false);
Eval(28820, v is NotEmptyStruct?[], false);
- Eval(28821, v is EmptyStructGen<int>, false);
- Eval(28822, v is EmptyStructGen<int>[], false);
- Eval(28823, v is EmptyStructGen<int>?, false);
- Eval(28824, v is EmptyStructGen<int>?[], false);
- Eval(28825, v is NotEmptyStructGen<Guid>, false);
- Eval(28826, v is NotEmptyStructGen<Guid>[], false);
- Eval(28827, v is NotEmptyStructGen<Guid>?, false);
- Eval(28828, v is NotEmptyStructGen<Guid>?[], false);
- Eval(28829, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(28830, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(28831, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(28832, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(28821, v is EmptyStructGen<int>, false);
+// Eval(28822, v is EmptyStructGen<int>[], false);
+// Eval(28823, v is EmptyStructGen<int>?, false);
+// Eval(28824, v is EmptyStructGen<int>?[], false);
+// Eval(28825, v is NotEmptyStructGen<Guid>, false);
+// Eval(28826, v is NotEmptyStructGen<Guid>[], false);
+// Eval(28827, v is NotEmptyStructGen<Guid>?, false);
+// Eval(28828, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(28829, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(28830, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(28831, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(28832, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(28833, v is NestedStruct, false);
Eval(28834, v is NestedStruct[], false);
Eval(28835, v is NestedStruct?, false);
Eval(28836, v is NestedStruct?[], false);
- Eval(28837, v is NestedStructGen<Decimal>, false);
- Eval(28838, v is NestedStructGen<Decimal>[], false);
- Eval(28839, v is NestedStructGen<Decimal>?, false);
- Eval(28840, v is NestedStructGen<Decimal>?[], false);
+// Eval(28837, v is NestedStructGen<Decimal>, false);
+// Eval(28838, v is NestedStructGen<Decimal>[], false);
+// Eval(28839, v is NestedStructGen<Decimal>?, false);
+// Eval(28840, v is NestedStructGen<Decimal>?[], false);
Eval(28841, v is ExplicitFieldOffsetStruct, false);
Eval(28842, v is ExplicitFieldOffsetStruct[], false);
Eval(28843, v is ExplicitFieldOffsetStruct?, false);
@@ -10984,18 +10984,18 @@ internal class Program
Eval(28862, v is ImplementTwoInterface[], false);
Eval(28863, v is ImplementTwoInterface?, false);
Eval(28864, v is ImplementTwoInterface?[], false);
- Eval(28865, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(28866, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(28867, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(28868, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(28869, v is ImplementTwoInterfaceGen<int>, false);
- Eval(28870, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(28871, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(28872, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(28873, v is ImplementAllInterface<int>, false);
- Eval(28874, v is ImplementAllInterface<int>[], false);
- Eval(28875, v is ImplementAllInterface<int>?, false);
- Eval(28876, v is ImplementAllInterface<int>?[], false);
+// Eval(28865, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(28866, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(28867, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(28868, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(28869, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(28870, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(28871, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(28872, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(28873, v is ImplementAllInterface<int>, false);
+// Eval(28874, v is ImplementAllInterface<int>[], false);
+// Eval(28875, v is ImplementAllInterface<int>?, false);
+// Eval(28876, v is ImplementAllInterface<int>?[], false);
Eval(28877, v is IntE, false);
Eval(28878, v is IntE[], false);
Eval(28879, v is IntE?, false);
@@ -11094,38 +11094,38 @@ internal class Program
Eval(28972, v is IEmpty[], false);
Eval(28973, v is INotEmpty, false);
Eval(28974, v is INotEmpty[], false);
- Eval(28975, v is IEmptyGen<int>, false);
- Eval(28976, v is IEmptyGen<int>[], false);
- Eval(28977, v is INotEmptyGen<int>, false);
- Eval(28978, v is INotEmptyGen<int>[], false);
+// Eval(28975, v is IEmptyGen<int>, false);
+// Eval(28976, v is IEmptyGen<int>[], false);
+// Eval(28977, v is INotEmptyGen<int>, false);
+// Eval(28978, v is INotEmptyGen<int>[], false);
Eval(28979, v is SimpleDelegate, false);
Eval(28980, v is SimpleDelegate[], false);
- Eval(28981, v is GenericDelegate<int>, false);
- Eval(28982, v is GenericDelegate<int>[], false);
+// Eval(28981, v is GenericDelegate<int>, false);
+// Eval(28982, v is GenericDelegate<int>[], false);
Eval(28983, v is EmptyClass, false);
Eval(28984, v is EmptyClass[], false);
Eval(28985, v is NotEmptyClass, false);
Eval(28986, v is NotEmptyClass[], false);
- Eval(28987, v is EmptyClassGen<int>, false);
- Eval(28988, v is EmptyClassGen<int>[], false);
- Eval(28989, v is NotEmptyClassGen<Guid>, false);
- Eval(28990, v is NotEmptyClassGen<Guid>[], false);
- Eval(28991, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(28992, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(28987, v is EmptyClassGen<int>, false);
+// Eval(28988, v is EmptyClassGen<int>[], false);
+// Eval(28989, v is NotEmptyClassGen<Guid>, false);
+// Eval(28990, v is NotEmptyClassGen<Guid>[], false);
+// Eval(28991, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(28992, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(28993, v is NestedClass, false);
Eval(28994, v is NestedClass[], false);
- Eval(28995, v is NestedClassGen<Decimal>, false);
- Eval(28996, v is NestedClassGen<Decimal>[], false);
+// Eval(28995, v is NestedClassGen<Decimal>, false);
+// Eval(28996, v is NestedClassGen<Decimal>[], false);
Eval(28997, v is ImplementOneInterfaceC, false);
Eval(28998, v is ImplementOneInterfaceC[], false);
Eval(28999, v is ImplementTwoInterfaceC, false);
Eval(29000, v is ImplementTwoInterfaceC[], false);
- Eval(29001, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(29002, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(29003, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(29004, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(29005, v is ImplementAllInterfaceC<int>, false);
- Eval(29006, v is ImplementAllInterfaceC<int>[], false);
+// Eval(29001, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(29002, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(29003, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(29004, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(29005, v is ImplementAllInterfaceC<int>, false);
+// Eval(29006, v is ImplementAllInterfaceC<int>[], false);
Eval(29007, v is SealedClass, false);
Eval(29008, v is SealedClass[], false);
}
@@ -11139,26 +11139,26 @@ internal class Program
Eval(29014, v is NotEmptyStruct[], false);
Eval(29015, v is NotEmptyStruct?, false);
Eval(29016, v is NotEmptyStruct?[], false);
- Eval(29017, v is EmptyStructGen<int>, false);
- Eval(29018, v is EmptyStructGen<int>[], false);
- Eval(29019, v is EmptyStructGen<int>?, false);
- Eval(29020, v is EmptyStructGen<int>?[], false);
- Eval(29021, v is NotEmptyStructGen<Guid>, false);
- Eval(29022, v is NotEmptyStructGen<Guid>[], false);
- Eval(29023, v is NotEmptyStructGen<Guid>?, false);
- Eval(29024, v is NotEmptyStructGen<Guid>?[], false);
- Eval(29025, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(29026, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(29027, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(29028, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(29017, v is EmptyStructGen<int>, false);
+// Eval(29018, v is EmptyStructGen<int>[], false);
+// Eval(29019, v is EmptyStructGen<int>?, false);
+// Eval(29020, v is EmptyStructGen<int>?[], false);
+// Eval(29021, v is NotEmptyStructGen<Guid>, false);
+// Eval(29022, v is NotEmptyStructGen<Guid>[], false);
+// Eval(29023, v is NotEmptyStructGen<Guid>?, false);
+// Eval(29024, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(29025, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(29026, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(29027, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(29028, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(29029, v is NestedStruct, false);
Eval(29030, v is NestedStruct[], false);
Eval(29031, v is NestedStruct?, false);
Eval(29032, v is NestedStruct?[], false);
- Eval(29033, v is NestedStructGen<Decimal>, false);
- Eval(29034, v is NestedStructGen<Decimal>[], false);
- Eval(29035, v is NestedStructGen<Decimal>?, false);
- Eval(29036, v is NestedStructGen<Decimal>?[], false);
+// Eval(29033, v is NestedStructGen<Decimal>, false);
+// Eval(29034, v is NestedStructGen<Decimal>[], false);
+// Eval(29035, v is NestedStructGen<Decimal>?, false);
+// Eval(29036, v is NestedStructGen<Decimal>?[], false);
Eval(29037, v is ExplicitFieldOffsetStruct, false);
Eval(29038, v is ExplicitFieldOffsetStruct[], false);
Eval(29039, v is ExplicitFieldOffsetStruct?, false);
@@ -11175,18 +11175,18 @@ internal class Program
Eval(29058, v is ImplementTwoInterface[], false);
Eval(29059, v is ImplementTwoInterface?, false);
Eval(29060, v is ImplementTwoInterface?[], false);
- Eval(29061, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(29062, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(29063, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(29064, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(29065, v is ImplementTwoInterfaceGen<int>, false);
- Eval(29066, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(29067, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(29068, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(29069, v is ImplementAllInterface<int>, false);
- Eval(29070, v is ImplementAllInterface<int>[], false);
- Eval(29071, v is ImplementAllInterface<int>?, false);
- Eval(29072, v is ImplementAllInterface<int>?[], false);
+// Eval(29061, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(29062, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(29063, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(29064, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(29065, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(29066, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(29067, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(29068, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(29069, v is ImplementAllInterface<int>, false);
+// Eval(29070, v is ImplementAllInterface<int>[], false);
+// Eval(29071, v is ImplementAllInterface<int>?, false);
+// Eval(29072, v is ImplementAllInterface<int>?[], false);
Eval(29073, v is IntE, false);
Eval(29074, v is IntE[], false);
Eval(29075, v is IntE?, false);
@@ -11285,38 +11285,38 @@ internal class Program
Eval(29168, v is IEmpty[], false);
Eval(29169, v is INotEmpty, false);
Eval(29170, v is INotEmpty[], false);
- Eval(29171, v is IEmptyGen<int>, false);
- Eval(29172, v is IEmptyGen<int>[], false);
- Eval(29173, v is INotEmptyGen<int>, false);
- Eval(29174, v is INotEmptyGen<int>[], false);
+// Eval(29171, v is IEmptyGen<int>, false);
+// Eval(29172, v is IEmptyGen<int>[], false);
+// Eval(29173, v is INotEmptyGen<int>, false);
+// Eval(29174, v is INotEmptyGen<int>[], false);
Eval(29175, v is SimpleDelegate, false);
Eval(29176, v is SimpleDelegate[], false);
- Eval(29177, v is GenericDelegate<int>, false);
- Eval(29178, v is GenericDelegate<int>[], false);
+// Eval(29177, v is GenericDelegate<int>, false);
+// Eval(29178, v is GenericDelegate<int>[], false);
Eval(29179, v is EmptyClass, false);
Eval(29180, v is EmptyClass[], false);
Eval(29181, v is NotEmptyClass, false);
Eval(29182, v is NotEmptyClass[], false);
- Eval(29183, v is EmptyClassGen<int>, false);
- Eval(29184, v is EmptyClassGen<int>[], false);
- Eval(29185, v is NotEmptyClassGen<Guid>, false);
- Eval(29186, v is NotEmptyClassGen<Guid>[], false);
- Eval(29187, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(29188, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(29183, v is EmptyClassGen<int>, false);
+// Eval(29184, v is EmptyClassGen<int>[], false);
+// Eval(29185, v is NotEmptyClassGen<Guid>, false);
+// Eval(29186, v is NotEmptyClassGen<Guid>[], false);
+// Eval(29187, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(29188, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(29189, v is NestedClass, false);
Eval(29190, v is NestedClass[], false);
- Eval(29191, v is NestedClassGen<Decimal>, false);
- Eval(29192, v is NestedClassGen<Decimal>[], false);
+// Eval(29191, v is NestedClassGen<Decimal>, false);
+// Eval(29192, v is NestedClassGen<Decimal>[], false);
Eval(29193, v is ImplementOneInterfaceC, false);
Eval(29194, v is ImplementOneInterfaceC[], false);
Eval(29195, v is ImplementTwoInterfaceC, false);
Eval(29196, v is ImplementTwoInterfaceC[], false);
- Eval(29197, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(29198, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(29199, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(29200, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(29201, v is ImplementAllInterfaceC<int>, false);
- Eval(29202, v is ImplementAllInterfaceC<int>[], false);
+// Eval(29197, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(29198, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(29199, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(29200, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(29201, v is ImplementAllInterfaceC<int>, false);
+// Eval(29202, v is ImplementAllInterfaceC<int>[], false);
Eval(29203, v is SealedClass, false);
Eval(29204, v is SealedClass[], false);
}
@@ -11330,26 +11330,26 @@ internal class Program
Eval(29210, v is NotEmptyStruct[], false);
Eval(29211, v is NotEmptyStruct?, false);
Eval(29212, v is NotEmptyStruct?[], false);
- Eval(29213, v is EmptyStructGen<int>, false);
- Eval(29214, v is EmptyStructGen<int>[], false);
- Eval(29215, v is EmptyStructGen<int>?, false);
- Eval(29216, v is EmptyStructGen<int>?[], false);
- Eval(29217, v is NotEmptyStructGen<Guid>, false);
- Eval(29218, v is NotEmptyStructGen<Guid>[], false);
- Eval(29219, v is NotEmptyStructGen<Guid>?, false);
- Eval(29220, v is NotEmptyStructGen<Guid>?[], false);
- Eval(29221, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(29222, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(29223, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(29224, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(29213, v is EmptyStructGen<int>, false);
+// Eval(29214, v is EmptyStructGen<int>[], false);
+// Eval(29215, v is EmptyStructGen<int>?, false);
+// Eval(29216, v is EmptyStructGen<int>?[], false);
+// Eval(29217, v is NotEmptyStructGen<Guid>, false);
+// Eval(29218, v is NotEmptyStructGen<Guid>[], false);
+// Eval(29219, v is NotEmptyStructGen<Guid>?, false);
+// Eval(29220, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(29221, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(29222, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(29223, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(29224, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(29225, v is NestedStruct, false);
Eval(29226, v is NestedStruct[], false);
Eval(29227, v is NestedStruct?, false);
Eval(29228, v is NestedStruct?[], false);
- Eval(29229, v is NestedStructGen<Decimal>, false);
- Eval(29230, v is NestedStructGen<Decimal>[], false);
- Eval(29231, v is NestedStructGen<Decimal>?, false);
- Eval(29232, v is NestedStructGen<Decimal>?[], false);
+// Eval(29229, v is NestedStructGen<Decimal>, false);
+// Eval(29230, v is NestedStructGen<Decimal>[], false);
+// Eval(29231, v is NestedStructGen<Decimal>?, false);
+// Eval(29232, v is NestedStructGen<Decimal>?[], false);
Eval(29233, v is ExplicitFieldOffsetStruct, false);
Eval(29234, v is ExplicitFieldOffsetStruct[], false);
Eval(29235, v is ExplicitFieldOffsetStruct?, false);
@@ -11366,18 +11366,18 @@ internal class Program
Eval(29254, v is ImplementTwoInterface[], false);
Eval(29255, v is ImplementTwoInterface?, false);
Eval(29256, v is ImplementTwoInterface?[], false);
- Eval(29257, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(29258, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(29259, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(29260, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(29261, v is ImplementTwoInterfaceGen<int>, false);
- Eval(29262, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(29263, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(29264, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(29265, v is ImplementAllInterface<int>, false);
- Eval(29266, v is ImplementAllInterface<int>[], false);
- Eval(29267, v is ImplementAllInterface<int>?, false);
- Eval(29268, v is ImplementAllInterface<int>?[], false);
+// Eval(29257, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(29258, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(29259, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(29260, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(29261, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(29262, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(29263, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(29264, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(29265, v is ImplementAllInterface<int>, false);
+// Eval(29266, v is ImplementAllInterface<int>[], false);
+// Eval(29267, v is ImplementAllInterface<int>?, false);
+// Eval(29268, v is ImplementAllInterface<int>?[], false);
Eval(29269, v is IntE, false);
Eval(29270, v is IntE[], false);
Eval(29271, v is IntE?, false);
@@ -11476,38 +11476,38 @@ internal class Program
Eval(29364, v is IEmpty[], false);
Eval(29365, v is INotEmpty, false);
Eval(29366, v is INotEmpty[], false);
- Eval(29367, v is IEmptyGen<int>, false);
- Eval(29368, v is IEmptyGen<int>[], false);
- Eval(29369, v is INotEmptyGen<int>, false);
- Eval(29370, v is INotEmptyGen<int>[], false);
+// Eval(29367, v is IEmptyGen<int>, false);
+// Eval(29368, v is IEmptyGen<int>[], false);
+// Eval(29369, v is INotEmptyGen<int>, false);
+// Eval(29370, v is INotEmptyGen<int>[], false);
Eval(29371, v is SimpleDelegate, false);
Eval(29372, v is SimpleDelegate[], false);
- Eval(29373, v is GenericDelegate<int>, false);
- Eval(29374, v is GenericDelegate<int>[], false);
+// Eval(29373, v is GenericDelegate<int>, false);
+// Eval(29374, v is GenericDelegate<int>[], false);
Eval(29375, v is EmptyClass, false);
Eval(29376, v is EmptyClass[], false);
Eval(29377, v is NotEmptyClass, false);
Eval(29378, v is NotEmptyClass[], false);
- Eval(29379, v is EmptyClassGen<int>, false);
- Eval(29380, v is EmptyClassGen<int>[], false);
- Eval(29381, v is NotEmptyClassGen<Guid>, false);
- Eval(29382, v is NotEmptyClassGen<Guid>[], false);
- Eval(29383, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(29384, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(29379, v is EmptyClassGen<int>, false);
+// Eval(29380, v is EmptyClassGen<int>[], false);
+// Eval(29381, v is NotEmptyClassGen<Guid>, false);
+// Eval(29382, v is NotEmptyClassGen<Guid>[], false);
+// Eval(29383, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(29384, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(29385, v is NestedClass, false);
Eval(29386, v is NestedClass[], false);
- Eval(29387, v is NestedClassGen<Decimal>, false);
- Eval(29388, v is NestedClassGen<Decimal>[], false);
+// Eval(29387, v is NestedClassGen<Decimal>, false);
+// Eval(29388, v is NestedClassGen<Decimal>[], false);
Eval(29389, v is ImplementOneInterfaceC, false);
Eval(29390, v is ImplementOneInterfaceC[], false);
Eval(29391, v is ImplementTwoInterfaceC, false);
Eval(29392, v is ImplementTwoInterfaceC[], false);
- Eval(29393, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(29394, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(29395, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(29396, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(29397, v is ImplementAllInterfaceC<int>, false);
- Eval(29398, v is ImplementAllInterfaceC<int>[], false);
+// Eval(29393, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(29394, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(29395, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(29396, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(29397, v is ImplementAllInterfaceC<int>, false);
+// Eval(29398, v is ImplementAllInterfaceC<int>[], false);
Eval(29399, v is SealedClass, false);
Eval(29400, v is SealedClass[], false);
}
@@ -11524,26 +11524,26 @@ internal class Program
Eval(29406, v is NotEmptyStruct[], false);
Eval(29407, v is NotEmptyStruct?, false);
Eval(29408, v is NotEmptyStruct?[], false);
- Eval(29409, v is EmptyStructGen<int>, false);
- Eval(29410, v is EmptyStructGen<int>[], false);
- Eval(29411, v is EmptyStructGen<int>?, false);
- Eval(29412, v is EmptyStructGen<int>?[], false);
- Eval(29413, v is NotEmptyStructGen<Guid>, false);
- Eval(29414, v is NotEmptyStructGen<Guid>[], false);
- Eval(29415, v is NotEmptyStructGen<Guid>?, false);
- Eval(29416, v is NotEmptyStructGen<Guid>?[], false);
- Eval(29417, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(29418, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(29419, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(29420, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(29409, v is EmptyStructGen<int>, false);
+// Eval(29410, v is EmptyStructGen<int>[], false);
+// Eval(29411, v is EmptyStructGen<int>?, false);
+// Eval(29412, v is EmptyStructGen<int>?[], false);
+// Eval(29413, v is NotEmptyStructGen<Guid>, false);
+// Eval(29414, v is NotEmptyStructGen<Guid>[], false);
+// Eval(29415, v is NotEmptyStructGen<Guid>?, false);
+// Eval(29416, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(29417, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(29418, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(29419, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(29420, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(29421, v is NestedStruct, false);
Eval(29422, v is NestedStruct[], false);
Eval(29423, v is NestedStruct?, false);
Eval(29424, v is NestedStruct?[], false);
- Eval(29425, v is NestedStructGen<Decimal>, false);
- Eval(29426, v is NestedStructGen<Decimal>[], false);
- Eval(29427, v is NestedStructGen<Decimal>?, false);
- Eval(29428, v is NestedStructGen<Decimal>?[], false);
+// Eval(29425, v is NestedStructGen<Decimal>, false);
+// Eval(29426, v is NestedStructGen<Decimal>[], false);
+// Eval(29427, v is NestedStructGen<Decimal>?, false);
+// Eval(29428, v is NestedStructGen<Decimal>?[], false);
Eval(29429, v is ExplicitFieldOffsetStruct, false);
Eval(29430, v is ExplicitFieldOffsetStruct[], false);
Eval(29431, v is ExplicitFieldOffsetStruct?, false);
@@ -11560,18 +11560,18 @@ internal class Program
Eval(29450, v is ImplementTwoInterface[], false);
Eval(29451, v is ImplementTwoInterface?, false);
Eval(29452, v is ImplementTwoInterface?[], false);
- Eval(29453, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(29454, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(29455, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(29456, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(29457, v is ImplementTwoInterfaceGen<int>, false);
- Eval(29458, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(29459, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(29460, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(29461, v is ImplementAllInterface<int>, false);
- Eval(29462, v is ImplementAllInterface<int>[], false);
- Eval(29463, v is ImplementAllInterface<int>?, false);
- Eval(29464, v is ImplementAllInterface<int>?[], false);
+// Eval(29453, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(29454, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(29455, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(29456, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(29457, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(29458, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(29459, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(29460, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(29461, v is ImplementAllInterface<int>, false);
+// Eval(29462, v is ImplementAllInterface<int>[], false);
+// Eval(29463, v is ImplementAllInterface<int>?, false);
+// Eval(29464, v is ImplementAllInterface<int>?[], false);
Eval(29465, v is IntE, false);
Eval(29466, v is IntE[], false);
Eval(29467, v is IntE?, false);
@@ -11670,38 +11670,38 @@ internal class Program
Eval(29560, v is IEmpty[], false);
Eval(29561, v is INotEmpty, false);
Eval(29562, v is INotEmpty[], false);
- Eval(29563, v is IEmptyGen<int>, false);
- Eval(29564, v is IEmptyGen<int>[], false);
- Eval(29565, v is INotEmptyGen<int>, false);
- Eval(29566, v is INotEmptyGen<int>[], false);
+// Eval(29563, v is IEmptyGen<int>, false);
+// Eval(29564, v is IEmptyGen<int>[], false);
+// Eval(29565, v is INotEmptyGen<int>, false);
+// Eval(29566, v is INotEmptyGen<int>[], false);
Eval(29567, v is SimpleDelegate, false);
Eval(29568, v is SimpleDelegate[], false);
- Eval(29569, v is GenericDelegate<int>, false);
- Eval(29570, v is GenericDelegate<int>[], false);
+// Eval(29569, v is GenericDelegate<int>, false);
+// Eval(29570, v is GenericDelegate<int>[], false);
Eval(29571, v is EmptyClass, false);
Eval(29572, v is EmptyClass[], false);
Eval(29573, v is NotEmptyClass, false);
Eval(29574, v is NotEmptyClass[], false);
- Eval(29575, v is EmptyClassGen<int>, false);
- Eval(29576, v is EmptyClassGen<int>[], false);
- Eval(29577, v is NotEmptyClassGen<Guid>, false);
- Eval(29578, v is NotEmptyClassGen<Guid>[], false);
- Eval(29579, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(29580, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(29575, v is EmptyClassGen<int>, false);
+// Eval(29576, v is EmptyClassGen<int>[], false);
+// Eval(29577, v is NotEmptyClassGen<Guid>, false);
+// Eval(29578, v is NotEmptyClassGen<Guid>[], false);
+// Eval(29579, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(29580, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(29581, v is NestedClass, false);
Eval(29582, v is NestedClass[], false);
- Eval(29583, v is NestedClassGen<Decimal>, false);
- Eval(29584, v is NestedClassGen<Decimal>[], false);
+// Eval(29583, v is NestedClassGen<Decimal>, false);
+// Eval(29584, v is NestedClassGen<Decimal>[], false);
Eval(29585, v is ImplementOneInterfaceC, false);
Eval(29586, v is ImplementOneInterfaceC[], false);
Eval(29587, v is ImplementTwoInterfaceC, false);
Eval(29588, v is ImplementTwoInterfaceC[], false);
- Eval(29589, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(29590, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(29591, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(29592, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(29593, v is ImplementAllInterfaceC<int>, false);
- Eval(29594, v is ImplementAllInterfaceC<int>[], false);
+// Eval(29589, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(29590, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(29591, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(29592, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(29593, v is ImplementAllInterfaceC<int>, false);
+// Eval(29594, v is ImplementAllInterfaceC<int>[], false);
Eval(29595, v is SealedClass, false);
Eval(29596, v is SealedClass[], false);
}
@@ -11715,26 +11715,26 @@ internal class Program
Eval(29602, v is NotEmptyStruct[], false);
Eval(29603, v is NotEmptyStruct?, false);
Eval(29604, v is NotEmptyStruct?[], false);
- Eval(29605, v is EmptyStructGen<int>, false);
- Eval(29606, v is EmptyStructGen<int>[], false);
- Eval(29607, v is EmptyStructGen<int>?, false);
- Eval(29608, v is EmptyStructGen<int>?[], false);
- Eval(29609, v is NotEmptyStructGen<Guid>, false);
- Eval(29610, v is NotEmptyStructGen<Guid>[], false);
- Eval(29611, v is NotEmptyStructGen<Guid>?, false);
- Eval(29612, v is NotEmptyStructGen<Guid>?[], false);
- Eval(29613, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(29614, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(29615, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(29616, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(29605, v is EmptyStructGen<int>, false);
+// Eval(29606, v is EmptyStructGen<int>[], false);
+// Eval(29607, v is EmptyStructGen<int>?, false);
+// Eval(29608, v is EmptyStructGen<int>?[], false);
+// Eval(29609, v is NotEmptyStructGen<Guid>, false);
+// Eval(29610, v is NotEmptyStructGen<Guid>[], false);
+// Eval(29611, v is NotEmptyStructGen<Guid>?, false);
+// Eval(29612, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(29613, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(29614, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(29615, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(29616, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(29617, v is NestedStruct, false);
Eval(29618, v is NestedStruct[], false);
Eval(29619, v is NestedStruct?, false);
Eval(29620, v is NestedStruct?[], false);
- Eval(29621, v is NestedStructGen<Decimal>, false);
- Eval(29622, v is NestedStructGen<Decimal>[], false);
- Eval(29623, v is NestedStructGen<Decimal>?, false);
- Eval(29624, v is NestedStructGen<Decimal>?[], false);
+// Eval(29621, v is NestedStructGen<Decimal>, false);
+// Eval(29622, v is NestedStructGen<Decimal>[], false);
+// Eval(29623, v is NestedStructGen<Decimal>?, false);
+// Eval(29624, v is NestedStructGen<Decimal>?[], false);
Eval(29625, v is ExplicitFieldOffsetStruct, false);
Eval(29626, v is ExplicitFieldOffsetStruct[], false);
Eval(29627, v is ExplicitFieldOffsetStruct?, false);
@@ -11751,18 +11751,18 @@ internal class Program
Eval(29646, v is ImplementTwoInterface[], false);
Eval(29647, v is ImplementTwoInterface?, false);
Eval(29648, v is ImplementTwoInterface?[], false);
- Eval(29649, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(29650, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(29651, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(29652, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(29653, v is ImplementTwoInterfaceGen<int>, false);
- Eval(29654, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(29655, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(29656, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(29657, v is ImplementAllInterface<int>, false);
- Eval(29658, v is ImplementAllInterface<int>[], false);
- Eval(29659, v is ImplementAllInterface<int>?, false);
- Eval(29660, v is ImplementAllInterface<int>?[], false);
+// Eval(29649, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(29650, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(29651, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(29652, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(29653, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(29654, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(29655, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(29656, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(29657, v is ImplementAllInterface<int>, false);
+// Eval(29658, v is ImplementAllInterface<int>[], false);
+// Eval(29659, v is ImplementAllInterface<int>?, false);
+// Eval(29660, v is ImplementAllInterface<int>?[], false);
Eval(29661, v is IntE, false);
Eval(29662, v is IntE[], false);
Eval(29663, v is IntE?, false);
@@ -11861,38 +11861,38 @@ internal class Program
Eval(29756, v is IEmpty[], false);
Eval(29757, v is INotEmpty, false);
Eval(29758, v is INotEmpty[], false);
- Eval(29759, v is IEmptyGen<int>, false);
- Eval(29760, v is IEmptyGen<int>[], false);
- Eval(29761, v is INotEmptyGen<int>, false);
- Eval(29762, v is INotEmptyGen<int>[], false);
+// Eval(29759, v is IEmptyGen<int>, false);
+// Eval(29760, v is IEmptyGen<int>[], false);
+// Eval(29761, v is INotEmptyGen<int>, false);
+// Eval(29762, v is INotEmptyGen<int>[], false);
Eval(29763, v is SimpleDelegate, false);
Eval(29764, v is SimpleDelegate[], false);
- Eval(29765, v is GenericDelegate<int>, false);
- Eval(29766, v is GenericDelegate<int>[], false);
+// Eval(29765, v is GenericDelegate<int>, false);
+// Eval(29766, v is GenericDelegate<int>[], false);
Eval(29767, v is EmptyClass, false);
Eval(29768, v is EmptyClass[], false);
Eval(29769, v is NotEmptyClass, false);
Eval(29770, v is NotEmptyClass[], false);
- Eval(29771, v is EmptyClassGen<int>, false);
- Eval(29772, v is EmptyClassGen<int>[], false);
- Eval(29773, v is NotEmptyClassGen<Guid>, false);
- Eval(29774, v is NotEmptyClassGen<Guid>[], false);
- Eval(29775, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(29776, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(29771, v is EmptyClassGen<int>, false);
+// Eval(29772, v is EmptyClassGen<int>[], false);
+// Eval(29773, v is NotEmptyClassGen<Guid>, false);
+// Eval(29774, v is NotEmptyClassGen<Guid>[], false);
+// Eval(29775, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(29776, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(29777, v is NestedClass, false);
Eval(29778, v is NestedClass[], false);
- Eval(29779, v is NestedClassGen<Decimal>, false);
- Eval(29780, v is NestedClassGen<Decimal>[], false);
+// Eval(29779, v is NestedClassGen<Decimal>, false);
+// Eval(29780, v is NestedClassGen<Decimal>[], false);
Eval(29781, v is ImplementOneInterfaceC, false);
Eval(29782, v is ImplementOneInterfaceC[], false);
Eval(29783, v is ImplementTwoInterfaceC, false);
Eval(29784, v is ImplementTwoInterfaceC[], false);
- Eval(29785, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(29786, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(29787, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(29788, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(29789, v is ImplementAllInterfaceC<int>, false);
- Eval(29790, v is ImplementAllInterfaceC<int>[], false);
+// Eval(29785, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(29786, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(29787, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(29788, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(29789, v is ImplementAllInterfaceC<int>, false);
+// Eval(29790, v is ImplementAllInterfaceC<int>[], false);
Eval(29791, v is SealedClass, false);
Eval(29792, v is SealedClass[], false);
}
@@ -11906,26 +11906,26 @@ internal class Program
Eval(29798, v is NotEmptyStruct[], false);
Eval(29799, v is NotEmptyStruct?, false);
Eval(29800, v is NotEmptyStruct?[], false);
- Eval(29801, v is EmptyStructGen<int>, false);
- Eval(29802, v is EmptyStructGen<int>[], false);
- Eval(29803, v is EmptyStructGen<int>?, false);
- Eval(29804, v is EmptyStructGen<int>?[], false);
- Eval(29805, v is NotEmptyStructGen<Guid>, false);
- Eval(29806, v is NotEmptyStructGen<Guid>[], false);
- Eval(29807, v is NotEmptyStructGen<Guid>?, false);
- Eval(29808, v is NotEmptyStructGen<Guid>?[], false);
- Eval(29809, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(29810, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(29811, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(29812, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(29801, v is EmptyStructGen<int>, false);
+// Eval(29802, v is EmptyStructGen<int>[], false);
+// Eval(29803, v is EmptyStructGen<int>?, false);
+// Eval(29804, v is EmptyStructGen<int>?[], false);
+// Eval(29805, v is NotEmptyStructGen<Guid>, false);
+// Eval(29806, v is NotEmptyStructGen<Guid>[], false);
+// Eval(29807, v is NotEmptyStructGen<Guid>?, false);
+// Eval(29808, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(29809, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(29810, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(29811, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(29812, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(29813, v is NestedStruct, false);
Eval(29814, v is NestedStruct[], false);
Eval(29815, v is NestedStruct?, false);
Eval(29816, v is NestedStruct?[], false);
- Eval(29817, v is NestedStructGen<Decimal>, false);
- Eval(29818, v is NestedStructGen<Decimal>[], false);
- Eval(29819, v is NestedStructGen<Decimal>?, false);
- Eval(29820, v is NestedStructGen<Decimal>?[], false);
+// Eval(29817, v is NestedStructGen<Decimal>, false);
+// Eval(29818, v is NestedStructGen<Decimal>[], false);
+// Eval(29819, v is NestedStructGen<Decimal>?, false);
+// Eval(29820, v is NestedStructGen<Decimal>?[], false);
Eval(29821, v is ExplicitFieldOffsetStruct, false);
Eval(29822, v is ExplicitFieldOffsetStruct[], false);
Eval(29823, v is ExplicitFieldOffsetStruct?, false);
@@ -11942,18 +11942,18 @@ internal class Program
Eval(29842, v is ImplementTwoInterface[], false);
Eval(29843, v is ImplementTwoInterface?, false);
Eval(29844, v is ImplementTwoInterface?[], false);
- Eval(29845, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(29846, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(29847, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(29848, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(29849, v is ImplementTwoInterfaceGen<int>, false);
- Eval(29850, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(29851, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(29852, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(29853, v is ImplementAllInterface<int>, false);
- Eval(29854, v is ImplementAllInterface<int>[], false);
- Eval(29855, v is ImplementAllInterface<int>?, false);
- Eval(29856, v is ImplementAllInterface<int>?[], false);
+// Eval(29845, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(29846, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(29847, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(29848, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(29849, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(29850, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(29851, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(29852, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(29853, v is ImplementAllInterface<int>, false);
+// Eval(29854, v is ImplementAllInterface<int>[], false);
+// Eval(29855, v is ImplementAllInterface<int>?, false);
+// Eval(29856, v is ImplementAllInterface<int>?[], false);
Eval(29857, v is IntE, false);
Eval(29858, v is IntE[], false);
Eval(29859, v is IntE?, false);
@@ -12052,38 +12052,38 @@ internal class Program
Eval(29952, v is IEmpty[], false);
Eval(29953, v is INotEmpty, false);
Eval(29954, v is INotEmpty[], false);
- Eval(29955, v is IEmptyGen<int>, false);
- Eval(29956, v is IEmptyGen<int>[], false);
- Eval(29957, v is INotEmptyGen<int>, false);
- Eval(29958, v is INotEmptyGen<int>[], false);
+// Eval(29955, v is IEmptyGen<int>, false);
+// Eval(29956, v is IEmptyGen<int>[], false);
+// Eval(29957, v is INotEmptyGen<int>, false);
+// Eval(29958, v is INotEmptyGen<int>[], false);
Eval(29959, v is SimpleDelegate, false);
Eval(29960, v is SimpleDelegate[], false);
- Eval(29961, v is GenericDelegate<int>, false);
- Eval(29962, v is GenericDelegate<int>[], false);
+// Eval(29961, v is GenericDelegate<int>, false);
+// Eval(29962, v is GenericDelegate<int>[], false);
Eval(29963, v is EmptyClass, false);
Eval(29964, v is EmptyClass[], false);
Eval(29965, v is NotEmptyClass, false);
Eval(29966, v is NotEmptyClass[], false);
- Eval(29967, v is EmptyClassGen<int>, false);
- Eval(29968, v is EmptyClassGen<int>[], false);
- Eval(29969, v is NotEmptyClassGen<Guid>, false);
- Eval(29970, v is NotEmptyClassGen<Guid>[], false);
- Eval(29971, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(29972, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(29967, v is EmptyClassGen<int>, false);
+// Eval(29968, v is EmptyClassGen<int>[], false);
+// Eval(29969, v is NotEmptyClassGen<Guid>, false);
+// Eval(29970, v is NotEmptyClassGen<Guid>[], false);
+// Eval(29971, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(29972, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(29973, v is NestedClass, false);
Eval(29974, v is NestedClass[], false);
- Eval(29975, v is NestedClassGen<Decimal>, false);
- Eval(29976, v is NestedClassGen<Decimal>[], false);
+// Eval(29975, v is NestedClassGen<Decimal>, false);
+// Eval(29976, v is NestedClassGen<Decimal>[], false);
Eval(29977, v is ImplementOneInterfaceC, false);
Eval(29978, v is ImplementOneInterfaceC[], false);
Eval(29979, v is ImplementTwoInterfaceC, false);
Eval(29980, v is ImplementTwoInterfaceC[], false);
- Eval(29981, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(29982, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(29983, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(29984, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(29985, v is ImplementAllInterfaceC<int>, false);
- Eval(29986, v is ImplementAllInterfaceC<int>[], false);
+// Eval(29981, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(29982, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(29983, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(29984, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(29985, v is ImplementAllInterfaceC<int>, false);
+// Eval(29986, v is ImplementAllInterfaceC<int>[], false);
Eval(29987, v is SealedClass, false);
Eval(29988, v is SealedClass[], false);
}
@@ -12097,26 +12097,26 @@ internal class Program
Eval(29994, v is NotEmptyStruct[], false);
Eval(29995, v is NotEmptyStruct?, false);
Eval(29996, v is NotEmptyStruct?[], false);
- Eval(29997, v is EmptyStructGen<int>, false);
- Eval(29998, v is EmptyStructGen<int>[], false);
- Eval(29999, v is EmptyStructGen<int>?, false);
- Eval(30000, v is EmptyStructGen<int>?[], false);
- Eval(30001, v is NotEmptyStructGen<Guid>, false);
- Eval(30002, v is NotEmptyStructGen<Guid>[], false);
- Eval(30003, v is NotEmptyStructGen<Guid>?, false);
- Eval(30004, v is NotEmptyStructGen<Guid>?[], false);
- Eval(30005, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(30006, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(30007, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(30008, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(29997, v is EmptyStructGen<int>, false);
+// Eval(29998, v is EmptyStructGen<int>[], false);
+// Eval(29999, v is EmptyStructGen<int>?, false);
+// Eval(30000, v is EmptyStructGen<int>?[], false);
+// Eval(30001, v is NotEmptyStructGen<Guid>, false);
+// Eval(30002, v is NotEmptyStructGen<Guid>[], false);
+// Eval(30003, v is NotEmptyStructGen<Guid>?, false);
+// Eval(30004, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(30005, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(30006, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(30007, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(30008, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(30009, v is NestedStruct, false);
Eval(30010, v is NestedStruct[], false);
Eval(30011, v is NestedStruct?, false);
Eval(30012, v is NestedStruct?[], false);
- Eval(30013, v is NestedStructGen<Decimal>, false);
- Eval(30014, v is NestedStructGen<Decimal>[], false);
- Eval(30015, v is NestedStructGen<Decimal>?, false);
- Eval(30016, v is NestedStructGen<Decimal>?[], false);
+// Eval(30013, v is NestedStructGen<Decimal>, false);
+// Eval(30014, v is NestedStructGen<Decimal>[], false);
+// Eval(30015, v is NestedStructGen<Decimal>?, false);
+// Eval(30016, v is NestedStructGen<Decimal>?[], false);
Eval(30017, v is ExplicitFieldOffsetStruct, false);
Eval(30018, v is ExplicitFieldOffsetStruct[], false);
Eval(30019, v is ExplicitFieldOffsetStruct?, false);
@@ -12133,18 +12133,18 @@ internal class Program
Eval(30038, v is ImplementTwoInterface[], false);
Eval(30039, v is ImplementTwoInterface?, false);
Eval(30040, v is ImplementTwoInterface?[], false);
- Eval(30041, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(30042, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(30043, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(30044, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(30045, v is ImplementTwoInterfaceGen<int>, false);
- Eval(30046, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(30047, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(30048, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(30049, v is ImplementAllInterface<int>, false);
- Eval(30050, v is ImplementAllInterface<int>[], false);
- Eval(30051, v is ImplementAllInterface<int>?, false);
- Eval(30052, v is ImplementAllInterface<int>?[], false);
+// Eval(30041, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(30042, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(30043, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(30044, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(30045, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(30046, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(30047, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(30048, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(30049, v is ImplementAllInterface<int>, false);
+// Eval(30050, v is ImplementAllInterface<int>[], false);
+// Eval(30051, v is ImplementAllInterface<int>?, false);
+// Eval(30052, v is ImplementAllInterface<int>?[], false);
Eval(30053, v is IntE, false);
Eval(30054, v is IntE[], false);
Eval(30055, v is IntE?, false);
@@ -12243,38 +12243,38 @@ internal class Program
Eval(30148, v is IEmpty[], false);
Eval(30149, v is INotEmpty, false);
Eval(30150, v is INotEmpty[], false);
- Eval(30151, v is IEmptyGen<int>, false);
- Eval(30152, v is IEmptyGen<int>[], false);
- Eval(30153, v is INotEmptyGen<int>, false);
- Eval(30154, v is INotEmptyGen<int>[], false);
+// Eval(30151, v is IEmptyGen<int>, false);
+// Eval(30152, v is IEmptyGen<int>[], false);
+// Eval(30153, v is INotEmptyGen<int>, false);
+// Eval(30154, v is INotEmptyGen<int>[], false);
Eval(30155, v is SimpleDelegate, false);
Eval(30156, v is SimpleDelegate[], false);
- Eval(30157, v is GenericDelegate<int>, false);
- Eval(30158, v is GenericDelegate<int>[], false);
+// Eval(30157, v is GenericDelegate<int>, false);
+// Eval(30158, v is GenericDelegate<int>[], false);
Eval(30159, v is EmptyClass, false);
Eval(30160, v is EmptyClass[], false);
Eval(30161, v is NotEmptyClass, false);
Eval(30162, v is NotEmptyClass[], false);
- Eval(30163, v is EmptyClassGen<int>, false);
- Eval(30164, v is EmptyClassGen<int>[], false);
- Eval(30165, v is NotEmptyClassGen<Guid>, false);
- Eval(30166, v is NotEmptyClassGen<Guid>[], false);
- Eval(30167, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(30168, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(30163, v is EmptyClassGen<int>, false);
+// Eval(30164, v is EmptyClassGen<int>[], false);
+// Eval(30165, v is NotEmptyClassGen<Guid>, false);
+// Eval(30166, v is NotEmptyClassGen<Guid>[], false);
+// Eval(30167, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(30168, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(30169, v is NestedClass, false);
Eval(30170, v is NestedClass[], false);
- Eval(30171, v is NestedClassGen<Decimal>, false);
- Eval(30172, v is NestedClassGen<Decimal>[], false);
+// Eval(30171, v is NestedClassGen<Decimal>, false);
+// Eval(30172, v is NestedClassGen<Decimal>[], false);
Eval(30173, v is ImplementOneInterfaceC, false);
Eval(30174, v is ImplementOneInterfaceC[], false);
Eval(30175, v is ImplementTwoInterfaceC, false);
Eval(30176, v is ImplementTwoInterfaceC[], false);
- Eval(30177, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(30178, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(30179, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(30180, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(30181, v is ImplementAllInterfaceC<int>, false);
- Eval(30182, v is ImplementAllInterfaceC<int>[], false);
+// Eval(30177, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(30178, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(30179, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(30180, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(30181, v is ImplementAllInterfaceC<int>, false);
+// Eval(30182, v is ImplementAllInterfaceC<int>[], false);
Eval(30183, v is SealedClass, false);
Eval(30184, v is SealedClass[], false);
}
@@ -12288,26 +12288,26 @@ internal class Program
Eval(30190, v is NotEmptyStruct[], false);
Eval(30191, v is NotEmptyStruct?, false);
Eval(30192, v is NotEmptyStruct?[], false);
- Eval(30193, v is EmptyStructGen<int>, false);
- Eval(30194, v is EmptyStructGen<int>[], false);
- Eval(30195, v is EmptyStructGen<int>?, false);
- Eval(30196, v is EmptyStructGen<int>?[], false);
- Eval(30197, v is NotEmptyStructGen<Guid>, false);
- Eval(30198, v is NotEmptyStructGen<Guid>[], false);
- Eval(30199, v is NotEmptyStructGen<Guid>?, false);
- Eval(30200, v is NotEmptyStructGen<Guid>?[], false);
- Eval(30201, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(30202, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(30203, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(30204, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(30193, v is EmptyStructGen<int>, false);
+// Eval(30194, v is EmptyStructGen<int>[], false);
+// Eval(30195, v is EmptyStructGen<int>?, false);
+// Eval(30196, v is EmptyStructGen<int>?[], false);
+// Eval(30197, v is NotEmptyStructGen<Guid>, false);
+// Eval(30198, v is NotEmptyStructGen<Guid>[], false);
+// Eval(30199, v is NotEmptyStructGen<Guid>?, false);
+// Eval(30200, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(30201, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(30202, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(30203, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(30204, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(30205, v is NestedStruct, false);
Eval(30206, v is NestedStruct[], false);
Eval(30207, v is NestedStruct?, false);
Eval(30208, v is NestedStruct?[], false);
- Eval(30209, v is NestedStructGen<Decimal>, false);
- Eval(30210, v is NestedStructGen<Decimal>[], false);
- Eval(30211, v is NestedStructGen<Decimal>?, false);
- Eval(30212, v is NestedStructGen<Decimal>?[], false);
+// Eval(30209, v is NestedStructGen<Decimal>, false);
+// Eval(30210, v is NestedStructGen<Decimal>[], false);
+// Eval(30211, v is NestedStructGen<Decimal>?, false);
+// Eval(30212, v is NestedStructGen<Decimal>?[], false);
Eval(30213, v is ExplicitFieldOffsetStruct, false);
Eval(30214, v is ExplicitFieldOffsetStruct[], false);
Eval(30215, v is ExplicitFieldOffsetStruct?, false);
@@ -12324,18 +12324,18 @@ internal class Program
Eval(30234, v is ImplementTwoInterface[], false);
Eval(30235, v is ImplementTwoInterface?, false);
Eval(30236, v is ImplementTwoInterface?[], false);
- Eval(30237, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(30238, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(30239, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(30240, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(30241, v is ImplementTwoInterfaceGen<int>, false);
- Eval(30242, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(30243, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(30244, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(30245, v is ImplementAllInterface<int>, false);
- Eval(30246, v is ImplementAllInterface<int>[], false);
- Eval(30247, v is ImplementAllInterface<int>?, false);
- Eval(30248, v is ImplementAllInterface<int>?[], false);
+// Eval(30237, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(30238, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(30239, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(30240, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(30241, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(30242, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(30243, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(30244, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(30245, v is ImplementAllInterface<int>, false);
+// Eval(30246, v is ImplementAllInterface<int>[], false);
+// Eval(30247, v is ImplementAllInterface<int>?, false);
+// Eval(30248, v is ImplementAllInterface<int>?[], false);
Eval(30249, v is IntE, false);
Eval(30250, v is IntE[], false);
Eval(30251, v is IntE?, false);
@@ -12434,38 +12434,38 @@ internal class Program
Eval(30344, v is IEmpty[], false);
Eval(30345, v is INotEmpty, false);
Eval(30346, v is INotEmpty[], false);
- Eval(30347, v is IEmptyGen<int>, false);
- Eval(30348, v is IEmptyGen<int>[], false);
- Eval(30349, v is INotEmptyGen<int>, false);
- Eval(30350, v is INotEmptyGen<int>[], false);
+// Eval(30347, v is IEmptyGen<int>, false);
+// Eval(30348, v is IEmptyGen<int>[], false);
+// Eval(30349, v is INotEmptyGen<int>, false);
+// Eval(30350, v is INotEmptyGen<int>[], false);
Eval(30351, v is SimpleDelegate, false);
Eval(30352, v is SimpleDelegate[], false);
- Eval(30353, v is GenericDelegate<int>, false);
- Eval(30354, v is GenericDelegate<int>[], false);
+// Eval(30353, v is GenericDelegate<int>, false);
+// Eval(30354, v is GenericDelegate<int>[], false);
Eval(30355, v is EmptyClass, false);
Eval(30356, v is EmptyClass[], false);
Eval(30357, v is NotEmptyClass, false);
Eval(30358, v is NotEmptyClass[], false);
- Eval(30359, v is EmptyClassGen<int>, false);
- Eval(30360, v is EmptyClassGen<int>[], false);
- Eval(30361, v is NotEmptyClassGen<Guid>, false);
- Eval(30362, v is NotEmptyClassGen<Guid>[], false);
- Eval(30363, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(30364, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(30359, v is EmptyClassGen<int>, false);
+// Eval(30360, v is EmptyClassGen<int>[], false);
+// Eval(30361, v is NotEmptyClassGen<Guid>, false);
+// Eval(30362, v is NotEmptyClassGen<Guid>[], false);
+// Eval(30363, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(30364, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(30365, v is NestedClass, false);
Eval(30366, v is NestedClass[], false);
- Eval(30367, v is NestedClassGen<Decimal>, false);
- Eval(30368, v is NestedClassGen<Decimal>[], false);
+// Eval(30367, v is NestedClassGen<Decimal>, false);
+// Eval(30368, v is NestedClassGen<Decimal>[], false);
Eval(30369, v is ImplementOneInterfaceC, false);
Eval(30370, v is ImplementOneInterfaceC[], false);
Eval(30371, v is ImplementTwoInterfaceC, false);
Eval(30372, v is ImplementTwoInterfaceC[], false);
- Eval(30373, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(30374, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(30375, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(30376, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(30377, v is ImplementAllInterfaceC<int>, false);
- Eval(30378, v is ImplementAllInterfaceC<int>[], false);
+// Eval(30373, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(30374, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(30375, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(30376, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(30377, v is ImplementAllInterfaceC<int>, false);
+// Eval(30378, v is ImplementAllInterfaceC<int>[], false);
Eval(30379, v is SealedClass, false);
Eval(30380, v is SealedClass[], false);
}
@@ -12482,26 +12482,26 @@ internal class Program
Eval(30386, v is NotEmptyStruct[], false);
Eval(30387, v is NotEmptyStruct?, false);
Eval(30388, v is NotEmptyStruct?[], false);
- Eval(30389, v is EmptyStructGen<int>, false);
- Eval(30390, v is EmptyStructGen<int>[], false);
- Eval(30391, v is EmptyStructGen<int>?, false);
- Eval(30392, v is EmptyStructGen<int>?[], false);
- Eval(30393, v is NotEmptyStructGen<Guid>, false);
- Eval(30394, v is NotEmptyStructGen<Guid>[], false);
- Eval(30395, v is NotEmptyStructGen<Guid>?, false);
- Eval(30396, v is NotEmptyStructGen<Guid>?[], false);
- Eval(30397, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(30398, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(30399, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(30400, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(30389, v is EmptyStructGen<int>, false);
+// Eval(30390, v is EmptyStructGen<int>[], false);
+// Eval(30391, v is EmptyStructGen<int>?, false);
+// Eval(30392, v is EmptyStructGen<int>?[], false);
+// Eval(30393, v is NotEmptyStructGen<Guid>, false);
+// Eval(30394, v is NotEmptyStructGen<Guid>[], false);
+// Eval(30395, v is NotEmptyStructGen<Guid>?, false);
+// Eval(30396, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(30397, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(30398, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(30399, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(30400, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(30401, v is NestedStruct, false);
Eval(30402, v is NestedStruct[], false);
Eval(30403, v is NestedStruct?, false);
Eval(30404, v is NestedStruct?[], false);
- Eval(30405, v is NestedStructGen<Decimal>, false);
- Eval(30406, v is NestedStructGen<Decimal>[], false);
- Eval(30407, v is NestedStructGen<Decimal>?, false);
- Eval(30408, v is NestedStructGen<Decimal>?[], false);
+// Eval(30405, v is NestedStructGen<Decimal>, false);
+// Eval(30406, v is NestedStructGen<Decimal>[], false);
+// Eval(30407, v is NestedStructGen<Decimal>?, false);
+// Eval(30408, v is NestedStructGen<Decimal>?[], false);
Eval(30409, v is ExplicitFieldOffsetStruct, false);
Eval(30410, v is ExplicitFieldOffsetStruct[], false);
Eval(30411, v is ExplicitFieldOffsetStruct?, false);
@@ -12518,18 +12518,18 @@ internal class Program
Eval(30430, v is ImplementTwoInterface[], false);
Eval(30431, v is ImplementTwoInterface?, false);
Eval(30432, v is ImplementTwoInterface?[], false);
- Eval(30433, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(30434, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(30435, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(30436, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(30437, v is ImplementTwoInterfaceGen<int>, false);
- Eval(30438, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(30439, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(30440, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(30441, v is ImplementAllInterface<int>, false);
- Eval(30442, v is ImplementAllInterface<int>[], false);
- Eval(30443, v is ImplementAllInterface<int>?, false);
- Eval(30444, v is ImplementAllInterface<int>?[], false);
+// Eval(30433, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(30434, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(30435, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(30436, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(30437, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(30438, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(30439, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(30440, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(30441, v is ImplementAllInterface<int>, false);
+// Eval(30442, v is ImplementAllInterface<int>[], false);
+// Eval(30443, v is ImplementAllInterface<int>?, false);
+// Eval(30444, v is ImplementAllInterface<int>?[], false);
Eval(30445, v is IntE, false);
Eval(30446, v is IntE[], false);
Eval(30447, v is IntE?, false);
@@ -12628,38 +12628,38 @@ internal class Program
Eval(30540, v is IEmpty[], false);
Eval(30541, v is INotEmpty, false);
Eval(30542, v is INotEmpty[], false);
- Eval(30543, v is IEmptyGen<int>, false);
- Eval(30544, v is IEmptyGen<int>[], false);
- Eval(30545, v is INotEmptyGen<int>, false);
- Eval(30546, v is INotEmptyGen<int>[], false);
+// Eval(30543, v is IEmptyGen<int>, false);
+// Eval(30544, v is IEmptyGen<int>[], false);
+// Eval(30545, v is INotEmptyGen<int>, false);
+// Eval(30546, v is INotEmptyGen<int>[], false);
Eval(30547, v is SimpleDelegate, false);
Eval(30548, v is SimpleDelegate[], false);
- Eval(30549, v is GenericDelegate<int>, false);
- Eval(30550, v is GenericDelegate<int>[], false);
+// Eval(30549, v is GenericDelegate<int>, false);
+// Eval(30550, v is GenericDelegate<int>[], false);
Eval(30551, v is EmptyClass, false);
Eval(30552, v is EmptyClass[], false);
Eval(30553, v is NotEmptyClass, false);
Eval(30554, v is NotEmptyClass[], false);
- Eval(30555, v is EmptyClassGen<int>, false);
- Eval(30556, v is EmptyClassGen<int>[], false);
- Eval(30557, v is NotEmptyClassGen<Guid>, false);
- Eval(30558, v is NotEmptyClassGen<Guid>[], false);
- Eval(30559, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(30560, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(30555, v is EmptyClassGen<int>, false);
+// Eval(30556, v is EmptyClassGen<int>[], false);
+// Eval(30557, v is NotEmptyClassGen<Guid>, false);
+// Eval(30558, v is NotEmptyClassGen<Guid>[], false);
+// Eval(30559, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(30560, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(30561, v is NestedClass, false);
Eval(30562, v is NestedClass[], false);
- Eval(30563, v is NestedClassGen<Decimal>, false);
- Eval(30564, v is NestedClassGen<Decimal>[], false);
+// Eval(30563, v is NestedClassGen<Decimal>, false);
+// Eval(30564, v is NestedClassGen<Decimal>[], false);
Eval(30565, v is ImplementOneInterfaceC, false);
Eval(30566, v is ImplementOneInterfaceC[], false);
Eval(30567, v is ImplementTwoInterfaceC, false);
Eval(30568, v is ImplementTwoInterfaceC[], false);
- Eval(30569, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(30570, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(30571, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(30572, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(30573, v is ImplementAllInterfaceC<int>, false);
- Eval(30574, v is ImplementAllInterfaceC<int>[], false);
+// Eval(30569, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(30570, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(30571, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(30572, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(30573, v is ImplementAllInterfaceC<int>, false);
+// Eval(30574, v is ImplementAllInterfaceC<int>[], false);
Eval(30575, v is SealedClass, false);
Eval(30576, v is SealedClass[], false);
}
@@ -12673,26 +12673,26 @@ internal class Program
Eval(30582, v is NotEmptyStruct[], false);
Eval(30583, v is NotEmptyStruct?, false);
Eval(30584, v is NotEmptyStruct?[], false);
- Eval(30585, v is EmptyStructGen<int>, false);
- Eval(30586, v is EmptyStructGen<int>[], false);
- Eval(30587, v is EmptyStructGen<int>?, false);
- Eval(30588, v is EmptyStructGen<int>?[], false);
- Eval(30589, v is NotEmptyStructGen<Guid>, false);
- Eval(30590, v is NotEmptyStructGen<Guid>[], false);
- Eval(30591, v is NotEmptyStructGen<Guid>?, false);
- Eval(30592, v is NotEmptyStructGen<Guid>?[], false);
- Eval(30593, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(30594, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(30595, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(30596, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(30585, v is EmptyStructGen<int>, false);
+// Eval(30586, v is EmptyStructGen<int>[], false);
+// Eval(30587, v is EmptyStructGen<int>?, false);
+// Eval(30588, v is EmptyStructGen<int>?[], false);
+// Eval(30589, v is NotEmptyStructGen<Guid>, false);
+// Eval(30590, v is NotEmptyStructGen<Guid>[], false);
+// Eval(30591, v is NotEmptyStructGen<Guid>?, false);
+// Eval(30592, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(30593, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(30594, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(30595, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(30596, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(30597, v is NestedStruct, false);
Eval(30598, v is NestedStruct[], false);
Eval(30599, v is NestedStruct?, false);
Eval(30600, v is NestedStruct?[], false);
- Eval(30601, v is NestedStructGen<Decimal>, false);
- Eval(30602, v is NestedStructGen<Decimal>[], false);
- Eval(30603, v is NestedStructGen<Decimal>?, false);
- Eval(30604, v is NestedStructGen<Decimal>?[], false);
+// Eval(30601, v is NestedStructGen<Decimal>, false);
+// Eval(30602, v is NestedStructGen<Decimal>[], false);
+// Eval(30603, v is NestedStructGen<Decimal>?, false);
+// Eval(30604, v is NestedStructGen<Decimal>?[], false);
Eval(30605, v is ExplicitFieldOffsetStruct, false);
Eval(30606, v is ExplicitFieldOffsetStruct[], false);
Eval(30607, v is ExplicitFieldOffsetStruct?, false);
@@ -12709,18 +12709,18 @@ internal class Program
Eval(30626, v is ImplementTwoInterface[], false);
Eval(30627, v is ImplementTwoInterface?, false);
Eval(30628, v is ImplementTwoInterface?[], false);
- Eval(30629, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(30630, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(30631, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(30632, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(30633, v is ImplementTwoInterfaceGen<int>, false);
- Eval(30634, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(30635, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(30636, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(30637, v is ImplementAllInterface<int>, false);
- Eval(30638, v is ImplementAllInterface<int>[], false);
- Eval(30639, v is ImplementAllInterface<int>?, false);
- Eval(30640, v is ImplementAllInterface<int>?[], false);
+// Eval(30629, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(30630, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(30631, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(30632, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(30633, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(30634, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(30635, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(30636, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(30637, v is ImplementAllInterface<int>, false);
+// Eval(30638, v is ImplementAllInterface<int>[], false);
+// Eval(30639, v is ImplementAllInterface<int>?, false);
+// Eval(30640, v is ImplementAllInterface<int>?[], false);
Eval(30641, v is IntE, false);
Eval(30642, v is IntE[], false);
Eval(30643, v is IntE?, false);
@@ -12819,38 +12819,38 @@ internal class Program
Eval(30736, v is IEmpty[], false);
Eval(30737, v is INotEmpty, false);
Eval(30738, v is INotEmpty[], false);
- Eval(30739, v is IEmptyGen<int>, false);
- Eval(30740, v is IEmptyGen<int>[], false);
- Eval(30741, v is INotEmptyGen<int>, false);
- Eval(30742, v is INotEmptyGen<int>[], false);
+// Eval(30739, v is IEmptyGen<int>, false);
+// Eval(30740, v is IEmptyGen<int>[], false);
+// Eval(30741, v is INotEmptyGen<int>, false);
+// Eval(30742, v is INotEmptyGen<int>[], false);
Eval(30743, v is SimpleDelegate, false);
Eval(30744, v is SimpleDelegate[], false);
- Eval(30745, v is GenericDelegate<int>, false);
- Eval(30746, v is GenericDelegate<int>[], false);
+// Eval(30745, v is GenericDelegate<int>, false);
+// Eval(30746, v is GenericDelegate<int>[], false);
Eval(30747, v is EmptyClass, false);
Eval(30748, v is EmptyClass[], false);
Eval(30749, v is NotEmptyClass, false);
Eval(30750, v is NotEmptyClass[], false);
- Eval(30751, v is EmptyClassGen<int>, false);
- Eval(30752, v is EmptyClassGen<int>[], false);
- Eval(30753, v is NotEmptyClassGen<Guid>, false);
- Eval(30754, v is NotEmptyClassGen<Guid>[], false);
- Eval(30755, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(30756, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(30751, v is EmptyClassGen<int>, false);
+// Eval(30752, v is EmptyClassGen<int>[], false);
+// Eval(30753, v is NotEmptyClassGen<Guid>, false);
+// Eval(30754, v is NotEmptyClassGen<Guid>[], false);
+// Eval(30755, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(30756, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(30757, v is NestedClass, false);
Eval(30758, v is NestedClass[], false);
- Eval(30759, v is NestedClassGen<Decimal>, false);
- Eval(30760, v is NestedClassGen<Decimal>[], false);
+// Eval(30759, v is NestedClassGen<Decimal>, false);
+// Eval(30760, v is NestedClassGen<Decimal>[], false);
Eval(30761, v is ImplementOneInterfaceC, false);
Eval(30762, v is ImplementOneInterfaceC[], false);
Eval(30763, v is ImplementTwoInterfaceC, false);
Eval(30764, v is ImplementTwoInterfaceC[], false);
- Eval(30765, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(30766, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(30767, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(30768, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(30769, v is ImplementAllInterfaceC<int>, false);
- Eval(30770, v is ImplementAllInterfaceC<int>[], false);
+// Eval(30765, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(30766, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(30767, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(30768, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(30769, v is ImplementAllInterfaceC<int>, false);
+// Eval(30770, v is ImplementAllInterfaceC<int>[], false);
Eval(30771, v is SealedClass, false);
Eval(30772, v is SealedClass[], false);
}
@@ -12864,26 +12864,26 @@ internal class Program
Eval(30778, v is NotEmptyStruct[], false);
Eval(30779, v is NotEmptyStruct?, false);
Eval(30780, v is NotEmptyStruct?[], false);
- Eval(30781, v is EmptyStructGen<int>, false);
- Eval(30782, v is EmptyStructGen<int>[], false);
- Eval(30783, v is EmptyStructGen<int>?, false);
- Eval(30784, v is EmptyStructGen<int>?[], false);
- Eval(30785, v is NotEmptyStructGen<Guid>, false);
- Eval(30786, v is NotEmptyStructGen<Guid>[], false);
- Eval(30787, v is NotEmptyStructGen<Guid>?, false);
- Eval(30788, v is NotEmptyStructGen<Guid>?[], false);
- Eval(30789, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(30790, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(30791, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(30792, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(30781, v is EmptyStructGen<int>, false);
+// Eval(30782, v is EmptyStructGen<int>[], false);
+// Eval(30783, v is EmptyStructGen<int>?, false);
+// Eval(30784, v is EmptyStructGen<int>?[], false);
+// Eval(30785, v is NotEmptyStructGen<Guid>, false);
+// Eval(30786, v is NotEmptyStructGen<Guid>[], false);
+// Eval(30787, v is NotEmptyStructGen<Guid>?, false);
+// Eval(30788, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(30789, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(30790, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(30791, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(30792, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(30793, v is NestedStruct, false);
Eval(30794, v is NestedStruct[], false);
Eval(30795, v is NestedStruct?, false);
Eval(30796, v is NestedStruct?[], false);
- Eval(30797, v is NestedStructGen<Decimal>, false);
- Eval(30798, v is NestedStructGen<Decimal>[], false);
- Eval(30799, v is NestedStructGen<Decimal>?, false);
- Eval(30800, v is NestedStructGen<Decimal>?[], false);
+// Eval(30797, v is NestedStructGen<Decimal>, false);
+// Eval(30798, v is NestedStructGen<Decimal>[], false);
+// Eval(30799, v is NestedStructGen<Decimal>?, false);
+// Eval(30800, v is NestedStructGen<Decimal>?[], false);
Eval(30801, v is ExplicitFieldOffsetStruct, false);
Eval(30802, v is ExplicitFieldOffsetStruct[], false);
Eval(30803, v is ExplicitFieldOffsetStruct?, false);
@@ -12900,18 +12900,18 @@ internal class Program
Eval(30822, v is ImplementTwoInterface[], false);
Eval(30823, v is ImplementTwoInterface?, false);
Eval(30824, v is ImplementTwoInterface?[], false);
- Eval(30825, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(30826, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(30827, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(30828, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(30829, v is ImplementTwoInterfaceGen<int>, false);
- Eval(30830, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(30831, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(30832, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(30833, v is ImplementAllInterface<int>, false);
- Eval(30834, v is ImplementAllInterface<int>[], false);
- Eval(30835, v is ImplementAllInterface<int>?, false);
- Eval(30836, v is ImplementAllInterface<int>?[], false);
+// Eval(30825, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(30826, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(30827, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(30828, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(30829, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(30830, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(30831, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(30832, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(30833, v is ImplementAllInterface<int>, false);
+// Eval(30834, v is ImplementAllInterface<int>[], false);
+// Eval(30835, v is ImplementAllInterface<int>?, false);
+// Eval(30836, v is ImplementAllInterface<int>?[], false);
Eval(30837, v is IntE, false);
Eval(30838, v is IntE[], false);
Eval(30839, v is IntE?, false);
@@ -13010,38 +13010,38 @@ internal class Program
Eval(30932, v is IEmpty[], false);
Eval(30933, v is INotEmpty, false);
Eval(30934, v is INotEmpty[], false);
- Eval(30935, v is IEmptyGen<int>, false);
- Eval(30936, v is IEmptyGen<int>[], false);
- Eval(30937, v is INotEmptyGen<int>, false);
- Eval(30938, v is INotEmptyGen<int>[], false);
+// Eval(30935, v is IEmptyGen<int>, false);
+// Eval(30936, v is IEmptyGen<int>[], false);
+// Eval(30937, v is INotEmptyGen<int>, false);
+// Eval(30938, v is INotEmptyGen<int>[], false);
Eval(30939, v is SimpleDelegate, false);
Eval(30940, v is SimpleDelegate[], false);
- Eval(30941, v is GenericDelegate<int>, false);
- Eval(30942, v is GenericDelegate<int>[], false);
+// Eval(30941, v is GenericDelegate<int>, false);
+// Eval(30942, v is GenericDelegate<int>[], false);
Eval(30943, v is EmptyClass, false);
Eval(30944, v is EmptyClass[], false);
Eval(30945, v is NotEmptyClass, false);
Eval(30946, v is NotEmptyClass[], false);
- Eval(30947, v is EmptyClassGen<int>, false);
- Eval(30948, v is EmptyClassGen<int>[], false);
- Eval(30949, v is NotEmptyClassGen<Guid>, false);
- Eval(30950, v is NotEmptyClassGen<Guid>[], false);
- Eval(30951, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(30952, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(30947, v is EmptyClassGen<int>, false);
+// Eval(30948, v is EmptyClassGen<int>[], false);
+// Eval(30949, v is NotEmptyClassGen<Guid>, false);
+// Eval(30950, v is NotEmptyClassGen<Guid>[], false);
+// Eval(30951, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(30952, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(30953, v is NestedClass, false);
Eval(30954, v is NestedClass[], false);
- Eval(30955, v is NestedClassGen<Decimal>, false);
- Eval(30956, v is NestedClassGen<Decimal>[], false);
+// Eval(30955, v is NestedClassGen<Decimal>, false);
+// Eval(30956, v is NestedClassGen<Decimal>[], false);
Eval(30957, v is ImplementOneInterfaceC, false);
Eval(30958, v is ImplementOneInterfaceC[], false);
Eval(30959, v is ImplementTwoInterfaceC, false);
Eval(30960, v is ImplementTwoInterfaceC[], false);
- Eval(30961, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(30962, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(30963, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(30964, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(30965, v is ImplementAllInterfaceC<int>, false);
- Eval(30966, v is ImplementAllInterfaceC<int>[], false);
+// Eval(30961, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(30962, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(30963, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(30964, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(30965, v is ImplementAllInterfaceC<int>, false);
+// Eval(30966, v is ImplementAllInterfaceC<int>[], false);
Eval(30967, v is SealedClass, false);
Eval(30968, v is SealedClass[], false);
}
@@ -13055,26 +13055,26 @@ internal class Program
Eval(30974, v is NotEmptyStruct[], false);
Eval(30975, v is NotEmptyStruct?, false);
Eval(30976, v is NotEmptyStruct?[], false);
- Eval(30977, v is EmptyStructGen<int>, false);
- Eval(30978, v is EmptyStructGen<int>[], false);
- Eval(30979, v is EmptyStructGen<int>?, false);
- Eval(30980, v is EmptyStructGen<int>?[], false);
- Eval(30981, v is NotEmptyStructGen<Guid>, false);
- Eval(30982, v is NotEmptyStructGen<Guid>[], false);
- Eval(30983, v is NotEmptyStructGen<Guid>?, false);
- Eval(30984, v is NotEmptyStructGen<Guid>?[], false);
- Eval(30985, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(30986, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(30987, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(30988, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(30977, v is EmptyStructGen<int>, false);
+// Eval(30978, v is EmptyStructGen<int>[], false);
+// Eval(30979, v is EmptyStructGen<int>?, false);
+// Eval(30980, v is EmptyStructGen<int>?[], false);
+// Eval(30981, v is NotEmptyStructGen<Guid>, false);
+// Eval(30982, v is NotEmptyStructGen<Guid>[], false);
+// Eval(30983, v is NotEmptyStructGen<Guid>?, false);
+// Eval(30984, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(30985, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(30986, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(30987, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(30988, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(30989, v is NestedStruct, false);
Eval(30990, v is NestedStruct[], false);
Eval(30991, v is NestedStruct?, false);
Eval(30992, v is NestedStruct?[], false);
- Eval(30993, v is NestedStructGen<Decimal>, false);
- Eval(30994, v is NestedStructGen<Decimal>[], false);
- Eval(30995, v is NestedStructGen<Decimal>?, false);
- Eval(30996, v is NestedStructGen<Decimal>?[], false);
+// Eval(30993, v is NestedStructGen<Decimal>, false);
+// Eval(30994, v is NestedStructGen<Decimal>[], false);
+// Eval(30995, v is NestedStructGen<Decimal>?, false);
+// Eval(30996, v is NestedStructGen<Decimal>?[], false);
Eval(30997, v is ExplicitFieldOffsetStruct, false);
Eval(30998, v is ExplicitFieldOffsetStruct[], false);
Eval(30999, v is ExplicitFieldOffsetStruct?, false);
@@ -13091,18 +13091,18 @@ internal class Program
Eval(31018, v is ImplementTwoInterface[], false);
Eval(31019, v is ImplementTwoInterface?, false);
Eval(31020, v is ImplementTwoInterface?[], false);
- Eval(31021, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(31022, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(31023, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(31024, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(31025, v is ImplementTwoInterfaceGen<int>, false);
- Eval(31026, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(31027, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(31028, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(31029, v is ImplementAllInterface<int>, false);
- Eval(31030, v is ImplementAllInterface<int>[], false);
- Eval(31031, v is ImplementAllInterface<int>?, false);
- Eval(31032, v is ImplementAllInterface<int>?[], false);
+// Eval(31021, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(31022, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(31023, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(31024, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(31025, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(31026, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(31027, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(31028, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(31029, v is ImplementAllInterface<int>, false);
+// Eval(31030, v is ImplementAllInterface<int>[], false);
+// Eval(31031, v is ImplementAllInterface<int>?, false);
+// Eval(31032, v is ImplementAllInterface<int>?[], false);
Eval(31033, v is IntE, false);
Eval(31034, v is IntE[], false);
Eval(31035, v is IntE?, false);
@@ -13201,38 +13201,38 @@ internal class Program
Eval(31128, v is IEmpty[], false);
Eval(31129, v is INotEmpty, false);
Eval(31130, v is INotEmpty[], false);
- Eval(31131, v is IEmptyGen<int>, false);
- Eval(31132, v is IEmptyGen<int>[], false);
- Eval(31133, v is INotEmptyGen<int>, false);
- Eval(31134, v is INotEmptyGen<int>[], false);
+// Eval(31131, v is IEmptyGen<int>, false);
+// Eval(31132, v is IEmptyGen<int>[], false);
+// Eval(31133, v is INotEmptyGen<int>, false);
+// Eval(31134, v is INotEmptyGen<int>[], false);
Eval(31135, v is SimpleDelegate, false);
Eval(31136, v is SimpleDelegate[], false);
- Eval(31137, v is GenericDelegate<int>, false);
- Eval(31138, v is GenericDelegate<int>[], false);
+// Eval(31137, v is GenericDelegate<int>, false);
+// Eval(31138, v is GenericDelegate<int>[], false);
Eval(31139, v is EmptyClass, false);
Eval(31140, v is EmptyClass[], false);
Eval(31141, v is NotEmptyClass, false);
Eval(31142, v is NotEmptyClass[], false);
- Eval(31143, v is EmptyClassGen<int>, false);
- Eval(31144, v is EmptyClassGen<int>[], false);
- Eval(31145, v is NotEmptyClassGen<Guid>, false);
- Eval(31146, v is NotEmptyClassGen<Guid>[], false);
- Eval(31147, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(31148, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(31143, v is EmptyClassGen<int>, false);
+// Eval(31144, v is EmptyClassGen<int>[], false);
+// Eval(31145, v is NotEmptyClassGen<Guid>, false);
+// Eval(31146, v is NotEmptyClassGen<Guid>[], false);
+// Eval(31147, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(31148, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(31149, v is NestedClass, false);
Eval(31150, v is NestedClass[], false);
- Eval(31151, v is NestedClassGen<Decimal>, false);
- Eval(31152, v is NestedClassGen<Decimal>[], false);
+// Eval(31151, v is NestedClassGen<Decimal>, false);
+// Eval(31152, v is NestedClassGen<Decimal>[], false);
Eval(31153, v is ImplementOneInterfaceC, false);
Eval(31154, v is ImplementOneInterfaceC[], false);
Eval(31155, v is ImplementTwoInterfaceC, false);
Eval(31156, v is ImplementTwoInterfaceC[], false);
- Eval(31157, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(31158, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(31159, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(31160, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(31161, v is ImplementAllInterfaceC<int>, false);
- Eval(31162, v is ImplementAllInterfaceC<int>[], false);
+// Eval(31157, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(31158, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(31159, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(31160, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(31161, v is ImplementAllInterfaceC<int>, false);
+// Eval(31162, v is ImplementAllInterfaceC<int>[], false);
Eval(31163, v is SealedClass, false);
Eval(31164, v is SealedClass[], false);
}
@@ -13246,26 +13246,26 @@ internal class Program
Eval(31170, v is NotEmptyStruct[], false);
Eval(31171, v is NotEmptyStruct?, false);
Eval(31172, v is NotEmptyStruct?[], false);
- Eval(31173, v is EmptyStructGen<int>, false);
- Eval(31174, v is EmptyStructGen<int>[], false);
- Eval(31175, v is EmptyStructGen<int>?, false);
- Eval(31176, v is EmptyStructGen<int>?[], false);
- Eval(31177, v is NotEmptyStructGen<Guid>, false);
- Eval(31178, v is NotEmptyStructGen<Guid>[], false);
- Eval(31179, v is NotEmptyStructGen<Guid>?, false);
- Eval(31180, v is NotEmptyStructGen<Guid>?[], false);
- Eval(31181, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(31182, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(31183, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(31184, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(31173, v is EmptyStructGen<int>, false);
+// Eval(31174, v is EmptyStructGen<int>[], false);
+// Eval(31175, v is EmptyStructGen<int>?, false);
+// Eval(31176, v is EmptyStructGen<int>?[], false);
+// Eval(31177, v is NotEmptyStructGen<Guid>, false);
+// Eval(31178, v is NotEmptyStructGen<Guid>[], false);
+// Eval(31179, v is NotEmptyStructGen<Guid>?, false);
+// Eval(31180, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(31181, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(31182, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(31183, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(31184, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(31185, v is NestedStruct, false);
Eval(31186, v is NestedStruct[], false);
Eval(31187, v is NestedStruct?, false);
Eval(31188, v is NestedStruct?[], false);
- Eval(31189, v is NestedStructGen<Decimal>, false);
- Eval(31190, v is NestedStructGen<Decimal>[], false);
- Eval(31191, v is NestedStructGen<Decimal>?, false);
- Eval(31192, v is NestedStructGen<Decimal>?[], false);
+// Eval(31189, v is NestedStructGen<Decimal>, false);
+// Eval(31190, v is NestedStructGen<Decimal>[], false);
+// Eval(31191, v is NestedStructGen<Decimal>?, false);
+// Eval(31192, v is NestedStructGen<Decimal>?[], false);
Eval(31193, v is ExplicitFieldOffsetStruct, false);
Eval(31194, v is ExplicitFieldOffsetStruct[], false);
Eval(31195, v is ExplicitFieldOffsetStruct?, false);
@@ -13282,18 +13282,18 @@ internal class Program
Eval(31214, v is ImplementTwoInterface[], false);
Eval(31215, v is ImplementTwoInterface?, false);
Eval(31216, v is ImplementTwoInterface?[], false);
- Eval(31217, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(31218, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(31219, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(31220, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(31221, v is ImplementTwoInterfaceGen<int>, false);
- Eval(31222, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(31223, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(31224, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(31225, v is ImplementAllInterface<int>, false);
- Eval(31226, v is ImplementAllInterface<int>[], false);
- Eval(31227, v is ImplementAllInterface<int>?, false);
- Eval(31228, v is ImplementAllInterface<int>?[], false);
+// Eval(31217, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(31218, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(31219, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(31220, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(31221, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(31222, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(31223, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(31224, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(31225, v is ImplementAllInterface<int>, false);
+// Eval(31226, v is ImplementAllInterface<int>[], false);
+// Eval(31227, v is ImplementAllInterface<int>?, false);
+// Eval(31228, v is ImplementAllInterface<int>?[], false);
Eval(31229, v is IntE, false);
Eval(31230, v is IntE[], false);
Eval(31231, v is IntE?, false);
@@ -13392,38 +13392,38 @@ internal class Program
Eval(31324, v is IEmpty[], false);
Eval(31325, v is INotEmpty, false);
Eval(31326, v is INotEmpty[], false);
- Eval(31327, v is IEmptyGen<int>, false);
- Eval(31328, v is IEmptyGen<int>[], false);
- Eval(31329, v is INotEmptyGen<int>, false);
- Eval(31330, v is INotEmptyGen<int>[], false);
+// Eval(31327, v is IEmptyGen<int>, false);
+// Eval(31328, v is IEmptyGen<int>[], false);
+// Eval(31329, v is INotEmptyGen<int>, false);
+// Eval(31330, v is INotEmptyGen<int>[], false);
Eval(31331, v is SimpleDelegate, false);
Eval(31332, v is SimpleDelegate[], false);
- Eval(31333, v is GenericDelegate<int>, false);
- Eval(31334, v is GenericDelegate<int>[], false);
+// Eval(31333, v is GenericDelegate<int>, false);
+// Eval(31334, v is GenericDelegate<int>[], false);
Eval(31335, v is EmptyClass, false);
Eval(31336, v is EmptyClass[], false);
Eval(31337, v is NotEmptyClass, false);
Eval(31338, v is NotEmptyClass[], false);
- Eval(31339, v is EmptyClassGen<int>, false);
- Eval(31340, v is EmptyClassGen<int>[], false);
- Eval(31341, v is NotEmptyClassGen<Guid>, false);
- Eval(31342, v is NotEmptyClassGen<Guid>[], false);
- Eval(31343, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(31344, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(31339, v is EmptyClassGen<int>, false);
+// Eval(31340, v is EmptyClassGen<int>[], false);
+// Eval(31341, v is NotEmptyClassGen<Guid>, false);
+// Eval(31342, v is NotEmptyClassGen<Guid>[], false);
+// Eval(31343, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(31344, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(31345, v is NestedClass, false);
Eval(31346, v is NestedClass[], false);
- Eval(31347, v is NestedClassGen<Decimal>, false);
- Eval(31348, v is NestedClassGen<Decimal>[], false);
+// Eval(31347, v is NestedClassGen<Decimal>, false);
+// Eval(31348, v is NestedClassGen<Decimal>[], false);
Eval(31349, v is ImplementOneInterfaceC, false);
Eval(31350, v is ImplementOneInterfaceC[], false);
Eval(31351, v is ImplementTwoInterfaceC, false);
Eval(31352, v is ImplementTwoInterfaceC[], false);
- Eval(31353, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(31354, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(31355, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(31356, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(31357, v is ImplementAllInterfaceC<int>, false);
- Eval(31358, v is ImplementAllInterfaceC<int>[], false);
+// Eval(31353, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(31354, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(31355, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(31356, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(31357, v is ImplementAllInterfaceC<int>, false);
+// Eval(31358, v is ImplementAllInterfaceC<int>[], false);
Eval(31359, v is SealedClass, false);
Eval(31360, v is SealedClass[], false);
}
@@ -13440,26 +13440,26 @@ internal class Program
Eval(31366, v is NotEmptyStruct[], false);
Eval(31367, v is NotEmptyStruct?, false);
Eval(31368, v is NotEmptyStruct?[], false);
- Eval(31369, v is EmptyStructGen<int>, false);
- Eval(31370, v is EmptyStructGen<int>[], false);
- Eval(31371, v is EmptyStructGen<int>?, false);
- Eval(31372, v is EmptyStructGen<int>?[], false);
- Eval(31373, v is NotEmptyStructGen<Guid>, false);
- Eval(31374, v is NotEmptyStructGen<Guid>[], false);
- Eval(31375, v is NotEmptyStructGen<Guid>?, false);
- Eval(31376, v is NotEmptyStructGen<Guid>?[], false);
- Eval(31377, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(31378, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(31379, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(31380, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(31369, v is EmptyStructGen<int>, false);
+// Eval(31370, v is EmptyStructGen<int>[], false);
+// Eval(31371, v is EmptyStructGen<int>?, false);
+// Eval(31372, v is EmptyStructGen<int>?[], false);
+// Eval(31373, v is NotEmptyStructGen<Guid>, false);
+// Eval(31374, v is NotEmptyStructGen<Guid>[], false);
+// Eval(31375, v is NotEmptyStructGen<Guid>?, false);
+// Eval(31376, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(31377, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(31378, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(31379, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(31380, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(31381, v is NestedStruct, false);
Eval(31382, v is NestedStruct[], false);
Eval(31383, v is NestedStruct?, false);
Eval(31384, v is NestedStruct?[], false);
- Eval(31385, v is NestedStructGen<Decimal>, false);
- Eval(31386, v is NestedStructGen<Decimal>[], false);
- Eval(31387, v is NestedStructGen<Decimal>?, false);
- Eval(31388, v is NestedStructGen<Decimal>?[], false);
+// Eval(31385, v is NestedStructGen<Decimal>, false);
+// Eval(31386, v is NestedStructGen<Decimal>[], false);
+// Eval(31387, v is NestedStructGen<Decimal>?, false);
+// Eval(31388, v is NestedStructGen<Decimal>?[], false);
Eval(31389, v is ExplicitFieldOffsetStruct, false);
Eval(31390, v is ExplicitFieldOffsetStruct[], false);
Eval(31391, v is ExplicitFieldOffsetStruct?, false);
@@ -13476,18 +13476,18 @@ internal class Program
Eval(31410, v is ImplementTwoInterface[], false);
Eval(31411, v is ImplementTwoInterface?, false);
Eval(31412, v is ImplementTwoInterface?[], false);
- Eval(31413, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(31414, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(31415, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(31416, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(31417, v is ImplementTwoInterfaceGen<int>, false);
- Eval(31418, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(31419, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(31420, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(31421, v is ImplementAllInterface<int>, false);
- Eval(31422, v is ImplementAllInterface<int>[], false);
- Eval(31423, v is ImplementAllInterface<int>?, false);
- Eval(31424, v is ImplementAllInterface<int>?[], false);
+// Eval(31413, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(31414, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(31415, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(31416, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(31417, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(31418, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(31419, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(31420, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(31421, v is ImplementAllInterface<int>, false);
+// Eval(31422, v is ImplementAllInterface<int>[], false);
+// Eval(31423, v is ImplementAllInterface<int>?, false);
+// Eval(31424, v is ImplementAllInterface<int>?[], false);
Eval(31425, v is IntE, false);
Eval(31426, v is IntE[], false);
Eval(31427, v is IntE?, false);
@@ -13586,38 +13586,38 @@ internal class Program
Eval(31520, v is IEmpty[], false);
Eval(31521, v is INotEmpty, false);
Eval(31522, v is INotEmpty[], false);
- Eval(31523, v is IEmptyGen<int>, false);
- Eval(31524, v is IEmptyGen<int>[], false);
- Eval(31525, v is INotEmptyGen<int>, false);
- Eval(31526, v is INotEmptyGen<int>[], false);
+// Eval(31523, v is IEmptyGen<int>, false);
+// Eval(31524, v is IEmptyGen<int>[], false);
+// Eval(31525, v is INotEmptyGen<int>, false);
+// Eval(31526, v is INotEmptyGen<int>[], false);
Eval(31527, v is SimpleDelegate, false);
Eval(31528, v is SimpleDelegate[], false);
- Eval(31529, v is GenericDelegate<int>, false);
- Eval(31530, v is GenericDelegate<int>[], false);
+// Eval(31529, v is GenericDelegate<int>, false);
+// Eval(31530, v is GenericDelegate<int>[], false);
Eval(31531, v is EmptyClass, false);
Eval(31532, v is EmptyClass[], false);
Eval(31533, v is NotEmptyClass, false);
Eval(31534, v is NotEmptyClass[], false);
- Eval(31535, v is EmptyClassGen<int>, false);
- Eval(31536, v is EmptyClassGen<int>[], false);
- Eval(31537, v is NotEmptyClassGen<Guid>, false);
- Eval(31538, v is NotEmptyClassGen<Guid>[], false);
- Eval(31539, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(31540, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(31535, v is EmptyClassGen<int>, false);
+// Eval(31536, v is EmptyClassGen<int>[], false);
+// Eval(31537, v is NotEmptyClassGen<Guid>, false);
+// Eval(31538, v is NotEmptyClassGen<Guid>[], false);
+// Eval(31539, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(31540, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(31541, v is NestedClass, false);
Eval(31542, v is NestedClass[], false);
- Eval(31543, v is NestedClassGen<Decimal>, false);
- Eval(31544, v is NestedClassGen<Decimal>[], false);
+// Eval(31543, v is NestedClassGen<Decimal>, false);
+// Eval(31544, v is NestedClassGen<Decimal>[], false);
Eval(31545, v is ImplementOneInterfaceC, false);
Eval(31546, v is ImplementOneInterfaceC[], false);
Eval(31547, v is ImplementTwoInterfaceC, false);
Eval(31548, v is ImplementTwoInterfaceC[], false);
- Eval(31549, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(31550, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(31551, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(31552, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(31553, v is ImplementAllInterfaceC<int>, false);
- Eval(31554, v is ImplementAllInterfaceC<int>[], false);
+// Eval(31549, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(31550, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(31551, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(31552, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(31553, v is ImplementAllInterfaceC<int>, false);
+// Eval(31554, v is ImplementAllInterfaceC<int>[], false);
Eval(31555, v is SealedClass, false);
Eval(31556, v is SealedClass[], false);
}
@@ -13631,26 +13631,26 @@ internal class Program
Eval(31562, v is NotEmptyStruct[], false);
Eval(31563, v is NotEmptyStruct?, false);
Eval(31564, v is NotEmptyStruct?[], false);
- Eval(31565, v is EmptyStructGen<int>, false);
- Eval(31566, v is EmptyStructGen<int>[], false);
- Eval(31567, v is EmptyStructGen<int>?, false);
- Eval(31568, v is EmptyStructGen<int>?[], false);
- Eval(31569, v is NotEmptyStructGen<Guid>, false);
- Eval(31570, v is NotEmptyStructGen<Guid>[], false);
- Eval(31571, v is NotEmptyStructGen<Guid>?, false);
- Eval(31572, v is NotEmptyStructGen<Guid>?[], false);
- Eval(31573, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(31574, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(31575, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(31576, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(31565, v is EmptyStructGen<int>, false);
+// Eval(31566, v is EmptyStructGen<int>[], false);
+// Eval(31567, v is EmptyStructGen<int>?, false);
+// Eval(31568, v is EmptyStructGen<int>?[], false);
+// Eval(31569, v is NotEmptyStructGen<Guid>, false);
+// Eval(31570, v is NotEmptyStructGen<Guid>[], false);
+// Eval(31571, v is NotEmptyStructGen<Guid>?, false);
+// Eval(31572, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(31573, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(31574, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(31575, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(31576, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(31577, v is NestedStruct, false);
Eval(31578, v is NestedStruct[], false);
Eval(31579, v is NestedStruct?, false);
Eval(31580, v is NestedStruct?[], false);
- Eval(31581, v is NestedStructGen<Decimal>, false);
- Eval(31582, v is NestedStructGen<Decimal>[], false);
- Eval(31583, v is NestedStructGen<Decimal>?, false);
- Eval(31584, v is NestedStructGen<Decimal>?[], false);
+// Eval(31581, v is NestedStructGen<Decimal>, false);
+// Eval(31582, v is NestedStructGen<Decimal>[], false);
+// Eval(31583, v is NestedStructGen<Decimal>?, false);
+// Eval(31584, v is NestedStructGen<Decimal>?[], false);
Eval(31585, v is ExplicitFieldOffsetStruct, false);
Eval(31586, v is ExplicitFieldOffsetStruct[], false);
Eval(31587, v is ExplicitFieldOffsetStruct?, false);
@@ -13667,18 +13667,18 @@ internal class Program
Eval(31606, v is ImplementTwoInterface[], false);
Eval(31607, v is ImplementTwoInterface?, false);
Eval(31608, v is ImplementTwoInterface?[], false);
- Eval(31609, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(31610, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(31611, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(31612, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(31613, v is ImplementTwoInterfaceGen<int>, false);
- Eval(31614, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(31615, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(31616, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(31617, v is ImplementAllInterface<int>, false);
- Eval(31618, v is ImplementAllInterface<int>[], false);
- Eval(31619, v is ImplementAllInterface<int>?, false);
- Eval(31620, v is ImplementAllInterface<int>?[], false);
+// Eval(31609, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(31610, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(31611, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(31612, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(31613, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(31614, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(31615, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(31616, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(31617, v is ImplementAllInterface<int>, false);
+// Eval(31618, v is ImplementAllInterface<int>[], false);
+// Eval(31619, v is ImplementAllInterface<int>?, false);
+// Eval(31620, v is ImplementAllInterface<int>?[], false);
Eval(31621, v is IntE, false);
Eval(31622, v is IntE[], false);
Eval(31623, v is IntE?, false);
@@ -13777,38 +13777,38 @@ internal class Program
Eval(31716, v is IEmpty[], false);
Eval(31717, v is INotEmpty, false);
Eval(31718, v is INotEmpty[], false);
- Eval(31719, v is IEmptyGen<int>, false);
- Eval(31720, v is IEmptyGen<int>[], false);
- Eval(31721, v is INotEmptyGen<int>, false);
- Eval(31722, v is INotEmptyGen<int>[], false);
+// Eval(31719, v is IEmptyGen<int>, false);
+// Eval(31720, v is IEmptyGen<int>[], false);
+// Eval(31721, v is INotEmptyGen<int>, false);
+// Eval(31722, v is INotEmptyGen<int>[], false);
Eval(31723, v is SimpleDelegate, false);
Eval(31724, v is SimpleDelegate[], false);
- Eval(31725, v is GenericDelegate<int>, false);
- Eval(31726, v is GenericDelegate<int>[], false);
+// Eval(31725, v is GenericDelegate<int>, false);
+// Eval(31726, v is GenericDelegate<int>[], false);
Eval(31727, v is EmptyClass, false);
Eval(31728, v is EmptyClass[], false);
Eval(31729, v is NotEmptyClass, false);
Eval(31730, v is NotEmptyClass[], false);
- Eval(31731, v is EmptyClassGen<int>, false);
- Eval(31732, v is EmptyClassGen<int>[], false);
- Eval(31733, v is NotEmptyClassGen<Guid>, false);
- Eval(31734, v is NotEmptyClassGen<Guid>[], false);
- Eval(31735, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(31736, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(31731, v is EmptyClassGen<int>, false);
+// Eval(31732, v is EmptyClassGen<int>[], false);
+// Eval(31733, v is NotEmptyClassGen<Guid>, false);
+// Eval(31734, v is NotEmptyClassGen<Guid>[], false);
+// Eval(31735, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(31736, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(31737, v is NestedClass, false);
Eval(31738, v is NestedClass[], false);
- Eval(31739, v is NestedClassGen<Decimal>, false);
- Eval(31740, v is NestedClassGen<Decimal>[], false);
+// Eval(31739, v is NestedClassGen<Decimal>, false);
+// Eval(31740, v is NestedClassGen<Decimal>[], false);
Eval(31741, v is ImplementOneInterfaceC, false);
Eval(31742, v is ImplementOneInterfaceC[], false);
Eval(31743, v is ImplementTwoInterfaceC, false);
Eval(31744, v is ImplementTwoInterfaceC[], false);
- Eval(31745, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(31746, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(31747, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(31748, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(31749, v is ImplementAllInterfaceC<int>, false);
- Eval(31750, v is ImplementAllInterfaceC<int>[], false);
+// Eval(31745, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(31746, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(31747, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(31748, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(31749, v is ImplementAllInterfaceC<int>, false);
+// Eval(31750, v is ImplementAllInterfaceC<int>[], false);
Eval(31751, v is SealedClass, false);
Eval(31752, v is SealedClass[], false);
}
@@ -13822,26 +13822,26 @@ internal class Program
Eval(31758, v is NotEmptyStruct[], false);
Eval(31759, v is NotEmptyStruct?, false);
Eval(31760, v is NotEmptyStruct?[], false);
- Eval(31761, v is EmptyStructGen<int>, false);
- Eval(31762, v is EmptyStructGen<int>[], false);
- Eval(31763, v is EmptyStructGen<int>?, false);
- Eval(31764, v is EmptyStructGen<int>?[], false);
- Eval(31765, v is NotEmptyStructGen<Guid>, false);
- Eval(31766, v is NotEmptyStructGen<Guid>[], false);
- Eval(31767, v is NotEmptyStructGen<Guid>?, false);
- Eval(31768, v is NotEmptyStructGen<Guid>?[], false);
- Eval(31769, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(31770, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(31771, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(31772, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(31761, v is EmptyStructGen<int>, false);
+// Eval(31762, v is EmptyStructGen<int>[], false);
+// Eval(31763, v is EmptyStructGen<int>?, false);
+// Eval(31764, v is EmptyStructGen<int>?[], false);
+// Eval(31765, v is NotEmptyStructGen<Guid>, false);
+// Eval(31766, v is NotEmptyStructGen<Guid>[], false);
+// Eval(31767, v is NotEmptyStructGen<Guid>?, false);
+// Eval(31768, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(31769, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(31770, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(31771, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(31772, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(31773, v is NestedStruct, false);
Eval(31774, v is NestedStruct[], false);
Eval(31775, v is NestedStruct?, false);
Eval(31776, v is NestedStruct?[], false);
- Eval(31777, v is NestedStructGen<Decimal>, false);
- Eval(31778, v is NestedStructGen<Decimal>[], false);
- Eval(31779, v is NestedStructGen<Decimal>?, false);
- Eval(31780, v is NestedStructGen<Decimal>?[], false);
+// Eval(31777, v is NestedStructGen<Decimal>, false);
+// Eval(31778, v is NestedStructGen<Decimal>[], false);
+// Eval(31779, v is NestedStructGen<Decimal>?, false);
+// Eval(31780, v is NestedStructGen<Decimal>?[], false);
Eval(31781, v is ExplicitFieldOffsetStruct, false);
Eval(31782, v is ExplicitFieldOffsetStruct[], false);
Eval(31783, v is ExplicitFieldOffsetStruct?, false);
@@ -13858,18 +13858,18 @@ internal class Program
Eval(31802, v is ImplementTwoInterface[], false);
Eval(31803, v is ImplementTwoInterface?, false);
Eval(31804, v is ImplementTwoInterface?[], false);
- Eval(31805, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(31806, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(31807, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(31808, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(31809, v is ImplementTwoInterfaceGen<int>, false);
- Eval(31810, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(31811, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(31812, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(31813, v is ImplementAllInterface<int>, false);
- Eval(31814, v is ImplementAllInterface<int>[], false);
- Eval(31815, v is ImplementAllInterface<int>?, false);
- Eval(31816, v is ImplementAllInterface<int>?[], false);
+// Eval(31805, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(31806, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(31807, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(31808, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(31809, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(31810, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(31811, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(31812, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(31813, v is ImplementAllInterface<int>, false);
+// Eval(31814, v is ImplementAllInterface<int>[], false);
+// Eval(31815, v is ImplementAllInterface<int>?, false);
+// Eval(31816, v is ImplementAllInterface<int>?[], false);
Eval(31817, v is IntE, false);
Eval(31818, v is IntE[], false);
Eval(31819, v is IntE?, false);
@@ -13968,38 +13968,38 @@ internal class Program
Eval(31912, v is IEmpty[], false);
Eval(31913, v is INotEmpty, false);
Eval(31914, v is INotEmpty[], false);
- Eval(31915, v is IEmptyGen<int>, false);
- Eval(31916, v is IEmptyGen<int>[], false);
- Eval(31917, v is INotEmptyGen<int>, false);
- Eval(31918, v is INotEmptyGen<int>[], false);
+// Eval(31915, v is IEmptyGen<int>, false);
+// Eval(31916, v is IEmptyGen<int>[], false);
+// Eval(31917, v is INotEmptyGen<int>, false);
+// Eval(31918, v is INotEmptyGen<int>[], false);
Eval(31919, v is SimpleDelegate, false);
Eval(31920, v is SimpleDelegate[], false);
- Eval(31921, v is GenericDelegate<int>, false);
- Eval(31922, v is GenericDelegate<int>[], false);
+// Eval(31921, v is GenericDelegate<int>, false);
+// Eval(31922, v is GenericDelegate<int>[], false);
Eval(31923, v is EmptyClass, false);
Eval(31924, v is EmptyClass[], false);
Eval(31925, v is NotEmptyClass, false);
Eval(31926, v is NotEmptyClass[], false);
- Eval(31927, v is EmptyClassGen<int>, false);
- Eval(31928, v is EmptyClassGen<int>[], false);
- Eval(31929, v is NotEmptyClassGen<Guid>, false);
- Eval(31930, v is NotEmptyClassGen<Guid>[], false);
- Eval(31931, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(31932, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(31927, v is EmptyClassGen<int>, false);
+// Eval(31928, v is EmptyClassGen<int>[], false);
+// Eval(31929, v is NotEmptyClassGen<Guid>, false);
+// Eval(31930, v is NotEmptyClassGen<Guid>[], false);
+// Eval(31931, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(31932, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(31933, v is NestedClass, false);
Eval(31934, v is NestedClass[], false);
- Eval(31935, v is NestedClassGen<Decimal>, false);
- Eval(31936, v is NestedClassGen<Decimal>[], false);
+// Eval(31935, v is NestedClassGen<Decimal>, false);
+// Eval(31936, v is NestedClassGen<Decimal>[], false);
Eval(31937, v is ImplementOneInterfaceC, false);
Eval(31938, v is ImplementOneInterfaceC[], false);
Eval(31939, v is ImplementTwoInterfaceC, false);
Eval(31940, v is ImplementTwoInterfaceC[], false);
- Eval(31941, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(31942, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(31943, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(31944, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(31945, v is ImplementAllInterfaceC<int>, false);
- Eval(31946, v is ImplementAllInterfaceC<int>[], false);
+// Eval(31941, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(31942, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(31943, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(31944, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(31945, v is ImplementAllInterfaceC<int>, false);
+// Eval(31946, v is ImplementAllInterfaceC<int>[], false);
Eval(31947, v is SealedClass, false);
Eval(31948, v is SealedClass[], false);
}
@@ -14013,26 +14013,26 @@ internal class Program
Eval(31954, v is NotEmptyStruct[], false);
Eval(31955, v is NotEmptyStruct?, false);
Eval(31956, v is NotEmptyStruct?[], false);
- Eval(31957, v is EmptyStructGen<int>, false);
- Eval(31958, v is EmptyStructGen<int>[], false);
- Eval(31959, v is EmptyStructGen<int>?, false);
- Eval(31960, v is EmptyStructGen<int>?[], false);
- Eval(31961, v is NotEmptyStructGen<Guid>, false);
- Eval(31962, v is NotEmptyStructGen<Guid>[], false);
- Eval(31963, v is NotEmptyStructGen<Guid>?, false);
- Eval(31964, v is NotEmptyStructGen<Guid>?[], false);
- Eval(31965, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(31966, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(31967, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(31968, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(31957, v is EmptyStructGen<int>, false);
+// Eval(31958, v is EmptyStructGen<int>[], false);
+// Eval(31959, v is EmptyStructGen<int>?, false);
+// Eval(31960, v is EmptyStructGen<int>?[], false);
+// Eval(31961, v is NotEmptyStructGen<Guid>, false);
+// Eval(31962, v is NotEmptyStructGen<Guid>[], false);
+// Eval(31963, v is NotEmptyStructGen<Guid>?, false);
+// Eval(31964, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(31965, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(31966, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(31967, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(31968, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(31969, v is NestedStruct, false);
Eval(31970, v is NestedStruct[], false);
Eval(31971, v is NestedStruct?, false);
Eval(31972, v is NestedStruct?[], false);
- Eval(31973, v is NestedStructGen<Decimal>, false);
- Eval(31974, v is NestedStructGen<Decimal>[], false);
- Eval(31975, v is NestedStructGen<Decimal>?, false);
- Eval(31976, v is NestedStructGen<Decimal>?[], false);
+// Eval(31973, v is NestedStructGen<Decimal>, false);
+// Eval(31974, v is NestedStructGen<Decimal>[], false);
+// Eval(31975, v is NestedStructGen<Decimal>?, false);
+// Eval(31976, v is NestedStructGen<Decimal>?[], false);
Eval(31977, v is ExplicitFieldOffsetStruct, false);
Eval(31978, v is ExplicitFieldOffsetStruct[], false);
Eval(31979, v is ExplicitFieldOffsetStruct?, false);
@@ -14049,18 +14049,18 @@ internal class Program
Eval(31998, v is ImplementTwoInterface[], false);
Eval(31999, v is ImplementTwoInterface?, false);
Eval(32000, v is ImplementTwoInterface?[], false);
- Eval(32001, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(32002, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(32003, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(32004, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(32005, v is ImplementTwoInterfaceGen<int>, false);
- Eval(32006, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(32007, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(32008, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(32009, v is ImplementAllInterface<int>, false);
- Eval(32010, v is ImplementAllInterface<int>[], false);
- Eval(32011, v is ImplementAllInterface<int>?, false);
- Eval(32012, v is ImplementAllInterface<int>?[], false);
+// Eval(32001, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(32002, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(32003, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(32004, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(32005, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(32006, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(32007, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(32008, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(32009, v is ImplementAllInterface<int>, false);
+// Eval(32010, v is ImplementAllInterface<int>[], false);
+// Eval(32011, v is ImplementAllInterface<int>?, false);
+// Eval(32012, v is ImplementAllInterface<int>?[], false);
Eval(32013, v is IntE, false);
Eval(32014, v is IntE[], false);
Eval(32015, v is IntE?, false);
@@ -14159,38 +14159,38 @@ internal class Program
Eval(32108, v is IEmpty[], false);
Eval(32109, v is INotEmpty, false);
Eval(32110, v is INotEmpty[], false);
- Eval(32111, v is IEmptyGen<int>, false);
- Eval(32112, v is IEmptyGen<int>[], false);
- Eval(32113, v is INotEmptyGen<int>, false);
- Eval(32114, v is INotEmptyGen<int>[], false);
+// Eval(32111, v is IEmptyGen<int>, false);
+// Eval(32112, v is IEmptyGen<int>[], false);
+// Eval(32113, v is INotEmptyGen<int>, false);
+// Eval(32114, v is INotEmptyGen<int>[], false);
Eval(32115, v is SimpleDelegate, false);
Eval(32116, v is SimpleDelegate[], false);
- Eval(32117, v is GenericDelegate<int>, false);
- Eval(32118, v is GenericDelegate<int>[], false);
+// Eval(32117, v is GenericDelegate<int>, false);
+// Eval(32118, v is GenericDelegate<int>[], false);
Eval(32119, v is EmptyClass, false);
Eval(32120, v is EmptyClass[], false);
Eval(32121, v is NotEmptyClass, false);
Eval(32122, v is NotEmptyClass[], false);
- Eval(32123, v is EmptyClassGen<int>, false);
- Eval(32124, v is EmptyClassGen<int>[], false);
- Eval(32125, v is NotEmptyClassGen<Guid>, false);
- Eval(32126, v is NotEmptyClassGen<Guid>[], false);
- Eval(32127, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(32128, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(32123, v is EmptyClassGen<int>, false);
+// Eval(32124, v is EmptyClassGen<int>[], false);
+// Eval(32125, v is NotEmptyClassGen<Guid>, false);
+// Eval(32126, v is NotEmptyClassGen<Guid>[], false);
+// Eval(32127, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(32128, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(32129, v is NestedClass, false);
Eval(32130, v is NestedClass[], false);
- Eval(32131, v is NestedClassGen<Decimal>, false);
- Eval(32132, v is NestedClassGen<Decimal>[], false);
+// Eval(32131, v is NestedClassGen<Decimal>, false);
+// Eval(32132, v is NestedClassGen<Decimal>[], false);
Eval(32133, v is ImplementOneInterfaceC, false);
Eval(32134, v is ImplementOneInterfaceC[], false);
Eval(32135, v is ImplementTwoInterfaceC, false);
Eval(32136, v is ImplementTwoInterfaceC[], false);
- Eval(32137, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(32138, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(32139, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(32140, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(32141, v is ImplementAllInterfaceC<int>, false);
- Eval(32142, v is ImplementAllInterfaceC<int>[], false);
+// Eval(32137, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(32138, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(32139, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(32140, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(32141, v is ImplementAllInterfaceC<int>, false);
+// Eval(32142, v is ImplementAllInterfaceC<int>[], false);
Eval(32143, v is SealedClass, false);
Eval(32144, v is SealedClass[], false);
}
@@ -14204,26 +14204,26 @@ internal class Program
Eval(32150, v is NotEmptyStruct[], false);
Eval(32151, v is NotEmptyStruct?, false);
Eval(32152, v is NotEmptyStruct?[], false);
- Eval(32153, v is EmptyStructGen<int>, false);
- Eval(32154, v is EmptyStructGen<int>[], false);
- Eval(32155, v is EmptyStructGen<int>?, false);
- Eval(32156, v is EmptyStructGen<int>?[], false);
- Eval(32157, v is NotEmptyStructGen<Guid>, false);
- Eval(32158, v is NotEmptyStructGen<Guid>[], false);
- Eval(32159, v is NotEmptyStructGen<Guid>?, false);
- Eval(32160, v is NotEmptyStructGen<Guid>?[], false);
- Eval(32161, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(32162, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(32163, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(32164, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(32153, v is EmptyStructGen<int>, false);
+// Eval(32154, v is EmptyStructGen<int>[], false);
+// Eval(32155, v is EmptyStructGen<int>?, false);
+// Eval(32156, v is EmptyStructGen<int>?[], false);
+// Eval(32157, v is NotEmptyStructGen<Guid>, false);
+// Eval(32158, v is NotEmptyStructGen<Guid>[], false);
+// Eval(32159, v is NotEmptyStructGen<Guid>?, false);
+// Eval(32160, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(32161, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(32162, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(32163, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(32164, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(32165, v is NestedStruct, false);
Eval(32166, v is NestedStruct[], false);
Eval(32167, v is NestedStruct?, false);
Eval(32168, v is NestedStruct?[], false);
- Eval(32169, v is NestedStructGen<Decimal>, false);
- Eval(32170, v is NestedStructGen<Decimal>[], false);
- Eval(32171, v is NestedStructGen<Decimal>?, false);
- Eval(32172, v is NestedStructGen<Decimal>?[], false);
+// Eval(32169, v is NestedStructGen<Decimal>, false);
+// Eval(32170, v is NestedStructGen<Decimal>[], false);
+// Eval(32171, v is NestedStructGen<Decimal>?, false);
+// Eval(32172, v is NestedStructGen<Decimal>?[], false);
Eval(32173, v is ExplicitFieldOffsetStruct, false);
Eval(32174, v is ExplicitFieldOffsetStruct[], false);
Eval(32175, v is ExplicitFieldOffsetStruct?, false);
@@ -14240,18 +14240,18 @@ internal class Program
Eval(32194, v is ImplementTwoInterface[], false);
Eval(32195, v is ImplementTwoInterface?, false);
Eval(32196, v is ImplementTwoInterface?[], false);
- Eval(32197, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(32198, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(32199, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(32200, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(32201, v is ImplementTwoInterfaceGen<int>, false);
- Eval(32202, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(32203, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(32204, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(32205, v is ImplementAllInterface<int>, false);
- Eval(32206, v is ImplementAllInterface<int>[], false);
- Eval(32207, v is ImplementAllInterface<int>?, false);
- Eval(32208, v is ImplementAllInterface<int>?[], false);
+// Eval(32197, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(32198, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(32199, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(32200, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(32201, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(32202, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(32203, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(32204, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(32205, v is ImplementAllInterface<int>, false);
+// Eval(32206, v is ImplementAllInterface<int>[], false);
+// Eval(32207, v is ImplementAllInterface<int>?, false);
+// Eval(32208, v is ImplementAllInterface<int>?[], false);
Eval(32209, v is IntE, false);
Eval(32210, v is IntE[], false);
Eval(32211, v is IntE?, false);
@@ -14350,38 +14350,38 @@ internal class Program
Eval(32304, v is IEmpty[], false);
Eval(32305, v is INotEmpty, false);
Eval(32306, v is INotEmpty[], false);
- Eval(32307, v is IEmptyGen<int>, false);
- Eval(32308, v is IEmptyGen<int>[], false);
- Eval(32309, v is INotEmptyGen<int>, false);
- Eval(32310, v is INotEmptyGen<int>[], false);
+// Eval(32307, v is IEmptyGen<int>, false);
+// Eval(32308, v is IEmptyGen<int>[], false);
+// Eval(32309, v is INotEmptyGen<int>, false);
+// Eval(32310, v is INotEmptyGen<int>[], false);
Eval(32311, v is SimpleDelegate, false);
Eval(32312, v is SimpleDelegate[], false);
- Eval(32313, v is GenericDelegate<int>, false);
- Eval(32314, v is GenericDelegate<int>[], false);
+// Eval(32313, v is GenericDelegate<int>, false);
+// Eval(32314, v is GenericDelegate<int>[], false);
Eval(32315, v is EmptyClass, false);
Eval(32316, v is EmptyClass[], false);
Eval(32317, v is NotEmptyClass, false);
Eval(32318, v is NotEmptyClass[], false);
- Eval(32319, v is EmptyClassGen<int>, false);
- Eval(32320, v is EmptyClassGen<int>[], false);
- Eval(32321, v is NotEmptyClassGen<Guid>, false);
- Eval(32322, v is NotEmptyClassGen<Guid>[], false);
- Eval(32323, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(32324, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(32319, v is EmptyClassGen<int>, false);
+// Eval(32320, v is EmptyClassGen<int>[], false);
+// Eval(32321, v is NotEmptyClassGen<Guid>, false);
+// Eval(32322, v is NotEmptyClassGen<Guid>[], false);
+// Eval(32323, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(32324, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(32325, v is NestedClass, false);
Eval(32326, v is NestedClass[], false);
- Eval(32327, v is NestedClassGen<Decimal>, false);
- Eval(32328, v is NestedClassGen<Decimal>[], false);
+// Eval(32327, v is NestedClassGen<Decimal>, false);
+// Eval(32328, v is NestedClassGen<Decimal>[], false);
Eval(32329, v is ImplementOneInterfaceC, false);
Eval(32330, v is ImplementOneInterfaceC[], false);
Eval(32331, v is ImplementTwoInterfaceC, false);
Eval(32332, v is ImplementTwoInterfaceC[], false);
- Eval(32333, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(32334, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(32335, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(32336, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(32337, v is ImplementAllInterfaceC<int>, false);
- Eval(32338, v is ImplementAllInterfaceC<int>[], false);
+// Eval(32333, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(32334, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(32335, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(32336, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(32337, v is ImplementAllInterfaceC<int>, false);
+// Eval(32338, v is ImplementAllInterfaceC<int>[], false);
Eval(32339, v is SealedClass, false);
Eval(32340, v is SealedClass[], false);
}
@@ -14398,26 +14398,26 @@ internal class Program
Eval(32346, v is NotEmptyStruct[], false);
Eval(32347, v is NotEmptyStruct?, false);
Eval(32348, v is NotEmptyStruct?[], false);
- Eval(32349, v is EmptyStructGen<int>, false);
- Eval(32350, v is EmptyStructGen<int>[], false);
- Eval(32351, v is EmptyStructGen<int>?, false);
- Eval(32352, v is EmptyStructGen<int>?[], false);
- Eval(32353, v is NotEmptyStructGen<Guid>, false);
- Eval(32354, v is NotEmptyStructGen<Guid>[], false);
- Eval(32355, v is NotEmptyStructGen<Guid>?, false);
- Eval(32356, v is NotEmptyStructGen<Guid>?[], false);
- Eval(32357, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(32358, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(32359, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(32360, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(32349, v is EmptyStructGen<int>, false);
+// Eval(32350, v is EmptyStructGen<int>[], false);
+// Eval(32351, v is EmptyStructGen<int>?, false);
+// Eval(32352, v is EmptyStructGen<int>?[], false);
+// Eval(32353, v is NotEmptyStructGen<Guid>, false);
+// Eval(32354, v is NotEmptyStructGen<Guid>[], false);
+// Eval(32355, v is NotEmptyStructGen<Guid>?, false);
+// Eval(32356, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(32357, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(32358, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(32359, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(32360, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(32361, v is NestedStruct, false);
Eval(32362, v is NestedStruct[], false);
Eval(32363, v is NestedStruct?, false);
Eval(32364, v is NestedStruct?[], false);
- Eval(32365, v is NestedStructGen<Decimal>, false);
- Eval(32366, v is NestedStructGen<Decimal>[], false);
- Eval(32367, v is NestedStructGen<Decimal>?, false);
- Eval(32368, v is NestedStructGen<Decimal>?[], false);
+// Eval(32365, v is NestedStructGen<Decimal>, false);
+// Eval(32366, v is NestedStructGen<Decimal>[], false);
+// Eval(32367, v is NestedStructGen<Decimal>?, false);
+// Eval(32368, v is NestedStructGen<Decimal>?[], false);
Eval(32369, v is ExplicitFieldOffsetStruct, false);
Eval(32370, v is ExplicitFieldOffsetStruct[], false);
Eval(32371, v is ExplicitFieldOffsetStruct?, false);
@@ -14434,18 +14434,18 @@ internal class Program
Eval(32390, v is ImplementTwoInterface[], false);
Eval(32391, v is ImplementTwoInterface?, false);
Eval(32392, v is ImplementTwoInterface?[], false);
- Eval(32393, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(32394, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(32395, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(32396, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(32397, v is ImplementTwoInterfaceGen<int>, false);
- Eval(32398, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(32399, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(32400, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(32401, v is ImplementAllInterface<int>, false);
- Eval(32402, v is ImplementAllInterface<int>[], false);
- Eval(32403, v is ImplementAllInterface<int>?, false);
- Eval(32404, v is ImplementAllInterface<int>?[], false);
+// Eval(32393, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(32394, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(32395, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(32396, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(32397, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(32398, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(32399, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(32400, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(32401, v is ImplementAllInterface<int>, false);
+// Eval(32402, v is ImplementAllInterface<int>[], false);
+// Eval(32403, v is ImplementAllInterface<int>?, false);
+// Eval(32404, v is ImplementAllInterface<int>?[], false);
Eval(32405, v is IntE, false);
Eval(32406, v is IntE[], false);
Eval(32407, v is IntE?, false);
@@ -14544,38 +14544,38 @@ internal class Program
Eval(32500, v is IEmpty[], false);
Eval(32501, v is INotEmpty, false);
Eval(32502, v is INotEmpty[], false);
- Eval(32503, v is IEmptyGen<int>, false);
- Eval(32504, v is IEmptyGen<int>[], false);
- Eval(32505, v is INotEmptyGen<int>, false);
- Eval(32506, v is INotEmptyGen<int>[], false);
+// Eval(32503, v is IEmptyGen<int>, false);
+// Eval(32504, v is IEmptyGen<int>[], false);
+// Eval(32505, v is INotEmptyGen<int>, false);
+// Eval(32506, v is INotEmptyGen<int>[], false);
Eval(32507, v is SimpleDelegate, false);
Eval(32508, v is SimpleDelegate[], false);
- Eval(32509, v is GenericDelegate<int>, false);
- Eval(32510, v is GenericDelegate<int>[], false);
+// Eval(32509, v is GenericDelegate<int>, false);
+// Eval(32510, v is GenericDelegate<int>[], false);
Eval(32511, v is EmptyClass, false);
Eval(32512, v is EmptyClass[], false);
Eval(32513, v is NotEmptyClass, false);
Eval(32514, v is NotEmptyClass[], false);
- Eval(32515, v is EmptyClassGen<int>, false);
- Eval(32516, v is EmptyClassGen<int>[], false);
- Eval(32517, v is NotEmptyClassGen<Guid>, false);
- Eval(32518, v is NotEmptyClassGen<Guid>[], false);
- Eval(32519, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(32520, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(32515, v is EmptyClassGen<int>, false);
+// Eval(32516, v is EmptyClassGen<int>[], false);
+// Eval(32517, v is NotEmptyClassGen<Guid>, false);
+// Eval(32518, v is NotEmptyClassGen<Guid>[], false);
+// Eval(32519, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(32520, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(32521, v is NestedClass, false);
Eval(32522, v is NestedClass[], false);
- Eval(32523, v is NestedClassGen<Decimal>, false);
- Eval(32524, v is NestedClassGen<Decimal>[], false);
+// Eval(32523, v is NestedClassGen<Decimal>, false);
+// Eval(32524, v is NestedClassGen<Decimal>[], false);
Eval(32525, v is ImplementOneInterfaceC, false);
Eval(32526, v is ImplementOneInterfaceC[], false);
Eval(32527, v is ImplementTwoInterfaceC, false);
Eval(32528, v is ImplementTwoInterfaceC[], false);
- Eval(32529, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(32530, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(32531, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(32532, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(32533, v is ImplementAllInterfaceC<int>, false);
- Eval(32534, v is ImplementAllInterfaceC<int>[], false);
+// Eval(32529, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(32530, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(32531, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(32532, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(32533, v is ImplementAllInterfaceC<int>, false);
+// Eval(32534, v is ImplementAllInterfaceC<int>[], false);
Eval(32535, v is SealedClass, false);
Eval(32536, v is SealedClass[], false);
}
@@ -14589,26 +14589,26 @@ internal class Program
Eval(32542, v is NotEmptyStruct[], false);
Eval(32543, v is NotEmptyStruct?, false);
Eval(32544, v is NotEmptyStruct?[], false);
- Eval(32545, v is EmptyStructGen<int>, false);
- Eval(32546, v is EmptyStructGen<int>[], false);
- Eval(32547, v is EmptyStructGen<int>?, false);
- Eval(32548, v is EmptyStructGen<int>?[], false);
- Eval(32549, v is NotEmptyStructGen<Guid>, false);
- Eval(32550, v is NotEmptyStructGen<Guid>[], false);
- Eval(32551, v is NotEmptyStructGen<Guid>?, false);
- Eval(32552, v is NotEmptyStructGen<Guid>?[], false);
- Eval(32553, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(32554, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(32555, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(32556, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(32545, v is EmptyStructGen<int>, false);
+// Eval(32546, v is EmptyStructGen<int>[], false);
+// Eval(32547, v is EmptyStructGen<int>?, false);
+// Eval(32548, v is EmptyStructGen<int>?[], false);
+// Eval(32549, v is NotEmptyStructGen<Guid>, false);
+// Eval(32550, v is NotEmptyStructGen<Guid>[], false);
+// Eval(32551, v is NotEmptyStructGen<Guid>?, false);
+// Eval(32552, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(32553, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(32554, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(32555, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(32556, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(32557, v is NestedStruct, false);
Eval(32558, v is NestedStruct[], false);
Eval(32559, v is NestedStruct?, false);
Eval(32560, v is NestedStruct?[], false);
- Eval(32561, v is NestedStructGen<Decimal>, false);
- Eval(32562, v is NestedStructGen<Decimal>[], false);
- Eval(32563, v is NestedStructGen<Decimal>?, false);
- Eval(32564, v is NestedStructGen<Decimal>?[], false);
+// Eval(32561, v is NestedStructGen<Decimal>, false);
+// Eval(32562, v is NestedStructGen<Decimal>[], false);
+// Eval(32563, v is NestedStructGen<Decimal>?, false);
+// Eval(32564, v is NestedStructGen<Decimal>?[], false);
Eval(32565, v is ExplicitFieldOffsetStruct, false);
Eval(32566, v is ExplicitFieldOffsetStruct[], false);
Eval(32567, v is ExplicitFieldOffsetStruct?, false);
@@ -14625,18 +14625,18 @@ internal class Program
Eval(32586, v is ImplementTwoInterface[], false);
Eval(32587, v is ImplementTwoInterface?, false);
Eval(32588, v is ImplementTwoInterface?[], false);
- Eval(32589, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(32590, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(32591, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(32592, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(32593, v is ImplementTwoInterfaceGen<int>, false);
- Eval(32594, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(32595, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(32596, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(32597, v is ImplementAllInterface<int>, false);
- Eval(32598, v is ImplementAllInterface<int>[], false);
- Eval(32599, v is ImplementAllInterface<int>?, false);
- Eval(32600, v is ImplementAllInterface<int>?[], false);
+// Eval(32589, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(32590, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(32591, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(32592, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(32593, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(32594, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(32595, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(32596, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(32597, v is ImplementAllInterface<int>, false);
+// Eval(32598, v is ImplementAllInterface<int>[], false);
+// Eval(32599, v is ImplementAllInterface<int>?, false);
+// Eval(32600, v is ImplementAllInterface<int>?[], false);
Eval(32601, v is IntE, false);
Eval(32602, v is IntE[], false);
Eval(32603, v is IntE?, false);
@@ -14735,38 +14735,38 @@ internal class Program
Eval(32696, v is IEmpty[], false);
Eval(32697, v is INotEmpty, false);
Eval(32698, v is INotEmpty[], false);
- Eval(32699, v is IEmptyGen<int>, false);
- Eval(32700, v is IEmptyGen<int>[], false);
- Eval(32701, v is INotEmptyGen<int>, false);
- Eval(32702, v is INotEmptyGen<int>[], false);
+// Eval(32699, v is IEmptyGen<int>, false);
+// Eval(32700, v is IEmptyGen<int>[], false);
+// Eval(32701, v is INotEmptyGen<int>, false);
+// Eval(32702, v is INotEmptyGen<int>[], false);
Eval(32703, v is SimpleDelegate, false);
Eval(32704, v is SimpleDelegate[], false);
- Eval(32705, v is GenericDelegate<int>, false);
- Eval(32706, v is GenericDelegate<int>[], false);
+// Eval(32705, v is GenericDelegate<int>, false);
+// Eval(32706, v is GenericDelegate<int>[], false);
Eval(32707, v is EmptyClass, false);
Eval(32708, v is EmptyClass[], false);
Eval(32709, v is NotEmptyClass, false);
Eval(32710, v is NotEmptyClass[], false);
- Eval(32711, v is EmptyClassGen<int>, false);
- Eval(32712, v is EmptyClassGen<int>[], false);
- Eval(32713, v is NotEmptyClassGen<Guid>, false);
- Eval(32714, v is NotEmptyClassGen<Guid>[], false);
- Eval(32715, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(32716, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(32711, v is EmptyClassGen<int>, false);
+// Eval(32712, v is EmptyClassGen<int>[], false);
+// Eval(32713, v is NotEmptyClassGen<Guid>, false);
+// Eval(32714, v is NotEmptyClassGen<Guid>[], false);
+// Eval(32715, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(32716, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(32717, v is NestedClass, false);
Eval(32718, v is NestedClass[], false);
- Eval(32719, v is NestedClassGen<Decimal>, false);
- Eval(32720, v is NestedClassGen<Decimal>[], false);
+// Eval(32719, v is NestedClassGen<Decimal>, false);
+// Eval(32720, v is NestedClassGen<Decimal>[], false);
Eval(32721, v is ImplementOneInterfaceC, false);
Eval(32722, v is ImplementOneInterfaceC[], false);
Eval(32723, v is ImplementTwoInterfaceC, false);
Eval(32724, v is ImplementTwoInterfaceC[], false);
- Eval(32725, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(32726, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(32727, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(32728, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(32729, v is ImplementAllInterfaceC<int>, false);
- Eval(32730, v is ImplementAllInterfaceC<int>[], false);
+// Eval(32725, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(32726, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(32727, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(32728, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(32729, v is ImplementAllInterfaceC<int>, false);
+// Eval(32730, v is ImplementAllInterfaceC<int>[], false);
Eval(32731, v is SealedClass, false);
Eval(32732, v is SealedClass[], false);
}
@@ -14780,26 +14780,26 @@ internal class Program
Eval(32738, v is NotEmptyStruct[], false);
Eval(32739, v is NotEmptyStruct?, false);
Eval(32740, v is NotEmptyStruct?[], false);
- Eval(32741, v is EmptyStructGen<int>, false);
- Eval(32742, v is EmptyStructGen<int>[], false);
- Eval(32743, v is EmptyStructGen<int>?, false);
- Eval(32744, v is EmptyStructGen<int>?[], false);
- Eval(32745, v is NotEmptyStructGen<Guid>, false);
- Eval(32746, v is NotEmptyStructGen<Guid>[], false);
- Eval(32747, v is NotEmptyStructGen<Guid>?, false);
- Eval(32748, v is NotEmptyStructGen<Guid>?[], false);
- Eval(32749, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(32750, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(32751, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(32752, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(32741, v is EmptyStructGen<int>, false);
+// Eval(32742, v is EmptyStructGen<int>[], false);
+// Eval(32743, v is EmptyStructGen<int>?, false);
+// Eval(32744, v is EmptyStructGen<int>?[], false);
+// Eval(32745, v is NotEmptyStructGen<Guid>, false);
+// Eval(32746, v is NotEmptyStructGen<Guid>[], false);
+// Eval(32747, v is NotEmptyStructGen<Guid>?, false);
+// Eval(32748, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(32749, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(32750, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(32751, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(32752, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(32753, v is NestedStruct, false);
Eval(32754, v is NestedStruct[], false);
Eval(32755, v is NestedStruct?, false);
Eval(32756, v is NestedStruct?[], false);
- Eval(32757, v is NestedStructGen<Decimal>, false);
- Eval(32758, v is NestedStructGen<Decimal>[], false);
- Eval(32759, v is NestedStructGen<Decimal>?, false);
- Eval(32760, v is NestedStructGen<Decimal>?[], false);
+// Eval(32757, v is NestedStructGen<Decimal>, false);
+// Eval(32758, v is NestedStructGen<Decimal>[], false);
+// Eval(32759, v is NestedStructGen<Decimal>?, false);
+// Eval(32760, v is NestedStructGen<Decimal>?[], false);
Eval(32761, v is ExplicitFieldOffsetStruct, false);
Eval(32762, v is ExplicitFieldOffsetStruct[], false);
Eval(32763, v is ExplicitFieldOffsetStruct?, false);
@@ -14816,18 +14816,18 @@ internal class Program
Eval(32782, v is ImplementTwoInterface[], false);
Eval(32783, v is ImplementTwoInterface?, false);
Eval(32784, v is ImplementTwoInterface?[], false);
- Eval(32785, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(32786, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(32787, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(32788, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(32789, v is ImplementTwoInterfaceGen<int>, false);
- Eval(32790, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(32791, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(32792, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(32793, v is ImplementAllInterface<int>, false);
- Eval(32794, v is ImplementAllInterface<int>[], false);
- Eval(32795, v is ImplementAllInterface<int>?, false);
- Eval(32796, v is ImplementAllInterface<int>?[], false);
+// Eval(32785, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(32786, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(32787, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(32788, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(32789, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(32790, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(32791, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(32792, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(32793, v is ImplementAllInterface<int>, false);
+// Eval(32794, v is ImplementAllInterface<int>[], false);
+// Eval(32795, v is ImplementAllInterface<int>?, false);
+// Eval(32796, v is ImplementAllInterface<int>?[], false);
Eval(32797, v is IntE, false);
Eval(32798, v is IntE[], false);
Eval(32799, v is IntE?, false);
@@ -14926,38 +14926,38 @@ internal class Program
Eval(32892, v is IEmpty[], false);
Eval(32893, v is INotEmpty, false);
Eval(32894, v is INotEmpty[], false);
- Eval(32895, v is IEmptyGen<int>, false);
- Eval(32896, v is IEmptyGen<int>[], false);
- Eval(32897, v is INotEmptyGen<int>, false);
- Eval(32898, v is INotEmptyGen<int>[], false);
+// Eval(32895, v is IEmptyGen<int>, false);
+// Eval(32896, v is IEmptyGen<int>[], false);
+// Eval(32897, v is INotEmptyGen<int>, false);
+// Eval(32898, v is INotEmptyGen<int>[], false);
Eval(32899, v is SimpleDelegate, false);
Eval(32900, v is SimpleDelegate[], false);
- Eval(32901, v is GenericDelegate<int>, false);
- Eval(32902, v is GenericDelegate<int>[], false);
+// Eval(32901, v is GenericDelegate<int>, false);
+// Eval(32902, v is GenericDelegate<int>[], false);
Eval(32903, v is EmptyClass, false);
Eval(32904, v is EmptyClass[], false);
Eval(32905, v is NotEmptyClass, false);
Eval(32906, v is NotEmptyClass[], false);
- Eval(32907, v is EmptyClassGen<int>, false);
- Eval(32908, v is EmptyClassGen<int>[], false);
- Eval(32909, v is NotEmptyClassGen<Guid>, false);
- Eval(32910, v is NotEmptyClassGen<Guid>[], false);
- Eval(32911, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(32912, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(32907, v is EmptyClassGen<int>, false);
+// Eval(32908, v is EmptyClassGen<int>[], false);
+// Eval(32909, v is NotEmptyClassGen<Guid>, false);
+// Eval(32910, v is NotEmptyClassGen<Guid>[], false);
+// Eval(32911, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(32912, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(32913, v is NestedClass, false);
Eval(32914, v is NestedClass[], false);
- Eval(32915, v is NestedClassGen<Decimal>, false);
- Eval(32916, v is NestedClassGen<Decimal>[], false);
+// Eval(32915, v is NestedClassGen<Decimal>, false);
+// Eval(32916, v is NestedClassGen<Decimal>[], false);
Eval(32917, v is ImplementOneInterfaceC, false);
Eval(32918, v is ImplementOneInterfaceC[], false);
Eval(32919, v is ImplementTwoInterfaceC, false);
Eval(32920, v is ImplementTwoInterfaceC[], false);
- Eval(32921, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(32922, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(32923, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(32924, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(32925, v is ImplementAllInterfaceC<int>, false);
- Eval(32926, v is ImplementAllInterfaceC<int>[], false);
+// Eval(32921, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(32922, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(32923, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(32924, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(32925, v is ImplementAllInterfaceC<int>, false);
+// Eval(32926, v is ImplementAllInterfaceC<int>[], false);
Eval(32927, v is SealedClass, false);
Eval(32928, v is SealedClass[], false);
}
@@ -14971,26 +14971,26 @@ internal class Program
Eval(32934, v is NotEmptyStruct[], false);
Eval(32935, v is NotEmptyStruct?, false);
Eval(32936, v is NotEmptyStruct?[], false);
- Eval(32937, v is EmptyStructGen<int>, false);
- Eval(32938, v is EmptyStructGen<int>[], false);
- Eval(32939, v is EmptyStructGen<int>?, false);
- Eval(32940, v is EmptyStructGen<int>?[], false);
- Eval(32941, v is NotEmptyStructGen<Guid>, false);
- Eval(32942, v is NotEmptyStructGen<Guid>[], false);
- Eval(32943, v is NotEmptyStructGen<Guid>?, false);
- Eval(32944, v is NotEmptyStructGen<Guid>?[], false);
- Eval(32945, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(32946, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(32947, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(32948, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(32937, v is EmptyStructGen<int>, false);
+// Eval(32938, v is EmptyStructGen<int>[], false);
+// Eval(32939, v is EmptyStructGen<int>?, false);
+// Eval(32940, v is EmptyStructGen<int>?[], false);
+// Eval(32941, v is NotEmptyStructGen<Guid>, false);
+// Eval(32942, v is NotEmptyStructGen<Guid>[], false);
+// Eval(32943, v is NotEmptyStructGen<Guid>?, false);
+// Eval(32944, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(32945, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(32946, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(32947, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(32948, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(32949, v is NestedStruct, false);
Eval(32950, v is NestedStruct[], false);
Eval(32951, v is NestedStruct?, false);
Eval(32952, v is NestedStruct?[], false);
- Eval(32953, v is NestedStructGen<Decimal>, false);
- Eval(32954, v is NestedStructGen<Decimal>[], false);
- Eval(32955, v is NestedStructGen<Decimal>?, false);
- Eval(32956, v is NestedStructGen<Decimal>?[], false);
+// Eval(32953, v is NestedStructGen<Decimal>, false);
+// Eval(32954, v is NestedStructGen<Decimal>[], false);
+// Eval(32955, v is NestedStructGen<Decimal>?, false);
+// Eval(32956, v is NestedStructGen<Decimal>?[], false);
Eval(32957, v is ExplicitFieldOffsetStruct, false);
Eval(32958, v is ExplicitFieldOffsetStruct[], false);
Eval(32959, v is ExplicitFieldOffsetStruct?, false);
@@ -15007,18 +15007,18 @@ internal class Program
Eval(32978, v is ImplementTwoInterface[], false);
Eval(32979, v is ImplementTwoInterface?, false);
Eval(32980, v is ImplementTwoInterface?[], false);
- Eval(32981, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(32982, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(32983, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(32984, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(32985, v is ImplementTwoInterfaceGen<int>, false);
- Eval(32986, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(32987, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(32988, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(32989, v is ImplementAllInterface<int>, false);
- Eval(32990, v is ImplementAllInterface<int>[], false);
- Eval(32991, v is ImplementAllInterface<int>?, false);
- Eval(32992, v is ImplementAllInterface<int>?[], false);
+// Eval(32981, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(32982, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(32983, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(32984, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(32985, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(32986, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(32987, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(32988, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(32989, v is ImplementAllInterface<int>, false);
+// Eval(32990, v is ImplementAllInterface<int>[], false);
+// Eval(32991, v is ImplementAllInterface<int>?, false);
+// Eval(32992, v is ImplementAllInterface<int>?[], false);
Eval(32993, v is IntE, false);
Eval(32994, v is IntE[], false);
Eval(32995, v is IntE?, false);
@@ -15117,38 +15117,38 @@ internal class Program
Eval(33088, v is IEmpty[], false);
Eval(33089, v is INotEmpty, false);
Eval(33090, v is INotEmpty[], false);
- Eval(33091, v is IEmptyGen<int>, false);
- Eval(33092, v is IEmptyGen<int>[], false);
- Eval(33093, v is INotEmptyGen<int>, false);
- Eval(33094, v is INotEmptyGen<int>[], false);
+// Eval(33091, v is IEmptyGen<int>, false);
+// Eval(33092, v is IEmptyGen<int>[], false);
+// Eval(33093, v is INotEmptyGen<int>, false);
+// Eval(33094, v is INotEmptyGen<int>[], false);
Eval(33095, v is SimpleDelegate, false);
Eval(33096, v is SimpleDelegate[], false);
- Eval(33097, v is GenericDelegate<int>, false);
- Eval(33098, v is GenericDelegate<int>[], false);
+// Eval(33097, v is GenericDelegate<int>, false);
+// Eval(33098, v is GenericDelegate<int>[], false);
Eval(33099, v is EmptyClass, false);
Eval(33100, v is EmptyClass[], false);
Eval(33101, v is NotEmptyClass, false);
Eval(33102, v is NotEmptyClass[], false);
- Eval(33103, v is EmptyClassGen<int>, false);
- Eval(33104, v is EmptyClassGen<int>[], false);
- Eval(33105, v is NotEmptyClassGen<Guid>, false);
- Eval(33106, v is NotEmptyClassGen<Guid>[], false);
- Eval(33107, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(33108, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(33103, v is EmptyClassGen<int>, false);
+// Eval(33104, v is EmptyClassGen<int>[], false);
+// Eval(33105, v is NotEmptyClassGen<Guid>, false);
+// Eval(33106, v is NotEmptyClassGen<Guid>[], false);
+// Eval(33107, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(33108, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(33109, v is NestedClass, false);
Eval(33110, v is NestedClass[], false);
- Eval(33111, v is NestedClassGen<Decimal>, false);
- Eval(33112, v is NestedClassGen<Decimal>[], false);
+// Eval(33111, v is NestedClassGen<Decimal>, false);
+// Eval(33112, v is NestedClassGen<Decimal>[], false);
Eval(33113, v is ImplementOneInterfaceC, false);
Eval(33114, v is ImplementOneInterfaceC[], false);
Eval(33115, v is ImplementTwoInterfaceC, false);
Eval(33116, v is ImplementTwoInterfaceC[], false);
- Eval(33117, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(33118, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(33119, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(33120, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(33121, v is ImplementAllInterfaceC<int>, false);
- Eval(33122, v is ImplementAllInterfaceC<int>[], false);
+// Eval(33117, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(33118, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(33119, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(33120, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(33121, v is ImplementAllInterfaceC<int>, false);
+// Eval(33122, v is ImplementAllInterfaceC<int>[], false);
Eval(33123, v is SealedClass, false);
Eval(33124, v is SealedClass[], false);
}
@@ -15162,26 +15162,26 @@ internal class Program
Eval(33130, v is NotEmptyStruct[], false);
Eval(33131, v is NotEmptyStruct?, false);
Eval(33132, v is NotEmptyStruct?[], false);
- Eval(33133, v is EmptyStructGen<int>, false);
- Eval(33134, v is EmptyStructGen<int>[], false);
- Eval(33135, v is EmptyStructGen<int>?, false);
- Eval(33136, v is EmptyStructGen<int>?[], false);
- Eval(33137, v is NotEmptyStructGen<Guid>, false);
- Eval(33138, v is NotEmptyStructGen<Guid>[], false);
- Eval(33139, v is NotEmptyStructGen<Guid>?, false);
- Eval(33140, v is NotEmptyStructGen<Guid>?[], false);
- Eval(33141, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(33142, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(33143, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(33144, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(33133, v is EmptyStructGen<int>, false);
+// Eval(33134, v is EmptyStructGen<int>[], false);
+// Eval(33135, v is EmptyStructGen<int>?, false);
+// Eval(33136, v is EmptyStructGen<int>?[], false);
+// Eval(33137, v is NotEmptyStructGen<Guid>, false);
+// Eval(33138, v is NotEmptyStructGen<Guid>[], false);
+// Eval(33139, v is NotEmptyStructGen<Guid>?, false);
+// Eval(33140, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(33141, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(33142, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(33143, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(33144, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(33145, v is NestedStruct, false);
Eval(33146, v is NestedStruct[], false);
Eval(33147, v is NestedStruct?, false);
Eval(33148, v is NestedStruct?[], false);
- Eval(33149, v is NestedStructGen<Decimal>, false);
- Eval(33150, v is NestedStructGen<Decimal>[], false);
- Eval(33151, v is NestedStructGen<Decimal>?, false);
- Eval(33152, v is NestedStructGen<Decimal>?[], false);
+// Eval(33149, v is NestedStructGen<Decimal>, false);
+// Eval(33150, v is NestedStructGen<Decimal>[], false);
+// Eval(33151, v is NestedStructGen<Decimal>?, false);
+// Eval(33152, v is NestedStructGen<Decimal>?[], false);
Eval(33153, v is ExplicitFieldOffsetStruct, false);
Eval(33154, v is ExplicitFieldOffsetStruct[], false);
Eval(33155, v is ExplicitFieldOffsetStruct?, false);
@@ -15198,18 +15198,18 @@ internal class Program
Eval(33174, v is ImplementTwoInterface[], false);
Eval(33175, v is ImplementTwoInterface?, false);
Eval(33176, v is ImplementTwoInterface?[], false);
- Eval(33177, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(33178, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(33179, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(33180, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(33181, v is ImplementTwoInterfaceGen<int>, false);
- Eval(33182, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(33183, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(33184, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(33185, v is ImplementAllInterface<int>, false);
- Eval(33186, v is ImplementAllInterface<int>[], false);
- Eval(33187, v is ImplementAllInterface<int>?, false);
- Eval(33188, v is ImplementAllInterface<int>?[], false);
+// Eval(33177, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(33178, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(33179, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(33180, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(33181, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(33182, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(33183, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(33184, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(33185, v is ImplementAllInterface<int>, false);
+// Eval(33186, v is ImplementAllInterface<int>[], false);
+// Eval(33187, v is ImplementAllInterface<int>?, false);
+// Eval(33188, v is ImplementAllInterface<int>?[], false);
Eval(33189, v is IntE, false);
Eval(33190, v is IntE[], false);
Eval(33191, v is IntE?, false);
@@ -15308,38 +15308,38 @@ internal class Program
Eval(33284, v is IEmpty[], false);
Eval(33285, v is INotEmpty, false);
Eval(33286, v is INotEmpty[], false);
- Eval(33287, v is IEmptyGen<int>, false);
- Eval(33288, v is IEmptyGen<int>[], false);
- Eval(33289, v is INotEmptyGen<int>, false);
- Eval(33290, v is INotEmptyGen<int>[], false);
+// Eval(33287, v is IEmptyGen<int>, false);
+// Eval(33288, v is IEmptyGen<int>[], false);
+// Eval(33289, v is INotEmptyGen<int>, false);
+// Eval(33290, v is INotEmptyGen<int>[], false);
Eval(33291, v is SimpleDelegate, false);
Eval(33292, v is SimpleDelegate[], false);
- Eval(33293, v is GenericDelegate<int>, false);
- Eval(33294, v is GenericDelegate<int>[], false);
+// Eval(33293, v is GenericDelegate<int>, false);
+// Eval(33294, v is GenericDelegate<int>[], false);
Eval(33295, v is EmptyClass, false);
Eval(33296, v is EmptyClass[], false);
Eval(33297, v is NotEmptyClass, false);
Eval(33298, v is NotEmptyClass[], false);
- Eval(33299, v is EmptyClassGen<int>, false);
- Eval(33300, v is EmptyClassGen<int>[], false);
- Eval(33301, v is NotEmptyClassGen<Guid>, false);
- Eval(33302, v is NotEmptyClassGen<Guid>[], false);
- Eval(33303, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(33304, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(33299, v is EmptyClassGen<int>, false);
+// Eval(33300, v is EmptyClassGen<int>[], false);
+// Eval(33301, v is NotEmptyClassGen<Guid>, false);
+// Eval(33302, v is NotEmptyClassGen<Guid>[], false);
+// Eval(33303, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(33304, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(33305, v is NestedClass, false);
Eval(33306, v is NestedClass[], false);
- Eval(33307, v is NestedClassGen<Decimal>, false);
- Eval(33308, v is NestedClassGen<Decimal>[], false);
+// Eval(33307, v is NestedClassGen<Decimal>, false);
+// Eval(33308, v is NestedClassGen<Decimal>[], false);
Eval(33309, v is ImplementOneInterfaceC, false);
Eval(33310, v is ImplementOneInterfaceC[], false);
Eval(33311, v is ImplementTwoInterfaceC, false);
Eval(33312, v is ImplementTwoInterfaceC[], false);
- Eval(33313, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(33314, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(33315, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(33316, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(33317, v is ImplementAllInterfaceC<int>, false);
- Eval(33318, v is ImplementAllInterfaceC<int>[], false);
+// Eval(33313, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(33314, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(33315, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(33316, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(33317, v is ImplementAllInterfaceC<int>, false);
+// Eval(33318, v is ImplementAllInterfaceC<int>[], false);
Eval(33319, v is SealedClass, false);
Eval(33320, v is SealedClass[], false);
}
@@ -15356,26 +15356,26 @@ internal class Program
Eval(33326, v is NotEmptyStruct[], false);
Eval(33327, v is NotEmptyStruct?, false);
Eval(33328, v is NotEmptyStruct?[], false);
- Eval(33329, v is EmptyStructGen<int>, false);
- Eval(33330, v is EmptyStructGen<int>[], false);
- Eval(33331, v is EmptyStructGen<int>?, false);
- Eval(33332, v is EmptyStructGen<int>?[], false);
- Eval(33333, v is NotEmptyStructGen<Guid>, false);
- Eval(33334, v is NotEmptyStructGen<Guid>[], false);
- Eval(33335, v is NotEmptyStructGen<Guid>?, false);
- Eval(33336, v is NotEmptyStructGen<Guid>?[], false);
- Eval(33337, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(33338, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(33339, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(33340, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(33329, v is EmptyStructGen<int>, false);
+// Eval(33330, v is EmptyStructGen<int>[], false);
+// Eval(33331, v is EmptyStructGen<int>?, false);
+// Eval(33332, v is EmptyStructGen<int>?[], false);
+// Eval(33333, v is NotEmptyStructGen<Guid>, false);
+// Eval(33334, v is NotEmptyStructGen<Guid>[], false);
+// Eval(33335, v is NotEmptyStructGen<Guid>?, false);
+// Eval(33336, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(33337, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(33338, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(33339, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(33340, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(33341, v is NestedStruct, false);
Eval(33342, v is NestedStruct[], false);
Eval(33343, v is NestedStruct?, false);
Eval(33344, v is NestedStruct?[], false);
- Eval(33345, v is NestedStructGen<Decimal>, false);
- Eval(33346, v is NestedStructGen<Decimal>[], false);
- Eval(33347, v is NestedStructGen<Decimal>?, false);
- Eval(33348, v is NestedStructGen<Decimal>?[], false);
+// Eval(33345, v is NestedStructGen<Decimal>, false);
+// Eval(33346, v is NestedStructGen<Decimal>[], false);
+// Eval(33347, v is NestedStructGen<Decimal>?, false);
+// Eval(33348, v is NestedStructGen<Decimal>?[], false);
Eval(33349, v is ExplicitFieldOffsetStruct, false);
Eval(33350, v is ExplicitFieldOffsetStruct[], false);
Eval(33351, v is ExplicitFieldOffsetStruct?, false);
@@ -15392,18 +15392,18 @@ internal class Program
Eval(33370, v is ImplementTwoInterface[], false);
Eval(33371, v is ImplementTwoInterface?, false);
Eval(33372, v is ImplementTwoInterface?[], false);
- Eval(33373, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(33374, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(33375, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(33376, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(33377, v is ImplementTwoInterfaceGen<int>, false);
- Eval(33378, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(33379, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(33380, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(33381, v is ImplementAllInterface<int>, false);
- Eval(33382, v is ImplementAllInterface<int>[], false);
- Eval(33383, v is ImplementAllInterface<int>?, false);
- Eval(33384, v is ImplementAllInterface<int>?[], false);
+// Eval(33373, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(33374, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(33375, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(33376, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(33377, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(33378, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(33379, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(33380, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(33381, v is ImplementAllInterface<int>, false);
+// Eval(33382, v is ImplementAllInterface<int>[], false);
+// Eval(33383, v is ImplementAllInterface<int>?, false);
+// Eval(33384, v is ImplementAllInterface<int>?[], false);
Eval(33385, v is IntE, false);
Eval(33386, v is IntE[], false);
Eval(33387, v is IntE?, false);
@@ -15502,38 +15502,38 @@ internal class Program
Eval(33480, v is IEmpty[], false);
Eval(33481, v is INotEmpty, false);
Eval(33482, v is INotEmpty[], false);
- Eval(33483, v is IEmptyGen<int>, false);
- Eval(33484, v is IEmptyGen<int>[], false);
- Eval(33485, v is INotEmptyGen<int>, false);
- Eval(33486, v is INotEmptyGen<int>[], false);
+// Eval(33483, v is IEmptyGen<int>, false);
+// Eval(33484, v is IEmptyGen<int>[], false);
+// Eval(33485, v is INotEmptyGen<int>, false);
+// Eval(33486, v is INotEmptyGen<int>[], false);
Eval(33487, v is SimpleDelegate, false);
Eval(33488, v is SimpleDelegate[], false);
- Eval(33489, v is GenericDelegate<int>, false);
- Eval(33490, v is GenericDelegate<int>[], false);
+// Eval(33489, v is GenericDelegate<int>, false);
+// Eval(33490, v is GenericDelegate<int>[], false);
Eval(33491, v is EmptyClass, false);
Eval(33492, v is EmptyClass[], false);
Eval(33493, v is NotEmptyClass, false);
Eval(33494, v is NotEmptyClass[], false);
- Eval(33495, v is EmptyClassGen<int>, false);
- Eval(33496, v is EmptyClassGen<int>[], false);
- Eval(33497, v is NotEmptyClassGen<Guid>, false);
- Eval(33498, v is NotEmptyClassGen<Guid>[], false);
- Eval(33499, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(33500, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(33495, v is EmptyClassGen<int>, false);
+// Eval(33496, v is EmptyClassGen<int>[], false);
+// Eval(33497, v is NotEmptyClassGen<Guid>, false);
+// Eval(33498, v is NotEmptyClassGen<Guid>[], false);
+// Eval(33499, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(33500, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(33501, v is NestedClass, false);
Eval(33502, v is NestedClass[], false);
- Eval(33503, v is NestedClassGen<Decimal>, false);
- Eval(33504, v is NestedClassGen<Decimal>[], false);
+// Eval(33503, v is NestedClassGen<Decimal>, false);
+// Eval(33504, v is NestedClassGen<Decimal>[], false);
Eval(33505, v is ImplementOneInterfaceC, false);
Eval(33506, v is ImplementOneInterfaceC[], false);
Eval(33507, v is ImplementTwoInterfaceC, false);
Eval(33508, v is ImplementTwoInterfaceC[], false);
- Eval(33509, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(33510, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(33511, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(33512, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(33513, v is ImplementAllInterfaceC<int>, false);
- Eval(33514, v is ImplementAllInterfaceC<int>[], false);
+// Eval(33509, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(33510, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(33511, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(33512, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(33513, v is ImplementAllInterfaceC<int>, false);
+// Eval(33514, v is ImplementAllInterfaceC<int>[], false);
Eval(33515, v is SealedClass, false);
Eval(33516, v is SealedClass[], false);
}
@@ -15547,26 +15547,26 @@ internal class Program
Eval(33522, v is NotEmptyStruct[], false);
Eval(33523, v is NotEmptyStruct?, false);
Eval(33524, v is NotEmptyStruct?[], false);
- Eval(33525, v is EmptyStructGen<int>, false);
- Eval(33526, v is EmptyStructGen<int>[], false);
- Eval(33527, v is EmptyStructGen<int>?, false);
- Eval(33528, v is EmptyStructGen<int>?[], false);
- Eval(33529, v is NotEmptyStructGen<Guid>, false);
- Eval(33530, v is NotEmptyStructGen<Guid>[], false);
- Eval(33531, v is NotEmptyStructGen<Guid>?, false);
- Eval(33532, v is NotEmptyStructGen<Guid>?[], false);
- Eval(33533, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(33534, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(33535, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(33536, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(33525, v is EmptyStructGen<int>, false);
+// Eval(33526, v is EmptyStructGen<int>[], false);
+// Eval(33527, v is EmptyStructGen<int>?, false);
+// Eval(33528, v is EmptyStructGen<int>?[], false);
+// Eval(33529, v is NotEmptyStructGen<Guid>, false);
+// Eval(33530, v is NotEmptyStructGen<Guid>[], false);
+// Eval(33531, v is NotEmptyStructGen<Guid>?, false);
+// Eval(33532, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(33533, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(33534, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(33535, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(33536, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(33537, v is NestedStruct, false);
Eval(33538, v is NestedStruct[], false);
Eval(33539, v is NestedStruct?, false);
Eval(33540, v is NestedStruct?[], false);
- Eval(33541, v is NestedStructGen<Decimal>, false);
- Eval(33542, v is NestedStructGen<Decimal>[], false);
- Eval(33543, v is NestedStructGen<Decimal>?, false);
- Eval(33544, v is NestedStructGen<Decimal>?[], false);
+// Eval(33541, v is NestedStructGen<Decimal>, false);
+// Eval(33542, v is NestedStructGen<Decimal>[], false);
+// Eval(33543, v is NestedStructGen<Decimal>?, false);
+// Eval(33544, v is NestedStructGen<Decimal>?[], false);
Eval(33545, v is ExplicitFieldOffsetStruct, false);
Eval(33546, v is ExplicitFieldOffsetStruct[], false);
Eval(33547, v is ExplicitFieldOffsetStruct?, false);
@@ -15583,18 +15583,18 @@ internal class Program
Eval(33566, v is ImplementTwoInterface[], false);
Eval(33567, v is ImplementTwoInterface?, false);
Eval(33568, v is ImplementTwoInterface?[], false);
- Eval(33569, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(33570, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(33571, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(33572, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(33573, v is ImplementTwoInterfaceGen<int>, false);
- Eval(33574, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(33575, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(33576, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(33577, v is ImplementAllInterface<int>, false);
- Eval(33578, v is ImplementAllInterface<int>[], false);
- Eval(33579, v is ImplementAllInterface<int>?, false);
- Eval(33580, v is ImplementAllInterface<int>?[], false);
+// Eval(33569, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(33570, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(33571, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(33572, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(33573, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(33574, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(33575, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(33576, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(33577, v is ImplementAllInterface<int>, false);
+// Eval(33578, v is ImplementAllInterface<int>[], false);
+// Eval(33579, v is ImplementAllInterface<int>?, false);
+// Eval(33580, v is ImplementAllInterface<int>?[], false);
Eval(33581, v is IntE, false);
Eval(33582, v is IntE[], false);
Eval(33583, v is IntE?, false);
@@ -15693,38 +15693,38 @@ internal class Program
Eval(33676, v is IEmpty[], false);
Eval(33677, v is INotEmpty, false);
Eval(33678, v is INotEmpty[], false);
- Eval(33679, v is IEmptyGen<int>, false);
- Eval(33680, v is IEmptyGen<int>[], false);
- Eval(33681, v is INotEmptyGen<int>, false);
- Eval(33682, v is INotEmptyGen<int>[], false);
+// Eval(33679, v is IEmptyGen<int>, false);
+// Eval(33680, v is IEmptyGen<int>[], false);
+// Eval(33681, v is INotEmptyGen<int>, false);
+// Eval(33682, v is INotEmptyGen<int>[], false);
Eval(33683, v is SimpleDelegate, false);
Eval(33684, v is SimpleDelegate[], false);
- Eval(33685, v is GenericDelegate<int>, false);
- Eval(33686, v is GenericDelegate<int>[], false);
+// Eval(33685, v is GenericDelegate<int>, false);
+// Eval(33686, v is GenericDelegate<int>[], false);
Eval(33687, v is EmptyClass, false);
Eval(33688, v is EmptyClass[], false);
Eval(33689, v is NotEmptyClass, false);
Eval(33690, v is NotEmptyClass[], false);
- Eval(33691, v is EmptyClassGen<int>, false);
- Eval(33692, v is EmptyClassGen<int>[], false);
- Eval(33693, v is NotEmptyClassGen<Guid>, false);
- Eval(33694, v is NotEmptyClassGen<Guid>[], false);
- Eval(33695, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(33696, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(33691, v is EmptyClassGen<int>, false);
+// Eval(33692, v is EmptyClassGen<int>[], false);
+// Eval(33693, v is NotEmptyClassGen<Guid>, false);
+// Eval(33694, v is NotEmptyClassGen<Guid>[], false);
+// Eval(33695, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(33696, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(33697, v is NestedClass, false);
Eval(33698, v is NestedClass[], false);
- Eval(33699, v is NestedClassGen<Decimal>, false);
- Eval(33700, v is NestedClassGen<Decimal>[], false);
+// Eval(33699, v is NestedClassGen<Decimal>, false);
+// Eval(33700, v is NestedClassGen<Decimal>[], false);
Eval(33701, v is ImplementOneInterfaceC, false);
Eval(33702, v is ImplementOneInterfaceC[], false);
Eval(33703, v is ImplementTwoInterfaceC, false);
Eval(33704, v is ImplementTwoInterfaceC[], false);
- Eval(33705, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(33706, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(33707, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(33708, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(33709, v is ImplementAllInterfaceC<int>, false);
- Eval(33710, v is ImplementAllInterfaceC<int>[], false);
+// Eval(33705, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(33706, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(33707, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(33708, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(33709, v is ImplementAllInterfaceC<int>, false);
+// Eval(33710, v is ImplementAllInterfaceC<int>[], false);
Eval(33711, v is SealedClass, false);
Eval(33712, v is SealedClass[], false);
}
@@ -15738,26 +15738,26 @@ internal class Program
Eval(33718, v is NotEmptyStruct[], false);
Eval(33719, v is NotEmptyStruct?, false);
Eval(33720, v is NotEmptyStruct?[], false);
- Eval(33721, v is EmptyStructGen<int>, false);
- Eval(33722, v is EmptyStructGen<int>[], false);
- Eval(33723, v is EmptyStructGen<int>?, false);
- Eval(33724, v is EmptyStructGen<int>?[], false);
- Eval(33725, v is NotEmptyStructGen<Guid>, false);
- Eval(33726, v is NotEmptyStructGen<Guid>[], false);
- Eval(33727, v is NotEmptyStructGen<Guid>?, false);
- Eval(33728, v is NotEmptyStructGen<Guid>?[], false);
- Eval(33729, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(33730, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(33731, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(33732, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(33721, v is EmptyStructGen<int>, false);
+// Eval(33722, v is EmptyStructGen<int>[], false);
+// Eval(33723, v is EmptyStructGen<int>?, false);
+// Eval(33724, v is EmptyStructGen<int>?[], false);
+// Eval(33725, v is NotEmptyStructGen<Guid>, false);
+// Eval(33726, v is NotEmptyStructGen<Guid>[], false);
+// Eval(33727, v is NotEmptyStructGen<Guid>?, false);
+// Eval(33728, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(33729, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(33730, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(33731, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(33732, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(33733, v is NestedStruct, false);
Eval(33734, v is NestedStruct[], false);
Eval(33735, v is NestedStruct?, false);
Eval(33736, v is NestedStruct?[], false);
- Eval(33737, v is NestedStructGen<Decimal>, false);
- Eval(33738, v is NestedStructGen<Decimal>[], false);
- Eval(33739, v is NestedStructGen<Decimal>?, false);
- Eval(33740, v is NestedStructGen<Decimal>?[], false);
+// Eval(33737, v is NestedStructGen<Decimal>, false);
+// Eval(33738, v is NestedStructGen<Decimal>[], false);
+// Eval(33739, v is NestedStructGen<Decimal>?, false);
+// Eval(33740, v is NestedStructGen<Decimal>?[], false);
Eval(33741, v is ExplicitFieldOffsetStruct, false);
Eval(33742, v is ExplicitFieldOffsetStruct[], false);
Eval(33743, v is ExplicitFieldOffsetStruct?, false);
@@ -15774,18 +15774,18 @@ internal class Program
Eval(33762, v is ImplementTwoInterface[], false);
Eval(33763, v is ImplementTwoInterface?, false);
Eval(33764, v is ImplementTwoInterface?[], false);
- Eval(33765, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(33766, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(33767, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(33768, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(33769, v is ImplementTwoInterfaceGen<int>, false);
- Eval(33770, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(33771, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(33772, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(33773, v is ImplementAllInterface<int>, false);
- Eval(33774, v is ImplementAllInterface<int>[], false);
- Eval(33775, v is ImplementAllInterface<int>?, false);
- Eval(33776, v is ImplementAllInterface<int>?[], false);
+// Eval(33765, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(33766, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(33767, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(33768, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(33769, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(33770, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(33771, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(33772, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(33773, v is ImplementAllInterface<int>, false);
+// Eval(33774, v is ImplementAllInterface<int>[], false);
+// Eval(33775, v is ImplementAllInterface<int>?, false);
+// Eval(33776, v is ImplementAllInterface<int>?[], false);
Eval(33777, v is IntE, false);
Eval(33778, v is IntE[], false);
Eval(33779, v is IntE?, false);
@@ -15884,38 +15884,38 @@ internal class Program
Eval(33872, v is IEmpty[], false);
Eval(33873, v is INotEmpty, false);
Eval(33874, v is INotEmpty[], false);
- Eval(33875, v is IEmptyGen<int>, false);
- Eval(33876, v is IEmptyGen<int>[], false);
- Eval(33877, v is INotEmptyGen<int>, false);
- Eval(33878, v is INotEmptyGen<int>[], false);
+// Eval(33875, v is IEmptyGen<int>, false);
+// Eval(33876, v is IEmptyGen<int>[], false);
+// Eval(33877, v is INotEmptyGen<int>, false);
+// Eval(33878, v is INotEmptyGen<int>[], false);
Eval(33879, v is SimpleDelegate, false);
Eval(33880, v is SimpleDelegate[], false);
- Eval(33881, v is GenericDelegate<int>, false);
- Eval(33882, v is GenericDelegate<int>[], false);
+// Eval(33881, v is GenericDelegate<int>, false);
+// Eval(33882, v is GenericDelegate<int>[], false);
Eval(33883, v is EmptyClass, false);
Eval(33884, v is EmptyClass[], false);
Eval(33885, v is NotEmptyClass, false);
Eval(33886, v is NotEmptyClass[], false);
- Eval(33887, v is EmptyClassGen<int>, false);
- Eval(33888, v is EmptyClassGen<int>[], false);
- Eval(33889, v is NotEmptyClassGen<Guid>, false);
- Eval(33890, v is NotEmptyClassGen<Guid>[], false);
- Eval(33891, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(33892, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(33887, v is EmptyClassGen<int>, false);
+// Eval(33888, v is EmptyClassGen<int>[], false);
+// Eval(33889, v is NotEmptyClassGen<Guid>, false);
+// Eval(33890, v is NotEmptyClassGen<Guid>[], false);
+// Eval(33891, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(33892, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(33893, v is NestedClass, false);
Eval(33894, v is NestedClass[], false);
- Eval(33895, v is NestedClassGen<Decimal>, false);
- Eval(33896, v is NestedClassGen<Decimal>[], false);
+// Eval(33895, v is NestedClassGen<Decimal>, false);
+// Eval(33896, v is NestedClassGen<Decimal>[], false);
Eval(33897, v is ImplementOneInterfaceC, false);
Eval(33898, v is ImplementOneInterfaceC[], false);
Eval(33899, v is ImplementTwoInterfaceC, false);
Eval(33900, v is ImplementTwoInterfaceC[], false);
- Eval(33901, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(33902, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(33903, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(33904, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(33905, v is ImplementAllInterfaceC<int>, false);
- Eval(33906, v is ImplementAllInterfaceC<int>[], false);
+// Eval(33901, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(33902, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(33903, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(33904, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(33905, v is ImplementAllInterfaceC<int>, false);
+// Eval(33906, v is ImplementAllInterfaceC<int>[], false);
Eval(33907, v is SealedClass, false);
Eval(33908, v is SealedClass[], false);
}
@@ -15929,26 +15929,26 @@ internal class Program
Eval(33914, v is NotEmptyStruct[], false);
Eval(33915, v is NotEmptyStruct?, false);
Eval(33916, v is NotEmptyStruct?[], false);
- Eval(33917, v is EmptyStructGen<int>, false);
- Eval(33918, v is EmptyStructGen<int>[], false);
- Eval(33919, v is EmptyStructGen<int>?, false);
- Eval(33920, v is EmptyStructGen<int>?[], false);
- Eval(33921, v is NotEmptyStructGen<Guid>, false);
- Eval(33922, v is NotEmptyStructGen<Guid>[], false);
- Eval(33923, v is NotEmptyStructGen<Guid>?, false);
- Eval(33924, v is NotEmptyStructGen<Guid>?[], false);
- Eval(33925, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(33926, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(33927, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(33928, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(33917, v is EmptyStructGen<int>, false);
+// Eval(33918, v is EmptyStructGen<int>[], false);
+// Eval(33919, v is EmptyStructGen<int>?, false);
+// Eval(33920, v is EmptyStructGen<int>?[], false);
+// Eval(33921, v is NotEmptyStructGen<Guid>, false);
+// Eval(33922, v is NotEmptyStructGen<Guid>[], false);
+// Eval(33923, v is NotEmptyStructGen<Guid>?, false);
+// Eval(33924, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(33925, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(33926, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(33927, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(33928, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(33929, v is NestedStruct, false);
Eval(33930, v is NestedStruct[], false);
Eval(33931, v is NestedStruct?, false);
Eval(33932, v is NestedStruct?[], false);
- Eval(33933, v is NestedStructGen<Decimal>, false);
- Eval(33934, v is NestedStructGen<Decimal>[], false);
- Eval(33935, v is NestedStructGen<Decimal>?, false);
- Eval(33936, v is NestedStructGen<Decimal>?[], false);
+// Eval(33933, v is NestedStructGen<Decimal>, false);
+// Eval(33934, v is NestedStructGen<Decimal>[], false);
+// Eval(33935, v is NestedStructGen<Decimal>?, false);
+// Eval(33936, v is NestedStructGen<Decimal>?[], false);
Eval(33937, v is ExplicitFieldOffsetStruct, false);
Eval(33938, v is ExplicitFieldOffsetStruct[], false);
Eval(33939, v is ExplicitFieldOffsetStruct?, false);
@@ -15965,18 +15965,18 @@ internal class Program
Eval(33958, v is ImplementTwoInterface[], false);
Eval(33959, v is ImplementTwoInterface?, false);
Eval(33960, v is ImplementTwoInterface?[], false);
- Eval(33961, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(33962, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(33963, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(33964, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(33965, v is ImplementTwoInterfaceGen<int>, false);
- Eval(33966, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(33967, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(33968, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(33969, v is ImplementAllInterface<int>, false);
- Eval(33970, v is ImplementAllInterface<int>[], false);
- Eval(33971, v is ImplementAllInterface<int>?, false);
- Eval(33972, v is ImplementAllInterface<int>?[], false);
+// Eval(33961, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(33962, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(33963, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(33964, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(33965, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(33966, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(33967, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(33968, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(33969, v is ImplementAllInterface<int>, false);
+// Eval(33970, v is ImplementAllInterface<int>[], false);
+// Eval(33971, v is ImplementAllInterface<int>?, false);
+// Eval(33972, v is ImplementAllInterface<int>?[], false);
Eval(33973, v is IntE, false);
Eval(33974, v is IntE[], false);
Eval(33975, v is IntE?, false);
@@ -16075,38 +16075,38 @@ internal class Program
Eval(34068, v is IEmpty[], false);
Eval(34069, v is INotEmpty, false);
Eval(34070, v is INotEmpty[], false);
- Eval(34071, v is IEmptyGen<int>, false);
- Eval(34072, v is IEmptyGen<int>[], false);
- Eval(34073, v is INotEmptyGen<int>, false);
- Eval(34074, v is INotEmptyGen<int>[], false);
+// Eval(34071, v is IEmptyGen<int>, false);
+// Eval(34072, v is IEmptyGen<int>[], false);
+// Eval(34073, v is INotEmptyGen<int>, false);
+// Eval(34074, v is INotEmptyGen<int>[], false);
Eval(34075, v is SimpleDelegate, false);
Eval(34076, v is SimpleDelegate[], false);
- Eval(34077, v is GenericDelegate<int>, false);
- Eval(34078, v is GenericDelegate<int>[], false);
+// Eval(34077, v is GenericDelegate<int>, false);
+// Eval(34078, v is GenericDelegate<int>[], false);
Eval(34079, v is EmptyClass, false);
Eval(34080, v is EmptyClass[], false);
Eval(34081, v is NotEmptyClass, false);
Eval(34082, v is NotEmptyClass[], false);
- Eval(34083, v is EmptyClassGen<int>, false);
- Eval(34084, v is EmptyClassGen<int>[], false);
- Eval(34085, v is NotEmptyClassGen<Guid>, false);
- Eval(34086, v is NotEmptyClassGen<Guid>[], false);
- Eval(34087, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(34088, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(34083, v is EmptyClassGen<int>, false);
+// Eval(34084, v is EmptyClassGen<int>[], false);
+// Eval(34085, v is NotEmptyClassGen<Guid>, false);
+// Eval(34086, v is NotEmptyClassGen<Guid>[], false);
+// Eval(34087, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(34088, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(34089, v is NestedClass, false);
Eval(34090, v is NestedClass[], false);
- Eval(34091, v is NestedClassGen<Decimal>, false);
- Eval(34092, v is NestedClassGen<Decimal>[], false);
+// Eval(34091, v is NestedClassGen<Decimal>, false);
+// Eval(34092, v is NestedClassGen<Decimal>[], false);
Eval(34093, v is ImplementOneInterfaceC, false);
Eval(34094, v is ImplementOneInterfaceC[], false);
Eval(34095, v is ImplementTwoInterfaceC, false);
Eval(34096, v is ImplementTwoInterfaceC[], false);
- Eval(34097, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(34098, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(34099, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(34100, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(34101, v is ImplementAllInterfaceC<int>, false);
- Eval(34102, v is ImplementAllInterfaceC<int>[], false);
+// Eval(34097, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(34098, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(34099, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(34100, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(34101, v is ImplementAllInterfaceC<int>, false);
+// Eval(34102, v is ImplementAllInterfaceC<int>[], false);
Eval(34103, v is SealedClass, false);
Eval(34104, v is SealedClass[], false);
}
@@ -16120,26 +16120,26 @@ internal class Program
Eval(34110, v is NotEmptyStruct[], false);
Eval(34111, v is NotEmptyStruct?, false);
Eval(34112, v is NotEmptyStruct?[], false);
- Eval(34113, v is EmptyStructGen<int>, false);
- Eval(34114, v is EmptyStructGen<int>[], false);
- Eval(34115, v is EmptyStructGen<int>?, false);
- Eval(34116, v is EmptyStructGen<int>?[], false);
- Eval(34117, v is NotEmptyStructGen<Guid>, false);
- Eval(34118, v is NotEmptyStructGen<Guid>[], false);
- Eval(34119, v is NotEmptyStructGen<Guid>?, false);
- Eval(34120, v is NotEmptyStructGen<Guid>?[], false);
- Eval(34121, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(34122, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(34123, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(34124, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(34113, v is EmptyStructGen<int>, false);
+// Eval(34114, v is EmptyStructGen<int>[], false);
+// Eval(34115, v is EmptyStructGen<int>?, false);
+// Eval(34116, v is EmptyStructGen<int>?[], false);
+// Eval(34117, v is NotEmptyStructGen<Guid>, false);
+// Eval(34118, v is NotEmptyStructGen<Guid>[], false);
+// Eval(34119, v is NotEmptyStructGen<Guid>?, false);
+// Eval(34120, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(34121, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(34122, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(34123, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(34124, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(34125, v is NestedStruct, false);
Eval(34126, v is NestedStruct[], false);
Eval(34127, v is NestedStruct?, false);
Eval(34128, v is NestedStruct?[], false);
- Eval(34129, v is NestedStructGen<Decimal>, false);
- Eval(34130, v is NestedStructGen<Decimal>[], false);
- Eval(34131, v is NestedStructGen<Decimal>?, false);
- Eval(34132, v is NestedStructGen<Decimal>?[], false);
+// Eval(34129, v is NestedStructGen<Decimal>, false);
+// Eval(34130, v is NestedStructGen<Decimal>[], false);
+// Eval(34131, v is NestedStructGen<Decimal>?, false);
+// Eval(34132, v is NestedStructGen<Decimal>?[], false);
Eval(34133, v is ExplicitFieldOffsetStruct, false);
Eval(34134, v is ExplicitFieldOffsetStruct[], false);
Eval(34135, v is ExplicitFieldOffsetStruct?, false);
@@ -16156,18 +16156,18 @@ internal class Program
Eval(34154, v is ImplementTwoInterface[], false);
Eval(34155, v is ImplementTwoInterface?, false);
Eval(34156, v is ImplementTwoInterface?[], false);
- Eval(34157, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(34158, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(34159, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(34160, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(34161, v is ImplementTwoInterfaceGen<int>, false);
- Eval(34162, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(34163, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(34164, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(34165, v is ImplementAllInterface<int>, false);
- Eval(34166, v is ImplementAllInterface<int>[], false);
- Eval(34167, v is ImplementAllInterface<int>?, false);
- Eval(34168, v is ImplementAllInterface<int>?[], false);
+// Eval(34157, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(34158, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(34159, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(34160, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(34161, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(34162, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(34163, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(34164, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(34165, v is ImplementAllInterface<int>, false);
+// Eval(34166, v is ImplementAllInterface<int>[], false);
+// Eval(34167, v is ImplementAllInterface<int>?, false);
+// Eval(34168, v is ImplementAllInterface<int>?[], false);
Eval(34169, v is IntE, false);
Eval(34170, v is IntE[], false);
Eval(34171, v is IntE?, false);
@@ -16266,38 +16266,38 @@ internal class Program
Eval(34264, v is IEmpty[], false);
Eval(34265, v is INotEmpty, false);
Eval(34266, v is INotEmpty[], false);
- Eval(34267, v is IEmptyGen<int>, false);
- Eval(34268, v is IEmptyGen<int>[], false);
- Eval(34269, v is INotEmptyGen<int>, false);
- Eval(34270, v is INotEmptyGen<int>[], false);
+// Eval(34267, v is IEmptyGen<int>, false);
+// Eval(34268, v is IEmptyGen<int>[], false);
+// Eval(34269, v is INotEmptyGen<int>, false);
+// Eval(34270, v is INotEmptyGen<int>[], false);
Eval(34271, v is SimpleDelegate, false);
Eval(34272, v is SimpleDelegate[], false);
- Eval(34273, v is GenericDelegate<int>, false);
- Eval(34274, v is GenericDelegate<int>[], false);
+// Eval(34273, v is GenericDelegate<int>, false);
+// Eval(34274, v is GenericDelegate<int>[], false);
Eval(34275, v is EmptyClass, false);
Eval(34276, v is EmptyClass[], false);
Eval(34277, v is NotEmptyClass, false);
Eval(34278, v is NotEmptyClass[], false);
- Eval(34279, v is EmptyClassGen<int>, false);
- Eval(34280, v is EmptyClassGen<int>[], false);
- Eval(34281, v is NotEmptyClassGen<Guid>, false);
- Eval(34282, v is NotEmptyClassGen<Guid>[], false);
- Eval(34283, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(34284, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(34279, v is EmptyClassGen<int>, false);
+// Eval(34280, v is EmptyClassGen<int>[], false);
+// Eval(34281, v is NotEmptyClassGen<Guid>, false);
+// Eval(34282, v is NotEmptyClassGen<Guid>[], false);
+// Eval(34283, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(34284, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(34285, v is NestedClass, false);
Eval(34286, v is NestedClass[], false);
- Eval(34287, v is NestedClassGen<Decimal>, false);
- Eval(34288, v is NestedClassGen<Decimal>[], false);
+// Eval(34287, v is NestedClassGen<Decimal>, false);
+// Eval(34288, v is NestedClassGen<Decimal>[], false);
Eval(34289, v is ImplementOneInterfaceC, false);
Eval(34290, v is ImplementOneInterfaceC[], false);
Eval(34291, v is ImplementTwoInterfaceC, false);
Eval(34292, v is ImplementTwoInterfaceC[], false);
- Eval(34293, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(34294, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(34295, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(34296, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(34297, v is ImplementAllInterfaceC<int>, false);
- Eval(34298, v is ImplementAllInterfaceC<int>[], false);
+// Eval(34293, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(34294, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(34295, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(34296, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(34297, v is ImplementAllInterfaceC<int>, false);
+// Eval(34298, v is ImplementAllInterfaceC<int>[], false);
Eval(34299, v is SealedClass, false);
Eval(34300, v is SealedClass[], false);
}
@@ -16314,26 +16314,26 @@ internal class Program
Eval(34306, v is NotEmptyStruct[], false);
Eval(34307, v is NotEmptyStruct?, false);
Eval(34308, v is NotEmptyStruct?[], false);
- Eval(34309, v is EmptyStructGen<int>, false);
- Eval(34310, v is EmptyStructGen<int>[], false);
- Eval(34311, v is EmptyStructGen<int>?, false);
- Eval(34312, v is EmptyStructGen<int>?[], false);
- Eval(34313, v is NotEmptyStructGen<Guid>, false);
- Eval(34314, v is NotEmptyStructGen<Guid>[], false);
- Eval(34315, v is NotEmptyStructGen<Guid>?, false);
- Eval(34316, v is NotEmptyStructGen<Guid>?[], false);
- Eval(34317, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(34318, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(34319, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(34320, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(34309, v is EmptyStructGen<int>, false);
+// Eval(34310, v is EmptyStructGen<int>[], false);
+// Eval(34311, v is EmptyStructGen<int>?, false);
+// Eval(34312, v is EmptyStructGen<int>?[], false);
+// Eval(34313, v is NotEmptyStructGen<Guid>, false);
+// Eval(34314, v is NotEmptyStructGen<Guid>[], false);
+// Eval(34315, v is NotEmptyStructGen<Guid>?, false);
+// Eval(34316, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(34317, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(34318, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(34319, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(34320, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(34321, v is NestedStruct, false);
Eval(34322, v is NestedStruct[], false);
Eval(34323, v is NestedStruct?, false);
Eval(34324, v is NestedStruct?[], false);
- Eval(34325, v is NestedStructGen<Decimal>, false);
- Eval(34326, v is NestedStructGen<Decimal>[], false);
- Eval(34327, v is NestedStructGen<Decimal>?, false);
- Eval(34328, v is NestedStructGen<Decimal>?[], false);
+// Eval(34325, v is NestedStructGen<Decimal>, false);
+// Eval(34326, v is NestedStructGen<Decimal>[], false);
+// Eval(34327, v is NestedStructGen<Decimal>?, false);
+// Eval(34328, v is NestedStructGen<Decimal>?[], false);
Eval(34329, v is ExplicitFieldOffsetStruct, false);
Eval(34330, v is ExplicitFieldOffsetStruct[], false);
Eval(34331, v is ExplicitFieldOffsetStruct?, false);
@@ -16350,18 +16350,18 @@ internal class Program
Eval(34350, v is ImplementTwoInterface[], false);
Eval(34351, v is ImplementTwoInterface?, false);
Eval(34352, v is ImplementTwoInterface?[], false);
- Eval(34353, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(34354, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(34355, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(34356, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(34357, v is ImplementTwoInterfaceGen<int>, false);
- Eval(34358, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(34359, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(34360, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(34361, v is ImplementAllInterface<int>, false);
- Eval(34362, v is ImplementAllInterface<int>[], false);
- Eval(34363, v is ImplementAllInterface<int>?, false);
- Eval(34364, v is ImplementAllInterface<int>?[], false);
+// Eval(34353, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(34354, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(34355, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(34356, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(34357, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(34358, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(34359, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(34360, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(34361, v is ImplementAllInterface<int>, false);
+// Eval(34362, v is ImplementAllInterface<int>[], false);
+// Eval(34363, v is ImplementAllInterface<int>?, false);
+// Eval(34364, v is ImplementAllInterface<int>?[], false);
Eval(34365, v is IntE, false);
Eval(34366, v is IntE[], false);
Eval(34367, v is IntE?, false);
@@ -16460,38 +16460,38 @@ internal class Program
Eval(34460, v is IEmpty[], false);
Eval(34461, v is INotEmpty, false);
Eval(34462, v is INotEmpty[], false);
- Eval(34463, v is IEmptyGen<int>, false);
- Eval(34464, v is IEmptyGen<int>[], false);
- Eval(34465, v is INotEmptyGen<int>, false);
- Eval(34466, v is INotEmptyGen<int>[], false);
+// Eval(34463, v is IEmptyGen<int>, false);
+// Eval(34464, v is IEmptyGen<int>[], false);
+// Eval(34465, v is INotEmptyGen<int>, false);
+// Eval(34466, v is INotEmptyGen<int>[], false);
Eval(34467, v is SimpleDelegate, false);
Eval(34468, v is SimpleDelegate[], false);
- Eval(34469, v is GenericDelegate<int>, false);
- Eval(34470, v is GenericDelegate<int>[], false);
+// Eval(34469, v is GenericDelegate<int>, false);
+// Eval(34470, v is GenericDelegate<int>[], false);
Eval(34471, v is EmptyClass, false);
Eval(34472, v is EmptyClass[], false);
Eval(34473, v is NotEmptyClass, false);
Eval(34474, v is NotEmptyClass[], false);
- Eval(34475, v is EmptyClassGen<int>, false);
- Eval(34476, v is EmptyClassGen<int>[], false);
- Eval(34477, v is NotEmptyClassGen<Guid>, false);
- Eval(34478, v is NotEmptyClassGen<Guid>[], false);
- Eval(34479, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(34480, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(34475, v is EmptyClassGen<int>, false);
+// Eval(34476, v is EmptyClassGen<int>[], false);
+// Eval(34477, v is NotEmptyClassGen<Guid>, false);
+// Eval(34478, v is NotEmptyClassGen<Guid>[], false);
+// Eval(34479, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(34480, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(34481, v is NestedClass, false);
Eval(34482, v is NestedClass[], false);
- Eval(34483, v is NestedClassGen<Decimal>, false);
- Eval(34484, v is NestedClassGen<Decimal>[], false);
+// Eval(34483, v is NestedClassGen<Decimal>, false);
+// Eval(34484, v is NestedClassGen<Decimal>[], false);
Eval(34485, v is ImplementOneInterfaceC, false);
Eval(34486, v is ImplementOneInterfaceC[], false);
Eval(34487, v is ImplementTwoInterfaceC, false);
Eval(34488, v is ImplementTwoInterfaceC[], false);
- Eval(34489, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(34490, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(34491, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(34492, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(34493, v is ImplementAllInterfaceC<int>, false);
- Eval(34494, v is ImplementAllInterfaceC<int>[], false);
+// Eval(34489, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(34490, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(34491, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(34492, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(34493, v is ImplementAllInterfaceC<int>, false);
+// Eval(34494, v is ImplementAllInterfaceC<int>[], false);
Eval(34495, v is SealedClass, false);
Eval(34496, v is SealedClass[], false);
}
@@ -16505,26 +16505,26 @@ internal class Program
Eval(34502, v is NotEmptyStruct[], false);
Eval(34503, v is NotEmptyStruct?, false);
Eval(34504, v is NotEmptyStruct?[], false);
- Eval(34505, v is EmptyStructGen<int>, false);
- Eval(34506, v is EmptyStructGen<int>[], false);
- Eval(34507, v is EmptyStructGen<int>?, false);
- Eval(34508, v is EmptyStructGen<int>?[], false);
- Eval(34509, v is NotEmptyStructGen<Guid>, false);
- Eval(34510, v is NotEmptyStructGen<Guid>[], false);
- Eval(34511, v is NotEmptyStructGen<Guid>?, false);
- Eval(34512, v is NotEmptyStructGen<Guid>?[], false);
- Eval(34513, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(34514, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(34515, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(34516, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(34505, v is EmptyStructGen<int>, false);
+// Eval(34506, v is EmptyStructGen<int>[], false);
+// Eval(34507, v is EmptyStructGen<int>?, false);
+// Eval(34508, v is EmptyStructGen<int>?[], false);
+// Eval(34509, v is NotEmptyStructGen<Guid>, false);
+// Eval(34510, v is NotEmptyStructGen<Guid>[], false);
+// Eval(34511, v is NotEmptyStructGen<Guid>?, false);
+// Eval(34512, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(34513, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(34514, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(34515, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(34516, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(34517, v is NestedStruct, false);
Eval(34518, v is NestedStruct[], false);
Eval(34519, v is NestedStruct?, false);
Eval(34520, v is NestedStruct?[], false);
- Eval(34521, v is NestedStructGen<Decimal>, false);
- Eval(34522, v is NestedStructGen<Decimal>[], false);
- Eval(34523, v is NestedStructGen<Decimal>?, false);
- Eval(34524, v is NestedStructGen<Decimal>?[], false);
+// Eval(34521, v is NestedStructGen<Decimal>, false);
+// Eval(34522, v is NestedStructGen<Decimal>[], false);
+// Eval(34523, v is NestedStructGen<Decimal>?, false);
+// Eval(34524, v is NestedStructGen<Decimal>?[], false);
Eval(34525, v is ExplicitFieldOffsetStruct, false);
Eval(34526, v is ExplicitFieldOffsetStruct[], false);
Eval(34527, v is ExplicitFieldOffsetStruct?, false);
@@ -16541,18 +16541,18 @@ internal class Program
Eval(34546, v is ImplementTwoInterface[], false);
Eval(34547, v is ImplementTwoInterface?, false);
Eval(34548, v is ImplementTwoInterface?[], false);
- Eval(34549, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(34550, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(34551, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(34552, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(34553, v is ImplementTwoInterfaceGen<int>, false);
- Eval(34554, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(34555, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(34556, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(34557, v is ImplementAllInterface<int>, false);
- Eval(34558, v is ImplementAllInterface<int>[], false);
- Eval(34559, v is ImplementAllInterface<int>?, false);
- Eval(34560, v is ImplementAllInterface<int>?[], false);
+// Eval(34549, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(34550, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(34551, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(34552, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(34553, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(34554, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(34555, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(34556, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(34557, v is ImplementAllInterface<int>, false);
+// Eval(34558, v is ImplementAllInterface<int>[], false);
+// Eval(34559, v is ImplementAllInterface<int>?, false);
+// Eval(34560, v is ImplementAllInterface<int>?[], false);
Eval(34561, v is IntE, false);
Eval(34562, v is IntE[], false);
Eval(34563, v is IntE?, false);
@@ -16651,38 +16651,38 @@ internal class Program
Eval(34656, v is IEmpty[], false);
Eval(34657, v is INotEmpty, false);
Eval(34658, v is INotEmpty[], false);
- Eval(34659, v is IEmptyGen<int>, false);
- Eval(34660, v is IEmptyGen<int>[], false);
- Eval(34661, v is INotEmptyGen<int>, false);
- Eval(34662, v is INotEmptyGen<int>[], false);
+// Eval(34659, v is IEmptyGen<int>, false);
+// Eval(34660, v is IEmptyGen<int>[], false);
+// Eval(34661, v is INotEmptyGen<int>, false);
+// Eval(34662, v is INotEmptyGen<int>[], false);
Eval(34663, v is SimpleDelegate, false);
Eval(34664, v is SimpleDelegate[], false);
- Eval(34665, v is GenericDelegate<int>, false);
- Eval(34666, v is GenericDelegate<int>[], false);
+// Eval(34665, v is GenericDelegate<int>, false);
+// Eval(34666, v is GenericDelegate<int>[], false);
Eval(34667, v is EmptyClass, false);
Eval(34668, v is EmptyClass[], false);
Eval(34669, v is NotEmptyClass, false);
Eval(34670, v is NotEmptyClass[], false);
- Eval(34671, v is EmptyClassGen<int>, false);
- Eval(34672, v is EmptyClassGen<int>[], false);
- Eval(34673, v is NotEmptyClassGen<Guid>, false);
- Eval(34674, v is NotEmptyClassGen<Guid>[], false);
- Eval(34675, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(34676, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(34671, v is EmptyClassGen<int>, false);
+// Eval(34672, v is EmptyClassGen<int>[], false);
+// Eval(34673, v is NotEmptyClassGen<Guid>, false);
+// Eval(34674, v is NotEmptyClassGen<Guid>[], false);
+// Eval(34675, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(34676, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(34677, v is NestedClass, false);
Eval(34678, v is NestedClass[], false);
- Eval(34679, v is NestedClassGen<Decimal>, false);
- Eval(34680, v is NestedClassGen<Decimal>[], false);
+// Eval(34679, v is NestedClassGen<Decimal>, false);
+// Eval(34680, v is NestedClassGen<Decimal>[], false);
Eval(34681, v is ImplementOneInterfaceC, false);
Eval(34682, v is ImplementOneInterfaceC[], false);
Eval(34683, v is ImplementTwoInterfaceC, false);
Eval(34684, v is ImplementTwoInterfaceC[], false);
- Eval(34685, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(34686, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(34687, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(34688, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(34689, v is ImplementAllInterfaceC<int>, false);
- Eval(34690, v is ImplementAllInterfaceC<int>[], false);
+// Eval(34685, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(34686, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(34687, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(34688, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(34689, v is ImplementAllInterfaceC<int>, false);
+// Eval(34690, v is ImplementAllInterfaceC<int>[], false);
Eval(34691, v is SealedClass, false);
Eval(34692, v is SealedClass[], false);
}
@@ -16696,26 +16696,26 @@ internal class Program
Eval(34698, v is NotEmptyStruct[], false);
Eval(34699, v is NotEmptyStruct?, false);
Eval(34700, v is NotEmptyStruct?[], false);
- Eval(34701, v is EmptyStructGen<int>, false);
- Eval(34702, v is EmptyStructGen<int>[], false);
- Eval(34703, v is EmptyStructGen<int>?, false);
- Eval(34704, v is EmptyStructGen<int>?[], false);
- Eval(34705, v is NotEmptyStructGen<Guid>, false);
- Eval(34706, v is NotEmptyStructGen<Guid>[], false);
- Eval(34707, v is NotEmptyStructGen<Guid>?, false);
- Eval(34708, v is NotEmptyStructGen<Guid>?[], false);
- Eval(34709, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(34710, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(34711, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(34712, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(34701, v is EmptyStructGen<int>, false);
+// Eval(34702, v is EmptyStructGen<int>[], false);
+// Eval(34703, v is EmptyStructGen<int>?, false);
+// Eval(34704, v is EmptyStructGen<int>?[], false);
+// Eval(34705, v is NotEmptyStructGen<Guid>, false);
+// Eval(34706, v is NotEmptyStructGen<Guid>[], false);
+// Eval(34707, v is NotEmptyStructGen<Guid>?, false);
+// Eval(34708, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(34709, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(34710, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(34711, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(34712, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(34713, v is NestedStruct, false);
Eval(34714, v is NestedStruct[], false);
Eval(34715, v is NestedStruct?, false);
Eval(34716, v is NestedStruct?[], false);
- Eval(34717, v is NestedStructGen<Decimal>, false);
- Eval(34718, v is NestedStructGen<Decimal>[], false);
- Eval(34719, v is NestedStructGen<Decimal>?, false);
- Eval(34720, v is NestedStructGen<Decimal>?[], false);
+// Eval(34717, v is NestedStructGen<Decimal>, false);
+// Eval(34718, v is NestedStructGen<Decimal>[], false);
+// Eval(34719, v is NestedStructGen<Decimal>?, false);
+// Eval(34720, v is NestedStructGen<Decimal>?[], false);
Eval(34721, v is ExplicitFieldOffsetStruct, false);
Eval(34722, v is ExplicitFieldOffsetStruct[], false);
Eval(34723, v is ExplicitFieldOffsetStruct?, false);
@@ -16732,18 +16732,18 @@ internal class Program
Eval(34742, v is ImplementTwoInterface[], false);
Eval(34743, v is ImplementTwoInterface?, false);
Eval(34744, v is ImplementTwoInterface?[], false);
- Eval(34745, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(34746, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(34747, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(34748, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(34749, v is ImplementTwoInterfaceGen<int>, false);
- Eval(34750, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(34751, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(34752, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(34753, v is ImplementAllInterface<int>, false);
- Eval(34754, v is ImplementAllInterface<int>[], false);
- Eval(34755, v is ImplementAllInterface<int>?, false);
- Eval(34756, v is ImplementAllInterface<int>?[], false);
+// Eval(34745, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(34746, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(34747, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(34748, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(34749, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(34750, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(34751, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(34752, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(34753, v is ImplementAllInterface<int>, false);
+// Eval(34754, v is ImplementAllInterface<int>[], false);
+// Eval(34755, v is ImplementAllInterface<int>?, false);
+// Eval(34756, v is ImplementAllInterface<int>?[], false);
Eval(34757, v is IntE, false);
Eval(34758, v is IntE[], false);
Eval(34759, v is IntE?, false);
@@ -16842,38 +16842,38 @@ internal class Program
Eval(34852, v is IEmpty[], false);
Eval(34853, v is INotEmpty, false);
Eval(34854, v is INotEmpty[], false);
- Eval(34855, v is IEmptyGen<int>, false);
- Eval(34856, v is IEmptyGen<int>[], false);
- Eval(34857, v is INotEmptyGen<int>, false);
- Eval(34858, v is INotEmptyGen<int>[], false);
+// Eval(34855, v is IEmptyGen<int>, false);
+// Eval(34856, v is IEmptyGen<int>[], false);
+// Eval(34857, v is INotEmptyGen<int>, false);
+// Eval(34858, v is INotEmptyGen<int>[], false);
Eval(34859, v is SimpleDelegate, false);
Eval(34860, v is SimpleDelegate[], false);
- Eval(34861, v is GenericDelegate<int>, false);
- Eval(34862, v is GenericDelegate<int>[], false);
+// Eval(34861, v is GenericDelegate<int>, false);
+// Eval(34862, v is GenericDelegate<int>[], false);
Eval(34863, v is EmptyClass, false);
Eval(34864, v is EmptyClass[], false);
Eval(34865, v is NotEmptyClass, false);
Eval(34866, v is NotEmptyClass[], false);
- Eval(34867, v is EmptyClassGen<int>, false);
- Eval(34868, v is EmptyClassGen<int>[], false);
- Eval(34869, v is NotEmptyClassGen<Guid>, false);
- Eval(34870, v is NotEmptyClassGen<Guid>[], false);
- Eval(34871, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(34872, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(34867, v is EmptyClassGen<int>, false);
+// Eval(34868, v is EmptyClassGen<int>[], false);
+// Eval(34869, v is NotEmptyClassGen<Guid>, false);
+// Eval(34870, v is NotEmptyClassGen<Guid>[], false);
+// Eval(34871, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(34872, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(34873, v is NestedClass, false);
Eval(34874, v is NestedClass[], false);
- Eval(34875, v is NestedClassGen<Decimal>, false);
- Eval(34876, v is NestedClassGen<Decimal>[], false);
+// Eval(34875, v is NestedClassGen<Decimal>, false);
+// Eval(34876, v is NestedClassGen<Decimal>[], false);
Eval(34877, v is ImplementOneInterfaceC, false);
Eval(34878, v is ImplementOneInterfaceC[], false);
Eval(34879, v is ImplementTwoInterfaceC, false);
Eval(34880, v is ImplementTwoInterfaceC[], false);
- Eval(34881, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(34882, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(34883, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(34884, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(34885, v is ImplementAllInterfaceC<int>, false);
- Eval(34886, v is ImplementAllInterfaceC<int>[], false);
+// Eval(34881, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(34882, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(34883, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(34884, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(34885, v is ImplementAllInterfaceC<int>, false);
+// Eval(34886, v is ImplementAllInterfaceC<int>[], false);
Eval(34887, v is SealedClass, false);
Eval(34888, v is SealedClass[], false);
}
@@ -16887,26 +16887,26 @@ internal class Program
Eval(34894, v is NotEmptyStruct[], false);
Eval(34895, v is NotEmptyStruct?, false);
Eval(34896, v is NotEmptyStruct?[], false);
- Eval(34897, v is EmptyStructGen<int>, false);
- Eval(34898, v is EmptyStructGen<int>[], false);
- Eval(34899, v is EmptyStructGen<int>?, false);
- Eval(34900, v is EmptyStructGen<int>?[], false);
- Eval(34901, v is NotEmptyStructGen<Guid>, false);
- Eval(34902, v is NotEmptyStructGen<Guid>[], false);
- Eval(34903, v is NotEmptyStructGen<Guid>?, false);
- Eval(34904, v is NotEmptyStructGen<Guid>?[], false);
- Eval(34905, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(34906, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(34907, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(34908, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(34897, v is EmptyStructGen<int>, false);
+// Eval(34898, v is EmptyStructGen<int>[], false);
+// Eval(34899, v is EmptyStructGen<int>?, false);
+// Eval(34900, v is EmptyStructGen<int>?[], false);
+// Eval(34901, v is NotEmptyStructGen<Guid>, false);
+// Eval(34902, v is NotEmptyStructGen<Guid>[], false);
+// Eval(34903, v is NotEmptyStructGen<Guid>?, false);
+// Eval(34904, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(34905, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(34906, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(34907, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(34908, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(34909, v is NestedStruct, false);
Eval(34910, v is NestedStruct[], false);
Eval(34911, v is NestedStruct?, false);
Eval(34912, v is NestedStruct?[], false);
- Eval(34913, v is NestedStructGen<Decimal>, false);
- Eval(34914, v is NestedStructGen<Decimal>[], false);
- Eval(34915, v is NestedStructGen<Decimal>?, false);
- Eval(34916, v is NestedStructGen<Decimal>?[], false);
+// Eval(34913, v is NestedStructGen<Decimal>, false);
+// Eval(34914, v is NestedStructGen<Decimal>[], false);
+// Eval(34915, v is NestedStructGen<Decimal>?, false);
+// Eval(34916, v is NestedStructGen<Decimal>?[], false);
Eval(34917, v is ExplicitFieldOffsetStruct, false);
Eval(34918, v is ExplicitFieldOffsetStruct[], false);
Eval(34919, v is ExplicitFieldOffsetStruct?, false);
@@ -16923,18 +16923,18 @@ internal class Program
Eval(34938, v is ImplementTwoInterface[], false);
Eval(34939, v is ImplementTwoInterface?, false);
Eval(34940, v is ImplementTwoInterface?[], false);
- Eval(34941, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(34942, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(34943, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(34944, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(34945, v is ImplementTwoInterfaceGen<int>, false);
- Eval(34946, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(34947, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(34948, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(34949, v is ImplementAllInterface<int>, false);
- Eval(34950, v is ImplementAllInterface<int>[], false);
- Eval(34951, v is ImplementAllInterface<int>?, false);
- Eval(34952, v is ImplementAllInterface<int>?[], false);
+// Eval(34941, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(34942, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(34943, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(34944, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(34945, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(34946, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(34947, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(34948, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(34949, v is ImplementAllInterface<int>, false);
+// Eval(34950, v is ImplementAllInterface<int>[], false);
+// Eval(34951, v is ImplementAllInterface<int>?, false);
+// Eval(34952, v is ImplementAllInterface<int>?[], false);
Eval(34953, v is IntE, false);
Eval(34954, v is IntE[], false);
Eval(34955, v is IntE?, false);
@@ -17033,38 +17033,38 @@ internal class Program
Eval(35048, v is IEmpty[], false);
Eval(35049, v is INotEmpty, false);
Eval(35050, v is INotEmpty[], false);
- Eval(35051, v is IEmptyGen<int>, false);
- Eval(35052, v is IEmptyGen<int>[], false);
- Eval(35053, v is INotEmptyGen<int>, false);
- Eval(35054, v is INotEmptyGen<int>[], false);
+// Eval(35051, v is IEmptyGen<int>, false);
+// Eval(35052, v is IEmptyGen<int>[], false);
+// Eval(35053, v is INotEmptyGen<int>, false);
+// Eval(35054, v is INotEmptyGen<int>[], false);
Eval(35055, v is SimpleDelegate, false);
Eval(35056, v is SimpleDelegate[], false);
- Eval(35057, v is GenericDelegate<int>, false);
- Eval(35058, v is GenericDelegate<int>[], false);
+// Eval(35057, v is GenericDelegate<int>, false);
+// Eval(35058, v is GenericDelegate<int>[], false);
Eval(35059, v is EmptyClass, false);
Eval(35060, v is EmptyClass[], false);
Eval(35061, v is NotEmptyClass, false);
Eval(35062, v is NotEmptyClass[], false);
- Eval(35063, v is EmptyClassGen<int>, false);
- Eval(35064, v is EmptyClassGen<int>[], false);
- Eval(35065, v is NotEmptyClassGen<Guid>, false);
- Eval(35066, v is NotEmptyClassGen<Guid>[], false);
- Eval(35067, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(35068, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(35063, v is EmptyClassGen<int>, false);
+// Eval(35064, v is EmptyClassGen<int>[], false);
+// Eval(35065, v is NotEmptyClassGen<Guid>, false);
+// Eval(35066, v is NotEmptyClassGen<Guid>[], false);
+// Eval(35067, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(35068, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(35069, v is NestedClass, false);
Eval(35070, v is NestedClass[], false);
- Eval(35071, v is NestedClassGen<Decimal>, false);
- Eval(35072, v is NestedClassGen<Decimal>[], false);
+// Eval(35071, v is NestedClassGen<Decimal>, false);
+// Eval(35072, v is NestedClassGen<Decimal>[], false);
Eval(35073, v is ImplementOneInterfaceC, false);
Eval(35074, v is ImplementOneInterfaceC[], false);
Eval(35075, v is ImplementTwoInterfaceC, false);
Eval(35076, v is ImplementTwoInterfaceC[], false);
- Eval(35077, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(35078, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(35079, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(35080, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(35081, v is ImplementAllInterfaceC<int>, false);
- Eval(35082, v is ImplementAllInterfaceC<int>[], false);
+// Eval(35077, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(35078, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(35079, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(35080, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(35081, v is ImplementAllInterfaceC<int>, false);
+// Eval(35082, v is ImplementAllInterfaceC<int>[], false);
Eval(35083, v is SealedClass, false);
Eval(35084, v is SealedClass[], false);
}
@@ -17078,26 +17078,26 @@ internal class Program
Eval(35090, v is NotEmptyStruct[], false);
Eval(35091, v is NotEmptyStruct?, false);
Eval(35092, v is NotEmptyStruct?[], false);
- Eval(35093, v is EmptyStructGen<int>, false);
- Eval(35094, v is EmptyStructGen<int>[], false);
- Eval(35095, v is EmptyStructGen<int>?, false);
- Eval(35096, v is EmptyStructGen<int>?[], false);
- Eval(35097, v is NotEmptyStructGen<Guid>, false);
- Eval(35098, v is NotEmptyStructGen<Guid>[], false);
- Eval(35099, v is NotEmptyStructGen<Guid>?, false);
- Eval(35100, v is NotEmptyStructGen<Guid>?[], false);
- Eval(35101, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(35102, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(35103, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(35104, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(35093, v is EmptyStructGen<int>, false);
+// Eval(35094, v is EmptyStructGen<int>[], false);
+// Eval(35095, v is EmptyStructGen<int>?, false);
+// Eval(35096, v is EmptyStructGen<int>?[], false);
+// Eval(35097, v is NotEmptyStructGen<Guid>, false);
+// Eval(35098, v is NotEmptyStructGen<Guid>[], false);
+// Eval(35099, v is NotEmptyStructGen<Guid>?, false);
+// Eval(35100, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(35101, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(35102, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(35103, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(35104, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(35105, v is NestedStruct, false);
Eval(35106, v is NestedStruct[], false);
Eval(35107, v is NestedStruct?, false);
Eval(35108, v is NestedStruct?[], false);
- Eval(35109, v is NestedStructGen<Decimal>, false);
- Eval(35110, v is NestedStructGen<Decimal>[], false);
- Eval(35111, v is NestedStructGen<Decimal>?, false);
- Eval(35112, v is NestedStructGen<Decimal>?[], false);
+// Eval(35109, v is NestedStructGen<Decimal>, false);
+// Eval(35110, v is NestedStructGen<Decimal>[], false);
+// Eval(35111, v is NestedStructGen<Decimal>?, false);
+// Eval(35112, v is NestedStructGen<Decimal>?[], false);
Eval(35113, v is ExplicitFieldOffsetStruct, false);
Eval(35114, v is ExplicitFieldOffsetStruct[], false);
Eval(35115, v is ExplicitFieldOffsetStruct?, false);
@@ -17114,18 +17114,18 @@ internal class Program
Eval(35134, v is ImplementTwoInterface[], false);
Eval(35135, v is ImplementTwoInterface?, false);
Eval(35136, v is ImplementTwoInterface?[], false);
- Eval(35137, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(35138, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(35139, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(35140, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(35141, v is ImplementTwoInterfaceGen<int>, false);
- Eval(35142, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(35143, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(35144, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(35145, v is ImplementAllInterface<int>, false);
- Eval(35146, v is ImplementAllInterface<int>[], false);
- Eval(35147, v is ImplementAllInterface<int>?, false);
- Eval(35148, v is ImplementAllInterface<int>?[], false);
+// Eval(35137, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(35138, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(35139, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(35140, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(35141, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(35142, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(35143, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(35144, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(35145, v is ImplementAllInterface<int>, false);
+// Eval(35146, v is ImplementAllInterface<int>[], false);
+// Eval(35147, v is ImplementAllInterface<int>?, false);
+// Eval(35148, v is ImplementAllInterface<int>?[], false);
Eval(35149, v is IntE, false);
Eval(35150, v is IntE[], false);
Eval(35151, v is IntE?, false);
@@ -17224,38 +17224,38 @@ internal class Program
Eval(35244, v is IEmpty[], false);
Eval(35245, v is INotEmpty, false);
Eval(35246, v is INotEmpty[], false);
- Eval(35247, v is IEmptyGen<int>, false);
- Eval(35248, v is IEmptyGen<int>[], false);
- Eval(35249, v is INotEmptyGen<int>, false);
- Eval(35250, v is INotEmptyGen<int>[], false);
+// Eval(35247, v is IEmptyGen<int>, false);
+// Eval(35248, v is IEmptyGen<int>[], false);
+// Eval(35249, v is INotEmptyGen<int>, false);
+// Eval(35250, v is INotEmptyGen<int>[], false);
Eval(35251, v is SimpleDelegate, false);
Eval(35252, v is SimpleDelegate[], false);
- Eval(35253, v is GenericDelegate<int>, false);
- Eval(35254, v is GenericDelegate<int>[], false);
+// Eval(35253, v is GenericDelegate<int>, false);
+// Eval(35254, v is GenericDelegate<int>[], false);
Eval(35255, v is EmptyClass, false);
Eval(35256, v is EmptyClass[], false);
Eval(35257, v is NotEmptyClass, false);
Eval(35258, v is NotEmptyClass[], false);
- Eval(35259, v is EmptyClassGen<int>, false);
- Eval(35260, v is EmptyClassGen<int>[], false);
- Eval(35261, v is NotEmptyClassGen<Guid>, false);
- Eval(35262, v is NotEmptyClassGen<Guid>[], false);
- Eval(35263, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(35264, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(35259, v is EmptyClassGen<int>, false);
+// Eval(35260, v is EmptyClassGen<int>[], false);
+// Eval(35261, v is NotEmptyClassGen<Guid>, false);
+// Eval(35262, v is NotEmptyClassGen<Guid>[], false);
+// Eval(35263, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(35264, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(35265, v is NestedClass, false);
Eval(35266, v is NestedClass[], false);
- Eval(35267, v is NestedClassGen<Decimal>, false);
- Eval(35268, v is NestedClassGen<Decimal>[], false);
+// Eval(35267, v is NestedClassGen<Decimal>, false);
+// Eval(35268, v is NestedClassGen<Decimal>[], false);
Eval(35269, v is ImplementOneInterfaceC, false);
Eval(35270, v is ImplementOneInterfaceC[], false);
Eval(35271, v is ImplementTwoInterfaceC, false);
Eval(35272, v is ImplementTwoInterfaceC[], false);
- Eval(35273, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(35274, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(35275, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(35276, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(35277, v is ImplementAllInterfaceC<int>, false);
- Eval(35278, v is ImplementAllInterfaceC<int>[], false);
+// Eval(35273, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(35274, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(35275, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(35276, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(35277, v is ImplementAllInterfaceC<int>, false);
+// Eval(35278, v is ImplementAllInterfaceC<int>[], false);
Eval(35279, v is SealedClass, false);
Eval(35280, v is SealedClass[], false);
}
diff --git a/tests/src/JIT/Directed/nullabletypes/isinstboxed.cs b/tests/src/JIT/Directed/nullabletypes/isinstboxed.cs
index 30a57cdad6..35e2566056 100644
--- a/tests/src/JIT/Directed/nullabletypes/isinstboxed.cs
+++ b/tests/src/JIT/Directed/nullabletypes/isinstboxed.cs
@@ -28,26 +28,26 @@ internal class Program
Eval(0006, o is NotEmptyStruct[], false);
Eval(0007, o is NotEmptyStruct?, false);
Eval(0008, o is NotEmptyStruct?[], false);
- Eval(0009, o is EmptyStructGen<int>, false);
- Eval(0010, o is EmptyStructGen<int>[], false);
- Eval(0011, o is EmptyStructGen<int>?, false);
- Eval(0012, o is EmptyStructGen<int>?[], false);
- Eval(0013, o is NotEmptyStructGen<Guid>, false);
- Eval(0014, o is NotEmptyStructGen<Guid>[], false);
- Eval(0015, o is NotEmptyStructGen<Guid>?, false);
- Eval(0016, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0017, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0018, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0019, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0020, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0009, o is EmptyStructGen<int>, false);
+// Eval(0010, o is EmptyStructGen<int>[], false);
+// Eval(0011, o is EmptyStructGen<int>?, false);
+// Eval(0012, o is EmptyStructGen<int>?[], false);
+// Eval(0013, o is NotEmptyStructGen<Guid>, false);
+// Eval(0014, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0015, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0016, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0017, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0018, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0019, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0020, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0021, o is NestedStruct, false);
Eval(0022, o is NestedStruct[], false);
Eval(0023, o is NestedStruct?, false);
Eval(0024, o is NestedStruct?[], false);
- Eval(0025, o is NestedStructGen<Decimal>, false);
- Eval(0026, o is NestedStructGen<Decimal>[], false);
- Eval(0027, o is NestedStructGen<Decimal>?, false);
- Eval(0028, o is NestedStructGen<Decimal>?[], false);
+// Eval(0025, o is NestedStructGen<Decimal>, false);
+// Eval(0026, o is NestedStructGen<Decimal>[], false);
+// Eval(0027, o is NestedStructGen<Decimal>?, false);
+// Eval(0028, o is NestedStructGen<Decimal>?[], false);
Eval(0029, o is ExplicitFieldOffsetStruct, false);
Eval(0030, o is ExplicitFieldOffsetStruct[], false);
Eval(0031, o is ExplicitFieldOffsetStruct?, false);
@@ -64,18 +64,18 @@ internal class Program
Eval(0050, o is ImplementTwoInterface[], false);
Eval(0051, o is ImplementTwoInterface?, false);
Eval(0052, o is ImplementTwoInterface?[], false);
- Eval(0053, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0054, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0055, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0056, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0057, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0058, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0059, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0060, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0061, o is ImplementAllInterface<int>, false);
- Eval(0062, o is ImplementAllInterface<int>[], false);
- Eval(0063, o is ImplementAllInterface<int>?, false);
- Eval(0064, o is ImplementAllInterface<int>?[], false);
+// Eval(0053, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0054, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0055, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0056, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0057, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0058, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0059, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0060, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0061, o is ImplementAllInterface<int>, false);
+// Eval(0062, o is ImplementAllInterface<int>[], false);
+// Eval(0063, o is ImplementAllInterface<int>?, false);
+// Eval(0064, o is ImplementAllInterface<int>?[], false);
Eval(0065, o is IntE, false);
Eval(0066, o is IntE[], false);
Eval(0067, o is IntE?, false);
@@ -174,38 +174,38 @@ internal class Program
Eval(0160, o is IEmpty[], false);
Eval(0161, o is INotEmpty, false);
Eval(0162, o is INotEmpty[], false);
- Eval(0163, o is IEmptyGen<int>, false);
- Eval(0164, o is IEmptyGen<int>[], false);
- Eval(0165, o is INotEmptyGen<int>, false);
- Eval(0166, o is INotEmptyGen<int>[], false);
+// Eval(0163, o is IEmptyGen<int>, false);
+// Eval(0164, o is IEmptyGen<int>[], false);
+// Eval(0165, o is INotEmptyGen<int>, false);
+// Eval(0166, o is INotEmptyGen<int>[], false);
Eval(0167, o is SimpleDelegate, false);
Eval(0168, o is SimpleDelegate[], false);
- Eval(0169, o is GenericDelegate<int>, false);
- Eval(0170, o is GenericDelegate<int>[], false);
+// Eval(0169, o is GenericDelegate<int>, false);
+// Eval(0170, o is GenericDelegate<int>[], false);
Eval(0171, o is EmptyClass, false);
Eval(0172, o is EmptyClass[], false);
Eval(0173, o is NotEmptyClass, false);
Eval(0174, o is NotEmptyClass[], false);
- Eval(0175, o is EmptyClassGen<int>, false);
- Eval(0176, o is EmptyClassGen<int>[], false);
- Eval(0177, o is NotEmptyClassGen<Guid>, false);
- Eval(0178, o is NotEmptyClassGen<Guid>[], false);
- Eval(0179, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0180, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0175, o is EmptyClassGen<int>, false);
+// Eval(0176, o is EmptyClassGen<int>[], false);
+// Eval(0177, o is NotEmptyClassGen<Guid>, false);
+// Eval(0178, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0179, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0180, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0181, o is NestedClass, false);
Eval(0182, o is NestedClass[], false);
- Eval(0183, o is NestedClassGen<Decimal>, false);
- Eval(0184, o is NestedClassGen<Decimal>[], false);
+// Eval(0183, o is NestedClassGen<Decimal>, false);
+// Eval(0184, o is NestedClassGen<Decimal>[], false);
Eval(0185, o is ImplementOneInterfaceC, false);
Eval(0186, o is ImplementOneInterfaceC[], false);
Eval(0187, o is ImplementTwoInterfaceC, false);
Eval(0188, o is ImplementTwoInterfaceC[], false);
- Eval(0189, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0190, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0191, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0192, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0193, o is ImplementAllInterfaceC<int>, false);
- Eval(0194, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0189, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0190, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0191, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0192, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0193, o is ImplementAllInterfaceC<int>, false);
+// Eval(0194, o is ImplementAllInterfaceC<int>[], false);
Eval(0195, o is SealedClass, false);
Eval(0196, o is SealedClass[], false);
}
@@ -220,26 +220,26 @@ internal class Program
Eval(0202, o is NotEmptyStruct[], false);
Eval(0203, o is NotEmptyStruct?, false);
Eval(0204, o is NotEmptyStruct?[], false);
- Eval(0205, o is EmptyStructGen<int>, false);
- Eval(0206, o is EmptyStructGen<int>[], false);
- Eval(0207, o is EmptyStructGen<int>?, false);
- Eval(0208, o is EmptyStructGen<int>?[], false);
- Eval(0209, o is NotEmptyStructGen<Guid>, false);
- Eval(0210, o is NotEmptyStructGen<Guid>[], false);
- Eval(0211, o is NotEmptyStructGen<Guid>?, false);
- Eval(0212, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0213, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0214, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0215, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0216, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0205, o is EmptyStructGen<int>, false);
+// Eval(0206, o is EmptyStructGen<int>[], false);
+// Eval(0207, o is EmptyStructGen<int>?, false);
+// Eval(0208, o is EmptyStructGen<int>?[], false);
+// Eval(0209, o is NotEmptyStructGen<Guid>, false);
+// Eval(0210, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0211, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0212, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0213, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0214, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0215, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0216, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0217, o is NestedStruct, false);
Eval(0218, o is NestedStruct[], false);
Eval(0219, o is NestedStruct?, false);
Eval(0220, o is NestedStruct?[], false);
- Eval(0221, o is NestedStructGen<Decimal>, false);
- Eval(0222, o is NestedStructGen<Decimal>[], false);
- Eval(0223, o is NestedStructGen<Decimal>?, false);
- Eval(0224, o is NestedStructGen<Decimal>?[], false);
+// Eval(0221, o is NestedStructGen<Decimal>, false);
+// Eval(0222, o is NestedStructGen<Decimal>[], false);
+// Eval(0223, o is NestedStructGen<Decimal>?, false);
+// Eval(0224, o is NestedStructGen<Decimal>?[], false);
Eval(0225, o is ExplicitFieldOffsetStruct, false);
Eval(0226, o is ExplicitFieldOffsetStruct[], false);
Eval(0227, o is ExplicitFieldOffsetStruct?, false);
@@ -256,18 +256,18 @@ internal class Program
Eval(0246, o is ImplementTwoInterface[], false);
Eval(0247, o is ImplementTwoInterface?, false);
Eval(0248, o is ImplementTwoInterface?[], false);
- Eval(0249, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0250, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0251, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0252, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0253, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0254, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0255, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0256, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0257, o is ImplementAllInterface<int>, false);
- Eval(0258, o is ImplementAllInterface<int>[], false);
- Eval(0259, o is ImplementAllInterface<int>?, false);
- Eval(0260, o is ImplementAllInterface<int>?[], false);
+// Eval(0249, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0250, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0251, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0252, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0253, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0254, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0255, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0256, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0257, o is ImplementAllInterface<int>, false);
+// Eval(0258, o is ImplementAllInterface<int>[], false);
+// Eval(0259, o is ImplementAllInterface<int>?, false);
+// Eval(0260, o is ImplementAllInterface<int>?[], false);
Eval(0261, o is IntE, false);
Eval(0262, o is IntE[], false);
Eval(0263, o is IntE?, false);
@@ -366,38 +366,38 @@ internal class Program
Eval(0356, o is IEmpty[], false);
Eval(0357, o is INotEmpty, false);
Eval(0358, o is INotEmpty[], false);
- Eval(0359, o is IEmptyGen<int>, false);
- Eval(0360, o is IEmptyGen<int>[], false);
- Eval(0361, o is INotEmptyGen<int>, false);
- Eval(0362, o is INotEmptyGen<int>[], false);
+// Eval(0359, o is IEmptyGen<int>, false);
+// Eval(0360, o is IEmptyGen<int>[], false);
+// Eval(0361, o is INotEmptyGen<int>, false);
+// Eval(0362, o is INotEmptyGen<int>[], false);
Eval(0363, o is SimpleDelegate, false);
Eval(0364, o is SimpleDelegate[], false);
- Eval(0365, o is GenericDelegate<int>, false);
- Eval(0366, o is GenericDelegate<int>[], false);
+// Eval(0365, o is GenericDelegate<int>, false);
+// Eval(0366, o is GenericDelegate<int>[], false);
Eval(0367, o is EmptyClass, false);
Eval(0368, o is EmptyClass[], false);
Eval(0369, o is NotEmptyClass, false);
Eval(0370, o is NotEmptyClass[], false);
- Eval(0371, o is EmptyClassGen<int>, false);
- Eval(0372, o is EmptyClassGen<int>[], false);
- Eval(0373, o is NotEmptyClassGen<Guid>, false);
- Eval(0374, o is NotEmptyClassGen<Guid>[], false);
- Eval(0375, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0376, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0371, o is EmptyClassGen<int>, false);
+// Eval(0372, o is EmptyClassGen<int>[], false);
+// Eval(0373, o is NotEmptyClassGen<Guid>, false);
+// Eval(0374, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0375, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0376, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0377, o is NestedClass, false);
Eval(0378, o is NestedClass[], false);
- Eval(0379, o is NestedClassGen<Decimal>, false);
- Eval(0380, o is NestedClassGen<Decimal>[], false);
+// Eval(0379, o is NestedClassGen<Decimal>, false);
+// Eval(0380, o is NestedClassGen<Decimal>[], false);
Eval(0381, o is ImplementOneInterfaceC, false);
Eval(0382, o is ImplementOneInterfaceC[], false);
Eval(0383, o is ImplementTwoInterfaceC, false);
Eval(0384, o is ImplementTwoInterfaceC[], false);
- Eval(0385, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0386, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0387, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0388, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0389, o is ImplementAllInterfaceC<int>, false);
- Eval(0390, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0385, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0386, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0387, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0388, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0389, o is ImplementAllInterfaceC<int>, false);
+// Eval(0390, o is ImplementAllInterfaceC<int>[], false);
Eval(0391, o is SealedClass, false);
Eval(0392, o is SealedClass[], false);
}
@@ -412,26 +412,26 @@ internal class Program
Eval(0398, o is NotEmptyStruct[], false);
Eval(0399, o is NotEmptyStruct?, false);
Eval(0400, o is NotEmptyStruct?[], false);
- Eval(0401, o is EmptyStructGen<int>, false);
- Eval(0402, o is EmptyStructGen<int>[], false);
- Eval(0403, o is EmptyStructGen<int>?, false);
- Eval(0404, o is EmptyStructGen<int>?[], false);
- Eval(0405, o is NotEmptyStructGen<Guid>, false);
- Eval(0406, o is NotEmptyStructGen<Guid>[], false);
- Eval(0407, o is NotEmptyStructGen<Guid>?, false);
- Eval(0408, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0409, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0410, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0411, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0412, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0401, o is EmptyStructGen<int>, false);
+// Eval(0402, o is EmptyStructGen<int>[], false);
+// Eval(0403, o is EmptyStructGen<int>?, false);
+// Eval(0404, o is EmptyStructGen<int>?[], false);
+// Eval(0405, o is NotEmptyStructGen<Guid>, false);
+// Eval(0406, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0407, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0408, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0409, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0410, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0411, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0412, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0413, o is NestedStruct, false);
Eval(0414, o is NestedStruct[], false);
Eval(0415, o is NestedStruct?, false);
Eval(0416, o is NestedStruct?[], false);
- Eval(0417, o is NestedStructGen<Decimal>, false);
- Eval(0418, o is NestedStructGen<Decimal>[], false);
- Eval(0419, o is NestedStructGen<Decimal>?, false);
- Eval(0420, o is NestedStructGen<Decimal>?[], false);
+// Eval(0417, o is NestedStructGen<Decimal>, false);
+// Eval(0418, o is NestedStructGen<Decimal>[], false);
+// Eval(0419, o is NestedStructGen<Decimal>?, false);
+// Eval(0420, o is NestedStructGen<Decimal>?[], false);
Eval(0421, o is ExplicitFieldOffsetStruct, false);
Eval(0422, o is ExplicitFieldOffsetStruct[], false);
Eval(0423, o is ExplicitFieldOffsetStruct?, false);
@@ -448,18 +448,18 @@ internal class Program
Eval(0442, o is ImplementTwoInterface[], false);
Eval(0443, o is ImplementTwoInterface?, false);
Eval(0444, o is ImplementTwoInterface?[], false);
- Eval(0445, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0446, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0447, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0448, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0449, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0450, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0451, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0452, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0453, o is ImplementAllInterface<int>, false);
- Eval(0454, o is ImplementAllInterface<int>[], false);
- Eval(0455, o is ImplementAllInterface<int>?, false);
- Eval(0456, o is ImplementAllInterface<int>?[], false);
+// Eval(0445, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0446, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0447, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0448, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0449, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0450, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0451, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0452, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0453, o is ImplementAllInterface<int>, false);
+// Eval(0454, o is ImplementAllInterface<int>[], false);
+// Eval(0455, o is ImplementAllInterface<int>?, false);
+// Eval(0456, o is ImplementAllInterface<int>?[], false);
Eval(0457, o is IntE, false);
Eval(0458, o is IntE[], false);
Eval(0459, o is IntE?, false);
@@ -558,38 +558,38 @@ internal class Program
Eval(0552, o is IEmpty[], false);
Eval(0553, o is INotEmpty, false);
Eval(0554, o is INotEmpty[], false);
- Eval(0555, o is IEmptyGen<int>, false);
- Eval(0556, o is IEmptyGen<int>[], false);
- Eval(0557, o is INotEmptyGen<int>, false);
- Eval(0558, o is INotEmptyGen<int>[], false);
+// Eval(0555, o is IEmptyGen<int>, false);
+// Eval(0556, o is IEmptyGen<int>[], false);
+// Eval(0557, o is INotEmptyGen<int>, false);
+// Eval(0558, o is INotEmptyGen<int>[], false);
Eval(0559, o is SimpleDelegate, false);
Eval(0560, o is SimpleDelegate[], false);
- Eval(0561, o is GenericDelegate<int>, false);
- Eval(0562, o is GenericDelegate<int>[], false);
+// Eval(0561, o is GenericDelegate<int>, false);
+// Eval(0562, o is GenericDelegate<int>[], false);
Eval(0563, o is EmptyClass, false);
Eval(0564, o is EmptyClass[], false);
Eval(0565, o is NotEmptyClass, false);
Eval(0566, o is NotEmptyClass[], false);
- Eval(0567, o is EmptyClassGen<int>, false);
- Eval(0568, o is EmptyClassGen<int>[], false);
- Eval(0569, o is NotEmptyClassGen<Guid>, false);
- Eval(0570, o is NotEmptyClassGen<Guid>[], false);
- Eval(0571, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0572, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0567, o is EmptyClassGen<int>, false);
+// Eval(0568, o is EmptyClassGen<int>[], false);
+// Eval(0569, o is NotEmptyClassGen<Guid>, false);
+// Eval(0570, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0571, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0572, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0573, o is NestedClass, false);
Eval(0574, o is NestedClass[], false);
- Eval(0575, o is NestedClassGen<Decimal>, false);
- Eval(0576, o is NestedClassGen<Decimal>[], false);
+// Eval(0575, o is NestedClassGen<Decimal>, false);
+// Eval(0576, o is NestedClassGen<Decimal>[], false);
Eval(0577, o is ImplementOneInterfaceC, false);
Eval(0578, o is ImplementOneInterfaceC[], false);
Eval(0579, o is ImplementTwoInterfaceC, false);
Eval(0580, o is ImplementTwoInterfaceC[], false);
- Eval(0581, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0582, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0583, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0584, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0585, o is ImplementAllInterfaceC<int>, false);
- Eval(0586, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0581, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0582, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0583, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0584, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0585, o is ImplementAllInterfaceC<int>, false);
+// Eval(0586, o is ImplementAllInterfaceC<int>[], false);
Eval(0587, o is SealedClass, false);
Eval(0588, o is SealedClass[], false);
}
@@ -604,26 +604,26 @@ internal class Program
Eval(0594, o is NotEmptyStruct[], false);
Eval(0595, o is NotEmptyStruct?, false);
Eval(0596, o is NotEmptyStruct?[], false);
- Eval(0597, o is EmptyStructGen<int>, false);
- Eval(0598, o is EmptyStructGen<int>[], false);
- Eval(0599, o is EmptyStructGen<int>?, false);
- Eval(0600, o is EmptyStructGen<int>?[], false);
- Eval(0601, o is NotEmptyStructGen<Guid>, false);
- Eval(0602, o is NotEmptyStructGen<Guid>[], false);
- Eval(0603, o is NotEmptyStructGen<Guid>?, false);
- Eval(0604, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0605, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0606, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0607, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0608, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0597, o is EmptyStructGen<int>, false);
+// Eval(0598, o is EmptyStructGen<int>[], false);
+// Eval(0599, o is EmptyStructGen<int>?, false);
+// Eval(0600, o is EmptyStructGen<int>?[], false);
+// Eval(0601, o is NotEmptyStructGen<Guid>, false);
+// Eval(0602, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0603, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0604, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0605, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0606, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0607, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0608, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0609, o is NestedStruct, false);
Eval(0610, o is NestedStruct[], false);
Eval(0611, o is NestedStruct?, false);
Eval(0612, o is NestedStruct?[], false);
- Eval(0613, o is NestedStructGen<Decimal>, false);
- Eval(0614, o is NestedStructGen<Decimal>[], false);
- Eval(0615, o is NestedStructGen<Decimal>?, false);
- Eval(0616, o is NestedStructGen<Decimal>?[], false);
+// Eval(0613, o is NestedStructGen<Decimal>, false);
+// Eval(0614, o is NestedStructGen<Decimal>[], false);
+// Eval(0615, o is NestedStructGen<Decimal>?, false);
+// Eval(0616, o is NestedStructGen<Decimal>?[], false);
Eval(0617, o is ExplicitFieldOffsetStruct, false);
Eval(0618, o is ExplicitFieldOffsetStruct[], false);
Eval(0619, o is ExplicitFieldOffsetStruct?, false);
@@ -640,18 +640,18 @@ internal class Program
Eval(0638, o is ImplementTwoInterface[], false);
Eval(0639, o is ImplementTwoInterface?, false);
Eval(0640, o is ImplementTwoInterface?[], false);
- Eval(0641, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0642, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0643, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0644, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0645, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0646, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0647, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0648, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0649, o is ImplementAllInterface<int>, false);
- Eval(0650, o is ImplementAllInterface<int>[], false);
- Eval(0651, o is ImplementAllInterface<int>?, false);
- Eval(0652, o is ImplementAllInterface<int>?[], false);
+// Eval(0641, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0642, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0643, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0644, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0645, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0646, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0647, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0648, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0649, o is ImplementAllInterface<int>, false);
+// Eval(0650, o is ImplementAllInterface<int>[], false);
+// Eval(0651, o is ImplementAllInterface<int>?, false);
+// Eval(0652, o is ImplementAllInterface<int>?[], false);
Eval(0653, o is IntE, false);
Eval(0654, o is IntE[], false);
Eval(0655, o is IntE?, false);
@@ -750,38 +750,38 @@ internal class Program
Eval(0748, o is IEmpty[], false);
Eval(0749, o is INotEmpty, false);
Eval(0750, o is INotEmpty[], false);
- Eval(0751, o is IEmptyGen<int>, false);
- Eval(0752, o is IEmptyGen<int>[], false);
- Eval(0753, o is INotEmptyGen<int>, false);
- Eval(0754, o is INotEmptyGen<int>[], false);
+// Eval(0751, o is IEmptyGen<int>, false);
+// Eval(0752, o is IEmptyGen<int>[], false);
+// Eval(0753, o is INotEmptyGen<int>, false);
+// Eval(0754, o is INotEmptyGen<int>[], false);
Eval(0755, o is SimpleDelegate, false);
Eval(0756, o is SimpleDelegate[], false);
- Eval(0757, o is GenericDelegate<int>, false);
- Eval(0758, o is GenericDelegate<int>[], false);
+// Eval(0757, o is GenericDelegate<int>, false);
+// Eval(0758, o is GenericDelegate<int>[], false);
Eval(0759, o is EmptyClass, false);
Eval(0760, o is EmptyClass[], false);
Eval(0761, o is NotEmptyClass, false);
Eval(0762, o is NotEmptyClass[], false);
- Eval(0763, o is EmptyClassGen<int>, false);
- Eval(0764, o is EmptyClassGen<int>[], false);
- Eval(0765, o is NotEmptyClassGen<Guid>, false);
- Eval(0766, o is NotEmptyClassGen<Guid>[], false);
- Eval(0767, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0768, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0763, o is EmptyClassGen<int>, false);
+// Eval(0764, o is EmptyClassGen<int>[], false);
+// Eval(0765, o is NotEmptyClassGen<Guid>, false);
+// Eval(0766, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0767, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0768, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0769, o is NestedClass, false);
Eval(0770, o is NestedClass[], false);
- Eval(0771, o is NestedClassGen<Decimal>, false);
- Eval(0772, o is NestedClassGen<Decimal>[], false);
+// Eval(0771, o is NestedClassGen<Decimal>, false);
+// Eval(0772, o is NestedClassGen<Decimal>[], false);
Eval(0773, o is ImplementOneInterfaceC, false);
Eval(0774, o is ImplementOneInterfaceC[], false);
Eval(0775, o is ImplementTwoInterfaceC, false);
Eval(0776, o is ImplementTwoInterfaceC[], false);
- Eval(0777, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0778, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0779, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0780, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0781, o is ImplementAllInterfaceC<int>, false);
- Eval(0782, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0777, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0778, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0779, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0780, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0781, o is ImplementAllInterfaceC<int>, false);
+// Eval(0782, o is ImplementAllInterfaceC<int>[], false);
Eval(0783, o is SealedClass, false);
Eval(0784, o is SealedClass[], false);
}
@@ -796,26 +796,26 @@ internal class Program
Eval(0790, o is NotEmptyStruct[], false);
Eval(0791, o is NotEmptyStruct?, false);
Eval(0792, o is NotEmptyStruct?[], false);
- Eval(0793, o is EmptyStructGen<int>, false);
- Eval(0794, o is EmptyStructGen<int>[], false);
- Eval(0795, o is EmptyStructGen<int>?, false);
- Eval(0796, o is EmptyStructGen<int>?[], false);
- Eval(0797, o is NotEmptyStructGen<Guid>, false);
- Eval(0798, o is NotEmptyStructGen<Guid>[], false);
- Eval(0799, o is NotEmptyStructGen<Guid>?, false);
- Eval(0800, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0801, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0802, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0803, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0804, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0793, o is EmptyStructGen<int>, false);
+// Eval(0794, o is EmptyStructGen<int>[], false);
+// Eval(0795, o is EmptyStructGen<int>?, false);
+// Eval(0796, o is EmptyStructGen<int>?[], false);
+// Eval(0797, o is NotEmptyStructGen<Guid>, false);
+// Eval(0798, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0799, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0800, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0801, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0802, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0803, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0804, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0805, o is NestedStruct, false);
Eval(0806, o is NestedStruct[], false);
Eval(0807, o is NestedStruct?, false);
Eval(0808, o is NestedStruct?[], false);
- Eval(0809, o is NestedStructGen<Decimal>, false);
- Eval(0810, o is NestedStructGen<Decimal>[], false);
- Eval(0811, o is NestedStructGen<Decimal>?, false);
- Eval(0812, o is NestedStructGen<Decimal>?[], false);
+// Eval(0809, o is NestedStructGen<Decimal>, false);
+// Eval(0810, o is NestedStructGen<Decimal>[], false);
+// Eval(0811, o is NestedStructGen<Decimal>?, false);
+// Eval(0812, o is NestedStructGen<Decimal>?[], false);
Eval(0813, o is ExplicitFieldOffsetStruct, false);
Eval(0814, o is ExplicitFieldOffsetStruct[], false);
Eval(0815, o is ExplicitFieldOffsetStruct?, false);
@@ -832,18 +832,18 @@ internal class Program
Eval(0834, o is ImplementTwoInterface[], false);
Eval(0835, o is ImplementTwoInterface?, false);
Eval(0836, o is ImplementTwoInterface?[], false);
- Eval(0837, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0838, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0839, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0840, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0841, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0842, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0843, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0844, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0845, o is ImplementAllInterface<int>, false);
- Eval(0846, o is ImplementAllInterface<int>[], false);
- Eval(0847, o is ImplementAllInterface<int>?, false);
- Eval(0848, o is ImplementAllInterface<int>?[], false);
+// Eval(0837, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0838, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0839, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0840, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0841, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0842, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0843, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0844, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0845, o is ImplementAllInterface<int>, false);
+// Eval(0846, o is ImplementAllInterface<int>[], false);
+// Eval(0847, o is ImplementAllInterface<int>?, false);
+// Eval(0848, o is ImplementAllInterface<int>?[], false);
Eval(0849, o is IntE, false);
Eval(0850, o is IntE[], false);
Eval(0851, o is IntE?, false);
@@ -942,38 +942,38 @@ internal class Program
Eval(0944, o is IEmpty[], false);
Eval(0945, o is INotEmpty, false);
Eval(0946, o is INotEmpty[], false);
- Eval(0947, o is IEmptyGen<int>, false);
- Eval(0948, o is IEmptyGen<int>[], false);
- Eval(0949, o is INotEmptyGen<int>, false);
- Eval(0950, o is INotEmptyGen<int>[], false);
+// Eval(0947, o is IEmptyGen<int>, false);
+// Eval(0948, o is IEmptyGen<int>[], false);
+// Eval(0949, o is INotEmptyGen<int>, false);
+// Eval(0950, o is INotEmptyGen<int>[], false);
Eval(0951, o is SimpleDelegate, false);
Eval(0952, o is SimpleDelegate[], false);
- Eval(0953, o is GenericDelegate<int>, false);
- Eval(0954, o is GenericDelegate<int>[], false);
+// Eval(0953, o is GenericDelegate<int>, false);
+// Eval(0954, o is GenericDelegate<int>[], false);
Eval(0955, o is EmptyClass, false);
Eval(0956, o is EmptyClass[], false);
Eval(0957, o is NotEmptyClass, false);
Eval(0958, o is NotEmptyClass[], false);
- Eval(0959, o is EmptyClassGen<int>, false);
- Eval(0960, o is EmptyClassGen<int>[], false);
- Eval(0961, o is NotEmptyClassGen<Guid>, false);
- Eval(0962, o is NotEmptyClassGen<Guid>[], false);
- Eval(0963, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0964, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0959, o is EmptyClassGen<int>, false);
+// Eval(0960, o is EmptyClassGen<int>[], false);
+// Eval(0961, o is NotEmptyClassGen<Guid>, false);
+// Eval(0962, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0963, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0964, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0965, o is NestedClass, false);
Eval(0966, o is NestedClass[], false);
- Eval(0967, o is NestedClassGen<Decimal>, false);
- Eval(0968, o is NestedClassGen<Decimal>[], false);
+// Eval(0967, o is NestedClassGen<Decimal>, false);
+// Eval(0968, o is NestedClassGen<Decimal>[], false);
Eval(0969, o is ImplementOneInterfaceC, false);
Eval(0970, o is ImplementOneInterfaceC[], false);
Eval(0971, o is ImplementTwoInterfaceC, false);
Eval(0972, o is ImplementTwoInterfaceC[], false);
- Eval(0973, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0974, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0975, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0976, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0977, o is ImplementAllInterfaceC<int>, false);
- Eval(0978, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0973, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0974, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0975, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0976, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0977, o is ImplementAllInterfaceC<int>, false);
+// Eval(0978, o is ImplementAllInterfaceC<int>[], false);
Eval(0979, o is SealedClass, false);
Eval(0980, o is SealedClass[], false);
}
@@ -991,26 +991,26 @@ internal class Program
Eval(0986, o is NotEmptyStruct[], false);
Eval(0987, o is NotEmptyStruct?, true);
Eval(0988, o is NotEmptyStruct?[], false);
- Eval(0989, o is EmptyStructGen<int>, false);
- Eval(0990, o is EmptyStructGen<int>[], false);
- Eval(0991, o is EmptyStructGen<int>?, false);
- Eval(0992, o is EmptyStructGen<int>?[], false);
- Eval(0993, o is NotEmptyStructGen<Guid>, false);
- Eval(0994, o is NotEmptyStructGen<Guid>[], false);
- Eval(0995, o is NotEmptyStructGen<Guid>?, false);
- Eval(0996, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0997, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0998, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0999, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1000, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0989, o is EmptyStructGen<int>, false);
+// Eval(0990, o is EmptyStructGen<int>[], false);
+// Eval(0991, o is EmptyStructGen<int>?, false);
+// Eval(0992, o is EmptyStructGen<int>?[], false);
+// Eval(0993, o is NotEmptyStructGen<Guid>, false);
+// Eval(0994, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0995, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0996, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0997, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0998, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0999, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1000, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1001, o is NestedStruct, false);
Eval(1002, o is NestedStruct[], false);
Eval(1003, o is NestedStruct?, false);
Eval(1004, o is NestedStruct?[], false);
- Eval(1005, o is NestedStructGen<Decimal>, false);
- Eval(1006, o is NestedStructGen<Decimal>[], false);
- Eval(1007, o is NestedStructGen<Decimal>?, false);
- Eval(1008, o is NestedStructGen<Decimal>?[], false);
+// Eval(1005, o is NestedStructGen<Decimal>, false);
+// Eval(1006, o is NestedStructGen<Decimal>[], false);
+// Eval(1007, o is NestedStructGen<Decimal>?, false);
+// Eval(1008, o is NestedStructGen<Decimal>?[], false);
Eval(1009, o is ExplicitFieldOffsetStruct, false);
Eval(1010, o is ExplicitFieldOffsetStruct[], false);
Eval(1011, o is ExplicitFieldOffsetStruct?, false);
@@ -1027,18 +1027,18 @@ internal class Program
Eval(1030, o is ImplementTwoInterface[], false);
Eval(1031, o is ImplementTwoInterface?, false);
Eval(1032, o is ImplementTwoInterface?[], false);
- Eval(1033, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1034, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1035, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1036, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1037, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1038, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1039, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1040, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1041, o is ImplementAllInterface<int>, false);
- Eval(1042, o is ImplementAllInterface<int>[], false);
- Eval(1043, o is ImplementAllInterface<int>?, false);
- Eval(1044, o is ImplementAllInterface<int>?[], false);
+// Eval(1033, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1034, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1035, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1036, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1037, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1038, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1039, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1040, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1041, o is ImplementAllInterface<int>, false);
+// Eval(1042, o is ImplementAllInterface<int>[], false);
+// Eval(1043, o is ImplementAllInterface<int>?, false);
+// Eval(1044, o is ImplementAllInterface<int>?[], false);
Eval(1045, o is IntE, false);
Eval(1046, o is IntE[], false);
Eval(1047, o is IntE?, false);
@@ -1137,38 +1137,38 @@ internal class Program
Eval(1140, o is IEmpty[], false);
Eval(1141, o is INotEmpty, false);
Eval(1142, o is INotEmpty[], false);
- Eval(1143, o is IEmptyGen<int>, false);
- Eval(1144, o is IEmptyGen<int>[], false);
- Eval(1145, o is INotEmptyGen<int>, false);
- Eval(1146, o is INotEmptyGen<int>[], false);
+// Eval(1143, o is IEmptyGen<int>, false);
+// Eval(1144, o is IEmptyGen<int>[], false);
+// Eval(1145, o is INotEmptyGen<int>, false);
+// Eval(1146, o is INotEmptyGen<int>[], false);
Eval(1147, o is SimpleDelegate, false);
Eval(1148, o is SimpleDelegate[], false);
- Eval(1149, o is GenericDelegate<int>, false);
- Eval(1150, o is GenericDelegate<int>[], false);
+// Eval(1149, o is GenericDelegate<int>, false);
+// Eval(1150, o is GenericDelegate<int>[], false);
Eval(1151, o is EmptyClass, false);
Eval(1152, o is EmptyClass[], false);
Eval(1153, o is NotEmptyClass, false);
Eval(1154, o is NotEmptyClass[], false);
- Eval(1155, o is EmptyClassGen<int>, false);
- Eval(1156, o is EmptyClassGen<int>[], false);
- Eval(1157, o is NotEmptyClassGen<Guid>, false);
- Eval(1158, o is NotEmptyClassGen<Guid>[], false);
- Eval(1159, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1160, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1155, o is EmptyClassGen<int>, false);
+// Eval(1156, o is EmptyClassGen<int>[], false);
+// Eval(1157, o is NotEmptyClassGen<Guid>, false);
+// Eval(1158, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1159, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1160, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1161, o is NestedClass, false);
Eval(1162, o is NestedClass[], false);
- Eval(1163, o is NestedClassGen<Decimal>, false);
- Eval(1164, o is NestedClassGen<Decimal>[], false);
+// Eval(1163, o is NestedClassGen<Decimal>, false);
+// Eval(1164, o is NestedClassGen<Decimal>[], false);
Eval(1165, o is ImplementOneInterfaceC, false);
Eval(1166, o is ImplementOneInterfaceC[], false);
Eval(1167, o is ImplementTwoInterfaceC, false);
Eval(1168, o is ImplementTwoInterfaceC[], false);
- Eval(1169, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1170, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1171, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1172, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1173, o is ImplementAllInterfaceC<int>, false);
- Eval(1174, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1169, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1170, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1171, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1172, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1173, o is ImplementAllInterfaceC<int>, false);
+// Eval(1174, o is ImplementAllInterfaceC<int>[], false);
Eval(1175, o is SealedClass, false);
Eval(1176, o is SealedClass[], false);
}
@@ -1183,26 +1183,26 @@ internal class Program
Eval(1182, o is NotEmptyStruct[], false);
Eval(1183, o is NotEmptyStruct?, true);
Eval(1184, o is NotEmptyStruct?[], false);
- Eval(1185, o is EmptyStructGen<int>, false);
- Eval(1186, o is EmptyStructGen<int>[], false);
- Eval(1187, o is EmptyStructGen<int>?, false);
- Eval(1188, o is EmptyStructGen<int>?[], false);
- Eval(1189, o is NotEmptyStructGen<Guid>, false);
- Eval(1190, o is NotEmptyStructGen<Guid>[], false);
- Eval(1191, o is NotEmptyStructGen<Guid>?, false);
- Eval(1192, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1193, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1194, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1195, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1196, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1185, o is EmptyStructGen<int>, false);
+// Eval(1186, o is EmptyStructGen<int>[], false);
+// Eval(1187, o is EmptyStructGen<int>?, false);
+// Eval(1188, o is EmptyStructGen<int>?[], false);
+// Eval(1189, o is NotEmptyStructGen<Guid>, false);
+// Eval(1190, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1191, o is NotEmptyStructGen<Guid>?, false);
+// Eval(1192, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1193, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1194, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1195, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1196, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1197, o is NestedStruct, false);
Eval(1198, o is NestedStruct[], false);
Eval(1199, o is NestedStruct?, false);
Eval(1200, o is NestedStruct?[], false);
- Eval(1201, o is NestedStructGen<Decimal>, false);
- Eval(1202, o is NestedStructGen<Decimal>[], false);
- Eval(1203, o is NestedStructGen<Decimal>?, false);
- Eval(1204, o is NestedStructGen<Decimal>?[], false);
+// Eval(1201, o is NestedStructGen<Decimal>, false);
+// Eval(1202, o is NestedStructGen<Decimal>[], false);
+// Eval(1203, o is NestedStructGen<Decimal>?, false);
+// Eval(1204, o is NestedStructGen<Decimal>?[], false);
Eval(1205, o is ExplicitFieldOffsetStruct, false);
Eval(1206, o is ExplicitFieldOffsetStruct[], false);
Eval(1207, o is ExplicitFieldOffsetStruct?, false);
@@ -1219,18 +1219,18 @@ internal class Program
Eval(1226, o is ImplementTwoInterface[], false);
Eval(1227, o is ImplementTwoInterface?, false);
Eval(1228, o is ImplementTwoInterface?[], false);
- Eval(1229, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1230, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1231, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1232, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1233, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1234, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1235, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1236, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1237, o is ImplementAllInterface<int>, false);
- Eval(1238, o is ImplementAllInterface<int>[], false);
- Eval(1239, o is ImplementAllInterface<int>?, false);
- Eval(1240, o is ImplementAllInterface<int>?[], false);
+// Eval(1229, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1230, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1231, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1232, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1233, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1234, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1235, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1236, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1237, o is ImplementAllInterface<int>, false);
+// Eval(1238, o is ImplementAllInterface<int>[], false);
+// Eval(1239, o is ImplementAllInterface<int>?, false);
+// Eval(1240, o is ImplementAllInterface<int>?[], false);
Eval(1241, o is IntE, false);
Eval(1242, o is IntE[], false);
Eval(1243, o is IntE?, false);
@@ -1329,38 +1329,38 @@ internal class Program
Eval(1336, o is IEmpty[], false);
Eval(1337, o is INotEmpty, false);
Eval(1338, o is INotEmpty[], false);
- Eval(1339, o is IEmptyGen<int>, false);
- Eval(1340, o is IEmptyGen<int>[], false);
- Eval(1341, o is INotEmptyGen<int>, false);
- Eval(1342, o is INotEmptyGen<int>[], false);
+// Eval(1339, o is IEmptyGen<int>, false);
+// Eval(1340, o is IEmptyGen<int>[], false);
+// Eval(1341, o is INotEmptyGen<int>, false);
+// Eval(1342, o is INotEmptyGen<int>[], false);
Eval(1343, o is SimpleDelegate, false);
Eval(1344, o is SimpleDelegate[], false);
- Eval(1345, o is GenericDelegate<int>, false);
- Eval(1346, o is GenericDelegate<int>[], false);
+// Eval(1345, o is GenericDelegate<int>, false);
+// Eval(1346, o is GenericDelegate<int>[], false);
Eval(1347, o is EmptyClass, false);
Eval(1348, o is EmptyClass[], false);
Eval(1349, o is NotEmptyClass, false);
Eval(1350, o is NotEmptyClass[], false);
- Eval(1351, o is EmptyClassGen<int>, false);
- Eval(1352, o is EmptyClassGen<int>[], false);
- Eval(1353, o is NotEmptyClassGen<Guid>, false);
- Eval(1354, o is NotEmptyClassGen<Guid>[], false);
- Eval(1355, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1356, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1351, o is EmptyClassGen<int>, false);
+// Eval(1352, o is EmptyClassGen<int>[], false);
+// Eval(1353, o is NotEmptyClassGen<Guid>, false);
+// Eval(1354, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1355, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1356, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1357, o is NestedClass, false);
Eval(1358, o is NestedClass[], false);
- Eval(1359, o is NestedClassGen<Decimal>, false);
- Eval(1360, o is NestedClassGen<Decimal>[], false);
+// Eval(1359, o is NestedClassGen<Decimal>, false);
+// Eval(1360, o is NestedClassGen<Decimal>[], false);
Eval(1361, o is ImplementOneInterfaceC, false);
Eval(1362, o is ImplementOneInterfaceC[], false);
Eval(1363, o is ImplementTwoInterfaceC, false);
Eval(1364, o is ImplementTwoInterfaceC[], false);
- Eval(1365, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1366, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1367, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1368, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1369, o is ImplementAllInterfaceC<int>, false);
- Eval(1370, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1365, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1366, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1367, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1368, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1369, o is ImplementAllInterfaceC<int>, false);
+// Eval(1370, o is ImplementAllInterfaceC<int>[], false);
Eval(1371, o is SealedClass, false);
Eval(1372, o is SealedClass[], false);
}
@@ -1375,26 +1375,26 @@ internal class Program
Eval(1378, o is NotEmptyStruct[], false);
Eval(1379, o is NotEmptyStruct?, false);
Eval(1380, o is NotEmptyStruct?[], false);
- Eval(1381, o is EmptyStructGen<int>, false);
- Eval(1382, o is EmptyStructGen<int>[], false);
- Eval(1383, o is EmptyStructGen<int>?, false);
- Eval(1384, o is EmptyStructGen<int>?[], false);
- Eval(1385, o is NotEmptyStructGen<Guid>, false);
- Eval(1386, o is NotEmptyStructGen<Guid>[], false);
- Eval(1387, o is NotEmptyStructGen<Guid>?, false);
- Eval(1388, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1389, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1390, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1391, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1392, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1381, o is EmptyStructGen<int>, false);
+// Eval(1382, o is EmptyStructGen<int>[], false);
+// Eval(1383, o is EmptyStructGen<int>?, false);
+// Eval(1384, o is EmptyStructGen<int>?[], false);
+// Eval(1385, o is NotEmptyStructGen<Guid>, false);
+// Eval(1386, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1387, o is NotEmptyStructGen<Guid>?, false);
+// Eval(1388, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1389, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1390, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1391, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1392, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1393, o is NestedStruct, false);
Eval(1394, o is NestedStruct[], false);
Eval(1395, o is NestedStruct?, false);
Eval(1396, o is NestedStruct?[], false);
- Eval(1397, o is NestedStructGen<Decimal>, false);
- Eval(1398, o is NestedStructGen<Decimal>[], false);
- Eval(1399, o is NestedStructGen<Decimal>?, false);
- Eval(1400, o is NestedStructGen<Decimal>?[], false);
+// Eval(1397, o is NestedStructGen<Decimal>, false);
+// Eval(1398, o is NestedStructGen<Decimal>[], false);
+// Eval(1399, o is NestedStructGen<Decimal>?, false);
+// Eval(1400, o is NestedStructGen<Decimal>?[], false);
Eval(1401, o is ExplicitFieldOffsetStruct, false);
Eval(1402, o is ExplicitFieldOffsetStruct[], false);
Eval(1403, o is ExplicitFieldOffsetStruct?, false);
@@ -1411,18 +1411,18 @@ internal class Program
Eval(1422, o is ImplementTwoInterface[], false);
Eval(1423, o is ImplementTwoInterface?, false);
Eval(1424, o is ImplementTwoInterface?[], false);
- Eval(1425, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1426, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1427, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1428, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1429, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1430, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1431, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1432, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1433, o is ImplementAllInterface<int>, false);
- Eval(1434, o is ImplementAllInterface<int>[], false);
- Eval(1435, o is ImplementAllInterface<int>?, false);
- Eval(1436, o is ImplementAllInterface<int>?[], false);
+// Eval(1425, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1426, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1427, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1428, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1429, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1430, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1431, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1432, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1433, o is ImplementAllInterface<int>, false);
+// Eval(1434, o is ImplementAllInterface<int>[], false);
+// Eval(1435, o is ImplementAllInterface<int>?, false);
+// Eval(1436, o is ImplementAllInterface<int>?[], false);
Eval(1437, o is IntE, false);
Eval(1438, o is IntE[], false);
Eval(1439, o is IntE?, false);
@@ -1521,38 +1521,38 @@ internal class Program
Eval(1532, o is IEmpty[], false);
Eval(1533, o is INotEmpty, false);
Eval(1534, o is INotEmpty[], false);
- Eval(1535, o is IEmptyGen<int>, false);
- Eval(1536, o is IEmptyGen<int>[], false);
- Eval(1537, o is INotEmptyGen<int>, false);
- Eval(1538, o is INotEmptyGen<int>[], false);
+// Eval(1535, o is IEmptyGen<int>, false);
+// Eval(1536, o is IEmptyGen<int>[], false);
+// Eval(1537, o is INotEmptyGen<int>, false);
+// Eval(1538, o is INotEmptyGen<int>[], false);
Eval(1539, o is SimpleDelegate, false);
Eval(1540, o is SimpleDelegate[], false);
- Eval(1541, o is GenericDelegate<int>, false);
- Eval(1542, o is GenericDelegate<int>[], false);
+// Eval(1541, o is GenericDelegate<int>, false);
+// Eval(1542, o is GenericDelegate<int>[], false);
Eval(1543, o is EmptyClass, false);
Eval(1544, o is EmptyClass[], false);
Eval(1545, o is NotEmptyClass, false);
Eval(1546, o is NotEmptyClass[], false);
- Eval(1547, o is EmptyClassGen<int>, false);
- Eval(1548, o is EmptyClassGen<int>[], false);
- Eval(1549, o is NotEmptyClassGen<Guid>, false);
- Eval(1550, o is NotEmptyClassGen<Guid>[], false);
- Eval(1551, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1552, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1547, o is EmptyClassGen<int>, false);
+// Eval(1548, o is EmptyClassGen<int>[], false);
+// Eval(1549, o is NotEmptyClassGen<Guid>, false);
+// Eval(1550, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1551, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1552, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1553, o is NestedClass, false);
Eval(1554, o is NestedClass[], false);
- Eval(1555, o is NestedClassGen<Decimal>, false);
- Eval(1556, o is NestedClassGen<Decimal>[], false);
+// Eval(1555, o is NestedClassGen<Decimal>, false);
+// Eval(1556, o is NestedClassGen<Decimal>[], false);
Eval(1557, o is ImplementOneInterfaceC, false);
Eval(1558, o is ImplementOneInterfaceC[], false);
Eval(1559, o is ImplementTwoInterfaceC, false);
Eval(1560, o is ImplementTwoInterfaceC[], false);
- Eval(1561, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1562, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1563, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1564, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1565, o is ImplementAllInterfaceC<int>, false);
- Eval(1566, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1561, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1562, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1563, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1564, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1565, o is ImplementAllInterfaceC<int>, false);
+// Eval(1566, o is ImplementAllInterfaceC<int>[], false);
Eval(1567, o is SealedClass, false);
Eval(1568, o is SealedClass[], false);
}
@@ -1567,26 +1567,26 @@ internal class Program
Eval(1574, o is NotEmptyStruct[], false);
Eval(1575, o is NotEmptyStruct?, false);
Eval(1576, o is NotEmptyStruct?[], false);
- Eval(1577, o is EmptyStructGen<int>, false);
- Eval(1578, o is EmptyStructGen<int>[], false);
- Eval(1579, o is EmptyStructGen<int>?, false);
- Eval(1580, o is EmptyStructGen<int>?[], false);
- Eval(1581, o is NotEmptyStructGen<Guid>, false);
- Eval(1582, o is NotEmptyStructGen<Guid>[], false);
- Eval(1583, o is NotEmptyStructGen<Guid>?, false);
- Eval(1584, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1585, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1586, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1587, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1588, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1577, o is EmptyStructGen<int>, false);
+// Eval(1578, o is EmptyStructGen<int>[], false);
+// Eval(1579, o is EmptyStructGen<int>?, false);
+// Eval(1580, o is EmptyStructGen<int>?[], false);
+// Eval(1581, o is NotEmptyStructGen<Guid>, false);
+// Eval(1582, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1583, o is NotEmptyStructGen<Guid>?, false);
+// Eval(1584, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1585, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1586, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1587, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1588, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1589, o is NestedStruct, false);
Eval(1590, o is NestedStruct[], false);
Eval(1591, o is NestedStruct?, false);
Eval(1592, o is NestedStruct?[], false);
- Eval(1593, o is NestedStructGen<Decimal>, false);
- Eval(1594, o is NestedStructGen<Decimal>[], false);
- Eval(1595, o is NestedStructGen<Decimal>?, false);
- Eval(1596, o is NestedStructGen<Decimal>?[], false);
+// Eval(1593, o is NestedStructGen<Decimal>, false);
+// Eval(1594, o is NestedStructGen<Decimal>[], false);
+// Eval(1595, o is NestedStructGen<Decimal>?, false);
+// Eval(1596, o is NestedStructGen<Decimal>?[], false);
Eval(1597, o is ExplicitFieldOffsetStruct, false);
Eval(1598, o is ExplicitFieldOffsetStruct[], false);
Eval(1599, o is ExplicitFieldOffsetStruct?, false);
@@ -1603,18 +1603,18 @@ internal class Program
Eval(1618, o is ImplementTwoInterface[], false);
Eval(1619, o is ImplementTwoInterface?, false);
Eval(1620, o is ImplementTwoInterface?[], false);
- Eval(1621, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1622, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1623, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1624, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1625, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1626, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1627, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1628, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1629, o is ImplementAllInterface<int>, false);
- Eval(1630, o is ImplementAllInterface<int>[], false);
- Eval(1631, o is ImplementAllInterface<int>?, false);
- Eval(1632, o is ImplementAllInterface<int>?[], false);
+// Eval(1621, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1622, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1623, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1624, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1625, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1626, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1627, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1628, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1629, o is ImplementAllInterface<int>, false);
+// Eval(1630, o is ImplementAllInterface<int>[], false);
+// Eval(1631, o is ImplementAllInterface<int>?, false);
+// Eval(1632, o is ImplementAllInterface<int>?[], false);
Eval(1633, o is IntE, false);
Eval(1634, o is IntE[], false);
Eval(1635, o is IntE?, false);
@@ -1713,38 +1713,38 @@ internal class Program
Eval(1728, o is IEmpty[], false);
Eval(1729, o is INotEmpty, false);
Eval(1730, o is INotEmpty[], false);
- Eval(1731, o is IEmptyGen<int>, false);
- Eval(1732, o is IEmptyGen<int>[], false);
- Eval(1733, o is INotEmptyGen<int>, false);
- Eval(1734, o is INotEmptyGen<int>[], false);
+// Eval(1731, o is IEmptyGen<int>, false);
+// Eval(1732, o is IEmptyGen<int>[], false);
+// Eval(1733, o is INotEmptyGen<int>, false);
+// Eval(1734, o is INotEmptyGen<int>[], false);
Eval(1735, o is SimpleDelegate, false);
Eval(1736, o is SimpleDelegate[], false);
- Eval(1737, o is GenericDelegate<int>, false);
- Eval(1738, o is GenericDelegate<int>[], false);
+// Eval(1737, o is GenericDelegate<int>, false);
+// Eval(1738, o is GenericDelegate<int>[], false);
Eval(1739, o is EmptyClass, false);
Eval(1740, o is EmptyClass[], false);
Eval(1741, o is NotEmptyClass, false);
Eval(1742, o is NotEmptyClass[], false);
- Eval(1743, o is EmptyClassGen<int>, false);
- Eval(1744, o is EmptyClassGen<int>[], false);
- Eval(1745, o is NotEmptyClassGen<Guid>, false);
- Eval(1746, o is NotEmptyClassGen<Guid>[], false);
- Eval(1747, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1748, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1743, o is EmptyClassGen<int>, false);
+// Eval(1744, o is EmptyClassGen<int>[], false);
+// Eval(1745, o is NotEmptyClassGen<Guid>, false);
+// Eval(1746, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1747, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1748, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1749, o is NestedClass, false);
Eval(1750, o is NestedClass[], false);
- Eval(1751, o is NestedClassGen<Decimal>, false);
- Eval(1752, o is NestedClassGen<Decimal>[], false);
+// Eval(1751, o is NestedClassGen<Decimal>, false);
+// Eval(1752, o is NestedClassGen<Decimal>[], false);
Eval(1753, o is ImplementOneInterfaceC, false);
Eval(1754, o is ImplementOneInterfaceC[], false);
Eval(1755, o is ImplementTwoInterfaceC, false);
Eval(1756, o is ImplementTwoInterfaceC[], false);
- Eval(1757, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1758, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1759, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1760, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1761, o is ImplementAllInterfaceC<int>, false);
- Eval(1762, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1757, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1758, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1759, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1760, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1761, o is ImplementAllInterfaceC<int>, false);
+// Eval(1762, o is ImplementAllInterfaceC<int>[], false);
Eval(1763, o is SealedClass, false);
Eval(1764, o is SealedClass[], false);
}
@@ -1759,26 +1759,26 @@ internal class Program
Eval(1770, o is NotEmptyStruct[], false);
Eval(1771, o is NotEmptyStruct?, false);
Eval(1772, o is NotEmptyStruct?[], true);
- Eval(1773, o is EmptyStructGen<int>, false);
- Eval(1774, o is EmptyStructGen<int>[], false);
- Eval(1775, o is EmptyStructGen<int>?, false);
- Eval(1776, o is EmptyStructGen<int>?[], false);
- Eval(1777, o is NotEmptyStructGen<Guid>, false);
- Eval(1778, o is NotEmptyStructGen<Guid>[], false);
- Eval(1779, o is NotEmptyStructGen<Guid>?, false);
- Eval(1780, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1781, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1782, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1783, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1784, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1773, o is EmptyStructGen<int>, false);
+// Eval(1774, o is EmptyStructGen<int>[], false);
+// Eval(1775, o is EmptyStructGen<int>?, false);
+// Eval(1776, o is EmptyStructGen<int>?[], false);
+// Eval(1777, o is NotEmptyStructGen<Guid>, false);
+// Eval(1778, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1779, o is NotEmptyStructGen<Guid>?, false);
+// Eval(1780, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1781, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1782, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1783, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1784, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1785, o is NestedStruct, false);
Eval(1786, o is NestedStruct[], false);
Eval(1787, o is NestedStruct?, false);
Eval(1788, o is NestedStruct?[], false);
- Eval(1789, o is NestedStructGen<Decimal>, false);
- Eval(1790, o is NestedStructGen<Decimal>[], false);
- Eval(1791, o is NestedStructGen<Decimal>?, false);
- Eval(1792, o is NestedStructGen<Decimal>?[], false);
+// Eval(1789, o is NestedStructGen<Decimal>, false);
+// Eval(1790, o is NestedStructGen<Decimal>[], false);
+// Eval(1791, o is NestedStructGen<Decimal>?, false);
+// Eval(1792, o is NestedStructGen<Decimal>?[], false);
Eval(1793, o is ExplicitFieldOffsetStruct, false);
Eval(1794, o is ExplicitFieldOffsetStruct[], false);
Eval(1795, o is ExplicitFieldOffsetStruct?, false);
@@ -1795,18 +1795,18 @@ internal class Program
Eval(1814, o is ImplementTwoInterface[], false);
Eval(1815, o is ImplementTwoInterface?, false);
Eval(1816, o is ImplementTwoInterface?[], false);
- Eval(1817, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1818, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1819, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1820, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1821, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1822, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1823, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1824, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1825, o is ImplementAllInterface<int>, false);
- Eval(1826, o is ImplementAllInterface<int>[], false);
- Eval(1827, o is ImplementAllInterface<int>?, false);
- Eval(1828, o is ImplementAllInterface<int>?[], false);
+// Eval(1817, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1818, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1819, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1820, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1821, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1822, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1823, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1824, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1825, o is ImplementAllInterface<int>, false);
+// Eval(1826, o is ImplementAllInterface<int>[], false);
+// Eval(1827, o is ImplementAllInterface<int>?, false);
+// Eval(1828, o is ImplementAllInterface<int>?[], false);
Eval(1829, o is IntE, false);
Eval(1830, o is IntE[], false);
Eval(1831, o is IntE?, false);
@@ -1905,38 +1905,38 @@ internal class Program
Eval(1924, o is IEmpty[], false);
Eval(1925, o is INotEmpty, false);
Eval(1926, o is INotEmpty[], false);
- Eval(1927, o is IEmptyGen<int>, false);
- Eval(1928, o is IEmptyGen<int>[], false);
- Eval(1929, o is INotEmptyGen<int>, false);
- Eval(1930, o is INotEmptyGen<int>[], false);
+// Eval(1927, o is IEmptyGen<int>, false);
+// Eval(1928, o is IEmptyGen<int>[], false);
+// Eval(1929, o is INotEmptyGen<int>, false);
+// Eval(1930, o is INotEmptyGen<int>[], false);
Eval(1931, o is SimpleDelegate, false);
Eval(1932, o is SimpleDelegate[], false);
- Eval(1933, o is GenericDelegate<int>, false);
- Eval(1934, o is GenericDelegate<int>[], false);
+// Eval(1933, o is GenericDelegate<int>, false);
+// Eval(1934, o is GenericDelegate<int>[], false);
Eval(1935, o is EmptyClass, false);
Eval(1936, o is EmptyClass[], false);
Eval(1937, o is NotEmptyClass, false);
Eval(1938, o is NotEmptyClass[], false);
- Eval(1939, o is EmptyClassGen<int>, false);
- Eval(1940, o is EmptyClassGen<int>[], false);
- Eval(1941, o is NotEmptyClassGen<Guid>, false);
- Eval(1942, o is NotEmptyClassGen<Guid>[], false);
- Eval(1943, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1944, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1939, o is EmptyClassGen<int>, false);
+// Eval(1940, o is EmptyClassGen<int>[], false);
+// Eval(1941, o is NotEmptyClassGen<Guid>, false);
+// Eval(1942, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1943, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1944, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1945, o is NestedClass, false);
Eval(1946, o is NestedClass[], false);
- Eval(1947, o is NestedClassGen<Decimal>, false);
- Eval(1948, o is NestedClassGen<Decimal>[], false);
+// Eval(1947, o is NestedClassGen<Decimal>, false);
+// Eval(1948, o is NestedClassGen<Decimal>[], false);
Eval(1949, o is ImplementOneInterfaceC, false);
Eval(1950, o is ImplementOneInterfaceC[], false);
Eval(1951, o is ImplementTwoInterfaceC, false);
Eval(1952, o is ImplementTwoInterfaceC[], false);
- Eval(1953, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1954, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1955, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1956, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1957, o is ImplementAllInterfaceC<int>, false);
- Eval(1958, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1953, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1954, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1955, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1956, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1957, o is ImplementAllInterfaceC<int>, false);
+// Eval(1958, o is ImplementAllInterfaceC<int>[], false);
Eval(1959, o is SealedClass, false);
Eval(1960, o is SealedClass[], false);
}
@@ -1954,26 +1954,26 @@ internal class Program
Eval(1966, o is NotEmptyStruct[], false);
Eval(1967, o is NotEmptyStruct?, false);
Eval(1968, o is NotEmptyStruct?[], false);
- Eval(1969, o is EmptyStructGen<int>, true);
- Eval(1970, o is EmptyStructGen<int>[], false);
- Eval(1971, o is EmptyStructGen<int>?, true);
- Eval(1972, o is EmptyStructGen<int>?[], false);
- Eval(1973, o is NotEmptyStructGen<Guid>, false);
- Eval(1974, o is NotEmptyStructGen<Guid>[], false);
- Eval(1975, o is NotEmptyStructGen<Guid>?, false);
- Eval(1976, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1977, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1978, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1979, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1980, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1969, o is EmptyStructGen<int>, true);
+// Eval(1970, o is EmptyStructGen<int>[], false);
+// Eval(1971, o is EmptyStructGen<int>?, true);
+// Eval(1972, o is EmptyStructGen<int>?[], false);
+// Eval(1973, o is NotEmptyStructGen<Guid>, false);
+// Eval(1974, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1975, o is NotEmptyStructGen<Guid>?, false);
+// Eval(1976, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1977, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1978, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1979, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1980, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1981, o is NestedStruct, false);
Eval(1982, o is NestedStruct[], false);
Eval(1983, o is NestedStruct?, false);
Eval(1984, o is NestedStruct?[], false);
- Eval(1985, o is NestedStructGen<Decimal>, false);
- Eval(1986, o is NestedStructGen<Decimal>[], false);
- Eval(1987, o is NestedStructGen<Decimal>?, false);
- Eval(1988, o is NestedStructGen<Decimal>?[], false);
+// Eval(1985, o is NestedStructGen<Decimal>, false);
+// Eval(1986, o is NestedStructGen<Decimal>[], false);
+// Eval(1987, o is NestedStructGen<Decimal>?, false);
+// Eval(1988, o is NestedStructGen<Decimal>?[], false);
Eval(1989, o is ExplicitFieldOffsetStruct, false);
Eval(1990, o is ExplicitFieldOffsetStruct[], false);
Eval(1991, o is ExplicitFieldOffsetStruct?, false);
@@ -1990,18 +1990,18 @@ internal class Program
Eval(2010, o is ImplementTwoInterface[], false);
Eval(2011, o is ImplementTwoInterface?, false);
Eval(2012, o is ImplementTwoInterface?[], false);
- Eval(2013, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2014, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2015, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2016, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2017, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2018, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2019, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2020, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2021, o is ImplementAllInterface<int>, false);
- Eval(2022, o is ImplementAllInterface<int>[], false);
- Eval(2023, o is ImplementAllInterface<int>?, false);
- Eval(2024, o is ImplementAllInterface<int>?[], false);
+// Eval(2013, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2014, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2015, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2016, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2017, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2018, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2019, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2020, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2021, o is ImplementAllInterface<int>, false);
+// Eval(2022, o is ImplementAllInterface<int>[], false);
+// Eval(2023, o is ImplementAllInterface<int>?, false);
+// Eval(2024, o is ImplementAllInterface<int>?[], false);
Eval(2025, o is IntE, false);
Eval(2026, o is IntE[], false);
Eval(2027, o is IntE?, false);
@@ -2100,38 +2100,38 @@ internal class Program
Eval(2120, o is IEmpty[], false);
Eval(2121, o is INotEmpty, false);
Eval(2122, o is INotEmpty[], false);
- Eval(2123, o is IEmptyGen<int>, false);
- Eval(2124, o is IEmptyGen<int>[], false);
- Eval(2125, o is INotEmptyGen<int>, false);
- Eval(2126, o is INotEmptyGen<int>[], false);
+// Eval(2123, o is IEmptyGen<int>, false);
+// Eval(2124, o is IEmptyGen<int>[], false);
+// Eval(2125, o is INotEmptyGen<int>, false);
+// Eval(2126, o is INotEmptyGen<int>[], false);
Eval(2127, o is SimpleDelegate, false);
Eval(2128, o is SimpleDelegate[], false);
- Eval(2129, o is GenericDelegate<int>, false);
- Eval(2130, o is GenericDelegate<int>[], false);
+// Eval(2129, o is GenericDelegate<int>, false);
+// Eval(2130, o is GenericDelegate<int>[], false);
Eval(2131, o is EmptyClass, false);
Eval(2132, o is EmptyClass[], false);
Eval(2133, o is NotEmptyClass, false);
Eval(2134, o is NotEmptyClass[], false);
- Eval(2135, o is EmptyClassGen<int>, false);
- Eval(2136, o is EmptyClassGen<int>[], false);
- Eval(2137, o is NotEmptyClassGen<Guid>, false);
- Eval(2138, o is NotEmptyClassGen<Guid>[], false);
- Eval(2139, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2140, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2135, o is EmptyClassGen<int>, false);
+// Eval(2136, o is EmptyClassGen<int>[], false);
+// Eval(2137, o is NotEmptyClassGen<Guid>, false);
+// Eval(2138, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2139, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2140, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2141, o is NestedClass, false);
Eval(2142, o is NestedClass[], false);
- Eval(2143, o is NestedClassGen<Decimal>, false);
- Eval(2144, o is NestedClassGen<Decimal>[], false);
+// Eval(2143, o is NestedClassGen<Decimal>, false);
+// Eval(2144, o is NestedClassGen<Decimal>[], false);
Eval(2145, o is ImplementOneInterfaceC, false);
Eval(2146, o is ImplementOneInterfaceC[], false);
Eval(2147, o is ImplementTwoInterfaceC, false);
Eval(2148, o is ImplementTwoInterfaceC[], false);
- Eval(2149, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2150, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2151, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2152, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2153, o is ImplementAllInterfaceC<int>, false);
- Eval(2154, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2149, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2150, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2151, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2152, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2153, o is ImplementAllInterfaceC<int>, false);
+// Eval(2154, o is ImplementAllInterfaceC<int>[], false);
Eval(2155, o is SealedClass, false);
Eval(2156, o is SealedClass[], false);
}
@@ -2146,26 +2146,26 @@ internal class Program
Eval(2162, o is NotEmptyStruct[], false);
Eval(2163, o is NotEmptyStruct?, false);
Eval(2164, o is NotEmptyStruct?[], false);
- Eval(2165, o is EmptyStructGen<int>, true);
- Eval(2166, o is EmptyStructGen<int>[], false);
- Eval(2167, o is EmptyStructGen<int>?, true);
- Eval(2168, o is EmptyStructGen<int>?[], false);
- Eval(2169, o is NotEmptyStructGen<Guid>, false);
- Eval(2170, o is NotEmptyStructGen<Guid>[], false);
- Eval(2171, o is NotEmptyStructGen<Guid>?, false);
- Eval(2172, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2173, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2174, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2175, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2176, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2165, o is EmptyStructGen<int>, true);
+// Eval(2166, o is EmptyStructGen<int>[], false);
+// Eval(2167, o is EmptyStructGen<int>?, true);
+// Eval(2168, o is EmptyStructGen<int>?[], false);
+// Eval(2169, o is NotEmptyStructGen<Guid>, false);
+// Eval(2170, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2171, o is NotEmptyStructGen<Guid>?, false);
+// Eval(2172, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2173, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2174, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2175, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2176, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2177, o is NestedStruct, false);
Eval(2178, o is NestedStruct[], false);
Eval(2179, o is NestedStruct?, false);
Eval(2180, o is NestedStruct?[], false);
- Eval(2181, o is NestedStructGen<Decimal>, false);
- Eval(2182, o is NestedStructGen<Decimal>[], false);
- Eval(2183, o is NestedStructGen<Decimal>?, false);
- Eval(2184, o is NestedStructGen<Decimal>?[], false);
+// Eval(2181, o is NestedStructGen<Decimal>, false);
+// Eval(2182, o is NestedStructGen<Decimal>[], false);
+// Eval(2183, o is NestedStructGen<Decimal>?, false);
+// Eval(2184, o is NestedStructGen<Decimal>?[], false);
Eval(2185, o is ExplicitFieldOffsetStruct, false);
Eval(2186, o is ExplicitFieldOffsetStruct[], false);
Eval(2187, o is ExplicitFieldOffsetStruct?, false);
@@ -2182,18 +2182,18 @@ internal class Program
Eval(2206, o is ImplementTwoInterface[], false);
Eval(2207, o is ImplementTwoInterface?, false);
Eval(2208, o is ImplementTwoInterface?[], false);
- Eval(2209, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2210, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2211, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2212, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2213, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2214, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2215, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2216, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2217, o is ImplementAllInterface<int>, false);
- Eval(2218, o is ImplementAllInterface<int>[], false);
- Eval(2219, o is ImplementAllInterface<int>?, false);
- Eval(2220, o is ImplementAllInterface<int>?[], false);
+// Eval(2209, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2210, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2211, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2212, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2213, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2214, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2215, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2216, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2217, o is ImplementAllInterface<int>, false);
+// Eval(2218, o is ImplementAllInterface<int>[], false);
+// Eval(2219, o is ImplementAllInterface<int>?, false);
+// Eval(2220, o is ImplementAllInterface<int>?[], false);
Eval(2221, o is IntE, false);
Eval(2222, o is IntE[], false);
Eval(2223, o is IntE?, false);
@@ -2292,38 +2292,38 @@ internal class Program
Eval(2316, o is IEmpty[], false);
Eval(2317, o is INotEmpty, false);
Eval(2318, o is INotEmpty[], false);
- Eval(2319, o is IEmptyGen<int>, false);
- Eval(2320, o is IEmptyGen<int>[], false);
- Eval(2321, o is INotEmptyGen<int>, false);
- Eval(2322, o is INotEmptyGen<int>[], false);
+// Eval(2319, o is IEmptyGen<int>, false);
+// Eval(2320, o is IEmptyGen<int>[], false);
+// Eval(2321, o is INotEmptyGen<int>, false);
+// Eval(2322, o is INotEmptyGen<int>[], false);
Eval(2323, o is SimpleDelegate, false);
Eval(2324, o is SimpleDelegate[], false);
- Eval(2325, o is GenericDelegate<int>, false);
- Eval(2326, o is GenericDelegate<int>[], false);
+// Eval(2325, o is GenericDelegate<int>, false);
+// Eval(2326, o is GenericDelegate<int>[], false);
Eval(2327, o is EmptyClass, false);
Eval(2328, o is EmptyClass[], false);
Eval(2329, o is NotEmptyClass, false);
Eval(2330, o is NotEmptyClass[], false);
- Eval(2331, o is EmptyClassGen<int>, false);
- Eval(2332, o is EmptyClassGen<int>[], false);
- Eval(2333, o is NotEmptyClassGen<Guid>, false);
- Eval(2334, o is NotEmptyClassGen<Guid>[], false);
- Eval(2335, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2336, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2331, o is EmptyClassGen<int>, false);
+// Eval(2332, o is EmptyClassGen<int>[], false);
+// Eval(2333, o is NotEmptyClassGen<Guid>, false);
+// Eval(2334, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2335, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2336, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2337, o is NestedClass, false);
Eval(2338, o is NestedClass[], false);
- Eval(2339, o is NestedClassGen<Decimal>, false);
- Eval(2340, o is NestedClassGen<Decimal>[], false);
+// Eval(2339, o is NestedClassGen<Decimal>, false);
+// Eval(2340, o is NestedClassGen<Decimal>[], false);
Eval(2341, o is ImplementOneInterfaceC, false);
Eval(2342, o is ImplementOneInterfaceC[], false);
Eval(2343, o is ImplementTwoInterfaceC, false);
Eval(2344, o is ImplementTwoInterfaceC[], false);
- Eval(2345, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2346, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2347, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2348, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2349, o is ImplementAllInterfaceC<int>, false);
- Eval(2350, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2345, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2346, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2347, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2348, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2349, o is ImplementAllInterfaceC<int>, false);
+// Eval(2350, o is ImplementAllInterfaceC<int>[], false);
Eval(2351, o is SealedClass, false);
Eval(2352, o is SealedClass[], false);
}
@@ -2338,26 +2338,26 @@ internal class Program
Eval(2358, o is NotEmptyStruct[], false);
Eval(2359, o is NotEmptyStruct?, false);
Eval(2360, o is NotEmptyStruct?[], false);
- Eval(2361, o is EmptyStructGen<int>, false);
- Eval(2362, o is EmptyStructGen<int>[], false);
- Eval(2363, o is EmptyStructGen<int>?, false);
- Eval(2364, o is EmptyStructGen<int>?[], false);
- Eval(2365, o is NotEmptyStructGen<Guid>, false);
- Eval(2366, o is NotEmptyStructGen<Guid>[], false);
- Eval(2367, o is NotEmptyStructGen<Guid>?, false);
- Eval(2368, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2369, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2370, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2371, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2372, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2361, o is EmptyStructGen<int>, false);
+// Eval(2362, o is EmptyStructGen<int>[], false);
+// Eval(2363, o is EmptyStructGen<int>?, false);
+// Eval(2364, o is EmptyStructGen<int>?[], false);
+// Eval(2365, o is NotEmptyStructGen<Guid>, false);
+// Eval(2366, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2367, o is NotEmptyStructGen<Guid>?, false);
+// Eval(2368, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2369, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2370, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2371, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2372, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2373, o is NestedStruct, false);
Eval(2374, o is NestedStruct[], false);
Eval(2375, o is NestedStruct?, false);
Eval(2376, o is NestedStruct?[], false);
- Eval(2377, o is NestedStructGen<Decimal>, false);
- Eval(2378, o is NestedStructGen<Decimal>[], false);
- Eval(2379, o is NestedStructGen<Decimal>?, false);
- Eval(2380, o is NestedStructGen<Decimal>?[], false);
+// Eval(2377, o is NestedStructGen<Decimal>, false);
+// Eval(2378, o is NestedStructGen<Decimal>[], false);
+// Eval(2379, o is NestedStructGen<Decimal>?, false);
+// Eval(2380, o is NestedStructGen<Decimal>?[], false);
Eval(2381, o is ExplicitFieldOffsetStruct, false);
Eval(2382, o is ExplicitFieldOffsetStruct[], false);
Eval(2383, o is ExplicitFieldOffsetStruct?, false);
@@ -2374,18 +2374,18 @@ internal class Program
Eval(2402, o is ImplementTwoInterface[], false);
Eval(2403, o is ImplementTwoInterface?, false);
Eval(2404, o is ImplementTwoInterface?[], false);
- Eval(2405, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2406, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2407, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2408, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2409, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2410, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2411, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2412, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2413, o is ImplementAllInterface<int>, false);
- Eval(2414, o is ImplementAllInterface<int>[], false);
- Eval(2415, o is ImplementAllInterface<int>?, false);
- Eval(2416, o is ImplementAllInterface<int>?[], false);
+// Eval(2405, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2406, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2407, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2408, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2409, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2410, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2411, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2412, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2413, o is ImplementAllInterface<int>, false);
+// Eval(2414, o is ImplementAllInterface<int>[], false);
+// Eval(2415, o is ImplementAllInterface<int>?, false);
+// Eval(2416, o is ImplementAllInterface<int>?[], false);
Eval(2417, o is IntE, false);
Eval(2418, o is IntE[], false);
Eval(2419, o is IntE?, false);
@@ -2484,38 +2484,38 @@ internal class Program
Eval(2512, o is IEmpty[], false);
Eval(2513, o is INotEmpty, false);
Eval(2514, o is INotEmpty[], false);
- Eval(2515, o is IEmptyGen<int>, false);
- Eval(2516, o is IEmptyGen<int>[], false);
- Eval(2517, o is INotEmptyGen<int>, false);
- Eval(2518, o is INotEmptyGen<int>[], false);
+// Eval(2515, o is IEmptyGen<int>, false);
+// Eval(2516, o is IEmptyGen<int>[], false);
+// Eval(2517, o is INotEmptyGen<int>, false);
+// Eval(2518, o is INotEmptyGen<int>[], false);
Eval(2519, o is SimpleDelegate, false);
Eval(2520, o is SimpleDelegate[], false);
- Eval(2521, o is GenericDelegate<int>, false);
- Eval(2522, o is GenericDelegate<int>[], false);
+// Eval(2521, o is GenericDelegate<int>, false);
+// Eval(2522, o is GenericDelegate<int>[], false);
Eval(2523, o is EmptyClass, false);
Eval(2524, o is EmptyClass[], false);
Eval(2525, o is NotEmptyClass, false);
Eval(2526, o is NotEmptyClass[], false);
- Eval(2527, o is EmptyClassGen<int>, false);
- Eval(2528, o is EmptyClassGen<int>[], false);
- Eval(2529, o is NotEmptyClassGen<Guid>, false);
- Eval(2530, o is NotEmptyClassGen<Guid>[], false);
- Eval(2531, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2532, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2527, o is EmptyClassGen<int>, false);
+// Eval(2528, o is EmptyClassGen<int>[], false);
+// Eval(2529, o is NotEmptyClassGen<Guid>, false);
+// Eval(2530, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2531, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2532, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2533, o is NestedClass, false);
Eval(2534, o is NestedClass[], false);
- Eval(2535, o is NestedClassGen<Decimal>, false);
- Eval(2536, o is NestedClassGen<Decimal>[], false);
+// Eval(2535, o is NestedClassGen<Decimal>, false);
+// Eval(2536, o is NestedClassGen<Decimal>[], false);
Eval(2537, o is ImplementOneInterfaceC, false);
Eval(2538, o is ImplementOneInterfaceC[], false);
Eval(2539, o is ImplementTwoInterfaceC, false);
Eval(2540, o is ImplementTwoInterfaceC[], false);
- Eval(2541, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2542, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2543, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2544, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2545, o is ImplementAllInterfaceC<int>, false);
- Eval(2546, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2541, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2542, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2543, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2544, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2545, o is ImplementAllInterfaceC<int>, false);
+// Eval(2546, o is ImplementAllInterfaceC<int>[], false);
Eval(2547, o is SealedClass, false);
Eval(2548, o is SealedClass[], false);
}
@@ -2530,26 +2530,26 @@ internal class Program
Eval(2554, o is NotEmptyStruct[], false);
Eval(2555, o is NotEmptyStruct?, false);
Eval(2556, o is NotEmptyStruct?[], false);
- Eval(2557, o is EmptyStructGen<int>, false);
- Eval(2558, o is EmptyStructGen<int>[], false);
- Eval(2559, o is EmptyStructGen<int>?, false);
- Eval(2560, o is EmptyStructGen<int>?[], false);
- Eval(2561, o is NotEmptyStructGen<Guid>, false);
- Eval(2562, o is NotEmptyStructGen<Guid>[], false);
- Eval(2563, o is NotEmptyStructGen<Guid>?, false);
- Eval(2564, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2565, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2566, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2567, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2568, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2557, o is EmptyStructGen<int>, false);
+// Eval(2558, o is EmptyStructGen<int>[], false);
+// Eval(2559, o is EmptyStructGen<int>?, false);
+// Eval(2560, o is EmptyStructGen<int>?[], false);
+// Eval(2561, o is NotEmptyStructGen<Guid>, false);
+// Eval(2562, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2563, o is NotEmptyStructGen<Guid>?, false);
+// Eval(2564, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2565, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2566, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2567, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2568, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2569, o is NestedStruct, false);
Eval(2570, o is NestedStruct[], false);
Eval(2571, o is NestedStruct?, false);
Eval(2572, o is NestedStruct?[], false);
- Eval(2573, o is NestedStructGen<Decimal>, false);
- Eval(2574, o is NestedStructGen<Decimal>[], false);
- Eval(2575, o is NestedStructGen<Decimal>?, false);
- Eval(2576, o is NestedStructGen<Decimal>?[], false);
+// Eval(2573, o is NestedStructGen<Decimal>, false);
+// Eval(2574, o is NestedStructGen<Decimal>[], false);
+// Eval(2575, o is NestedStructGen<Decimal>?, false);
+// Eval(2576, o is NestedStructGen<Decimal>?[], false);
Eval(2577, o is ExplicitFieldOffsetStruct, false);
Eval(2578, o is ExplicitFieldOffsetStruct[], false);
Eval(2579, o is ExplicitFieldOffsetStruct?, false);
@@ -2566,18 +2566,18 @@ internal class Program
Eval(2598, o is ImplementTwoInterface[], false);
Eval(2599, o is ImplementTwoInterface?, false);
Eval(2600, o is ImplementTwoInterface?[], false);
- Eval(2601, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2602, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2603, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2604, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2605, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2606, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2607, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2608, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2609, o is ImplementAllInterface<int>, false);
- Eval(2610, o is ImplementAllInterface<int>[], false);
- Eval(2611, o is ImplementAllInterface<int>?, false);
- Eval(2612, o is ImplementAllInterface<int>?[], false);
+// Eval(2601, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2602, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2603, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2604, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2605, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2606, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2607, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2608, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2609, o is ImplementAllInterface<int>, false);
+// Eval(2610, o is ImplementAllInterface<int>[], false);
+// Eval(2611, o is ImplementAllInterface<int>?, false);
+// Eval(2612, o is ImplementAllInterface<int>?[], false);
Eval(2613, o is IntE, false);
Eval(2614, o is IntE[], false);
Eval(2615, o is IntE?, false);
@@ -2676,38 +2676,38 @@ internal class Program
Eval(2708, o is IEmpty[], false);
Eval(2709, o is INotEmpty, false);
Eval(2710, o is INotEmpty[], false);
- Eval(2711, o is IEmptyGen<int>, false);
- Eval(2712, o is IEmptyGen<int>[], false);
- Eval(2713, o is INotEmptyGen<int>, false);
- Eval(2714, o is INotEmptyGen<int>[], false);
+// Eval(2711, o is IEmptyGen<int>, false);
+// Eval(2712, o is IEmptyGen<int>[], false);
+// Eval(2713, o is INotEmptyGen<int>, false);
+// Eval(2714, o is INotEmptyGen<int>[], false);
Eval(2715, o is SimpleDelegate, false);
Eval(2716, o is SimpleDelegate[], false);
- Eval(2717, o is GenericDelegate<int>, false);
- Eval(2718, o is GenericDelegate<int>[], false);
+// Eval(2717, o is GenericDelegate<int>, false);
+// Eval(2718, o is GenericDelegate<int>[], false);
Eval(2719, o is EmptyClass, false);
Eval(2720, o is EmptyClass[], false);
Eval(2721, o is NotEmptyClass, false);
Eval(2722, o is NotEmptyClass[], false);
- Eval(2723, o is EmptyClassGen<int>, false);
- Eval(2724, o is EmptyClassGen<int>[], false);
- Eval(2725, o is NotEmptyClassGen<Guid>, false);
- Eval(2726, o is NotEmptyClassGen<Guid>[], false);
- Eval(2727, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2728, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2723, o is EmptyClassGen<int>, false);
+// Eval(2724, o is EmptyClassGen<int>[], false);
+// Eval(2725, o is NotEmptyClassGen<Guid>, false);
+// Eval(2726, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2727, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2728, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2729, o is NestedClass, false);
Eval(2730, o is NestedClass[], false);
- Eval(2731, o is NestedClassGen<Decimal>, false);
- Eval(2732, o is NestedClassGen<Decimal>[], false);
+// Eval(2731, o is NestedClassGen<Decimal>, false);
+// Eval(2732, o is NestedClassGen<Decimal>[], false);
Eval(2733, o is ImplementOneInterfaceC, false);
Eval(2734, o is ImplementOneInterfaceC[], false);
Eval(2735, o is ImplementTwoInterfaceC, false);
Eval(2736, o is ImplementTwoInterfaceC[], false);
- Eval(2737, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2738, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2739, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2740, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2741, o is ImplementAllInterfaceC<int>, false);
- Eval(2742, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2737, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2738, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2739, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2740, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2741, o is ImplementAllInterfaceC<int>, false);
+// Eval(2742, o is ImplementAllInterfaceC<int>[], false);
Eval(2743, o is SealedClass, false);
Eval(2744, o is SealedClass[], false);
}
@@ -2722,26 +2722,26 @@ internal class Program
Eval(2750, o is NotEmptyStruct[], false);
Eval(2751, o is NotEmptyStruct?, false);
Eval(2752, o is NotEmptyStruct?[], false);
- Eval(2753, o is EmptyStructGen<int>, false);
- Eval(2754, o is EmptyStructGen<int>[], false);
- Eval(2755, o is EmptyStructGen<int>?, false);
- Eval(2756, o is EmptyStructGen<int>?[], true);
- Eval(2757, o is NotEmptyStructGen<Guid>, false);
- Eval(2758, o is NotEmptyStructGen<Guid>[], false);
- Eval(2759, o is NotEmptyStructGen<Guid>?, false);
- Eval(2760, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2761, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2762, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2763, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2764, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2753, o is EmptyStructGen<int>, false);
+// Eval(2754, o is EmptyStructGen<int>[], false);
+// Eval(2755, o is EmptyStructGen<int>?, false);
+// Eval(2756, o is EmptyStructGen<int>?[], true);
+// Eval(2757, o is NotEmptyStructGen<Guid>, false);
+// Eval(2758, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2759, o is NotEmptyStructGen<Guid>?, false);
+// Eval(2760, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2761, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2762, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2763, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2764, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2765, o is NestedStruct, false);
Eval(2766, o is NestedStruct[], false);
Eval(2767, o is NestedStruct?, false);
Eval(2768, o is NestedStruct?[], false);
- Eval(2769, o is NestedStructGen<Decimal>, false);
- Eval(2770, o is NestedStructGen<Decimal>[], false);
- Eval(2771, o is NestedStructGen<Decimal>?, false);
- Eval(2772, o is NestedStructGen<Decimal>?[], false);
+// Eval(2769, o is NestedStructGen<Decimal>, false);
+// Eval(2770, o is NestedStructGen<Decimal>[], false);
+// Eval(2771, o is NestedStructGen<Decimal>?, false);
+// Eval(2772, o is NestedStructGen<Decimal>?[], false);
Eval(2773, o is ExplicitFieldOffsetStruct, false);
Eval(2774, o is ExplicitFieldOffsetStruct[], false);
Eval(2775, o is ExplicitFieldOffsetStruct?, false);
@@ -2758,18 +2758,18 @@ internal class Program
Eval(2794, o is ImplementTwoInterface[], false);
Eval(2795, o is ImplementTwoInterface?, false);
Eval(2796, o is ImplementTwoInterface?[], false);
- Eval(2797, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2798, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2799, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2800, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2801, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2802, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2803, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2804, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2805, o is ImplementAllInterface<int>, false);
- Eval(2806, o is ImplementAllInterface<int>[], false);
- Eval(2807, o is ImplementAllInterface<int>?, false);
- Eval(2808, o is ImplementAllInterface<int>?[], false);
+// Eval(2797, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2798, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2799, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2800, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2801, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2802, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2803, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2804, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2805, o is ImplementAllInterface<int>, false);
+// Eval(2806, o is ImplementAllInterface<int>[], false);
+// Eval(2807, o is ImplementAllInterface<int>?, false);
+// Eval(2808, o is ImplementAllInterface<int>?[], false);
Eval(2809, o is IntE, false);
Eval(2810, o is IntE[], false);
Eval(2811, o is IntE?, false);
@@ -2868,38 +2868,38 @@ internal class Program
Eval(2904, o is IEmpty[], false);
Eval(2905, o is INotEmpty, false);
Eval(2906, o is INotEmpty[], false);
- Eval(2907, o is IEmptyGen<int>, false);
- Eval(2908, o is IEmptyGen<int>[], false);
- Eval(2909, o is INotEmptyGen<int>, false);
- Eval(2910, o is INotEmptyGen<int>[], false);
+// Eval(2907, o is IEmptyGen<int>, false);
+// Eval(2908, o is IEmptyGen<int>[], false);
+// Eval(2909, o is INotEmptyGen<int>, false);
+// Eval(2910, o is INotEmptyGen<int>[], false);
Eval(2911, o is SimpleDelegate, false);
Eval(2912, o is SimpleDelegate[], false);
- Eval(2913, o is GenericDelegate<int>, false);
- Eval(2914, o is GenericDelegate<int>[], false);
+// Eval(2913, o is GenericDelegate<int>, false);
+// Eval(2914, o is GenericDelegate<int>[], false);
Eval(2915, o is EmptyClass, false);
Eval(2916, o is EmptyClass[], false);
Eval(2917, o is NotEmptyClass, false);
Eval(2918, o is NotEmptyClass[], false);
- Eval(2919, o is EmptyClassGen<int>, false);
- Eval(2920, o is EmptyClassGen<int>[], false);
- Eval(2921, o is NotEmptyClassGen<Guid>, false);
- Eval(2922, o is NotEmptyClassGen<Guid>[], false);
- Eval(2923, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2924, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2919, o is EmptyClassGen<int>, false);
+// Eval(2920, o is EmptyClassGen<int>[], false);
+// Eval(2921, o is NotEmptyClassGen<Guid>, false);
+// Eval(2922, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2923, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2924, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2925, o is NestedClass, false);
Eval(2926, o is NestedClass[], false);
- Eval(2927, o is NestedClassGen<Decimal>, false);
- Eval(2928, o is NestedClassGen<Decimal>[], false);
+// Eval(2927, o is NestedClassGen<Decimal>, false);
+// Eval(2928, o is NestedClassGen<Decimal>[], false);
Eval(2929, o is ImplementOneInterfaceC, false);
Eval(2930, o is ImplementOneInterfaceC[], false);
Eval(2931, o is ImplementTwoInterfaceC, false);
Eval(2932, o is ImplementTwoInterfaceC[], false);
- Eval(2933, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2934, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2935, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2936, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2937, o is ImplementAllInterfaceC<int>, false);
- Eval(2938, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2933, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2934, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2935, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2936, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2937, o is ImplementAllInterfaceC<int>, false);
+// Eval(2938, o is ImplementAllInterfaceC<int>[], false);
Eval(2939, o is SealedClass, false);
Eval(2940, o is SealedClass[], false);
}
@@ -2917,26 +2917,26 @@ internal class Program
Eval(2946, o is NotEmptyStruct[], false);
Eval(2947, o is NotEmptyStruct?, false);
Eval(2948, o is NotEmptyStruct?[], false);
- Eval(2949, o is EmptyStructGen<int>, false);
- Eval(2950, o is EmptyStructGen<int>[], false);
- Eval(2951, o is EmptyStructGen<int>?, false);
- Eval(2952, o is EmptyStructGen<int>?[], false);
- Eval(2953, o is NotEmptyStructGen<Guid>, true);
- Eval(2954, o is NotEmptyStructGen<Guid>[], false);
- Eval(2955, o is NotEmptyStructGen<Guid>?, true);
- Eval(2956, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2957, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2958, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2959, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2960, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2949, o is EmptyStructGen<int>, false);
+// Eval(2950, o is EmptyStructGen<int>[], false);
+// Eval(2951, o is EmptyStructGen<int>?, false);
+// Eval(2952, o is EmptyStructGen<int>?[], false);
+// Eval(2953, o is NotEmptyStructGen<Guid>, true);
+// Eval(2954, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2955, o is NotEmptyStructGen<Guid>?, true);
+// Eval(2956, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2957, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2958, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2959, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2960, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2961, o is NestedStruct, false);
Eval(2962, o is NestedStruct[], false);
Eval(2963, o is NestedStruct?, false);
Eval(2964, o is NestedStruct?[], false);
- Eval(2965, o is NestedStructGen<Decimal>, false);
- Eval(2966, o is NestedStructGen<Decimal>[], false);
- Eval(2967, o is NestedStructGen<Decimal>?, false);
- Eval(2968, o is NestedStructGen<Decimal>?[], false);
+// Eval(2965, o is NestedStructGen<Decimal>, false);
+// Eval(2966, o is NestedStructGen<Decimal>[], false);
+// Eval(2967, o is NestedStructGen<Decimal>?, false);
+// Eval(2968, o is NestedStructGen<Decimal>?[], false);
Eval(2969, o is ExplicitFieldOffsetStruct, false);
Eval(2970, o is ExplicitFieldOffsetStruct[], false);
Eval(2971, o is ExplicitFieldOffsetStruct?, false);
@@ -2953,18 +2953,18 @@ internal class Program
Eval(2990, o is ImplementTwoInterface[], false);
Eval(2991, o is ImplementTwoInterface?, false);
Eval(2992, o is ImplementTwoInterface?[], false);
- Eval(2993, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2994, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2995, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2996, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2997, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2998, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2999, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3000, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3001, o is ImplementAllInterface<int>, false);
- Eval(3002, o is ImplementAllInterface<int>[], false);
- Eval(3003, o is ImplementAllInterface<int>?, false);
- Eval(3004, o is ImplementAllInterface<int>?[], false);
+// Eval(2993, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2994, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2995, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2996, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2997, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2998, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2999, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3000, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3001, o is ImplementAllInterface<int>, false);
+// Eval(3002, o is ImplementAllInterface<int>[], false);
+// Eval(3003, o is ImplementAllInterface<int>?, false);
+// Eval(3004, o is ImplementAllInterface<int>?[], false);
Eval(3005, o is IntE, false);
Eval(3006, o is IntE[], false);
Eval(3007, o is IntE?, false);
@@ -3063,38 +3063,38 @@ internal class Program
Eval(3100, o is IEmpty[], false);
Eval(3101, o is INotEmpty, false);
Eval(3102, o is INotEmpty[], false);
- Eval(3103, o is IEmptyGen<int>, false);
- Eval(3104, o is IEmptyGen<int>[], false);
- Eval(3105, o is INotEmptyGen<int>, false);
- Eval(3106, o is INotEmptyGen<int>[], false);
+// Eval(3103, o is IEmptyGen<int>, false);
+// Eval(3104, o is IEmptyGen<int>[], false);
+// Eval(3105, o is INotEmptyGen<int>, false);
+// Eval(3106, o is INotEmptyGen<int>[], false);
Eval(3107, o is SimpleDelegate, false);
Eval(3108, o is SimpleDelegate[], false);
- Eval(3109, o is GenericDelegate<int>, false);
- Eval(3110, o is GenericDelegate<int>[], false);
+// Eval(3109, o is GenericDelegate<int>, false);
+// Eval(3110, o is GenericDelegate<int>[], false);
Eval(3111, o is EmptyClass, false);
Eval(3112, o is EmptyClass[], false);
Eval(3113, o is NotEmptyClass, false);
Eval(3114, o is NotEmptyClass[], false);
- Eval(3115, o is EmptyClassGen<int>, false);
- Eval(3116, o is EmptyClassGen<int>[], false);
- Eval(3117, o is NotEmptyClassGen<Guid>, false);
- Eval(3118, o is NotEmptyClassGen<Guid>[], false);
- Eval(3119, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3120, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3115, o is EmptyClassGen<int>, false);
+// Eval(3116, o is EmptyClassGen<int>[], false);
+// Eval(3117, o is NotEmptyClassGen<Guid>, false);
+// Eval(3118, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3119, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3120, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3121, o is NestedClass, false);
Eval(3122, o is NestedClass[], false);
- Eval(3123, o is NestedClassGen<Decimal>, false);
- Eval(3124, o is NestedClassGen<Decimal>[], false);
+// Eval(3123, o is NestedClassGen<Decimal>, false);
+// Eval(3124, o is NestedClassGen<Decimal>[], false);
Eval(3125, o is ImplementOneInterfaceC, false);
Eval(3126, o is ImplementOneInterfaceC[], false);
Eval(3127, o is ImplementTwoInterfaceC, false);
Eval(3128, o is ImplementTwoInterfaceC[], false);
- Eval(3129, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3130, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3131, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3132, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3133, o is ImplementAllInterfaceC<int>, false);
- Eval(3134, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3129, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3130, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3131, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3132, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3133, o is ImplementAllInterfaceC<int>, false);
+// Eval(3134, o is ImplementAllInterfaceC<int>[], false);
Eval(3135, o is SealedClass, false);
Eval(3136, o is SealedClass[], false);
}
@@ -3109,26 +3109,26 @@ internal class Program
Eval(3142, o is NotEmptyStruct[], false);
Eval(3143, o is NotEmptyStruct?, false);
Eval(3144, o is NotEmptyStruct?[], false);
- Eval(3145, o is EmptyStructGen<int>, false);
- Eval(3146, o is EmptyStructGen<int>[], false);
- Eval(3147, o is EmptyStructGen<int>?, false);
- Eval(3148, o is EmptyStructGen<int>?[], false);
- Eval(3149, o is NotEmptyStructGen<Guid>, true);
- Eval(3150, o is NotEmptyStructGen<Guid>[], false);
- Eval(3151, o is NotEmptyStructGen<Guid>?, true);
- Eval(3152, o is NotEmptyStructGen<Guid>?[], false);
- Eval(3153, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3154, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3155, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3156, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3145, o is EmptyStructGen<int>, false);
+// Eval(3146, o is EmptyStructGen<int>[], false);
+// Eval(3147, o is EmptyStructGen<int>?, false);
+// Eval(3148, o is EmptyStructGen<int>?[], false);
+// Eval(3149, o is NotEmptyStructGen<Guid>, true);
+// Eval(3150, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3151, o is NotEmptyStructGen<Guid>?, true);
+// Eval(3152, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(3153, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3154, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3155, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3156, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3157, o is NestedStruct, false);
Eval(3158, o is NestedStruct[], false);
Eval(3159, o is NestedStruct?, false);
Eval(3160, o is NestedStruct?[], false);
- Eval(3161, o is NestedStructGen<Decimal>, false);
- Eval(3162, o is NestedStructGen<Decimal>[], false);
- Eval(3163, o is NestedStructGen<Decimal>?, false);
- Eval(3164, o is NestedStructGen<Decimal>?[], false);
+// Eval(3161, o is NestedStructGen<Decimal>, false);
+// Eval(3162, o is NestedStructGen<Decimal>[], false);
+// Eval(3163, o is NestedStructGen<Decimal>?, false);
+// Eval(3164, o is NestedStructGen<Decimal>?[], false);
Eval(3165, o is ExplicitFieldOffsetStruct, false);
Eval(3166, o is ExplicitFieldOffsetStruct[], false);
Eval(3167, o is ExplicitFieldOffsetStruct?, false);
@@ -3145,18 +3145,18 @@ internal class Program
Eval(3186, o is ImplementTwoInterface[], false);
Eval(3187, o is ImplementTwoInterface?, false);
Eval(3188, o is ImplementTwoInterface?[], false);
- Eval(3189, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3190, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3191, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3192, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3193, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3194, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3195, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3196, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3197, o is ImplementAllInterface<int>, false);
- Eval(3198, o is ImplementAllInterface<int>[], false);
- Eval(3199, o is ImplementAllInterface<int>?, false);
- Eval(3200, o is ImplementAllInterface<int>?[], false);
+// Eval(3189, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3190, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3191, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3192, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3193, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3194, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3195, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3196, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3197, o is ImplementAllInterface<int>, false);
+// Eval(3198, o is ImplementAllInterface<int>[], false);
+// Eval(3199, o is ImplementAllInterface<int>?, false);
+// Eval(3200, o is ImplementAllInterface<int>?[], false);
Eval(3201, o is IntE, false);
Eval(3202, o is IntE[], false);
Eval(3203, o is IntE?, false);
@@ -3255,38 +3255,38 @@ internal class Program
Eval(3296, o is IEmpty[], false);
Eval(3297, o is INotEmpty, false);
Eval(3298, o is INotEmpty[], false);
- Eval(3299, o is IEmptyGen<int>, false);
- Eval(3300, o is IEmptyGen<int>[], false);
- Eval(3301, o is INotEmptyGen<int>, false);
- Eval(3302, o is INotEmptyGen<int>[], false);
+// Eval(3299, o is IEmptyGen<int>, false);
+// Eval(3300, o is IEmptyGen<int>[], false);
+// Eval(3301, o is INotEmptyGen<int>, false);
+// Eval(3302, o is INotEmptyGen<int>[], false);
Eval(3303, o is SimpleDelegate, false);
Eval(3304, o is SimpleDelegate[], false);
- Eval(3305, o is GenericDelegate<int>, false);
- Eval(3306, o is GenericDelegate<int>[], false);
+// Eval(3305, o is GenericDelegate<int>, false);
+// Eval(3306, o is GenericDelegate<int>[], false);
Eval(3307, o is EmptyClass, false);
Eval(3308, o is EmptyClass[], false);
Eval(3309, o is NotEmptyClass, false);
Eval(3310, o is NotEmptyClass[], false);
- Eval(3311, o is EmptyClassGen<int>, false);
- Eval(3312, o is EmptyClassGen<int>[], false);
- Eval(3313, o is NotEmptyClassGen<Guid>, false);
- Eval(3314, o is NotEmptyClassGen<Guid>[], false);
- Eval(3315, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3316, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3311, o is EmptyClassGen<int>, false);
+// Eval(3312, o is EmptyClassGen<int>[], false);
+// Eval(3313, o is NotEmptyClassGen<Guid>, false);
+// Eval(3314, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3315, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3316, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3317, o is NestedClass, false);
Eval(3318, o is NestedClass[], false);
- Eval(3319, o is NestedClassGen<Decimal>, false);
- Eval(3320, o is NestedClassGen<Decimal>[], false);
+// Eval(3319, o is NestedClassGen<Decimal>, false);
+// Eval(3320, o is NestedClassGen<Decimal>[], false);
Eval(3321, o is ImplementOneInterfaceC, false);
Eval(3322, o is ImplementOneInterfaceC[], false);
Eval(3323, o is ImplementTwoInterfaceC, false);
Eval(3324, o is ImplementTwoInterfaceC[], false);
- Eval(3325, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3326, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3327, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3328, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3329, o is ImplementAllInterfaceC<int>, false);
- Eval(3330, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3325, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3326, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3327, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3328, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3329, o is ImplementAllInterfaceC<int>, false);
+// Eval(3330, o is ImplementAllInterfaceC<int>[], false);
Eval(3331, o is SealedClass, false);
Eval(3332, o is SealedClass[], false);
}
@@ -3301,26 +3301,26 @@ internal class Program
Eval(3338, o is NotEmptyStruct[], false);
Eval(3339, o is NotEmptyStruct?, false);
Eval(3340, o is NotEmptyStruct?[], false);
- Eval(3341, o is EmptyStructGen<int>, false);
- Eval(3342, o is EmptyStructGen<int>[], false);
- Eval(3343, o is EmptyStructGen<int>?, false);
- Eval(3344, o is EmptyStructGen<int>?[], false);
- Eval(3345, o is NotEmptyStructGen<Guid>, false);
- Eval(3346, o is NotEmptyStructGen<Guid>[], false);
- Eval(3347, o is NotEmptyStructGen<Guid>?, false);
- Eval(3348, o is NotEmptyStructGen<Guid>?[], false);
- Eval(3349, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3350, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3351, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3352, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3341, o is EmptyStructGen<int>, false);
+// Eval(3342, o is EmptyStructGen<int>[], false);
+// Eval(3343, o is EmptyStructGen<int>?, false);
+// Eval(3344, o is EmptyStructGen<int>?[], false);
+// Eval(3345, o is NotEmptyStructGen<Guid>, false);
+// Eval(3346, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3347, o is NotEmptyStructGen<Guid>?, false);
+// Eval(3348, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(3349, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3350, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3351, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3352, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3353, o is NestedStruct, false);
Eval(3354, o is NestedStruct[], false);
Eval(3355, o is NestedStruct?, false);
Eval(3356, o is NestedStruct?[], false);
- Eval(3357, o is NestedStructGen<Decimal>, false);
- Eval(3358, o is NestedStructGen<Decimal>[], false);
- Eval(3359, o is NestedStructGen<Decimal>?, false);
- Eval(3360, o is NestedStructGen<Decimal>?[], false);
+// Eval(3357, o is NestedStructGen<Decimal>, false);
+// Eval(3358, o is NestedStructGen<Decimal>[], false);
+// Eval(3359, o is NestedStructGen<Decimal>?, false);
+// Eval(3360, o is NestedStructGen<Decimal>?[], false);
Eval(3361, o is ExplicitFieldOffsetStruct, false);
Eval(3362, o is ExplicitFieldOffsetStruct[], false);
Eval(3363, o is ExplicitFieldOffsetStruct?, false);
@@ -3337,18 +3337,18 @@ internal class Program
Eval(3382, o is ImplementTwoInterface[], false);
Eval(3383, o is ImplementTwoInterface?, false);
Eval(3384, o is ImplementTwoInterface?[], false);
- Eval(3385, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3386, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3387, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3388, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3389, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3390, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3391, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3392, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3393, o is ImplementAllInterface<int>, false);
- Eval(3394, o is ImplementAllInterface<int>[], false);
- Eval(3395, o is ImplementAllInterface<int>?, false);
- Eval(3396, o is ImplementAllInterface<int>?[], false);
+// Eval(3385, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3386, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3387, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3388, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3389, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3390, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3391, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3392, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3393, o is ImplementAllInterface<int>, false);
+// Eval(3394, o is ImplementAllInterface<int>[], false);
+// Eval(3395, o is ImplementAllInterface<int>?, false);
+// Eval(3396, o is ImplementAllInterface<int>?[], false);
Eval(3397, o is IntE, false);
Eval(3398, o is IntE[], false);
Eval(3399, o is IntE?, false);
@@ -3447,38 +3447,38 @@ internal class Program
Eval(3492, o is IEmpty[], false);
Eval(3493, o is INotEmpty, false);
Eval(3494, o is INotEmpty[], false);
- Eval(3495, o is IEmptyGen<int>, false);
- Eval(3496, o is IEmptyGen<int>[], false);
- Eval(3497, o is INotEmptyGen<int>, false);
- Eval(3498, o is INotEmptyGen<int>[], false);
+// Eval(3495, o is IEmptyGen<int>, false);
+// Eval(3496, o is IEmptyGen<int>[], false);
+// Eval(3497, o is INotEmptyGen<int>, false);
+// Eval(3498, o is INotEmptyGen<int>[], false);
Eval(3499, o is SimpleDelegate, false);
Eval(3500, o is SimpleDelegate[], false);
- Eval(3501, o is GenericDelegate<int>, false);
- Eval(3502, o is GenericDelegate<int>[], false);
+// Eval(3501, o is GenericDelegate<int>, false);
+// Eval(3502, o is GenericDelegate<int>[], false);
Eval(3503, o is EmptyClass, false);
Eval(3504, o is EmptyClass[], false);
Eval(3505, o is NotEmptyClass, false);
Eval(3506, o is NotEmptyClass[], false);
- Eval(3507, o is EmptyClassGen<int>, false);
- Eval(3508, o is EmptyClassGen<int>[], false);
- Eval(3509, o is NotEmptyClassGen<Guid>, false);
- Eval(3510, o is NotEmptyClassGen<Guid>[], false);
- Eval(3511, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3512, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3507, o is EmptyClassGen<int>, false);
+// Eval(3508, o is EmptyClassGen<int>[], false);
+// Eval(3509, o is NotEmptyClassGen<Guid>, false);
+// Eval(3510, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3511, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3512, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3513, o is NestedClass, false);
Eval(3514, o is NestedClass[], false);
- Eval(3515, o is NestedClassGen<Decimal>, false);
- Eval(3516, o is NestedClassGen<Decimal>[], false);
+// Eval(3515, o is NestedClassGen<Decimal>, false);
+// Eval(3516, o is NestedClassGen<Decimal>[], false);
Eval(3517, o is ImplementOneInterfaceC, false);
Eval(3518, o is ImplementOneInterfaceC[], false);
Eval(3519, o is ImplementTwoInterfaceC, false);
Eval(3520, o is ImplementTwoInterfaceC[], false);
- Eval(3521, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3522, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3523, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3524, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3525, o is ImplementAllInterfaceC<int>, false);
- Eval(3526, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3521, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3522, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3523, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3524, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3525, o is ImplementAllInterfaceC<int>, false);
+// Eval(3526, o is ImplementAllInterfaceC<int>[], false);
Eval(3527, o is SealedClass, false);
Eval(3528, o is SealedClass[], false);
}
@@ -3493,26 +3493,26 @@ internal class Program
Eval(3534, o is NotEmptyStruct[], false);
Eval(3535, o is NotEmptyStruct?, false);
Eval(3536, o is NotEmptyStruct?[], false);
- Eval(3537, o is EmptyStructGen<int>, false);
- Eval(3538, o is EmptyStructGen<int>[], false);
- Eval(3539, o is EmptyStructGen<int>?, false);
- Eval(3540, o is EmptyStructGen<int>?[], false);
- Eval(3541, o is NotEmptyStructGen<Guid>, false);
- Eval(3542, o is NotEmptyStructGen<Guid>[], false);
- Eval(3543, o is NotEmptyStructGen<Guid>?, false);
- Eval(3544, o is NotEmptyStructGen<Guid>?[], false);
- Eval(3545, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3546, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3547, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3548, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3537, o is EmptyStructGen<int>, false);
+// Eval(3538, o is EmptyStructGen<int>[], false);
+// Eval(3539, o is EmptyStructGen<int>?, false);
+// Eval(3540, o is EmptyStructGen<int>?[], false);
+// Eval(3541, o is NotEmptyStructGen<Guid>, false);
+// Eval(3542, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3543, o is NotEmptyStructGen<Guid>?, false);
+// Eval(3544, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(3545, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3546, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3547, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3548, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3549, o is NestedStruct, false);
Eval(3550, o is NestedStruct[], false);
Eval(3551, o is NestedStruct?, false);
Eval(3552, o is NestedStruct?[], false);
- Eval(3553, o is NestedStructGen<Decimal>, false);
- Eval(3554, o is NestedStructGen<Decimal>[], false);
- Eval(3555, o is NestedStructGen<Decimal>?, false);
- Eval(3556, o is NestedStructGen<Decimal>?[], false);
+// Eval(3553, o is NestedStructGen<Decimal>, false);
+// Eval(3554, o is NestedStructGen<Decimal>[], false);
+// Eval(3555, o is NestedStructGen<Decimal>?, false);
+// Eval(3556, o is NestedStructGen<Decimal>?[], false);
Eval(3557, o is ExplicitFieldOffsetStruct, false);
Eval(3558, o is ExplicitFieldOffsetStruct[], false);
Eval(3559, o is ExplicitFieldOffsetStruct?, false);
@@ -3529,18 +3529,18 @@ internal class Program
Eval(3578, o is ImplementTwoInterface[], false);
Eval(3579, o is ImplementTwoInterface?, false);
Eval(3580, o is ImplementTwoInterface?[], false);
- Eval(3581, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3582, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3583, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3584, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3585, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3586, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3587, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3588, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3589, o is ImplementAllInterface<int>, false);
- Eval(3590, o is ImplementAllInterface<int>[], false);
- Eval(3591, o is ImplementAllInterface<int>?, false);
- Eval(3592, o is ImplementAllInterface<int>?[], false);
+// Eval(3581, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3582, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3583, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3584, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3585, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3586, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3587, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3588, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3589, o is ImplementAllInterface<int>, false);
+// Eval(3590, o is ImplementAllInterface<int>[], false);
+// Eval(3591, o is ImplementAllInterface<int>?, false);
+// Eval(3592, o is ImplementAllInterface<int>?[], false);
Eval(3593, o is IntE, false);
Eval(3594, o is IntE[], false);
Eval(3595, o is IntE?, false);
@@ -3639,38 +3639,38 @@ internal class Program
Eval(3688, o is IEmpty[], false);
Eval(3689, o is INotEmpty, false);
Eval(3690, o is INotEmpty[], false);
- Eval(3691, o is IEmptyGen<int>, false);
- Eval(3692, o is IEmptyGen<int>[], false);
- Eval(3693, o is INotEmptyGen<int>, false);
- Eval(3694, o is INotEmptyGen<int>[], false);
+// Eval(3691, o is IEmptyGen<int>, false);
+// Eval(3692, o is IEmptyGen<int>[], false);
+// Eval(3693, o is INotEmptyGen<int>, false);
+// Eval(3694, o is INotEmptyGen<int>[], false);
Eval(3695, o is SimpleDelegate, false);
Eval(3696, o is SimpleDelegate[], false);
- Eval(3697, o is GenericDelegate<int>, false);
- Eval(3698, o is GenericDelegate<int>[], false);
+// Eval(3697, o is GenericDelegate<int>, false);
+// Eval(3698, o is GenericDelegate<int>[], false);
Eval(3699, o is EmptyClass, false);
Eval(3700, o is EmptyClass[], false);
Eval(3701, o is NotEmptyClass, false);
Eval(3702, o is NotEmptyClass[], false);
- Eval(3703, o is EmptyClassGen<int>, false);
- Eval(3704, o is EmptyClassGen<int>[], false);
- Eval(3705, o is NotEmptyClassGen<Guid>, false);
- Eval(3706, o is NotEmptyClassGen<Guid>[], false);
- Eval(3707, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3708, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3703, o is EmptyClassGen<int>, false);
+// Eval(3704, o is EmptyClassGen<int>[], false);
+// Eval(3705, o is NotEmptyClassGen<Guid>, false);
+// Eval(3706, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3707, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3708, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3709, o is NestedClass, false);
Eval(3710, o is NestedClass[], false);
- Eval(3711, o is NestedClassGen<Decimal>, false);
- Eval(3712, o is NestedClassGen<Decimal>[], false);
+// Eval(3711, o is NestedClassGen<Decimal>, false);
+// Eval(3712, o is NestedClassGen<Decimal>[], false);
Eval(3713, o is ImplementOneInterfaceC, false);
Eval(3714, o is ImplementOneInterfaceC[], false);
Eval(3715, o is ImplementTwoInterfaceC, false);
Eval(3716, o is ImplementTwoInterfaceC[], false);
- Eval(3717, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3718, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3719, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3720, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3721, o is ImplementAllInterfaceC<int>, false);
- Eval(3722, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3717, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3718, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3719, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3720, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3721, o is ImplementAllInterfaceC<int>, false);
+// Eval(3722, o is ImplementAllInterfaceC<int>[], false);
Eval(3723, o is SealedClass, false);
Eval(3724, o is SealedClass[], false);
}
@@ -3685,26 +3685,26 @@ internal class Program
Eval(3730, o is NotEmptyStruct[], false);
Eval(3731, o is NotEmptyStruct?, false);
Eval(3732, o is NotEmptyStruct?[], false);
- Eval(3733, o is EmptyStructGen<int>, false);
- Eval(3734, o is EmptyStructGen<int>[], false);
- Eval(3735, o is EmptyStructGen<int>?, false);
- Eval(3736, o is EmptyStructGen<int>?[], false);
- Eval(3737, o is NotEmptyStructGen<Guid>, false);
- Eval(3738, o is NotEmptyStructGen<Guid>[], false);
- Eval(3739, o is NotEmptyStructGen<Guid>?, false);
- Eval(3740, o is NotEmptyStructGen<Guid>?[], true);
- Eval(3741, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3742, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3743, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3744, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3733, o is EmptyStructGen<int>, false);
+// Eval(3734, o is EmptyStructGen<int>[], false);
+// Eval(3735, o is EmptyStructGen<int>?, false);
+// Eval(3736, o is EmptyStructGen<int>?[], false);
+// Eval(3737, o is NotEmptyStructGen<Guid>, false);
+// Eval(3738, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3739, o is NotEmptyStructGen<Guid>?, false);
+// Eval(3740, o is NotEmptyStructGen<Guid>?[], true);
+// Eval(3741, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3742, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3743, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3744, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3745, o is NestedStruct, false);
Eval(3746, o is NestedStruct[], false);
Eval(3747, o is NestedStruct?, false);
Eval(3748, o is NestedStruct?[], false);
- Eval(3749, o is NestedStructGen<Decimal>, false);
- Eval(3750, o is NestedStructGen<Decimal>[], false);
- Eval(3751, o is NestedStructGen<Decimal>?, false);
- Eval(3752, o is NestedStructGen<Decimal>?[], false);
+// Eval(3749, o is NestedStructGen<Decimal>, false);
+// Eval(3750, o is NestedStructGen<Decimal>[], false);
+// Eval(3751, o is NestedStructGen<Decimal>?, false);
+// Eval(3752, o is NestedStructGen<Decimal>?[], false);
Eval(3753, o is ExplicitFieldOffsetStruct, false);
Eval(3754, o is ExplicitFieldOffsetStruct[], false);
Eval(3755, o is ExplicitFieldOffsetStruct?, false);
@@ -3721,18 +3721,18 @@ internal class Program
Eval(3774, o is ImplementTwoInterface[], false);
Eval(3775, o is ImplementTwoInterface?, false);
Eval(3776, o is ImplementTwoInterface?[], false);
- Eval(3777, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3778, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3779, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3780, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3781, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3782, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3783, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3784, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3785, o is ImplementAllInterface<int>, false);
- Eval(3786, o is ImplementAllInterface<int>[], false);
- Eval(3787, o is ImplementAllInterface<int>?, false);
- Eval(3788, o is ImplementAllInterface<int>?[], false);
+// Eval(3777, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3778, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3779, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3780, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3781, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3782, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3783, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3784, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3785, o is ImplementAllInterface<int>, false);
+// Eval(3786, o is ImplementAllInterface<int>[], false);
+// Eval(3787, o is ImplementAllInterface<int>?, false);
+// Eval(3788, o is ImplementAllInterface<int>?[], false);
Eval(3789, o is IntE, false);
Eval(3790, o is IntE[], false);
Eval(3791, o is IntE?, false);
@@ -3831,38 +3831,38 @@ internal class Program
Eval(3884, o is IEmpty[], false);
Eval(3885, o is INotEmpty, false);
Eval(3886, o is INotEmpty[], false);
- Eval(3887, o is IEmptyGen<int>, false);
- Eval(3888, o is IEmptyGen<int>[], false);
- Eval(3889, o is INotEmptyGen<int>, false);
- Eval(3890, o is INotEmptyGen<int>[], false);
+// Eval(3887, o is IEmptyGen<int>, false);
+// Eval(3888, o is IEmptyGen<int>[], false);
+// Eval(3889, o is INotEmptyGen<int>, false);
+// Eval(3890, o is INotEmptyGen<int>[], false);
Eval(3891, o is SimpleDelegate, false);
Eval(3892, o is SimpleDelegate[], false);
- Eval(3893, o is GenericDelegate<int>, false);
- Eval(3894, o is GenericDelegate<int>[], false);
+// Eval(3893, o is GenericDelegate<int>, false);
+// Eval(3894, o is GenericDelegate<int>[], false);
Eval(3895, o is EmptyClass, false);
Eval(3896, o is EmptyClass[], false);
Eval(3897, o is NotEmptyClass, false);
Eval(3898, o is NotEmptyClass[], false);
- Eval(3899, o is EmptyClassGen<int>, false);
- Eval(3900, o is EmptyClassGen<int>[], false);
- Eval(3901, o is NotEmptyClassGen<Guid>, false);
- Eval(3902, o is NotEmptyClassGen<Guid>[], false);
- Eval(3903, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3904, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3899, o is EmptyClassGen<int>, false);
+// Eval(3900, o is EmptyClassGen<int>[], false);
+// Eval(3901, o is NotEmptyClassGen<Guid>, false);
+// Eval(3902, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3903, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3904, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3905, o is NestedClass, false);
Eval(3906, o is NestedClass[], false);
- Eval(3907, o is NestedClassGen<Decimal>, false);
- Eval(3908, o is NestedClassGen<Decimal>[], false);
+// Eval(3907, o is NestedClassGen<Decimal>, false);
+// Eval(3908, o is NestedClassGen<Decimal>[], false);
Eval(3909, o is ImplementOneInterfaceC, false);
Eval(3910, o is ImplementOneInterfaceC[], false);
Eval(3911, o is ImplementTwoInterfaceC, false);
Eval(3912, o is ImplementTwoInterfaceC[], false);
- Eval(3913, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3914, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3915, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3916, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3917, o is ImplementAllInterfaceC<int>, false);
- Eval(3918, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3913, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3914, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3915, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3916, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3917, o is ImplementAllInterfaceC<int>, false);
+// Eval(3918, o is ImplementAllInterfaceC<int>[], false);
Eval(3919, o is SealedClass, false);
Eval(3920, o is SealedClass[], false);
}
@@ -3880,26 +3880,26 @@ internal class Program
Eval(3926, o is NotEmptyStruct[], false);
Eval(3927, o is NotEmptyStruct?, false);
Eval(3928, o is NotEmptyStruct?[], false);
- Eval(3929, o is EmptyStructGen<int>, false);
- Eval(3930, o is EmptyStructGen<int>[], false);
- Eval(3931, o is EmptyStructGen<int>?, false);
- Eval(3932, o is EmptyStructGen<int>?[], false);
- Eval(3933, o is NotEmptyStructGen<Guid>, false);
- Eval(3934, o is NotEmptyStructGen<Guid>[], false);
- Eval(3935, o is NotEmptyStructGen<Guid>?, false);
- Eval(3936, o is NotEmptyStructGen<Guid>?[], false);
- Eval(3937, o is NotEmptyStructConstrainedGen<IntPtr>, true);
- Eval(3938, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3939, o is NotEmptyStructConstrainedGen<IntPtr>?, true);
- Eval(3940, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3929, o is EmptyStructGen<int>, false);
+// Eval(3930, o is EmptyStructGen<int>[], false);
+// Eval(3931, o is EmptyStructGen<int>?, false);
+// Eval(3932, o is EmptyStructGen<int>?[], false);
+// Eval(3933, o is NotEmptyStructGen<Guid>, false);
+// Eval(3934, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3935, o is NotEmptyStructGen<Guid>?, false);
+// Eval(3936, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(3937, o is NotEmptyStructConstrainedGen<IntPtr>, true);
+// Eval(3938, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3939, o is NotEmptyStructConstrainedGen<IntPtr>?, true);
+// Eval(3940, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3941, o is NestedStruct, false);
Eval(3942, o is NestedStruct[], false);
Eval(3943, o is NestedStruct?, false);
Eval(3944, o is NestedStruct?[], false);
- Eval(3945, o is NestedStructGen<Decimal>, false);
- Eval(3946, o is NestedStructGen<Decimal>[], false);
- Eval(3947, o is NestedStructGen<Decimal>?, false);
- Eval(3948, o is NestedStructGen<Decimal>?[], false);
+// Eval(3945, o is NestedStructGen<Decimal>, false);
+// Eval(3946, o is NestedStructGen<Decimal>[], false);
+// Eval(3947, o is NestedStructGen<Decimal>?, false);
+// Eval(3948, o is NestedStructGen<Decimal>?[], false);
Eval(3949, o is ExplicitFieldOffsetStruct, false);
Eval(3950, o is ExplicitFieldOffsetStruct[], false);
Eval(3951, o is ExplicitFieldOffsetStruct?, false);
@@ -3916,18 +3916,18 @@ internal class Program
Eval(3970, o is ImplementTwoInterface[], false);
Eval(3971, o is ImplementTwoInterface?, false);
Eval(3972, o is ImplementTwoInterface?[], false);
- Eval(3973, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3974, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3975, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3976, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3977, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3978, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3979, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3980, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3981, o is ImplementAllInterface<int>, false);
- Eval(3982, o is ImplementAllInterface<int>[], false);
- Eval(3983, o is ImplementAllInterface<int>?, false);
- Eval(3984, o is ImplementAllInterface<int>?[], false);
+// Eval(3973, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3974, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3975, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3976, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3977, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3978, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3979, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3980, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3981, o is ImplementAllInterface<int>, false);
+// Eval(3982, o is ImplementAllInterface<int>[], false);
+// Eval(3983, o is ImplementAllInterface<int>?, false);
+// Eval(3984, o is ImplementAllInterface<int>?[], false);
Eval(3985, o is IntE, false);
Eval(3986, o is IntE[], false);
Eval(3987, o is IntE?, false);
@@ -4026,38 +4026,38 @@ internal class Program
Eval(4080, o is IEmpty[], false);
Eval(4081, o is INotEmpty, false);
Eval(4082, o is INotEmpty[], false);
- Eval(4083, o is IEmptyGen<int>, false);
- Eval(4084, o is IEmptyGen<int>[], false);
- Eval(4085, o is INotEmptyGen<int>, false);
- Eval(4086, o is INotEmptyGen<int>[], false);
+// Eval(4083, o is IEmptyGen<int>, false);
+// Eval(4084, o is IEmptyGen<int>[], false);
+// Eval(4085, o is INotEmptyGen<int>, false);
+// Eval(4086, o is INotEmptyGen<int>[], false);
Eval(4087, o is SimpleDelegate, false);
Eval(4088, o is SimpleDelegate[], false);
- Eval(4089, o is GenericDelegate<int>, false);
- Eval(4090, o is GenericDelegate<int>[], false);
+// Eval(4089, o is GenericDelegate<int>, false);
+// Eval(4090, o is GenericDelegate<int>[], false);
Eval(4091, o is EmptyClass, false);
Eval(4092, o is EmptyClass[], false);
Eval(4093, o is NotEmptyClass, false);
Eval(4094, o is NotEmptyClass[], false);
- Eval(4095, o is EmptyClassGen<int>, false);
- Eval(4096, o is EmptyClassGen<int>[], false);
- Eval(4097, o is NotEmptyClassGen<Guid>, false);
- Eval(4098, o is NotEmptyClassGen<Guid>[], false);
- Eval(4099, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4100, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4095, o is EmptyClassGen<int>, false);
+// Eval(4096, o is EmptyClassGen<int>[], false);
+// Eval(4097, o is NotEmptyClassGen<Guid>, false);
+// Eval(4098, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4099, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4100, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4101, o is NestedClass, false);
Eval(4102, o is NestedClass[], false);
- Eval(4103, o is NestedClassGen<Decimal>, false);
- Eval(4104, o is NestedClassGen<Decimal>[], false);
+// Eval(4103, o is NestedClassGen<Decimal>, false);
+// Eval(4104, o is NestedClassGen<Decimal>[], false);
Eval(4105, o is ImplementOneInterfaceC, false);
Eval(4106, o is ImplementOneInterfaceC[], false);
Eval(4107, o is ImplementTwoInterfaceC, false);
Eval(4108, o is ImplementTwoInterfaceC[], false);
- Eval(4109, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4110, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4111, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4112, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4113, o is ImplementAllInterfaceC<int>, false);
- Eval(4114, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4109, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4110, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4111, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4112, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4113, o is ImplementAllInterfaceC<int>, false);
+// Eval(4114, o is ImplementAllInterfaceC<int>[], false);
Eval(4115, o is SealedClass, false);
Eval(4116, o is SealedClass[], false);
}
@@ -4072,26 +4072,26 @@ internal class Program
Eval(4122, o is NotEmptyStruct[], false);
Eval(4123, o is NotEmptyStruct?, false);
Eval(4124, o is NotEmptyStruct?[], false);
- Eval(4125, o is EmptyStructGen<int>, false);
- Eval(4126, o is EmptyStructGen<int>[], false);
- Eval(4127, o is EmptyStructGen<int>?, false);
- Eval(4128, o is EmptyStructGen<int>?[], false);
- Eval(4129, o is NotEmptyStructGen<Guid>, false);
- Eval(4130, o is NotEmptyStructGen<Guid>[], false);
- Eval(4131, o is NotEmptyStructGen<Guid>?, false);
- Eval(4132, o is NotEmptyStructGen<Guid>?[], false);
- Eval(4133, o is NotEmptyStructConstrainedGen<IntPtr>, true);
- Eval(4134, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4135, o is NotEmptyStructConstrainedGen<IntPtr>?, true);
- Eval(4136, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4125, o is EmptyStructGen<int>, false);
+// Eval(4126, o is EmptyStructGen<int>[], false);
+// Eval(4127, o is EmptyStructGen<int>?, false);
+// Eval(4128, o is EmptyStructGen<int>?[], false);
+// Eval(4129, o is NotEmptyStructGen<Guid>, false);
+// Eval(4130, o is NotEmptyStructGen<Guid>[], false);
+// Eval(4131, o is NotEmptyStructGen<Guid>?, false);
+// Eval(4132, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(4133, o is NotEmptyStructConstrainedGen<IntPtr>, true);
+// Eval(4134, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4135, o is NotEmptyStructConstrainedGen<IntPtr>?, true);
+// Eval(4136, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4137, o is NestedStruct, false);
Eval(4138, o is NestedStruct[], false);
Eval(4139, o is NestedStruct?, false);
Eval(4140, o is NestedStruct?[], false);
- Eval(4141, o is NestedStructGen<Decimal>, false);
- Eval(4142, o is NestedStructGen<Decimal>[], false);
- Eval(4143, o is NestedStructGen<Decimal>?, false);
- Eval(4144, o is NestedStructGen<Decimal>?[], false);
+// Eval(4141, o is NestedStructGen<Decimal>, false);
+// Eval(4142, o is NestedStructGen<Decimal>[], false);
+// Eval(4143, o is NestedStructGen<Decimal>?, false);
+// Eval(4144, o is NestedStructGen<Decimal>?[], false);
Eval(4145, o is ExplicitFieldOffsetStruct, false);
Eval(4146, o is ExplicitFieldOffsetStruct[], false);
Eval(4147, o is ExplicitFieldOffsetStruct?, false);
@@ -4108,18 +4108,18 @@ internal class Program
Eval(4166, o is ImplementTwoInterface[], false);
Eval(4167, o is ImplementTwoInterface?, false);
Eval(4168, o is ImplementTwoInterface?[], false);
- Eval(4169, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4170, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4171, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4172, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4173, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4174, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4175, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4176, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4177, o is ImplementAllInterface<int>, false);
- Eval(4178, o is ImplementAllInterface<int>[], false);
- Eval(4179, o is ImplementAllInterface<int>?, false);
- Eval(4180, o is ImplementAllInterface<int>?[], false);
+// Eval(4169, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4170, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4171, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4172, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4173, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4174, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4175, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4176, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4177, o is ImplementAllInterface<int>, false);
+// Eval(4178, o is ImplementAllInterface<int>[], false);
+// Eval(4179, o is ImplementAllInterface<int>?, false);
+// Eval(4180, o is ImplementAllInterface<int>?[], false);
Eval(4181, o is IntE, false);
Eval(4182, o is IntE[], false);
Eval(4183, o is IntE?, false);
@@ -4218,38 +4218,38 @@ internal class Program
Eval(4276, o is IEmpty[], false);
Eval(4277, o is INotEmpty, false);
Eval(4278, o is INotEmpty[], false);
- Eval(4279, o is IEmptyGen<int>, false);
- Eval(4280, o is IEmptyGen<int>[], false);
- Eval(4281, o is INotEmptyGen<int>, false);
- Eval(4282, o is INotEmptyGen<int>[], false);
+// Eval(4279, o is IEmptyGen<int>, false);
+// Eval(4280, o is IEmptyGen<int>[], false);
+// Eval(4281, o is INotEmptyGen<int>, false);
+// Eval(4282, o is INotEmptyGen<int>[], false);
Eval(4283, o is SimpleDelegate, false);
Eval(4284, o is SimpleDelegate[], false);
- Eval(4285, o is GenericDelegate<int>, false);
- Eval(4286, o is GenericDelegate<int>[], false);
+// Eval(4285, o is GenericDelegate<int>, false);
+// Eval(4286, o is GenericDelegate<int>[], false);
Eval(4287, o is EmptyClass, false);
Eval(4288, o is EmptyClass[], false);
Eval(4289, o is NotEmptyClass, false);
Eval(4290, o is NotEmptyClass[], false);
- Eval(4291, o is EmptyClassGen<int>, false);
- Eval(4292, o is EmptyClassGen<int>[], false);
- Eval(4293, o is NotEmptyClassGen<Guid>, false);
- Eval(4294, o is NotEmptyClassGen<Guid>[], false);
- Eval(4295, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4296, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4291, o is EmptyClassGen<int>, false);
+// Eval(4292, o is EmptyClassGen<int>[], false);
+// Eval(4293, o is NotEmptyClassGen<Guid>, false);
+// Eval(4294, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4295, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4296, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4297, o is NestedClass, false);
Eval(4298, o is NestedClass[], false);
- Eval(4299, o is NestedClassGen<Decimal>, false);
- Eval(4300, o is NestedClassGen<Decimal>[], false);
+// Eval(4299, o is NestedClassGen<Decimal>, false);
+// Eval(4300, o is NestedClassGen<Decimal>[], false);
Eval(4301, o is ImplementOneInterfaceC, false);
Eval(4302, o is ImplementOneInterfaceC[], false);
Eval(4303, o is ImplementTwoInterfaceC, false);
Eval(4304, o is ImplementTwoInterfaceC[], false);
- Eval(4305, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4306, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4307, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4308, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4309, o is ImplementAllInterfaceC<int>, false);
- Eval(4310, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4305, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4306, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4307, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4308, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4309, o is ImplementAllInterfaceC<int>, false);
+// Eval(4310, o is ImplementAllInterfaceC<int>[], false);
Eval(4311, o is SealedClass, false);
Eval(4312, o is SealedClass[], false);
}
@@ -4264,26 +4264,26 @@ internal class Program
Eval(4318, o is NotEmptyStruct[], false);
Eval(4319, o is NotEmptyStruct?, false);
Eval(4320, o is NotEmptyStruct?[], false);
- Eval(4321, o is EmptyStructGen<int>, false);
- Eval(4322, o is EmptyStructGen<int>[], false);
- Eval(4323, o is EmptyStructGen<int>?, false);
- Eval(4324, o is EmptyStructGen<int>?[], false);
- Eval(4325, o is NotEmptyStructGen<Guid>, false);
- Eval(4326, o is NotEmptyStructGen<Guid>[], false);
- Eval(4327, o is NotEmptyStructGen<Guid>?, false);
- Eval(4328, o is NotEmptyStructGen<Guid>?[], false);
- Eval(4329, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4330, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4331, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4332, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4321, o is EmptyStructGen<int>, false);
+// Eval(4322, o is EmptyStructGen<int>[], false);
+// Eval(4323, o is EmptyStructGen<int>?, false);
+// Eval(4324, o is EmptyStructGen<int>?[], false);
+// Eval(4325, o is NotEmptyStructGen<Guid>, false);
+// Eval(4326, o is NotEmptyStructGen<Guid>[], false);
+// Eval(4327, o is NotEmptyStructGen<Guid>?, false);
+// Eval(4328, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(4329, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4330, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4331, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4332, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4333, o is NestedStruct, false);
Eval(4334, o is NestedStruct[], false);
Eval(4335, o is NestedStruct?, false);
Eval(4336, o is NestedStruct?[], false);
- Eval(4337, o is NestedStructGen<Decimal>, false);
- Eval(4338, o is NestedStructGen<Decimal>[], false);
- Eval(4339, o is NestedStructGen<Decimal>?, false);
- Eval(4340, o is NestedStructGen<Decimal>?[], false);
+// Eval(4337, o is NestedStructGen<Decimal>, false);
+// Eval(4338, o is NestedStructGen<Decimal>[], false);
+// Eval(4339, o is NestedStructGen<Decimal>?, false);
+// Eval(4340, o is NestedStructGen<Decimal>?[], false);
Eval(4341, o is ExplicitFieldOffsetStruct, false);
Eval(4342, o is ExplicitFieldOffsetStruct[], false);
Eval(4343, o is ExplicitFieldOffsetStruct?, false);
@@ -4300,18 +4300,18 @@ internal class Program
Eval(4362, o is ImplementTwoInterface[], false);
Eval(4363, o is ImplementTwoInterface?, false);
Eval(4364, o is ImplementTwoInterface?[], false);
- Eval(4365, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4366, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4367, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4368, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4369, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4370, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4371, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4372, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4373, o is ImplementAllInterface<int>, false);
- Eval(4374, o is ImplementAllInterface<int>[], false);
- Eval(4375, o is ImplementAllInterface<int>?, false);
- Eval(4376, o is ImplementAllInterface<int>?[], false);
+// Eval(4365, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4366, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4367, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4368, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4369, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4370, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4371, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4372, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4373, o is ImplementAllInterface<int>, false);
+// Eval(4374, o is ImplementAllInterface<int>[], false);
+// Eval(4375, o is ImplementAllInterface<int>?, false);
+// Eval(4376, o is ImplementAllInterface<int>?[], false);
Eval(4377, o is IntE, false);
Eval(4378, o is IntE[], false);
Eval(4379, o is IntE?, false);
@@ -4410,38 +4410,38 @@ internal class Program
Eval(4472, o is IEmpty[], false);
Eval(4473, o is INotEmpty, false);
Eval(4474, o is INotEmpty[], false);
- Eval(4475, o is IEmptyGen<int>, false);
- Eval(4476, o is IEmptyGen<int>[], false);
- Eval(4477, o is INotEmptyGen<int>, false);
- Eval(4478, o is INotEmptyGen<int>[], false);
+// Eval(4475, o is IEmptyGen<int>, false);
+// Eval(4476, o is IEmptyGen<int>[], false);
+// Eval(4477, o is INotEmptyGen<int>, false);
+// Eval(4478, o is INotEmptyGen<int>[], false);
Eval(4479, o is SimpleDelegate, false);
Eval(4480, o is SimpleDelegate[], false);
- Eval(4481, o is GenericDelegate<int>, false);
- Eval(4482, o is GenericDelegate<int>[], false);
+// Eval(4481, o is GenericDelegate<int>, false);
+// Eval(4482, o is GenericDelegate<int>[], false);
Eval(4483, o is EmptyClass, false);
Eval(4484, o is EmptyClass[], false);
Eval(4485, o is NotEmptyClass, false);
Eval(4486, o is NotEmptyClass[], false);
- Eval(4487, o is EmptyClassGen<int>, false);
- Eval(4488, o is EmptyClassGen<int>[], false);
- Eval(4489, o is NotEmptyClassGen<Guid>, false);
- Eval(4490, o is NotEmptyClassGen<Guid>[], false);
- Eval(4491, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4492, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4487, o is EmptyClassGen<int>, false);
+// Eval(4488, o is EmptyClassGen<int>[], false);
+// Eval(4489, o is NotEmptyClassGen<Guid>, false);
+// Eval(4490, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4491, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4492, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4493, o is NestedClass, false);
Eval(4494, o is NestedClass[], false);
- Eval(4495, o is NestedClassGen<Decimal>, false);
- Eval(4496, o is NestedClassGen<Decimal>[], false);
+// Eval(4495, o is NestedClassGen<Decimal>, false);
+// Eval(4496, o is NestedClassGen<Decimal>[], false);
Eval(4497, o is ImplementOneInterfaceC, false);
Eval(4498, o is ImplementOneInterfaceC[], false);
Eval(4499, o is ImplementTwoInterfaceC, false);
Eval(4500, o is ImplementTwoInterfaceC[], false);
- Eval(4501, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4502, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4503, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4504, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4505, o is ImplementAllInterfaceC<int>, false);
- Eval(4506, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4501, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4502, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4503, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4504, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4505, o is ImplementAllInterfaceC<int>, false);
+// Eval(4506, o is ImplementAllInterfaceC<int>[], false);
Eval(4507, o is SealedClass, false);
Eval(4508, o is SealedClass[], false);
}
@@ -4456,26 +4456,26 @@ internal class Program
Eval(4514, o is NotEmptyStruct[], false);
Eval(4515, o is NotEmptyStruct?, false);
Eval(4516, o is NotEmptyStruct?[], false);
- Eval(4517, o is EmptyStructGen<int>, false);
- Eval(4518, o is EmptyStructGen<int>[], false);
- Eval(4519, o is EmptyStructGen<int>?, false);
- Eval(4520, o is EmptyStructGen<int>?[], false);
- Eval(4521, o is NotEmptyStructGen<Guid>, false);
- Eval(4522, o is NotEmptyStructGen<Guid>[], false);
- Eval(4523, o is NotEmptyStructGen<Guid>?, false);
- Eval(4524, o is NotEmptyStructGen<Guid>?[], false);
- Eval(4525, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4526, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4527, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4528, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4517, o is EmptyStructGen<int>, false);
+// Eval(4518, o is EmptyStructGen<int>[], false);
+// Eval(4519, o is EmptyStructGen<int>?, false);
+// Eval(4520, o is EmptyStructGen<int>?[], false);
+// Eval(4521, o is NotEmptyStructGen<Guid>, false);
+// Eval(4522, o is NotEmptyStructGen<Guid>[], false);
+// Eval(4523, o is NotEmptyStructGen<Guid>?, false);
+// Eval(4524, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(4525, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4526, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4527, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4528, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4529, o is NestedStruct, false);
Eval(4530, o is NestedStruct[], false);
Eval(4531, o is NestedStruct?, false);
Eval(4532, o is NestedStruct?[], false);
- Eval(4533, o is NestedStructGen<Decimal>, false);
- Eval(4534, o is NestedStructGen<Decimal>[], false);
- Eval(4535, o is NestedStructGen<Decimal>?, false);
- Eval(4536, o is NestedStructGen<Decimal>?[], false);
+// Eval(4533, o is NestedStructGen<Decimal>, false);
+// Eval(4534, o is NestedStructGen<Decimal>[], false);
+// Eval(4535, o is NestedStructGen<Decimal>?, false);
+// Eval(4536, o is NestedStructGen<Decimal>?[], false);
Eval(4537, o is ExplicitFieldOffsetStruct, false);
Eval(4538, o is ExplicitFieldOffsetStruct[], false);
Eval(4539, o is ExplicitFieldOffsetStruct?, false);
@@ -4492,18 +4492,18 @@ internal class Program
Eval(4558, o is ImplementTwoInterface[], false);
Eval(4559, o is ImplementTwoInterface?, false);
Eval(4560, o is ImplementTwoInterface?[], false);
- Eval(4561, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4562, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4563, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4564, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4565, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4566, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4567, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4568, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4569, o is ImplementAllInterface<int>, false);
- Eval(4570, o is ImplementAllInterface<int>[], false);
- Eval(4571, o is ImplementAllInterface<int>?, false);
- Eval(4572, o is ImplementAllInterface<int>?[], false);
+// Eval(4561, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4562, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4563, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4564, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4565, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4566, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4567, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4568, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4569, o is ImplementAllInterface<int>, false);
+// Eval(4570, o is ImplementAllInterface<int>[], false);
+// Eval(4571, o is ImplementAllInterface<int>?, false);
+// Eval(4572, o is ImplementAllInterface<int>?[], false);
Eval(4573, o is IntE, false);
Eval(4574, o is IntE[], false);
Eval(4575, o is IntE?, false);
@@ -4602,38 +4602,38 @@ internal class Program
Eval(4668, o is IEmpty[], false);
Eval(4669, o is INotEmpty, false);
Eval(4670, o is INotEmpty[], false);
- Eval(4671, o is IEmptyGen<int>, false);
- Eval(4672, o is IEmptyGen<int>[], false);
- Eval(4673, o is INotEmptyGen<int>, false);
- Eval(4674, o is INotEmptyGen<int>[], false);
+// Eval(4671, o is IEmptyGen<int>, false);
+// Eval(4672, o is IEmptyGen<int>[], false);
+// Eval(4673, o is INotEmptyGen<int>, false);
+// Eval(4674, o is INotEmptyGen<int>[], false);
Eval(4675, o is SimpleDelegate, false);
Eval(4676, o is SimpleDelegate[], false);
- Eval(4677, o is GenericDelegate<int>, false);
- Eval(4678, o is GenericDelegate<int>[], false);
+// Eval(4677, o is GenericDelegate<int>, false);
+// Eval(4678, o is GenericDelegate<int>[], false);
Eval(4679, o is EmptyClass, false);
Eval(4680, o is EmptyClass[], false);
Eval(4681, o is NotEmptyClass, false);
Eval(4682, o is NotEmptyClass[], false);
- Eval(4683, o is EmptyClassGen<int>, false);
- Eval(4684, o is EmptyClassGen<int>[], false);
- Eval(4685, o is NotEmptyClassGen<Guid>, false);
- Eval(4686, o is NotEmptyClassGen<Guid>[], false);
- Eval(4687, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4688, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4683, o is EmptyClassGen<int>, false);
+// Eval(4684, o is EmptyClassGen<int>[], false);
+// Eval(4685, o is NotEmptyClassGen<Guid>, false);
+// Eval(4686, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4687, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4688, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4689, o is NestedClass, false);
Eval(4690, o is NestedClass[], false);
- Eval(4691, o is NestedClassGen<Decimal>, false);
- Eval(4692, o is NestedClassGen<Decimal>[], false);
+// Eval(4691, o is NestedClassGen<Decimal>, false);
+// Eval(4692, o is NestedClassGen<Decimal>[], false);
Eval(4693, o is ImplementOneInterfaceC, false);
Eval(4694, o is ImplementOneInterfaceC[], false);
Eval(4695, o is ImplementTwoInterfaceC, false);
Eval(4696, o is ImplementTwoInterfaceC[], false);
- Eval(4697, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4698, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4699, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4700, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4701, o is ImplementAllInterfaceC<int>, false);
- Eval(4702, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4697, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4698, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4699, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4700, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4701, o is ImplementAllInterfaceC<int>, false);
+// Eval(4702, o is ImplementAllInterfaceC<int>[], false);
Eval(4703, o is SealedClass, false);
Eval(4704, o is SealedClass[], false);
}
@@ -4648,26 +4648,26 @@ internal class Program
Eval(4710, o is NotEmptyStruct[], false);
Eval(4711, o is NotEmptyStruct?, false);
Eval(4712, o is NotEmptyStruct?[], false);
- Eval(4713, o is EmptyStructGen<int>, false);
- Eval(4714, o is EmptyStructGen<int>[], false);
- Eval(4715, o is EmptyStructGen<int>?, false);
- Eval(4716, o is EmptyStructGen<int>?[], false);
- Eval(4717, o is NotEmptyStructGen<Guid>, false);
- Eval(4718, o is NotEmptyStructGen<Guid>[], false);
- Eval(4719, o is NotEmptyStructGen<Guid>?, false);
- Eval(4720, o is NotEmptyStructGen<Guid>?[], false);
- Eval(4721, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4722, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4723, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4724, o is NotEmptyStructConstrainedGen<IntPtr>?[], true);
+// Eval(4713, o is EmptyStructGen<int>, false);
+// Eval(4714, o is EmptyStructGen<int>[], false);
+// Eval(4715, o is EmptyStructGen<int>?, false);
+// Eval(4716, o is EmptyStructGen<int>?[], false);
+// Eval(4717, o is NotEmptyStructGen<Guid>, false);
+// Eval(4718, o is NotEmptyStructGen<Guid>[], false);
+// Eval(4719, o is NotEmptyStructGen<Guid>?, false);
+// Eval(4720, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(4721, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4722, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4723, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4724, o is NotEmptyStructConstrainedGen<IntPtr>?[], true);
Eval(4725, o is NestedStruct, false);
Eval(4726, o is NestedStruct[], false);
Eval(4727, o is NestedStruct?, false);
Eval(4728, o is NestedStruct?[], false);
- Eval(4729, o is NestedStructGen<Decimal>, false);
- Eval(4730, o is NestedStructGen<Decimal>[], false);
- Eval(4731, o is NestedStructGen<Decimal>?, false);
- Eval(4732, o is NestedStructGen<Decimal>?[], false);
+// Eval(4729, o is NestedStructGen<Decimal>, false);
+// Eval(4730, o is NestedStructGen<Decimal>[], false);
+// Eval(4731, o is NestedStructGen<Decimal>?, false);
+// Eval(4732, o is NestedStructGen<Decimal>?[], false);
Eval(4733, o is ExplicitFieldOffsetStruct, false);
Eval(4734, o is ExplicitFieldOffsetStruct[], false);
Eval(4735, o is ExplicitFieldOffsetStruct?, false);
@@ -4684,18 +4684,18 @@ internal class Program
Eval(4754, o is ImplementTwoInterface[], false);
Eval(4755, o is ImplementTwoInterface?, false);
Eval(4756, o is ImplementTwoInterface?[], false);
- Eval(4757, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4758, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4759, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4760, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4761, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4762, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4763, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4764, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4765, o is ImplementAllInterface<int>, false);
- Eval(4766, o is ImplementAllInterface<int>[], false);
- Eval(4767, o is ImplementAllInterface<int>?, false);
- Eval(4768, o is ImplementAllInterface<int>?[], false);
+// Eval(4757, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4758, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4759, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4760, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4761, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4762, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4763, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4764, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4765, o is ImplementAllInterface<int>, false);
+// Eval(4766, o is ImplementAllInterface<int>[], false);
+// Eval(4767, o is ImplementAllInterface<int>?, false);
+// Eval(4768, o is ImplementAllInterface<int>?[], false);
Eval(4769, o is IntE, false);
Eval(4770, o is IntE[], false);
Eval(4771, o is IntE?, false);
@@ -4794,38 +4794,38 @@ internal class Program
Eval(4864, o is IEmpty[], false);
Eval(4865, o is INotEmpty, false);
Eval(4866, o is INotEmpty[], false);
- Eval(4867, o is IEmptyGen<int>, false);
- Eval(4868, o is IEmptyGen<int>[], false);
- Eval(4869, o is INotEmptyGen<int>, false);
- Eval(4870, o is INotEmptyGen<int>[], false);
+// Eval(4867, o is IEmptyGen<int>, false);
+// Eval(4868, o is IEmptyGen<int>[], false);
+// Eval(4869, o is INotEmptyGen<int>, false);
+// Eval(4870, o is INotEmptyGen<int>[], false);
Eval(4871, o is SimpleDelegate, false);
Eval(4872, o is SimpleDelegate[], false);
- Eval(4873, o is GenericDelegate<int>, false);
- Eval(4874, o is GenericDelegate<int>[], false);
+// Eval(4873, o is GenericDelegate<int>, false);
+// Eval(4874, o is GenericDelegate<int>[], false);
Eval(4875, o is EmptyClass, false);
Eval(4876, o is EmptyClass[], false);
Eval(4877, o is NotEmptyClass, false);
Eval(4878, o is NotEmptyClass[], false);
- Eval(4879, o is EmptyClassGen<int>, false);
- Eval(4880, o is EmptyClassGen<int>[], false);
- Eval(4881, o is NotEmptyClassGen<Guid>, false);
- Eval(4882, o is NotEmptyClassGen<Guid>[], false);
- Eval(4883, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4884, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4879, o is EmptyClassGen<int>, false);
+// Eval(4880, o is EmptyClassGen<int>[], false);
+// Eval(4881, o is NotEmptyClassGen<Guid>, false);
+// Eval(4882, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4883, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4884, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4885, o is NestedClass, false);
Eval(4886, o is NestedClass[], false);
- Eval(4887, o is NestedClassGen<Decimal>, false);
- Eval(4888, o is NestedClassGen<Decimal>[], false);
+// Eval(4887, o is NestedClassGen<Decimal>, false);
+// Eval(4888, o is NestedClassGen<Decimal>[], false);
Eval(4889, o is ImplementOneInterfaceC, false);
Eval(4890, o is ImplementOneInterfaceC[], false);
Eval(4891, o is ImplementTwoInterfaceC, false);
Eval(4892, o is ImplementTwoInterfaceC[], false);
- Eval(4893, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4894, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4895, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4896, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4897, o is ImplementAllInterfaceC<int>, false);
- Eval(4898, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4893, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4894, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4895, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4896, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4897, o is ImplementAllInterfaceC<int>, false);
+// Eval(4898, o is ImplementAllInterfaceC<int>[], false);
Eval(4899, o is SealedClass, false);
Eval(4900, o is SealedClass[], false);
}
@@ -4843,26 +4843,26 @@ internal class Program
Eval(4906, o is NotEmptyStruct[], false);
Eval(4907, o is NotEmptyStruct?, false);
Eval(4908, o is NotEmptyStruct?[], false);
- Eval(4909, o is EmptyStructGen<int>, false);
- Eval(4910, o is EmptyStructGen<int>[], false);
- Eval(4911, o is EmptyStructGen<int>?, false);
- Eval(4912, o is EmptyStructGen<int>?[], false);
- Eval(4913, o is NotEmptyStructGen<Guid>, false);
- Eval(4914, o is NotEmptyStructGen<Guid>[], false);
- Eval(4915, o is NotEmptyStructGen<Guid>?, false);
- Eval(4916, o is NotEmptyStructGen<Guid>?[], false);
- Eval(4917, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4918, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4919, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4920, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4909, o is EmptyStructGen<int>, false);
+// Eval(4910, o is EmptyStructGen<int>[], false);
+// Eval(4911, o is EmptyStructGen<int>?, false);
+// Eval(4912, o is EmptyStructGen<int>?[], false);
+// Eval(4913, o is NotEmptyStructGen<Guid>, false);
+// Eval(4914, o is NotEmptyStructGen<Guid>[], false);
+// Eval(4915, o is NotEmptyStructGen<Guid>?, false);
+// Eval(4916, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(4917, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4918, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4919, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4920, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4921, o is NestedStruct, true);
Eval(4922, o is NestedStruct[], false);
Eval(4923, o is NestedStruct?, true);
Eval(4924, o is NestedStruct?[], false);
- Eval(4925, o is NestedStructGen<Decimal>, false);
- Eval(4926, o is NestedStructGen<Decimal>[], false);
- Eval(4927, o is NestedStructGen<Decimal>?, false);
- Eval(4928, o is NestedStructGen<Decimal>?[], false);
+// Eval(4925, o is NestedStructGen<Decimal>, false);
+// Eval(4926, o is NestedStructGen<Decimal>[], false);
+// Eval(4927, o is NestedStructGen<Decimal>?, false);
+// Eval(4928, o is NestedStructGen<Decimal>?[], false);
Eval(4929, o is ExplicitFieldOffsetStruct, false);
Eval(4930, o is ExplicitFieldOffsetStruct[], false);
Eval(4931, o is ExplicitFieldOffsetStruct?, false);
@@ -4879,18 +4879,18 @@ internal class Program
Eval(4950, o is ImplementTwoInterface[], false);
Eval(4951, o is ImplementTwoInterface?, false);
Eval(4952, o is ImplementTwoInterface?[], false);
- Eval(4953, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4954, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4955, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4956, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4957, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4958, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4959, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4960, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4961, o is ImplementAllInterface<int>, false);
- Eval(4962, o is ImplementAllInterface<int>[], false);
- Eval(4963, o is ImplementAllInterface<int>?, false);
- Eval(4964, o is ImplementAllInterface<int>?[], false);
+// Eval(4953, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4954, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4955, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4956, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4957, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4958, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4959, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4960, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4961, o is ImplementAllInterface<int>, false);
+// Eval(4962, o is ImplementAllInterface<int>[], false);
+// Eval(4963, o is ImplementAllInterface<int>?, false);
+// Eval(4964, o is ImplementAllInterface<int>?[], false);
Eval(4965, o is IntE, false);
Eval(4966, o is IntE[], false);
Eval(4967, o is IntE?, false);
@@ -4989,38 +4989,38 @@ internal class Program
Eval(5060, o is IEmpty[], false);
Eval(5061, o is INotEmpty, false);
Eval(5062, o is INotEmpty[], false);
- Eval(5063, o is IEmptyGen<int>, false);
- Eval(5064, o is IEmptyGen<int>[], false);
- Eval(5065, o is INotEmptyGen<int>, false);
- Eval(5066, o is INotEmptyGen<int>[], false);
+// Eval(5063, o is IEmptyGen<int>, false);
+// Eval(5064, o is IEmptyGen<int>[], false);
+// Eval(5065, o is INotEmptyGen<int>, false);
+// Eval(5066, o is INotEmptyGen<int>[], false);
Eval(5067, o is SimpleDelegate, false);
Eval(5068, o is SimpleDelegate[], false);
- Eval(5069, o is GenericDelegate<int>, false);
- Eval(5070, o is GenericDelegate<int>[], false);
+// Eval(5069, o is GenericDelegate<int>, false);
+// Eval(5070, o is GenericDelegate<int>[], false);
Eval(5071, o is EmptyClass, false);
Eval(5072, o is EmptyClass[], false);
Eval(5073, o is NotEmptyClass, false);
Eval(5074, o is NotEmptyClass[], false);
- Eval(5075, o is EmptyClassGen<int>, false);
- Eval(5076, o is EmptyClassGen<int>[], false);
- Eval(5077, o is NotEmptyClassGen<Guid>, false);
- Eval(5078, o is NotEmptyClassGen<Guid>[], false);
- Eval(5079, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5080, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5075, o is EmptyClassGen<int>, false);
+// Eval(5076, o is EmptyClassGen<int>[], false);
+// Eval(5077, o is NotEmptyClassGen<Guid>, false);
+// Eval(5078, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5079, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5080, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5081, o is NestedClass, false);
Eval(5082, o is NestedClass[], false);
- Eval(5083, o is NestedClassGen<Decimal>, false);
- Eval(5084, o is NestedClassGen<Decimal>[], false);
+// Eval(5083, o is NestedClassGen<Decimal>, false);
+// Eval(5084, o is NestedClassGen<Decimal>[], false);
Eval(5085, o is ImplementOneInterfaceC, false);
Eval(5086, o is ImplementOneInterfaceC[], false);
Eval(5087, o is ImplementTwoInterfaceC, false);
Eval(5088, o is ImplementTwoInterfaceC[], false);
- Eval(5089, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5090, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5091, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5092, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5093, o is ImplementAllInterfaceC<int>, false);
- Eval(5094, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5089, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5090, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5091, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5092, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5093, o is ImplementAllInterfaceC<int>, false);
+// Eval(5094, o is ImplementAllInterfaceC<int>[], false);
Eval(5095, o is SealedClass, false);
Eval(5096, o is SealedClass[], false);
}
@@ -5035,26 +5035,26 @@ internal class Program
Eval(5102, o is NotEmptyStruct[], false);
Eval(5103, o is NotEmptyStruct?, false);
Eval(5104, o is NotEmptyStruct?[], false);
- Eval(5105, o is EmptyStructGen<int>, false);
- Eval(5106, o is EmptyStructGen<int>[], false);
- Eval(5107, o is EmptyStructGen<int>?, false);
- Eval(5108, o is EmptyStructGen<int>?[], false);
- Eval(5109, o is NotEmptyStructGen<Guid>, false);
- Eval(5110, o is NotEmptyStructGen<Guid>[], false);
- Eval(5111, o is NotEmptyStructGen<Guid>?, false);
- Eval(5112, o is NotEmptyStructGen<Guid>?[], false);
- Eval(5113, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5114, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5115, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5116, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5105, o is EmptyStructGen<int>, false);
+// Eval(5106, o is EmptyStructGen<int>[], false);
+// Eval(5107, o is EmptyStructGen<int>?, false);
+// Eval(5108, o is EmptyStructGen<int>?[], false);
+// Eval(5109, o is NotEmptyStructGen<Guid>, false);
+// Eval(5110, o is NotEmptyStructGen<Guid>[], false);
+// Eval(5111, o is NotEmptyStructGen<Guid>?, false);
+// Eval(5112, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(5113, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5114, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5115, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5116, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5117, o is NestedStruct, true);
Eval(5118, o is NestedStruct[], false);
Eval(5119, o is NestedStruct?, true);
Eval(5120, o is NestedStruct?[], false);
- Eval(5121, o is NestedStructGen<Decimal>, false);
- Eval(5122, o is NestedStructGen<Decimal>[], false);
- Eval(5123, o is NestedStructGen<Decimal>?, false);
- Eval(5124, o is NestedStructGen<Decimal>?[], false);
+// Eval(5121, o is NestedStructGen<Decimal>, false);
+// Eval(5122, o is NestedStructGen<Decimal>[], false);
+// Eval(5123, o is NestedStructGen<Decimal>?, false);
+// Eval(5124, o is NestedStructGen<Decimal>?[], false);
Eval(5125, o is ExplicitFieldOffsetStruct, false);
Eval(5126, o is ExplicitFieldOffsetStruct[], false);
Eval(5127, o is ExplicitFieldOffsetStruct?, false);
@@ -5071,18 +5071,18 @@ internal class Program
Eval(5146, o is ImplementTwoInterface[], false);
Eval(5147, o is ImplementTwoInterface?, false);
Eval(5148, o is ImplementTwoInterface?[], false);
- Eval(5149, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5150, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5151, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5152, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5153, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5154, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5155, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5156, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5157, o is ImplementAllInterface<int>, false);
- Eval(5158, o is ImplementAllInterface<int>[], false);
- Eval(5159, o is ImplementAllInterface<int>?, false);
- Eval(5160, o is ImplementAllInterface<int>?[], false);
+// Eval(5149, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5150, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5151, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5152, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5153, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5154, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5155, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5156, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5157, o is ImplementAllInterface<int>, false);
+// Eval(5158, o is ImplementAllInterface<int>[], false);
+// Eval(5159, o is ImplementAllInterface<int>?, false);
+// Eval(5160, o is ImplementAllInterface<int>?[], false);
Eval(5161, o is IntE, false);
Eval(5162, o is IntE[], false);
Eval(5163, o is IntE?, false);
@@ -5181,38 +5181,38 @@ internal class Program
Eval(5256, o is IEmpty[], false);
Eval(5257, o is INotEmpty, false);
Eval(5258, o is INotEmpty[], false);
- Eval(5259, o is IEmptyGen<int>, false);
- Eval(5260, o is IEmptyGen<int>[], false);
- Eval(5261, o is INotEmptyGen<int>, false);
- Eval(5262, o is INotEmptyGen<int>[], false);
+// Eval(5259, o is IEmptyGen<int>, false);
+// Eval(5260, o is IEmptyGen<int>[], false);
+// Eval(5261, o is INotEmptyGen<int>, false);
+// Eval(5262, o is INotEmptyGen<int>[], false);
Eval(5263, o is SimpleDelegate, false);
Eval(5264, o is SimpleDelegate[], false);
- Eval(5265, o is GenericDelegate<int>, false);
- Eval(5266, o is GenericDelegate<int>[], false);
+// Eval(5265, o is GenericDelegate<int>, false);
+// Eval(5266, o is GenericDelegate<int>[], false);
Eval(5267, o is EmptyClass, false);
Eval(5268, o is EmptyClass[], false);
Eval(5269, o is NotEmptyClass, false);
Eval(5270, o is NotEmptyClass[], false);
- Eval(5271, o is EmptyClassGen<int>, false);
- Eval(5272, o is EmptyClassGen<int>[], false);
- Eval(5273, o is NotEmptyClassGen<Guid>, false);
- Eval(5274, o is NotEmptyClassGen<Guid>[], false);
- Eval(5275, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5276, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5271, o is EmptyClassGen<int>, false);
+// Eval(5272, o is EmptyClassGen<int>[], false);
+// Eval(5273, o is NotEmptyClassGen<Guid>, false);
+// Eval(5274, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5275, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5276, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5277, o is NestedClass, false);
Eval(5278, o is NestedClass[], false);
- Eval(5279, o is NestedClassGen<Decimal>, false);
- Eval(5280, o is NestedClassGen<Decimal>[], false);
+// Eval(5279, o is NestedClassGen<Decimal>, false);
+// Eval(5280, o is NestedClassGen<Decimal>[], false);
Eval(5281, o is ImplementOneInterfaceC, false);
Eval(5282, o is ImplementOneInterfaceC[], false);
Eval(5283, o is ImplementTwoInterfaceC, false);
Eval(5284, o is ImplementTwoInterfaceC[], false);
- Eval(5285, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5286, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5287, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5288, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5289, o is ImplementAllInterfaceC<int>, false);
- Eval(5290, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5285, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5286, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5287, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5288, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5289, o is ImplementAllInterfaceC<int>, false);
+// Eval(5290, o is ImplementAllInterfaceC<int>[], false);
Eval(5291, o is SealedClass, false);
Eval(5292, o is SealedClass[], false);
}
@@ -5227,26 +5227,26 @@ internal class Program
Eval(5298, o is NotEmptyStruct[], false);
Eval(5299, o is NotEmptyStruct?, false);
Eval(5300, o is NotEmptyStruct?[], false);
- Eval(5301, o is EmptyStructGen<int>, false);
- Eval(5302, o is EmptyStructGen<int>[], false);
- Eval(5303, o is EmptyStructGen<int>?, false);
- Eval(5304, o is EmptyStructGen<int>?[], false);
- Eval(5305, o is NotEmptyStructGen<Guid>, false);
- Eval(5306, o is NotEmptyStructGen<Guid>[], false);
- Eval(5307, o is NotEmptyStructGen<Guid>?, false);
- Eval(5308, o is NotEmptyStructGen<Guid>?[], false);
- Eval(5309, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5310, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5311, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5312, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5301, o is EmptyStructGen<int>, false);
+// Eval(5302, o is EmptyStructGen<int>[], false);
+// Eval(5303, o is EmptyStructGen<int>?, false);
+// Eval(5304, o is EmptyStructGen<int>?[], false);
+// Eval(5305, o is NotEmptyStructGen<Guid>, false);
+// Eval(5306, o is NotEmptyStructGen<Guid>[], false);
+// Eval(5307, o is NotEmptyStructGen<Guid>?, false);
+// Eval(5308, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(5309, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5310, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5311, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5312, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5313, o is NestedStruct, false);
Eval(5314, o is NestedStruct[], false);
Eval(5315, o is NestedStruct?, false);
Eval(5316, o is NestedStruct?[], false);
- Eval(5317, o is NestedStructGen<Decimal>, false);
- Eval(5318, o is NestedStructGen<Decimal>[], false);
- Eval(5319, o is NestedStructGen<Decimal>?, false);
- Eval(5320, o is NestedStructGen<Decimal>?[], false);
+// Eval(5317, o is NestedStructGen<Decimal>, false);
+// Eval(5318, o is NestedStructGen<Decimal>[], false);
+// Eval(5319, o is NestedStructGen<Decimal>?, false);
+// Eval(5320, o is NestedStructGen<Decimal>?[], false);
Eval(5321, o is ExplicitFieldOffsetStruct, false);
Eval(5322, o is ExplicitFieldOffsetStruct[], false);
Eval(5323, o is ExplicitFieldOffsetStruct?, false);
@@ -5263,18 +5263,18 @@ internal class Program
Eval(5342, o is ImplementTwoInterface[], false);
Eval(5343, o is ImplementTwoInterface?, false);
Eval(5344, o is ImplementTwoInterface?[], false);
- Eval(5345, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5346, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5347, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5348, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5349, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5350, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5351, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5352, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5353, o is ImplementAllInterface<int>, false);
- Eval(5354, o is ImplementAllInterface<int>[], false);
- Eval(5355, o is ImplementAllInterface<int>?, false);
- Eval(5356, o is ImplementAllInterface<int>?[], false);
+// Eval(5345, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5346, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5347, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5348, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5349, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5350, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5351, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5352, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5353, o is ImplementAllInterface<int>, false);
+// Eval(5354, o is ImplementAllInterface<int>[], false);
+// Eval(5355, o is ImplementAllInterface<int>?, false);
+// Eval(5356, o is ImplementAllInterface<int>?[], false);
Eval(5357, o is IntE, false);
Eval(5358, o is IntE[], false);
Eval(5359, o is IntE?, false);
@@ -5373,38 +5373,38 @@ internal class Program
Eval(5452, o is IEmpty[], false);
Eval(5453, o is INotEmpty, false);
Eval(5454, o is INotEmpty[], false);
- Eval(5455, o is IEmptyGen<int>, false);
- Eval(5456, o is IEmptyGen<int>[], false);
- Eval(5457, o is INotEmptyGen<int>, false);
- Eval(5458, o is INotEmptyGen<int>[], false);
+// Eval(5455, o is IEmptyGen<int>, false);
+// Eval(5456, o is IEmptyGen<int>[], false);
+// Eval(5457, o is INotEmptyGen<int>, false);
+// Eval(5458, o is INotEmptyGen<int>[], false);
Eval(5459, o is SimpleDelegate, false);
Eval(5460, o is SimpleDelegate[], false);
- Eval(5461, o is GenericDelegate<int>, false);
- Eval(5462, o is GenericDelegate<int>[], false);
+// Eval(5461, o is GenericDelegate<int>, false);
+// Eval(5462, o is GenericDelegate<int>[], false);
Eval(5463, o is EmptyClass, false);
Eval(5464, o is EmptyClass[], false);
Eval(5465, o is NotEmptyClass, false);
Eval(5466, o is NotEmptyClass[], false);
- Eval(5467, o is EmptyClassGen<int>, false);
- Eval(5468, o is EmptyClassGen<int>[], false);
- Eval(5469, o is NotEmptyClassGen<Guid>, false);
- Eval(5470, o is NotEmptyClassGen<Guid>[], false);
- Eval(5471, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5472, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5467, o is EmptyClassGen<int>, false);
+// Eval(5468, o is EmptyClassGen<int>[], false);
+// Eval(5469, o is NotEmptyClassGen<Guid>, false);
+// Eval(5470, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5471, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5472, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5473, o is NestedClass, false);
Eval(5474, o is NestedClass[], false);
- Eval(5475, o is NestedClassGen<Decimal>, false);
- Eval(5476, o is NestedClassGen<Decimal>[], false);
+// Eval(5475, o is NestedClassGen<Decimal>, false);
+// Eval(5476, o is NestedClassGen<Decimal>[], false);
Eval(5477, o is ImplementOneInterfaceC, false);
Eval(5478, o is ImplementOneInterfaceC[], false);
Eval(5479, o is ImplementTwoInterfaceC, false);
Eval(5480, o is ImplementTwoInterfaceC[], false);
- Eval(5481, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5482, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5483, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5484, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5485, o is ImplementAllInterfaceC<int>, false);
- Eval(5486, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5481, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5482, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5483, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5484, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5485, o is ImplementAllInterfaceC<int>, false);
+// Eval(5486, o is ImplementAllInterfaceC<int>[], false);
Eval(5487, o is SealedClass, false);
Eval(5488, o is SealedClass[], false);
}
@@ -5419,26 +5419,26 @@ internal class Program
Eval(5494, o is NotEmptyStruct[], false);
Eval(5495, o is NotEmptyStruct?, false);
Eval(5496, o is NotEmptyStruct?[], false);
- Eval(5497, o is EmptyStructGen<int>, false);
- Eval(5498, o is EmptyStructGen<int>[], false);
- Eval(5499, o is EmptyStructGen<int>?, false);
- Eval(5500, o is EmptyStructGen<int>?[], false);
- Eval(5501, o is NotEmptyStructGen<Guid>, false);
- Eval(5502, o is NotEmptyStructGen<Guid>[], false);
- Eval(5503, o is NotEmptyStructGen<Guid>?, false);
- Eval(5504, o is NotEmptyStructGen<Guid>?[], false);
- Eval(5505, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5506, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5507, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5508, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5497, o is EmptyStructGen<int>, false);
+// Eval(5498, o is EmptyStructGen<int>[], false);
+// Eval(5499, o is EmptyStructGen<int>?, false);
+// Eval(5500, o is EmptyStructGen<int>?[], false);
+// Eval(5501, o is NotEmptyStructGen<Guid>, false);
+// Eval(5502, o is NotEmptyStructGen<Guid>[], false);
+// Eval(5503, o is NotEmptyStructGen<Guid>?, false);
+// Eval(5504, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(5505, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5506, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5507, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5508, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5509, o is NestedStruct, false);
Eval(5510, o is NestedStruct[], false);
Eval(5511, o is NestedStruct?, false);
Eval(5512, o is NestedStruct?[], false);
- Eval(5513, o is NestedStructGen<Decimal>, false);
- Eval(5514, o is NestedStructGen<Decimal>[], false);
- Eval(5515, o is NestedStructGen<Decimal>?, false);
- Eval(5516, o is NestedStructGen<Decimal>?[], false);
+// Eval(5513, o is NestedStructGen<Decimal>, false);
+// Eval(5514, o is NestedStructGen<Decimal>[], false);
+// Eval(5515, o is NestedStructGen<Decimal>?, false);
+// Eval(5516, o is NestedStructGen<Decimal>?[], false);
Eval(5517, o is ExplicitFieldOffsetStruct, false);
Eval(5518, o is ExplicitFieldOffsetStruct[], false);
Eval(5519, o is ExplicitFieldOffsetStruct?, false);
@@ -5455,18 +5455,18 @@ internal class Program
Eval(5538, o is ImplementTwoInterface[], false);
Eval(5539, o is ImplementTwoInterface?, false);
Eval(5540, o is ImplementTwoInterface?[], false);
- Eval(5541, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5542, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5543, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5544, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5545, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5546, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5547, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5548, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5549, o is ImplementAllInterface<int>, false);
- Eval(5550, o is ImplementAllInterface<int>[], false);
- Eval(5551, o is ImplementAllInterface<int>?, false);
- Eval(5552, o is ImplementAllInterface<int>?[], false);
+// Eval(5541, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5542, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5543, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5544, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5545, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5546, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5547, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5548, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5549, o is ImplementAllInterface<int>, false);
+// Eval(5550, o is ImplementAllInterface<int>[], false);
+// Eval(5551, o is ImplementAllInterface<int>?, false);
+// Eval(5552, o is ImplementAllInterface<int>?[], false);
Eval(5553, o is IntE, false);
Eval(5554, o is IntE[], false);
Eval(5555, o is IntE?, false);
@@ -5565,38 +5565,38 @@ internal class Program
Eval(5648, o is IEmpty[], false);
Eval(5649, o is INotEmpty, false);
Eval(5650, o is INotEmpty[], false);
- Eval(5651, o is IEmptyGen<int>, false);
- Eval(5652, o is IEmptyGen<int>[], false);
- Eval(5653, o is INotEmptyGen<int>, false);
- Eval(5654, o is INotEmptyGen<int>[], false);
+// Eval(5651, o is IEmptyGen<int>, false);
+// Eval(5652, o is IEmptyGen<int>[], false);
+// Eval(5653, o is INotEmptyGen<int>, false);
+// Eval(5654, o is INotEmptyGen<int>[], false);
Eval(5655, o is SimpleDelegate, false);
Eval(5656, o is SimpleDelegate[], false);
- Eval(5657, o is GenericDelegate<int>, false);
- Eval(5658, o is GenericDelegate<int>[], false);
+// Eval(5657, o is GenericDelegate<int>, false);
+// Eval(5658, o is GenericDelegate<int>[], false);
Eval(5659, o is EmptyClass, false);
Eval(5660, o is EmptyClass[], false);
Eval(5661, o is NotEmptyClass, false);
Eval(5662, o is NotEmptyClass[], false);
- Eval(5663, o is EmptyClassGen<int>, false);
- Eval(5664, o is EmptyClassGen<int>[], false);
- Eval(5665, o is NotEmptyClassGen<Guid>, false);
- Eval(5666, o is NotEmptyClassGen<Guid>[], false);
- Eval(5667, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5668, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5663, o is EmptyClassGen<int>, false);
+// Eval(5664, o is EmptyClassGen<int>[], false);
+// Eval(5665, o is NotEmptyClassGen<Guid>, false);
+// Eval(5666, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5667, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5668, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5669, o is NestedClass, false);
Eval(5670, o is NestedClass[], false);
- Eval(5671, o is NestedClassGen<Decimal>, false);
- Eval(5672, o is NestedClassGen<Decimal>[], false);
+// Eval(5671, o is NestedClassGen<Decimal>, false);
+// Eval(5672, o is NestedClassGen<Decimal>[], false);
Eval(5673, o is ImplementOneInterfaceC, false);
Eval(5674, o is ImplementOneInterfaceC[], false);
Eval(5675, o is ImplementTwoInterfaceC, false);
Eval(5676, o is ImplementTwoInterfaceC[], false);
- Eval(5677, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5678, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5679, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5680, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5681, o is ImplementAllInterfaceC<int>, false);
- Eval(5682, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5677, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5678, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5679, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5680, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5681, o is ImplementAllInterfaceC<int>, false);
+// Eval(5682, o is ImplementAllInterfaceC<int>[], false);
Eval(5683, o is SealedClass, false);
Eval(5684, o is SealedClass[], false);
}
@@ -5611,26 +5611,26 @@ internal class Program
Eval(5690, o is NotEmptyStruct[], false);
Eval(5691, o is NotEmptyStruct?, false);
Eval(5692, o is NotEmptyStruct?[], false);
- Eval(5693, o is EmptyStructGen<int>, false);
- Eval(5694, o is EmptyStructGen<int>[], false);
- Eval(5695, o is EmptyStructGen<int>?, false);
- Eval(5696, o is EmptyStructGen<int>?[], false);
- Eval(5697, o is NotEmptyStructGen<Guid>, false);
- Eval(5698, o is NotEmptyStructGen<Guid>[], false);
- Eval(5699, o is NotEmptyStructGen<Guid>?, false);
- Eval(5700, o is NotEmptyStructGen<Guid>?[], false);
- Eval(5701, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5702, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5703, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5704, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5693, o is EmptyStructGen<int>, false);
+// Eval(5694, o is EmptyStructGen<int>[], false);
+// Eval(5695, o is EmptyStructGen<int>?, false);
+// Eval(5696, o is EmptyStructGen<int>?[], false);
+// Eval(5697, o is NotEmptyStructGen<Guid>, false);
+// Eval(5698, o is NotEmptyStructGen<Guid>[], false);
+// Eval(5699, o is NotEmptyStructGen<Guid>?, false);
+// Eval(5700, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(5701, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5702, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5703, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5704, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5705, o is NestedStruct, false);
Eval(5706, o is NestedStruct[], false);
Eval(5707, o is NestedStruct?, false);
Eval(5708, o is NestedStruct?[], true);
- Eval(5709, o is NestedStructGen<Decimal>, false);
- Eval(5710, o is NestedStructGen<Decimal>[], false);
- Eval(5711, o is NestedStructGen<Decimal>?, false);
- Eval(5712, o is NestedStructGen<Decimal>?[], false);
+// Eval(5709, o is NestedStructGen<Decimal>, false);
+// Eval(5710, o is NestedStructGen<Decimal>[], false);
+// Eval(5711, o is NestedStructGen<Decimal>?, false);
+// Eval(5712, o is NestedStructGen<Decimal>?[], false);
Eval(5713, o is ExplicitFieldOffsetStruct, false);
Eval(5714, o is ExplicitFieldOffsetStruct[], false);
Eval(5715, o is ExplicitFieldOffsetStruct?, false);
@@ -5647,18 +5647,18 @@ internal class Program
Eval(5734, o is ImplementTwoInterface[], false);
Eval(5735, o is ImplementTwoInterface?, false);
Eval(5736, o is ImplementTwoInterface?[], false);
- Eval(5737, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5738, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5739, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5740, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5741, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5742, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5743, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5744, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5745, o is ImplementAllInterface<int>, false);
- Eval(5746, o is ImplementAllInterface<int>[], false);
- Eval(5747, o is ImplementAllInterface<int>?, false);
- Eval(5748, o is ImplementAllInterface<int>?[], false);
+// Eval(5737, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5738, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5739, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5740, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5741, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5742, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5743, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5744, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5745, o is ImplementAllInterface<int>, false);
+// Eval(5746, o is ImplementAllInterface<int>[], false);
+// Eval(5747, o is ImplementAllInterface<int>?, false);
+// Eval(5748, o is ImplementAllInterface<int>?[], false);
Eval(5749, o is IntE, false);
Eval(5750, o is IntE[], false);
Eval(5751, o is IntE?, false);
@@ -5757,38 +5757,38 @@ internal class Program
Eval(5844, o is IEmpty[], false);
Eval(5845, o is INotEmpty, false);
Eval(5846, o is INotEmpty[], false);
- Eval(5847, o is IEmptyGen<int>, false);
- Eval(5848, o is IEmptyGen<int>[], false);
- Eval(5849, o is INotEmptyGen<int>, false);
- Eval(5850, o is INotEmptyGen<int>[], false);
+// Eval(5847, o is IEmptyGen<int>, false);
+// Eval(5848, o is IEmptyGen<int>[], false);
+// Eval(5849, o is INotEmptyGen<int>, false);
+// Eval(5850, o is INotEmptyGen<int>[], false);
Eval(5851, o is SimpleDelegate, false);
Eval(5852, o is SimpleDelegate[], false);
- Eval(5853, o is GenericDelegate<int>, false);
- Eval(5854, o is GenericDelegate<int>[], false);
+// Eval(5853, o is GenericDelegate<int>, false);
+// Eval(5854, o is GenericDelegate<int>[], false);
Eval(5855, o is EmptyClass, false);
Eval(5856, o is EmptyClass[], false);
Eval(5857, o is NotEmptyClass, false);
Eval(5858, o is NotEmptyClass[], false);
- Eval(5859, o is EmptyClassGen<int>, false);
- Eval(5860, o is EmptyClassGen<int>[], false);
- Eval(5861, o is NotEmptyClassGen<Guid>, false);
- Eval(5862, o is NotEmptyClassGen<Guid>[], false);
- Eval(5863, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5864, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5859, o is EmptyClassGen<int>, false);
+// Eval(5860, o is EmptyClassGen<int>[], false);
+// Eval(5861, o is NotEmptyClassGen<Guid>, false);
+// Eval(5862, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5863, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5864, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5865, o is NestedClass, false);
Eval(5866, o is NestedClass[], false);
- Eval(5867, o is NestedClassGen<Decimal>, false);
- Eval(5868, o is NestedClassGen<Decimal>[], false);
+// Eval(5867, o is NestedClassGen<Decimal>, false);
+// Eval(5868, o is NestedClassGen<Decimal>[], false);
Eval(5869, o is ImplementOneInterfaceC, false);
Eval(5870, o is ImplementOneInterfaceC[], false);
Eval(5871, o is ImplementTwoInterfaceC, false);
Eval(5872, o is ImplementTwoInterfaceC[], false);
- Eval(5873, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5874, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5875, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5876, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5877, o is ImplementAllInterfaceC<int>, false);
- Eval(5878, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5873, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5874, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5875, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5876, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5877, o is ImplementAllInterfaceC<int>, false);
+// Eval(5878, o is ImplementAllInterfaceC<int>[], false);
Eval(5879, o is SealedClass, false);
Eval(5880, o is SealedClass[], false);
}
@@ -5806,26 +5806,26 @@ internal class Program
Eval(5886, o is NotEmptyStruct[], false);
Eval(5887, o is NotEmptyStruct?, false);
Eval(5888, o is NotEmptyStruct?[], false);
- Eval(5889, o is EmptyStructGen<int>, false);
- Eval(5890, o is EmptyStructGen<int>[], false);
- Eval(5891, o is EmptyStructGen<int>?, false);
- Eval(5892, o is EmptyStructGen<int>?[], false);
- Eval(5893, o is NotEmptyStructGen<Guid>, false);
- Eval(5894, o is NotEmptyStructGen<Guid>[], false);
- Eval(5895, o is NotEmptyStructGen<Guid>?, false);
- Eval(5896, o is NotEmptyStructGen<Guid>?[], false);
- Eval(5897, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5898, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5899, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5900, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5889, o is EmptyStructGen<int>, false);
+// Eval(5890, o is EmptyStructGen<int>[], false);
+// Eval(5891, o is EmptyStructGen<int>?, false);
+// Eval(5892, o is EmptyStructGen<int>?[], false);
+// Eval(5893, o is NotEmptyStructGen<Guid>, false);
+// Eval(5894, o is NotEmptyStructGen<Guid>[], false);
+// Eval(5895, o is NotEmptyStructGen<Guid>?, false);
+// Eval(5896, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(5897, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5898, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5899, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5900, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5901, o is NestedStruct, false);
Eval(5902, o is NestedStruct[], false);
Eval(5903, o is NestedStruct?, false);
Eval(5904, o is NestedStruct?[], false);
- Eval(5905, o is NestedStructGen<Decimal>, true);
- Eval(5906, o is NestedStructGen<Decimal>[], false);
- Eval(5907, o is NestedStructGen<Decimal>?, true);
- Eval(5908, o is NestedStructGen<Decimal>?[], false);
+// Eval(5905, o is NestedStructGen<Decimal>, true);
+// Eval(5906, o is NestedStructGen<Decimal>[], false);
+// Eval(5907, o is NestedStructGen<Decimal>?, true);
+// Eval(5908, o is NestedStructGen<Decimal>?[], false);
Eval(5909, o is ExplicitFieldOffsetStruct, false);
Eval(5910, o is ExplicitFieldOffsetStruct[], false);
Eval(5911, o is ExplicitFieldOffsetStruct?, false);
@@ -5842,18 +5842,18 @@ internal class Program
Eval(5930, o is ImplementTwoInterface[], false);
Eval(5931, o is ImplementTwoInterface?, false);
Eval(5932, o is ImplementTwoInterface?[], false);
- Eval(5933, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5934, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5935, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5936, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5937, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5938, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5939, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5940, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5941, o is ImplementAllInterface<int>, false);
- Eval(5942, o is ImplementAllInterface<int>[], false);
- Eval(5943, o is ImplementAllInterface<int>?, false);
- Eval(5944, o is ImplementAllInterface<int>?[], false);
+// Eval(5933, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5934, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5935, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5936, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5937, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5938, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5939, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5940, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5941, o is ImplementAllInterface<int>, false);
+// Eval(5942, o is ImplementAllInterface<int>[], false);
+// Eval(5943, o is ImplementAllInterface<int>?, false);
+// Eval(5944, o is ImplementAllInterface<int>?[], false);
Eval(5945, o is IntE, false);
Eval(5946, o is IntE[], false);
Eval(5947, o is IntE?, false);
@@ -5952,38 +5952,38 @@ internal class Program
Eval(6040, o is IEmpty[], false);
Eval(6041, o is INotEmpty, false);
Eval(6042, o is INotEmpty[], false);
- Eval(6043, o is IEmptyGen<int>, false);
- Eval(6044, o is IEmptyGen<int>[], false);
- Eval(6045, o is INotEmptyGen<int>, false);
- Eval(6046, o is INotEmptyGen<int>[], false);
+// Eval(6043, o is IEmptyGen<int>, false);
+// Eval(6044, o is IEmptyGen<int>[], false);
+// Eval(6045, o is INotEmptyGen<int>, false);
+// Eval(6046, o is INotEmptyGen<int>[], false);
Eval(6047, o is SimpleDelegate, false);
Eval(6048, o is SimpleDelegate[], false);
- Eval(6049, o is GenericDelegate<int>, false);
- Eval(6050, o is GenericDelegate<int>[], false);
+// Eval(6049, o is GenericDelegate<int>, false);
+// Eval(6050, o is GenericDelegate<int>[], false);
Eval(6051, o is EmptyClass, false);
Eval(6052, o is EmptyClass[], false);
Eval(6053, o is NotEmptyClass, false);
Eval(6054, o is NotEmptyClass[], false);
- Eval(6055, o is EmptyClassGen<int>, false);
- Eval(6056, o is EmptyClassGen<int>[], false);
- Eval(6057, o is NotEmptyClassGen<Guid>, false);
- Eval(6058, o is NotEmptyClassGen<Guid>[], false);
- Eval(6059, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6060, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6055, o is EmptyClassGen<int>, false);
+// Eval(6056, o is EmptyClassGen<int>[], false);
+// Eval(6057, o is NotEmptyClassGen<Guid>, false);
+// Eval(6058, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6059, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6060, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6061, o is NestedClass, false);
Eval(6062, o is NestedClass[], false);
- Eval(6063, o is NestedClassGen<Decimal>, false);
- Eval(6064, o is NestedClassGen<Decimal>[], false);
+// Eval(6063, o is NestedClassGen<Decimal>, false);
+// Eval(6064, o is NestedClassGen<Decimal>[], false);
Eval(6065, o is ImplementOneInterfaceC, false);
Eval(6066, o is ImplementOneInterfaceC[], false);
Eval(6067, o is ImplementTwoInterfaceC, false);
Eval(6068, o is ImplementTwoInterfaceC[], false);
- Eval(6069, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6070, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6071, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6072, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6073, o is ImplementAllInterfaceC<int>, false);
- Eval(6074, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6069, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6070, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6071, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6072, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6073, o is ImplementAllInterfaceC<int>, false);
+// Eval(6074, o is ImplementAllInterfaceC<int>[], false);
Eval(6075, o is SealedClass, false);
Eval(6076, o is SealedClass[], false);
}
@@ -5998,26 +5998,26 @@ internal class Program
Eval(6082, o is NotEmptyStruct[], false);
Eval(6083, o is NotEmptyStruct?, false);
Eval(6084, o is NotEmptyStruct?[], false);
- Eval(6085, o is EmptyStructGen<int>, false);
- Eval(6086, o is EmptyStructGen<int>[], false);
- Eval(6087, o is EmptyStructGen<int>?, false);
- Eval(6088, o is EmptyStructGen<int>?[], false);
- Eval(6089, o is NotEmptyStructGen<Guid>, false);
- Eval(6090, o is NotEmptyStructGen<Guid>[], false);
- Eval(6091, o is NotEmptyStructGen<Guid>?, false);
- Eval(6092, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6093, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6094, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6095, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6096, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6085, o is EmptyStructGen<int>, false);
+// Eval(6086, o is EmptyStructGen<int>[], false);
+// Eval(6087, o is EmptyStructGen<int>?, false);
+// Eval(6088, o is EmptyStructGen<int>?[], false);
+// Eval(6089, o is NotEmptyStructGen<Guid>, false);
+// Eval(6090, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6091, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6092, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6093, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6094, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6095, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6096, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6097, o is NestedStruct, false);
Eval(6098, o is NestedStruct[], false);
Eval(6099, o is NestedStruct?, false);
Eval(6100, o is NestedStruct?[], false);
- Eval(6101, o is NestedStructGen<Decimal>, true);
- Eval(6102, o is NestedStructGen<Decimal>[], false);
- Eval(6103, o is NestedStructGen<Decimal>?, true);
- Eval(6104, o is NestedStructGen<Decimal>?[], false);
+// Eval(6101, o is NestedStructGen<Decimal>, true);
+// Eval(6102, o is NestedStructGen<Decimal>[], false);
+// Eval(6103, o is NestedStructGen<Decimal>?, true);
+// Eval(6104, o is NestedStructGen<Decimal>?[], false);
Eval(6105, o is ExplicitFieldOffsetStruct, false);
Eval(6106, o is ExplicitFieldOffsetStruct[], false);
Eval(6107, o is ExplicitFieldOffsetStruct?, false);
@@ -6034,18 +6034,18 @@ internal class Program
Eval(6126, o is ImplementTwoInterface[], false);
Eval(6127, o is ImplementTwoInterface?, false);
Eval(6128, o is ImplementTwoInterface?[], false);
- Eval(6129, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6130, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6131, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6132, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6133, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6134, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6135, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6136, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6137, o is ImplementAllInterface<int>, false);
- Eval(6138, o is ImplementAllInterface<int>[], false);
- Eval(6139, o is ImplementAllInterface<int>?, false);
- Eval(6140, o is ImplementAllInterface<int>?[], false);
+// Eval(6129, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6130, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6131, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6132, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6133, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6134, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6135, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6136, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6137, o is ImplementAllInterface<int>, false);
+// Eval(6138, o is ImplementAllInterface<int>[], false);
+// Eval(6139, o is ImplementAllInterface<int>?, false);
+// Eval(6140, o is ImplementAllInterface<int>?[], false);
Eval(6141, o is IntE, false);
Eval(6142, o is IntE[], false);
Eval(6143, o is IntE?, false);
@@ -6144,38 +6144,38 @@ internal class Program
Eval(6236, o is IEmpty[], false);
Eval(6237, o is INotEmpty, false);
Eval(6238, o is INotEmpty[], false);
- Eval(6239, o is IEmptyGen<int>, false);
- Eval(6240, o is IEmptyGen<int>[], false);
- Eval(6241, o is INotEmptyGen<int>, false);
- Eval(6242, o is INotEmptyGen<int>[], false);
+// Eval(6239, o is IEmptyGen<int>, false);
+// Eval(6240, o is IEmptyGen<int>[], false);
+// Eval(6241, o is INotEmptyGen<int>, false);
+// Eval(6242, o is INotEmptyGen<int>[], false);
Eval(6243, o is SimpleDelegate, false);
Eval(6244, o is SimpleDelegate[], false);
- Eval(6245, o is GenericDelegate<int>, false);
- Eval(6246, o is GenericDelegate<int>[], false);
+// Eval(6245, o is GenericDelegate<int>, false);
+// Eval(6246, o is GenericDelegate<int>[], false);
Eval(6247, o is EmptyClass, false);
Eval(6248, o is EmptyClass[], false);
Eval(6249, o is NotEmptyClass, false);
Eval(6250, o is NotEmptyClass[], false);
- Eval(6251, o is EmptyClassGen<int>, false);
- Eval(6252, o is EmptyClassGen<int>[], false);
- Eval(6253, o is NotEmptyClassGen<Guid>, false);
- Eval(6254, o is NotEmptyClassGen<Guid>[], false);
- Eval(6255, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6256, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6251, o is EmptyClassGen<int>, false);
+// Eval(6252, o is EmptyClassGen<int>[], false);
+// Eval(6253, o is NotEmptyClassGen<Guid>, false);
+// Eval(6254, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6255, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6256, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6257, o is NestedClass, false);
Eval(6258, o is NestedClass[], false);
- Eval(6259, o is NestedClassGen<Decimal>, false);
- Eval(6260, o is NestedClassGen<Decimal>[], false);
+// Eval(6259, o is NestedClassGen<Decimal>, false);
+// Eval(6260, o is NestedClassGen<Decimal>[], false);
Eval(6261, o is ImplementOneInterfaceC, false);
Eval(6262, o is ImplementOneInterfaceC[], false);
Eval(6263, o is ImplementTwoInterfaceC, false);
Eval(6264, o is ImplementTwoInterfaceC[], false);
- Eval(6265, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6266, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6267, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6268, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6269, o is ImplementAllInterfaceC<int>, false);
- Eval(6270, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6265, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6266, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6267, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6268, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6269, o is ImplementAllInterfaceC<int>, false);
+// Eval(6270, o is ImplementAllInterfaceC<int>[], false);
Eval(6271, o is SealedClass, false);
Eval(6272, o is SealedClass[], false);
}
@@ -6190,26 +6190,26 @@ internal class Program
Eval(6278, o is NotEmptyStruct[], false);
Eval(6279, o is NotEmptyStruct?, false);
Eval(6280, o is NotEmptyStruct?[], false);
- Eval(6281, o is EmptyStructGen<int>, false);
- Eval(6282, o is EmptyStructGen<int>[], false);
- Eval(6283, o is EmptyStructGen<int>?, false);
- Eval(6284, o is EmptyStructGen<int>?[], false);
- Eval(6285, o is NotEmptyStructGen<Guid>, false);
- Eval(6286, o is NotEmptyStructGen<Guid>[], false);
- Eval(6287, o is NotEmptyStructGen<Guid>?, false);
- Eval(6288, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6289, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6290, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6291, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6292, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6281, o is EmptyStructGen<int>, false);
+// Eval(6282, o is EmptyStructGen<int>[], false);
+// Eval(6283, o is EmptyStructGen<int>?, false);
+// Eval(6284, o is EmptyStructGen<int>?[], false);
+// Eval(6285, o is NotEmptyStructGen<Guid>, false);
+// Eval(6286, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6287, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6288, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6289, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6290, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6291, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6292, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6293, o is NestedStruct, false);
Eval(6294, o is NestedStruct[], false);
Eval(6295, o is NestedStruct?, false);
Eval(6296, o is NestedStruct?[], false);
- Eval(6297, o is NestedStructGen<Decimal>, false);
- Eval(6298, o is NestedStructGen<Decimal>[], false);
- Eval(6299, o is NestedStructGen<Decimal>?, false);
- Eval(6300, o is NestedStructGen<Decimal>?[], false);
+// Eval(6297, o is NestedStructGen<Decimal>, false);
+// Eval(6298, o is NestedStructGen<Decimal>[], false);
+// Eval(6299, o is NestedStructGen<Decimal>?, false);
+// Eval(6300, o is NestedStructGen<Decimal>?[], false);
Eval(6301, o is ExplicitFieldOffsetStruct, false);
Eval(6302, o is ExplicitFieldOffsetStruct[], false);
Eval(6303, o is ExplicitFieldOffsetStruct?, false);
@@ -6226,18 +6226,18 @@ internal class Program
Eval(6322, o is ImplementTwoInterface[], false);
Eval(6323, o is ImplementTwoInterface?, false);
Eval(6324, o is ImplementTwoInterface?[], false);
- Eval(6325, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6326, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6327, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6328, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6329, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6330, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6331, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6332, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6333, o is ImplementAllInterface<int>, false);
- Eval(6334, o is ImplementAllInterface<int>[], false);
- Eval(6335, o is ImplementAllInterface<int>?, false);
- Eval(6336, o is ImplementAllInterface<int>?[], false);
+// Eval(6325, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6326, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6327, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6328, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6329, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6330, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6331, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6332, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6333, o is ImplementAllInterface<int>, false);
+// Eval(6334, o is ImplementAllInterface<int>[], false);
+// Eval(6335, o is ImplementAllInterface<int>?, false);
+// Eval(6336, o is ImplementAllInterface<int>?[], false);
Eval(6337, o is IntE, false);
Eval(6338, o is IntE[], false);
Eval(6339, o is IntE?, false);
@@ -6336,38 +6336,38 @@ internal class Program
Eval(6432, o is IEmpty[], false);
Eval(6433, o is INotEmpty, false);
Eval(6434, o is INotEmpty[], false);
- Eval(6435, o is IEmptyGen<int>, false);
- Eval(6436, o is IEmptyGen<int>[], false);
- Eval(6437, o is INotEmptyGen<int>, false);
- Eval(6438, o is INotEmptyGen<int>[], false);
+// Eval(6435, o is IEmptyGen<int>, false);
+// Eval(6436, o is IEmptyGen<int>[], false);
+// Eval(6437, o is INotEmptyGen<int>, false);
+// Eval(6438, o is INotEmptyGen<int>[], false);
Eval(6439, o is SimpleDelegate, false);
Eval(6440, o is SimpleDelegate[], false);
- Eval(6441, o is GenericDelegate<int>, false);
- Eval(6442, o is GenericDelegate<int>[], false);
+// Eval(6441, o is GenericDelegate<int>, false);
+// Eval(6442, o is GenericDelegate<int>[], false);
Eval(6443, o is EmptyClass, false);
Eval(6444, o is EmptyClass[], false);
Eval(6445, o is NotEmptyClass, false);
Eval(6446, o is NotEmptyClass[], false);
- Eval(6447, o is EmptyClassGen<int>, false);
- Eval(6448, o is EmptyClassGen<int>[], false);
- Eval(6449, o is NotEmptyClassGen<Guid>, false);
- Eval(6450, o is NotEmptyClassGen<Guid>[], false);
- Eval(6451, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6452, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6447, o is EmptyClassGen<int>, false);
+// Eval(6448, o is EmptyClassGen<int>[], false);
+// Eval(6449, o is NotEmptyClassGen<Guid>, false);
+// Eval(6450, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6451, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6452, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6453, o is NestedClass, false);
Eval(6454, o is NestedClass[], false);
- Eval(6455, o is NestedClassGen<Decimal>, false);
- Eval(6456, o is NestedClassGen<Decimal>[], false);
+// Eval(6455, o is NestedClassGen<Decimal>, false);
+// Eval(6456, o is NestedClassGen<Decimal>[], false);
Eval(6457, o is ImplementOneInterfaceC, false);
Eval(6458, o is ImplementOneInterfaceC[], false);
Eval(6459, o is ImplementTwoInterfaceC, false);
Eval(6460, o is ImplementTwoInterfaceC[], false);
- Eval(6461, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6462, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6463, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6464, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6465, o is ImplementAllInterfaceC<int>, false);
- Eval(6466, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6461, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6462, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6463, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6464, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6465, o is ImplementAllInterfaceC<int>, false);
+// Eval(6466, o is ImplementAllInterfaceC<int>[], false);
Eval(6467, o is SealedClass, false);
Eval(6468, o is SealedClass[], false);
}
@@ -6382,26 +6382,26 @@ internal class Program
Eval(6474, o is NotEmptyStruct[], false);
Eval(6475, o is NotEmptyStruct?, false);
Eval(6476, o is NotEmptyStruct?[], false);
- Eval(6477, o is EmptyStructGen<int>, false);
- Eval(6478, o is EmptyStructGen<int>[], false);
- Eval(6479, o is EmptyStructGen<int>?, false);
- Eval(6480, o is EmptyStructGen<int>?[], false);
- Eval(6481, o is NotEmptyStructGen<Guid>, false);
- Eval(6482, o is NotEmptyStructGen<Guid>[], false);
- Eval(6483, o is NotEmptyStructGen<Guid>?, false);
- Eval(6484, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6485, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6486, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6487, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6488, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6477, o is EmptyStructGen<int>, false);
+// Eval(6478, o is EmptyStructGen<int>[], false);
+// Eval(6479, o is EmptyStructGen<int>?, false);
+// Eval(6480, o is EmptyStructGen<int>?[], false);
+// Eval(6481, o is NotEmptyStructGen<Guid>, false);
+// Eval(6482, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6483, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6484, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6485, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6486, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6487, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6488, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6489, o is NestedStruct, false);
Eval(6490, o is NestedStruct[], false);
Eval(6491, o is NestedStruct?, false);
Eval(6492, o is NestedStruct?[], false);
- Eval(6493, o is NestedStructGen<Decimal>, false);
- Eval(6494, o is NestedStructGen<Decimal>[], false);
- Eval(6495, o is NestedStructGen<Decimal>?, false);
- Eval(6496, o is NestedStructGen<Decimal>?[], false);
+// Eval(6493, o is NestedStructGen<Decimal>, false);
+// Eval(6494, o is NestedStructGen<Decimal>[], false);
+// Eval(6495, o is NestedStructGen<Decimal>?, false);
+// Eval(6496, o is NestedStructGen<Decimal>?[], false);
Eval(6497, o is ExplicitFieldOffsetStruct, false);
Eval(6498, o is ExplicitFieldOffsetStruct[], false);
Eval(6499, o is ExplicitFieldOffsetStruct?, false);
@@ -6418,18 +6418,18 @@ internal class Program
Eval(6518, o is ImplementTwoInterface[], false);
Eval(6519, o is ImplementTwoInterface?, false);
Eval(6520, o is ImplementTwoInterface?[], false);
- Eval(6521, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6522, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6523, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6524, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6525, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6526, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6527, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6528, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6529, o is ImplementAllInterface<int>, false);
- Eval(6530, o is ImplementAllInterface<int>[], false);
- Eval(6531, o is ImplementAllInterface<int>?, false);
- Eval(6532, o is ImplementAllInterface<int>?[], false);
+// Eval(6521, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6522, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6523, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6524, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6525, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6526, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6527, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6528, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6529, o is ImplementAllInterface<int>, false);
+// Eval(6530, o is ImplementAllInterface<int>[], false);
+// Eval(6531, o is ImplementAllInterface<int>?, false);
+// Eval(6532, o is ImplementAllInterface<int>?[], false);
Eval(6533, o is IntE, false);
Eval(6534, o is IntE[], false);
Eval(6535, o is IntE?, false);
@@ -6528,38 +6528,38 @@ internal class Program
Eval(6628, o is IEmpty[], false);
Eval(6629, o is INotEmpty, false);
Eval(6630, o is INotEmpty[], false);
- Eval(6631, o is IEmptyGen<int>, false);
- Eval(6632, o is IEmptyGen<int>[], false);
- Eval(6633, o is INotEmptyGen<int>, false);
- Eval(6634, o is INotEmptyGen<int>[], false);
+// Eval(6631, o is IEmptyGen<int>, false);
+// Eval(6632, o is IEmptyGen<int>[], false);
+// Eval(6633, o is INotEmptyGen<int>, false);
+// Eval(6634, o is INotEmptyGen<int>[], false);
Eval(6635, o is SimpleDelegate, false);
Eval(6636, o is SimpleDelegate[], false);
- Eval(6637, o is GenericDelegate<int>, false);
- Eval(6638, o is GenericDelegate<int>[], false);
+// Eval(6637, o is GenericDelegate<int>, false);
+// Eval(6638, o is GenericDelegate<int>[], false);
Eval(6639, o is EmptyClass, false);
Eval(6640, o is EmptyClass[], false);
Eval(6641, o is NotEmptyClass, false);
Eval(6642, o is NotEmptyClass[], false);
- Eval(6643, o is EmptyClassGen<int>, false);
- Eval(6644, o is EmptyClassGen<int>[], false);
- Eval(6645, o is NotEmptyClassGen<Guid>, false);
- Eval(6646, o is NotEmptyClassGen<Guid>[], false);
- Eval(6647, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6648, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6643, o is EmptyClassGen<int>, false);
+// Eval(6644, o is EmptyClassGen<int>[], false);
+// Eval(6645, o is NotEmptyClassGen<Guid>, false);
+// Eval(6646, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6647, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6648, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6649, o is NestedClass, false);
Eval(6650, o is NestedClass[], false);
- Eval(6651, o is NestedClassGen<Decimal>, false);
- Eval(6652, o is NestedClassGen<Decimal>[], false);
+// Eval(6651, o is NestedClassGen<Decimal>, false);
+// Eval(6652, o is NestedClassGen<Decimal>[], false);
Eval(6653, o is ImplementOneInterfaceC, false);
Eval(6654, o is ImplementOneInterfaceC[], false);
Eval(6655, o is ImplementTwoInterfaceC, false);
Eval(6656, o is ImplementTwoInterfaceC[], false);
- Eval(6657, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6658, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6659, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6660, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6661, o is ImplementAllInterfaceC<int>, false);
- Eval(6662, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6657, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6658, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6659, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6660, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6661, o is ImplementAllInterfaceC<int>, false);
+// Eval(6662, o is ImplementAllInterfaceC<int>[], false);
Eval(6663, o is SealedClass, false);
Eval(6664, o is SealedClass[], false);
}
@@ -6574,26 +6574,26 @@ internal class Program
Eval(6670, o is NotEmptyStruct[], false);
Eval(6671, o is NotEmptyStruct?, false);
Eval(6672, o is NotEmptyStruct?[], false);
- Eval(6673, o is EmptyStructGen<int>, false);
- Eval(6674, o is EmptyStructGen<int>[], false);
- Eval(6675, o is EmptyStructGen<int>?, false);
- Eval(6676, o is EmptyStructGen<int>?[], false);
- Eval(6677, o is NotEmptyStructGen<Guid>, false);
- Eval(6678, o is NotEmptyStructGen<Guid>[], false);
- Eval(6679, o is NotEmptyStructGen<Guid>?, false);
- Eval(6680, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6681, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6682, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6683, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6684, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6673, o is EmptyStructGen<int>, false);
+// Eval(6674, o is EmptyStructGen<int>[], false);
+// Eval(6675, o is EmptyStructGen<int>?, false);
+// Eval(6676, o is EmptyStructGen<int>?[], false);
+// Eval(6677, o is NotEmptyStructGen<Guid>, false);
+// Eval(6678, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6679, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6680, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6681, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6682, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6683, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6684, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6685, o is NestedStruct, false);
Eval(6686, o is NestedStruct[], false);
Eval(6687, o is NestedStruct?, false);
Eval(6688, o is NestedStruct?[], false);
- Eval(6689, o is NestedStructGen<Decimal>, false);
- Eval(6690, o is NestedStructGen<Decimal>[], false);
- Eval(6691, o is NestedStructGen<Decimal>?, false);
- Eval(6692, o is NestedStructGen<Decimal>?[], true);
+// Eval(6689, o is NestedStructGen<Decimal>, false);
+// Eval(6690, o is NestedStructGen<Decimal>[], false);
+// Eval(6691, o is NestedStructGen<Decimal>?, false);
+// Eval(6692, o is NestedStructGen<Decimal>?[], true);
Eval(6693, o is ExplicitFieldOffsetStruct, false);
Eval(6694, o is ExplicitFieldOffsetStruct[], false);
Eval(6695, o is ExplicitFieldOffsetStruct?, false);
@@ -6610,18 +6610,18 @@ internal class Program
Eval(6714, o is ImplementTwoInterface[], false);
Eval(6715, o is ImplementTwoInterface?, false);
Eval(6716, o is ImplementTwoInterface?[], false);
- Eval(6717, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6718, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6719, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6720, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6721, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6722, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6723, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6724, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6725, o is ImplementAllInterface<int>, false);
- Eval(6726, o is ImplementAllInterface<int>[], false);
- Eval(6727, o is ImplementAllInterface<int>?, false);
- Eval(6728, o is ImplementAllInterface<int>?[], false);
+// Eval(6717, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6718, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6719, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6720, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6721, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6722, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6723, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6724, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6725, o is ImplementAllInterface<int>, false);
+// Eval(6726, o is ImplementAllInterface<int>[], false);
+// Eval(6727, o is ImplementAllInterface<int>?, false);
+// Eval(6728, o is ImplementAllInterface<int>?[], false);
Eval(6729, o is IntE, false);
Eval(6730, o is IntE[], false);
Eval(6731, o is IntE?, false);
@@ -6720,38 +6720,38 @@ internal class Program
Eval(6824, o is IEmpty[], false);
Eval(6825, o is INotEmpty, false);
Eval(6826, o is INotEmpty[], false);
- Eval(6827, o is IEmptyGen<int>, false);
- Eval(6828, o is IEmptyGen<int>[], false);
- Eval(6829, o is INotEmptyGen<int>, false);
- Eval(6830, o is INotEmptyGen<int>[], false);
+// Eval(6827, o is IEmptyGen<int>, false);
+// Eval(6828, o is IEmptyGen<int>[], false);
+// Eval(6829, o is INotEmptyGen<int>, false);
+// Eval(6830, o is INotEmptyGen<int>[], false);
Eval(6831, o is SimpleDelegate, false);
Eval(6832, o is SimpleDelegate[], false);
- Eval(6833, o is GenericDelegate<int>, false);
- Eval(6834, o is GenericDelegate<int>[], false);
+// Eval(6833, o is GenericDelegate<int>, false);
+// Eval(6834, o is GenericDelegate<int>[], false);
Eval(6835, o is EmptyClass, false);
Eval(6836, o is EmptyClass[], false);
Eval(6837, o is NotEmptyClass, false);
Eval(6838, o is NotEmptyClass[], false);
- Eval(6839, o is EmptyClassGen<int>, false);
- Eval(6840, o is EmptyClassGen<int>[], false);
- Eval(6841, o is NotEmptyClassGen<Guid>, false);
- Eval(6842, o is NotEmptyClassGen<Guid>[], false);
- Eval(6843, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6844, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6839, o is EmptyClassGen<int>, false);
+// Eval(6840, o is EmptyClassGen<int>[], false);
+// Eval(6841, o is NotEmptyClassGen<Guid>, false);
+// Eval(6842, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6843, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6844, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6845, o is NestedClass, false);
Eval(6846, o is NestedClass[], false);
- Eval(6847, o is NestedClassGen<Decimal>, false);
- Eval(6848, o is NestedClassGen<Decimal>[], false);
+// Eval(6847, o is NestedClassGen<Decimal>, false);
+// Eval(6848, o is NestedClassGen<Decimal>[], false);
Eval(6849, o is ImplementOneInterfaceC, false);
Eval(6850, o is ImplementOneInterfaceC[], false);
Eval(6851, o is ImplementTwoInterfaceC, false);
Eval(6852, o is ImplementTwoInterfaceC[], false);
- Eval(6853, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6854, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6855, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6856, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6857, o is ImplementAllInterfaceC<int>, false);
- Eval(6858, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6853, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6854, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6855, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6856, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6857, o is ImplementAllInterfaceC<int>, false);
+// Eval(6858, o is ImplementAllInterfaceC<int>[], false);
Eval(6859, o is SealedClass, false);
Eval(6860, o is SealedClass[], false);
}
@@ -6769,26 +6769,26 @@ internal class Program
Eval(6866, o is NotEmptyStruct[], false);
Eval(6867, o is NotEmptyStruct?, false);
Eval(6868, o is NotEmptyStruct?[], false);
- Eval(6869, o is EmptyStructGen<int>, false);
- Eval(6870, o is EmptyStructGen<int>[], false);
- Eval(6871, o is EmptyStructGen<int>?, false);
- Eval(6872, o is EmptyStructGen<int>?[], false);
- Eval(6873, o is NotEmptyStructGen<Guid>, false);
- Eval(6874, o is NotEmptyStructGen<Guid>[], false);
- Eval(6875, o is NotEmptyStructGen<Guid>?, false);
- Eval(6876, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6877, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6878, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6879, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6880, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6869, o is EmptyStructGen<int>, false);
+// Eval(6870, o is EmptyStructGen<int>[], false);
+// Eval(6871, o is EmptyStructGen<int>?, false);
+// Eval(6872, o is EmptyStructGen<int>?[], false);
+// Eval(6873, o is NotEmptyStructGen<Guid>, false);
+// Eval(6874, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6875, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6876, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6877, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6878, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6879, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6880, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6881, o is NestedStruct, false);
Eval(6882, o is NestedStruct[], false);
Eval(6883, o is NestedStruct?, false);
Eval(6884, o is NestedStruct?[], false);
- Eval(6885, o is NestedStructGen<Decimal>, false);
- Eval(6886, o is NestedStructGen<Decimal>[], false);
- Eval(6887, o is NestedStructGen<Decimal>?, false);
- Eval(6888, o is NestedStructGen<Decimal>?[], false);
+// Eval(6885, o is NestedStructGen<Decimal>, false);
+// Eval(6886, o is NestedStructGen<Decimal>[], false);
+// Eval(6887, o is NestedStructGen<Decimal>?, false);
+// Eval(6888, o is NestedStructGen<Decimal>?[], false);
Eval(6889, o is ExplicitFieldOffsetStruct, true);
Eval(6890, o is ExplicitFieldOffsetStruct[], false);
Eval(6891, o is ExplicitFieldOffsetStruct?, true);
@@ -6805,18 +6805,18 @@ internal class Program
Eval(6910, o is ImplementTwoInterface[], false);
Eval(6911, o is ImplementTwoInterface?, false);
Eval(6912, o is ImplementTwoInterface?[], false);
- Eval(6913, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6914, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6915, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6916, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6917, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6918, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6919, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6920, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6921, o is ImplementAllInterface<int>, false);
- Eval(6922, o is ImplementAllInterface<int>[], false);
- Eval(6923, o is ImplementAllInterface<int>?, false);
- Eval(6924, o is ImplementAllInterface<int>?[], false);
+// Eval(6913, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6914, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6915, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6916, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6917, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6918, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6919, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6920, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6921, o is ImplementAllInterface<int>, false);
+// Eval(6922, o is ImplementAllInterface<int>[], false);
+// Eval(6923, o is ImplementAllInterface<int>?, false);
+// Eval(6924, o is ImplementAllInterface<int>?[], false);
Eval(6925, o is IntE, false);
Eval(6926, o is IntE[], false);
Eval(6927, o is IntE?, false);
@@ -6915,38 +6915,38 @@ internal class Program
Eval(7020, o is IEmpty[], false);
Eval(7021, o is INotEmpty, false);
Eval(7022, o is INotEmpty[], false);
- Eval(7023, o is IEmptyGen<int>, false);
- Eval(7024, o is IEmptyGen<int>[], false);
- Eval(7025, o is INotEmptyGen<int>, false);
- Eval(7026, o is INotEmptyGen<int>[], false);
+// Eval(7023, o is IEmptyGen<int>, false);
+// Eval(7024, o is IEmptyGen<int>[], false);
+// Eval(7025, o is INotEmptyGen<int>, false);
+// Eval(7026, o is INotEmptyGen<int>[], false);
Eval(7027, o is SimpleDelegate, false);
Eval(7028, o is SimpleDelegate[], false);
- Eval(7029, o is GenericDelegate<int>, false);
- Eval(7030, o is GenericDelegate<int>[], false);
+// Eval(7029, o is GenericDelegate<int>, false);
+// Eval(7030, o is GenericDelegate<int>[], false);
Eval(7031, o is EmptyClass, false);
Eval(7032, o is EmptyClass[], false);
Eval(7033, o is NotEmptyClass, false);
Eval(7034, o is NotEmptyClass[], false);
- Eval(7035, o is EmptyClassGen<int>, false);
- Eval(7036, o is EmptyClassGen<int>[], false);
- Eval(7037, o is NotEmptyClassGen<Guid>, false);
- Eval(7038, o is NotEmptyClassGen<Guid>[], false);
- Eval(7039, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7040, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7035, o is EmptyClassGen<int>, false);
+// Eval(7036, o is EmptyClassGen<int>[], false);
+// Eval(7037, o is NotEmptyClassGen<Guid>, false);
+// Eval(7038, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7039, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7040, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7041, o is NestedClass, false);
Eval(7042, o is NestedClass[], false);
- Eval(7043, o is NestedClassGen<Decimal>, false);
- Eval(7044, o is NestedClassGen<Decimal>[], false);
+// Eval(7043, o is NestedClassGen<Decimal>, false);
+// Eval(7044, o is NestedClassGen<Decimal>[], false);
Eval(7045, o is ImplementOneInterfaceC, false);
Eval(7046, o is ImplementOneInterfaceC[], false);
Eval(7047, o is ImplementTwoInterfaceC, false);
Eval(7048, o is ImplementTwoInterfaceC[], false);
- Eval(7049, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7050, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7051, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7052, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7053, o is ImplementAllInterfaceC<int>, false);
- Eval(7054, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7049, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7050, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7051, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7052, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7053, o is ImplementAllInterfaceC<int>, false);
+// Eval(7054, o is ImplementAllInterfaceC<int>[], false);
Eval(7055, o is SealedClass, false);
Eval(7056, o is SealedClass[], false);
}
@@ -6961,26 +6961,26 @@ internal class Program
Eval(7062, o is NotEmptyStruct[], false);
Eval(7063, o is NotEmptyStruct?, false);
Eval(7064, o is NotEmptyStruct?[], false);
- Eval(7065, o is EmptyStructGen<int>, false);
- Eval(7066, o is EmptyStructGen<int>[], false);
- Eval(7067, o is EmptyStructGen<int>?, false);
- Eval(7068, o is EmptyStructGen<int>?[], false);
- Eval(7069, o is NotEmptyStructGen<Guid>, false);
- Eval(7070, o is NotEmptyStructGen<Guid>[], false);
- Eval(7071, o is NotEmptyStructGen<Guid>?, false);
- Eval(7072, o is NotEmptyStructGen<Guid>?[], false);
- Eval(7073, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7074, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7075, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7076, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7065, o is EmptyStructGen<int>, false);
+// Eval(7066, o is EmptyStructGen<int>[], false);
+// Eval(7067, o is EmptyStructGen<int>?, false);
+// Eval(7068, o is EmptyStructGen<int>?[], false);
+// Eval(7069, o is NotEmptyStructGen<Guid>, false);
+// Eval(7070, o is NotEmptyStructGen<Guid>[], false);
+// Eval(7071, o is NotEmptyStructGen<Guid>?, false);
+// Eval(7072, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(7073, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7074, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7075, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7076, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7077, o is NestedStruct, false);
Eval(7078, o is NestedStruct[], false);
Eval(7079, o is NestedStruct?, false);
Eval(7080, o is NestedStruct?[], false);
- Eval(7081, o is NestedStructGen<Decimal>, false);
- Eval(7082, o is NestedStructGen<Decimal>[], false);
- Eval(7083, o is NestedStructGen<Decimal>?, false);
- Eval(7084, o is NestedStructGen<Decimal>?[], false);
+// Eval(7081, o is NestedStructGen<Decimal>, false);
+// Eval(7082, o is NestedStructGen<Decimal>[], false);
+// Eval(7083, o is NestedStructGen<Decimal>?, false);
+// Eval(7084, o is NestedStructGen<Decimal>?[], false);
Eval(7085, o is ExplicitFieldOffsetStruct, true);
Eval(7086, o is ExplicitFieldOffsetStruct[], false);
Eval(7087, o is ExplicitFieldOffsetStruct?, true);
@@ -6997,18 +6997,18 @@ internal class Program
Eval(7106, o is ImplementTwoInterface[], false);
Eval(7107, o is ImplementTwoInterface?, false);
Eval(7108, o is ImplementTwoInterface?[], false);
- Eval(7109, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7110, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7111, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7112, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7113, o is ImplementTwoInterfaceGen<int>, false);
- Eval(7114, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(7115, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(7116, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7117, o is ImplementAllInterface<int>, false);
- Eval(7118, o is ImplementAllInterface<int>[], false);
- Eval(7119, o is ImplementAllInterface<int>?, false);
- Eval(7120, o is ImplementAllInterface<int>?[], false);
+// Eval(7109, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7110, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7111, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7112, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7113, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(7114, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7115, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7116, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7117, o is ImplementAllInterface<int>, false);
+// Eval(7118, o is ImplementAllInterface<int>[], false);
+// Eval(7119, o is ImplementAllInterface<int>?, false);
+// Eval(7120, o is ImplementAllInterface<int>?[], false);
Eval(7121, o is IntE, false);
Eval(7122, o is IntE[], false);
Eval(7123, o is IntE?, false);
@@ -7107,38 +7107,38 @@ internal class Program
Eval(7216, o is IEmpty[], false);
Eval(7217, o is INotEmpty, false);
Eval(7218, o is INotEmpty[], false);
- Eval(7219, o is IEmptyGen<int>, false);
- Eval(7220, o is IEmptyGen<int>[], false);
- Eval(7221, o is INotEmptyGen<int>, false);
- Eval(7222, o is INotEmptyGen<int>[], false);
+// Eval(7219, o is IEmptyGen<int>, false);
+// Eval(7220, o is IEmptyGen<int>[], false);
+// Eval(7221, o is INotEmptyGen<int>, false);
+// Eval(7222, o is INotEmptyGen<int>[], false);
Eval(7223, o is SimpleDelegate, false);
Eval(7224, o is SimpleDelegate[], false);
- Eval(7225, o is GenericDelegate<int>, false);
- Eval(7226, o is GenericDelegate<int>[], false);
+// Eval(7225, o is GenericDelegate<int>, false);
+// Eval(7226, o is GenericDelegate<int>[], false);
Eval(7227, o is EmptyClass, false);
Eval(7228, o is EmptyClass[], false);
Eval(7229, o is NotEmptyClass, false);
Eval(7230, o is NotEmptyClass[], false);
- Eval(7231, o is EmptyClassGen<int>, false);
- Eval(7232, o is EmptyClassGen<int>[], false);
- Eval(7233, o is NotEmptyClassGen<Guid>, false);
- Eval(7234, o is NotEmptyClassGen<Guid>[], false);
- Eval(7235, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7236, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7231, o is EmptyClassGen<int>, false);
+// Eval(7232, o is EmptyClassGen<int>[], false);
+// Eval(7233, o is NotEmptyClassGen<Guid>, false);
+// Eval(7234, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7235, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7236, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7237, o is NestedClass, false);
Eval(7238, o is NestedClass[], false);
- Eval(7239, o is NestedClassGen<Decimal>, false);
- Eval(7240, o is NestedClassGen<Decimal>[], false);
+// Eval(7239, o is NestedClassGen<Decimal>, false);
+// Eval(7240, o is NestedClassGen<Decimal>[], false);
Eval(7241, o is ImplementOneInterfaceC, false);
Eval(7242, o is ImplementOneInterfaceC[], false);
Eval(7243, o is ImplementTwoInterfaceC, false);
Eval(7244, o is ImplementTwoInterfaceC[], false);
- Eval(7245, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7246, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7247, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7248, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7249, o is ImplementAllInterfaceC<int>, false);
- Eval(7250, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7245, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7246, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7247, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7248, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7249, o is ImplementAllInterfaceC<int>, false);
+// Eval(7250, o is ImplementAllInterfaceC<int>[], false);
Eval(7251, o is SealedClass, false);
Eval(7252, o is SealedClass[], false);
}
@@ -7153,26 +7153,26 @@ internal class Program
Eval(7258, o is NotEmptyStruct[], false);
Eval(7259, o is NotEmptyStruct?, false);
Eval(7260, o is NotEmptyStruct?[], false);
- Eval(7261, o is EmptyStructGen<int>, false);
- Eval(7262, o is EmptyStructGen<int>[], false);
- Eval(7263, o is EmptyStructGen<int>?, false);
- Eval(7264, o is EmptyStructGen<int>?[], false);
- Eval(7265, o is NotEmptyStructGen<Guid>, false);
- Eval(7266, o is NotEmptyStructGen<Guid>[], false);
- Eval(7267, o is NotEmptyStructGen<Guid>?, false);
- Eval(7268, o is NotEmptyStructGen<Guid>?[], false);
- Eval(7269, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7270, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7271, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7272, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7261, o is EmptyStructGen<int>, false);
+// Eval(7262, o is EmptyStructGen<int>[], false);
+// Eval(7263, o is EmptyStructGen<int>?, false);
+// Eval(7264, o is EmptyStructGen<int>?[], false);
+// Eval(7265, o is NotEmptyStructGen<Guid>, false);
+// Eval(7266, o is NotEmptyStructGen<Guid>[], false);
+// Eval(7267, o is NotEmptyStructGen<Guid>?, false);
+// Eval(7268, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(7269, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7270, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7271, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7272, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7273, o is NestedStruct, false);
Eval(7274, o is NestedStruct[], false);
Eval(7275, o is NestedStruct?, false);
Eval(7276, o is NestedStruct?[], false);
- Eval(7277, o is NestedStructGen<Decimal>, false);
- Eval(7278, o is NestedStructGen<Decimal>[], false);
- Eval(7279, o is NestedStructGen<Decimal>?, false);
- Eval(7280, o is NestedStructGen<Decimal>?[], false);
+// Eval(7277, o is NestedStructGen<Decimal>, false);
+// Eval(7278, o is NestedStructGen<Decimal>[], false);
+// Eval(7279, o is NestedStructGen<Decimal>?, false);
+// Eval(7280, o is NestedStructGen<Decimal>?[], false);
Eval(7281, o is ExplicitFieldOffsetStruct, false);
Eval(7282, o is ExplicitFieldOffsetStruct[], false);
Eval(7283, o is ExplicitFieldOffsetStruct?, false);
@@ -7189,18 +7189,18 @@ internal class Program
Eval(7302, o is ImplementTwoInterface[], false);
Eval(7303, o is ImplementTwoInterface?, false);
Eval(7304, o is ImplementTwoInterface?[], false);
- Eval(7305, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7306, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7307, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7308, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7309, o is ImplementTwoInterfaceGen<int>, false);
- Eval(7310, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(7311, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(7312, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7313, o is ImplementAllInterface<int>, false);
- Eval(7314, o is ImplementAllInterface<int>[], false);
- Eval(7315, o is ImplementAllInterface<int>?, false);
- Eval(7316, o is ImplementAllInterface<int>?[], false);
+// Eval(7305, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7306, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7307, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7308, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7309, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(7310, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7311, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7312, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7313, o is ImplementAllInterface<int>, false);
+// Eval(7314, o is ImplementAllInterface<int>[], false);
+// Eval(7315, o is ImplementAllInterface<int>?, false);
+// Eval(7316, o is ImplementAllInterface<int>?[], false);
Eval(7317, o is IntE, false);
Eval(7318, o is IntE[], false);
Eval(7319, o is IntE?, false);
@@ -7299,38 +7299,38 @@ internal class Program
Eval(7412, o is IEmpty[], false);
Eval(7413, o is INotEmpty, false);
Eval(7414, o is INotEmpty[], false);
- Eval(7415, o is IEmptyGen<int>, false);
- Eval(7416, o is IEmptyGen<int>[], false);
- Eval(7417, o is INotEmptyGen<int>, false);
- Eval(7418, o is INotEmptyGen<int>[], false);
+// Eval(7415, o is IEmptyGen<int>, false);
+// Eval(7416, o is IEmptyGen<int>[], false);
+// Eval(7417, o is INotEmptyGen<int>, false);
+// Eval(7418, o is INotEmptyGen<int>[], false);
Eval(7419, o is SimpleDelegate, false);
Eval(7420, o is SimpleDelegate[], false);
- Eval(7421, o is GenericDelegate<int>, false);
- Eval(7422, o is GenericDelegate<int>[], false);
+// Eval(7421, o is GenericDelegate<int>, false);
+// Eval(7422, o is GenericDelegate<int>[], false);
Eval(7423, o is EmptyClass, false);
Eval(7424, o is EmptyClass[], false);
Eval(7425, o is NotEmptyClass, false);
Eval(7426, o is NotEmptyClass[], false);
- Eval(7427, o is EmptyClassGen<int>, false);
- Eval(7428, o is EmptyClassGen<int>[], false);
- Eval(7429, o is NotEmptyClassGen<Guid>, false);
- Eval(7430, o is NotEmptyClassGen<Guid>[], false);
- Eval(7431, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7432, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7427, o is EmptyClassGen<int>, false);
+// Eval(7428, o is EmptyClassGen<int>[], false);
+// Eval(7429, o is NotEmptyClassGen<Guid>, false);
+// Eval(7430, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7431, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7432, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7433, o is NestedClass, false);
Eval(7434, o is NestedClass[], false);
- Eval(7435, o is NestedClassGen<Decimal>, false);
- Eval(7436, o is NestedClassGen<Decimal>[], false);
+// Eval(7435, o is NestedClassGen<Decimal>, false);
+// Eval(7436, o is NestedClassGen<Decimal>[], false);
Eval(7437, o is ImplementOneInterfaceC, false);
Eval(7438, o is ImplementOneInterfaceC[], false);
Eval(7439, o is ImplementTwoInterfaceC, false);
Eval(7440, o is ImplementTwoInterfaceC[], false);
- Eval(7441, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7442, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7443, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7444, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7445, o is ImplementAllInterfaceC<int>, false);
- Eval(7446, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7441, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7442, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7443, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7444, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7445, o is ImplementAllInterfaceC<int>, false);
+// Eval(7446, o is ImplementAllInterfaceC<int>[], false);
Eval(7447, o is SealedClass, false);
Eval(7448, o is SealedClass[], false);
}
@@ -7345,26 +7345,26 @@ internal class Program
Eval(7454, o is NotEmptyStruct[], false);
Eval(7455, o is NotEmptyStruct?, false);
Eval(7456, o is NotEmptyStruct?[], false);
- Eval(7457, o is EmptyStructGen<int>, false);
- Eval(7458, o is EmptyStructGen<int>[], false);
- Eval(7459, o is EmptyStructGen<int>?, false);
- Eval(7460, o is EmptyStructGen<int>?[], false);
- Eval(7461, o is NotEmptyStructGen<Guid>, false);
- Eval(7462, o is NotEmptyStructGen<Guid>[], false);
- Eval(7463, o is NotEmptyStructGen<Guid>?, false);
- Eval(7464, o is NotEmptyStructGen<Guid>?[], false);
- Eval(7465, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7466, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7467, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7468, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7457, o is EmptyStructGen<int>, false);
+// Eval(7458, o is EmptyStructGen<int>[], false);
+// Eval(7459, o is EmptyStructGen<int>?, false);
+// Eval(7460, o is EmptyStructGen<int>?[], false);
+// Eval(7461, o is NotEmptyStructGen<Guid>, false);
+// Eval(7462, o is NotEmptyStructGen<Guid>[], false);
+// Eval(7463, o is NotEmptyStructGen<Guid>?, false);
+// Eval(7464, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(7465, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7466, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7467, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7468, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7469, o is NestedStruct, false);
Eval(7470, o is NestedStruct[], false);
Eval(7471, o is NestedStruct?, false);
Eval(7472, o is NestedStruct?[], false);
- Eval(7473, o is NestedStructGen<Decimal>, false);
- Eval(7474, o is NestedStructGen<Decimal>[], false);
- Eval(7475, o is NestedStructGen<Decimal>?, false);
- Eval(7476, o is NestedStructGen<Decimal>?[], false);
+// Eval(7473, o is NestedStructGen<Decimal>, false);
+// Eval(7474, o is NestedStructGen<Decimal>[], false);
+// Eval(7475, o is NestedStructGen<Decimal>?, false);
+// Eval(7476, o is NestedStructGen<Decimal>?[], false);
Eval(7477, o is ExplicitFieldOffsetStruct, false);
Eval(7478, o is ExplicitFieldOffsetStruct[], false);
Eval(7479, o is ExplicitFieldOffsetStruct?, false);
@@ -7381,18 +7381,18 @@ internal class Program
Eval(7498, o is ImplementTwoInterface[], false);
Eval(7499, o is ImplementTwoInterface?, false);
Eval(7500, o is ImplementTwoInterface?[], false);
- Eval(7501, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7502, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7503, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7504, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7505, o is ImplementTwoInterfaceGen<int>, false);
- Eval(7506, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(7507, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(7508, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7509, o is ImplementAllInterface<int>, false);
- Eval(7510, o is ImplementAllInterface<int>[], false);
- Eval(7511, o is ImplementAllInterface<int>?, false);
- Eval(7512, o is ImplementAllInterface<int>?[], false);
+// Eval(7501, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7502, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7503, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7504, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7505, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(7506, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7507, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7508, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7509, o is ImplementAllInterface<int>, false);
+// Eval(7510, o is ImplementAllInterface<int>[], false);
+// Eval(7511, o is ImplementAllInterface<int>?, false);
+// Eval(7512, o is ImplementAllInterface<int>?[], false);
Eval(7513, o is IntE, false);
Eval(7514, o is IntE[], false);
Eval(7515, o is IntE?, false);
@@ -7491,38 +7491,38 @@ internal class Program
Eval(7608, o is IEmpty[], false);
Eval(7609, o is INotEmpty, false);
Eval(7610, o is INotEmpty[], false);
- Eval(7611, o is IEmptyGen<int>, false);
- Eval(7612, o is IEmptyGen<int>[], false);
- Eval(7613, o is INotEmptyGen<int>, false);
- Eval(7614, o is INotEmptyGen<int>[], false);
+// Eval(7611, o is IEmptyGen<int>, false);
+// Eval(7612, o is IEmptyGen<int>[], false);
+// Eval(7613, o is INotEmptyGen<int>, false);
+// Eval(7614, o is INotEmptyGen<int>[], false);
Eval(7615, o is SimpleDelegate, false);
Eval(7616, o is SimpleDelegate[], false);
- Eval(7617, o is GenericDelegate<int>, false);
- Eval(7618, o is GenericDelegate<int>[], false);
+// Eval(7617, o is GenericDelegate<int>, false);
+// Eval(7618, o is GenericDelegate<int>[], false);
Eval(7619, o is EmptyClass, false);
Eval(7620, o is EmptyClass[], false);
Eval(7621, o is NotEmptyClass, false);
Eval(7622, o is NotEmptyClass[], false);
- Eval(7623, o is EmptyClassGen<int>, false);
- Eval(7624, o is EmptyClassGen<int>[], false);
- Eval(7625, o is NotEmptyClassGen<Guid>, false);
- Eval(7626, o is NotEmptyClassGen<Guid>[], false);
- Eval(7627, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7628, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7623, o is EmptyClassGen<int>, false);
+// Eval(7624, o is EmptyClassGen<int>[], false);
+// Eval(7625, o is NotEmptyClassGen<Guid>, false);
+// Eval(7626, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7627, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7628, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7629, o is NestedClass, false);
Eval(7630, o is NestedClass[], false);
- Eval(7631, o is NestedClassGen<Decimal>, false);
- Eval(7632, o is NestedClassGen<Decimal>[], false);
+// Eval(7631, o is NestedClassGen<Decimal>, false);
+// Eval(7632, o is NestedClassGen<Decimal>[], false);
Eval(7633, o is ImplementOneInterfaceC, false);
Eval(7634, o is ImplementOneInterfaceC[], false);
Eval(7635, o is ImplementTwoInterfaceC, false);
Eval(7636, o is ImplementTwoInterfaceC[], false);
- Eval(7637, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7638, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7639, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7640, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7641, o is ImplementAllInterfaceC<int>, false);
- Eval(7642, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7637, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7638, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7639, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7640, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7641, o is ImplementAllInterfaceC<int>, false);
+// Eval(7642, o is ImplementAllInterfaceC<int>[], false);
Eval(7643, o is SealedClass, false);
Eval(7644, o is SealedClass[], false);
}
@@ -7537,26 +7537,26 @@ internal class Program
Eval(7650, o is NotEmptyStruct[], false);
Eval(7651, o is NotEmptyStruct?, false);
Eval(7652, o is NotEmptyStruct?[], false);
- Eval(7653, o is EmptyStructGen<int>, false);
- Eval(7654, o is EmptyStructGen<int>[], false);
- Eval(7655, o is EmptyStructGen<int>?, false);
- Eval(7656, o is EmptyStructGen<int>?[], false);
- Eval(7657, o is NotEmptyStructGen<Guid>, false);
- Eval(7658, o is NotEmptyStructGen<Guid>[], false);
- Eval(7659, o is NotEmptyStructGen<Guid>?, false);
- Eval(7660, o is NotEmptyStructGen<Guid>?[], false);
- Eval(7661, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7662, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7663, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7664, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7653, o is EmptyStructGen<int>, false);
+// Eval(7654, o is EmptyStructGen<int>[], false);
+// Eval(7655, o is EmptyStructGen<int>?, false);
+// Eval(7656, o is EmptyStructGen<int>?[], false);
+// Eval(7657, o is NotEmptyStructGen<Guid>, false);
+// Eval(7658, o is NotEmptyStructGen<Guid>[], false);
+// Eval(7659, o is NotEmptyStructGen<Guid>?, false);
+// Eval(7660, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(7661, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7662, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7663, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7664, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7665, o is NestedStruct, false);
Eval(7666, o is NestedStruct[], false);
Eval(7667, o is NestedStruct?, false);
Eval(7668, o is NestedStruct?[], false);
- Eval(7669, o is NestedStructGen<Decimal>, false);
- Eval(7670, o is NestedStructGen<Decimal>[], false);
- Eval(7671, o is NestedStructGen<Decimal>?, false);
- Eval(7672, o is NestedStructGen<Decimal>?[], false);
+// Eval(7669, o is NestedStructGen<Decimal>, false);
+// Eval(7670, o is NestedStructGen<Decimal>[], false);
+// Eval(7671, o is NestedStructGen<Decimal>?, false);
+// Eval(7672, o is NestedStructGen<Decimal>?[], false);
Eval(7673, o is ExplicitFieldOffsetStruct, false);
Eval(7674, o is ExplicitFieldOffsetStruct[], false);
Eval(7675, o is ExplicitFieldOffsetStruct?, false);
@@ -7573,18 +7573,18 @@ internal class Program
Eval(7694, o is ImplementTwoInterface[], false);
Eval(7695, o is ImplementTwoInterface?, false);
Eval(7696, o is ImplementTwoInterface?[], false);
- Eval(7697, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7698, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7699, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7700, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7701, o is ImplementTwoInterfaceGen<int>, false);
- Eval(7702, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(7703, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(7704, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7705, o is ImplementAllInterface<int>, false);
- Eval(7706, o is ImplementAllInterface<int>[], false);
- Eval(7707, o is ImplementAllInterface<int>?, false);
- Eval(7708, o is ImplementAllInterface<int>?[], false);
+// Eval(7697, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7698, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7699, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7700, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7701, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(7702, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7703, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7704, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7705, o is ImplementAllInterface<int>, false);
+// Eval(7706, o is ImplementAllInterface<int>[], false);
+// Eval(7707, o is ImplementAllInterface<int>?, false);
+// Eval(7708, o is ImplementAllInterface<int>?[], false);
Eval(7709, o is IntE, false);
Eval(7710, o is IntE[], false);
Eval(7711, o is IntE?, false);
@@ -7683,38 +7683,38 @@ internal class Program
Eval(7804, o is IEmpty[], false);
Eval(7805, o is INotEmpty, false);
Eval(7806, o is INotEmpty[], false);
- Eval(7807, o is IEmptyGen<int>, false);
- Eval(7808, o is IEmptyGen<int>[], false);
- Eval(7809, o is INotEmptyGen<int>, false);
- Eval(7810, o is INotEmptyGen<int>[], false);
+// Eval(7807, o is IEmptyGen<int>, false);
+// Eval(7808, o is IEmptyGen<int>[], false);
+// Eval(7809, o is INotEmptyGen<int>, false);
+// Eval(7810, o is INotEmptyGen<int>[], false);
Eval(7811, o is SimpleDelegate, false);
Eval(7812, o is SimpleDelegate[], false);
- Eval(7813, o is GenericDelegate<int>, false);
- Eval(7814, o is GenericDelegate<int>[], false);
+// Eval(7813, o is GenericDelegate<int>, false);
+// Eval(7814, o is GenericDelegate<int>[], false);
Eval(7815, o is EmptyClass, false);
Eval(7816, o is EmptyClass[], false);
Eval(7817, o is NotEmptyClass, false);
Eval(7818, o is NotEmptyClass[], false);
- Eval(7819, o is EmptyClassGen<int>, false);
- Eval(7820, o is EmptyClassGen<int>[], false);
- Eval(7821, o is NotEmptyClassGen<Guid>, false);
- Eval(7822, o is NotEmptyClassGen<Guid>[], false);
- Eval(7823, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7824, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7819, o is EmptyClassGen<int>, false);
+// Eval(7820, o is EmptyClassGen<int>[], false);
+// Eval(7821, o is NotEmptyClassGen<Guid>, false);
+// Eval(7822, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7823, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7824, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7825, o is NestedClass, false);
Eval(7826, o is NestedClass[], false);
- Eval(7827, o is NestedClassGen<Decimal>, false);
- Eval(7828, o is NestedClassGen<Decimal>[], false);
+// Eval(7827, o is NestedClassGen<Decimal>, false);
+// Eval(7828, o is NestedClassGen<Decimal>[], false);
Eval(7829, o is ImplementOneInterfaceC, false);
Eval(7830, o is ImplementOneInterfaceC[], false);
Eval(7831, o is ImplementTwoInterfaceC, false);
Eval(7832, o is ImplementTwoInterfaceC[], false);
- Eval(7833, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7834, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7835, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7836, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7837, o is ImplementAllInterfaceC<int>, false);
- Eval(7838, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7833, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7834, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7835, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7836, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7837, o is ImplementAllInterfaceC<int>, false);
+// Eval(7838, o is ImplementAllInterfaceC<int>[], false);
Eval(7839, o is SealedClass, false);
Eval(7840, o is SealedClass[], false);
}
@@ -7732,26 +7732,26 @@ internal class Program
Eval(9806, o is NotEmptyStruct[], false);
Eval(9807, o is NotEmptyStruct?, false);
Eval(9808, o is NotEmptyStruct?[], false);
- Eval(9809, o is EmptyStructGen<int>, false);
- Eval(9810, o is EmptyStructGen<int>[], false);
- Eval(9811, o is EmptyStructGen<int>?, false);
- Eval(9812, o is EmptyStructGen<int>?[], false);
- Eval(9813, o is NotEmptyStructGen<Guid>, false);
- Eval(9814, o is NotEmptyStructGen<Guid>[], false);
- Eval(9815, o is NotEmptyStructGen<Guid>?, false);
- Eval(9816, o is NotEmptyStructGen<Guid>?[], false);
- Eval(9817, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9818, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9819, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9820, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9809, o is EmptyStructGen<int>, false);
+// Eval(9810, o is EmptyStructGen<int>[], false);
+// Eval(9811, o is EmptyStructGen<int>?, false);
+// Eval(9812, o is EmptyStructGen<int>?[], false);
+// Eval(9813, o is NotEmptyStructGen<Guid>, false);
+// Eval(9814, o is NotEmptyStructGen<Guid>[], false);
+// Eval(9815, o is NotEmptyStructGen<Guid>?, false);
+// Eval(9816, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(9817, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9818, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9819, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9820, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9821, o is NestedStruct, false);
Eval(9822, o is NestedStruct[], false);
Eval(9823, o is NestedStruct?, false);
Eval(9824, o is NestedStruct?[], false);
- Eval(9825, o is NestedStructGen<Decimal>, false);
- Eval(9826, o is NestedStructGen<Decimal>[], false);
- Eval(9827, o is NestedStructGen<Decimal>?, false);
- Eval(9828, o is NestedStructGen<Decimal>?[], false);
+// Eval(9825, o is NestedStructGen<Decimal>, false);
+// Eval(9826, o is NestedStructGen<Decimal>[], false);
+// Eval(9827, o is NestedStructGen<Decimal>?, false);
+// Eval(9828, o is NestedStructGen<Decimal>?[], false);
Eval(9829, o is ExplicitFieldOffsetStruct, false);
Eval(9830, o is ExplicitFieldOffsetStruct[], false);
Eval(9831, o is ExplicitFieldOffsetStruct?, false);
@@ -7768,18 +7768,18 @@ internal class Program
Eval(9850, o is ImplementTwoInterface[], false);
Eval(9851, o is ImplementTwoInterface?, false);
Eval(9852, o is ImplementTwoInterface?[], false);
- Eval(9853, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9854, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9855, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9856, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9857, o is ImplementTwoInterfaceGen<int>, false);
- Eval(9858, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(9859, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(9860, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9861, o is ImplementAllInterface<int>, false);
- Eval(9862, o is ImplementAllInterface<int>[], false);
- Eval(9863, o is ImplementAllInterface<int>?, false);
- Eval(9864, o is ImplementAllInterface<int>?[], false);
+// Eval(9853, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9854, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9855, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9856, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9857, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(9858, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9859, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9860, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9861, o is ImplementAllInterface<int>, false);
+// Eval(9862, o is ImplementAllInterface<int>[], false);
+// Eval(9863, o is ImplementAllInterface<int>?, false);
+// Eval(9864, o is ImplementAllInterface<int>?[], false);
Eval(9865, o is IntE, false);
Eval(9866, o is IntE[], false);
Eval(9867, o is IntE?, false);
@@ -7878,38 +7878,38 @@ internal class Program
Eval(9960, o is IEmpty[], false);
Eval(9961, o is INotEmpty, false);
Eval(9962, o is INotEmpty[], false);
- Eval(9963, o is IEmptyGen<int>, false);
- Eval(9964, o is IEmptyGen<int>[], false);
- Eval(9965, o is INotEmptyGen<int>, false);
- Eval(9966, o is INotEmptyGen<int>[], false);
+// Eval(9963, o is IEmptyGen<int>, false);
+// Eval(9964, o is IEmptyGen<int>[], false);
+// Eval(9965, o is INotEmptyGen<int>, false);
+// Eval(9966, o is INotEmptyGen<int>[], false);
Eval(9967, o is SimpleDelegate, false);
Eval(9968, o is SimpleDelegate[], false);
- Eval(9969, o is GenericDelegate<int>, false);
- Eval(9970, o is GenericDelegate<int>[], false);
+// Eval(9969, o is GenericDelegate<int>, false);
+// Eval(9970, o is GenericDelegate<int>[], false);
Eval(9971, o is EmptyClass, false);
Eval(9972, o is EmptyClass[], false);
Eval(9973, o is NotEmptyClass, false);
Eval(9974, o is NotEmptyClass[], false);
- Eval(9975, o is EmptyClassGen<int>, false);
- Eval(9976, o is EmptyClassGen<int>[], false);
- Eval(9977, o is NotEmptyClassGen<Guid>, false);
- Eval(9978, o is NotEmptyClassGen<Guid>[], false);
- Eval(9979, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(9980, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9975, o is EmptyClassGen<int>, false);
+// Eval(9976, o is EmptyClassGen<int>[], false);
+// Eval(9977, o is NotEmptyClassGen<Guid>, false);
+// Eval(9978, o is NotEmptyClassGen<Guid>[], false);
+// Eval(9979, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9980, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(9981, o is NestedClass, false);
Eval(9982, o is NestedClass[], false);
- Eval(9983, o is NestedClassGen<Decimal>, false);
- Eval(9984, o is NestedClassGen<Decimal>[], false);
+// Eval(9983, o is NestedClassGen<Decimal>, false);
+// Eval(9984, o is NestedClassGen<Decimal>[], false);
Eval(9985, o is ImplementOneInterfaceC, false);
Eval(9986, o is ImplementOneInterfaceC[], false);
Eval(9987, o is ImplementTwoInterfaceC, false);
Eval(9988, o is ImplementTwoInterfaceC[], false);
- Eval(9989, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9990, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9991, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(9992, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9993, o is ImplementAllInterfaceC<int>, false);
- Eval(9994, o is ImplementAllInterfaceC<int>[], false);
+// Eval(9989, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9990, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9991, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9992, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9993, o is ImplementAllInterfaceC<int>, false);
+// Eval(9994, o is ImplementAllInterfaceC<int>[], false);
Eval(9995, o is SealedClass, false);
Eval(9996, o is SealedClass[], false);
}
@@ -7924,26 +7924,26 @@ internal class Program
Eval(10002, o is NotEmptyStruct[], false);
Eval(10003, o is NotEmptyStruct?, false);
Eval(10004, o is NotEmptyStruct?[], false);
- Eval(10005, o is EmptyStructGen<int>, false);
- Eval(10006, o is EmptyStructGen<int>[], false);
- Eval(10007, o is EmptyStructGen<int>?, false);
- Eval(10008, o is EmptyStructGen<int>?[], false);
- Eval(10009, o is NotEmptyStructGen<Guid>, false);
- Eval(10010, o is NotEmptyStructGen<Guid>[], false);
- Eval(10011, o is NotEmptyStructGen<Guid>?, false);
- Eval(10012, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10013, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10014, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10015, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10016, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10005, o is EmptyStructGen<int>, false);
+// Eval(10006, o is EmptyStructGen<int>[], false);
+// Eval(10007, o is EmptyStructGen<int>?, false);
+// Eval(10008, o is EmptyStructGen<int>?[], false);
+// Eval(10009, o is NotEmptyStructGen<Guid>, false);
+// Eval(10010, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10011, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10012, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10013, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10014, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10015, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10016, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10017, o is NestedStruct, false);
Eval(10018, o is NestedStruct[], false);
Eval(10019, o is NestedStruct?, false);
Eval(10020, o is NestedStruct?[], false);
- Eval(10021, o is NestedStructGen<Decimal>, false);
- Eval(10022, o is NestedStructGen<Decimal>[], false);
- Eval(10023, o is NestedStructGen<Decimal>?, false);
- Eval(10024, o is NestedStructGen<Decimal>?[], false);
+// Eval(10021, o is NestedStructGen<Decimal>, false);
+// Eval(10022, o is NestedStructGen<Decimal>[], false);
+// Eval(10023, o is NestedStructGen<Decimal>?, false);
+// Eval(10024, o is NestedStructGen<Decimal>?[], false);
Eval(10025, o is ExplicitFieldOffsetStruct, false);
Eval(10026, o is ExplicitFieldOffsetStruct[], false);
Eval(10027, o is ExplicitFieldOffsetStruct?, false);
@@ -7960,18 +7960,18 @@ internal class Program
Eval(10046, o is ImplementTwoInterface[], false);
Eval(10047, o is ImplementTwoInterface?, false);
Eval(10048, o is ImplementTwoInterface?[], false);
- Eval(10049, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10050, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10051, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10052, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10053, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10054, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10055, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10056, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10057, o is ImplementAllInterface<int>, false);
- Eval(10058, o is ImplementAllInterface<int>[], false);
- Eval(10059, o is ImplementAllInterface<int>?, false);
- Eval(10060, o is ImplementAllInterface<int>?[], false);
+// Eval(10049, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10050, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10051, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10052, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10053, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10054, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10055, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10056, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10057, o is ImplementAllInterface<int>, false);
+// Eval(10058, o is ImplementAllInterface<int>[], false);
+// Eval(10059, o is ImplementAllInterface<int>?, false);
+// Eval(10060, o is ImplementAllInterface<int>?[], false);
Eval(10061, o is IntE, false);
Eval(10062, o is IntE[], false);
Eval(10063, o is IntE?, false);
@@ -8070,38 +8070,38 @@ internal class Program
Eval(10156, o is IEmpty[], false);
Eval(10157, o is INotEmpty, false);
Eval(10158, o is INotEmpty[], false);
- Eval(10159, o is IEmptyGen<int>, false);
- Eval(10160, o is IEmptyGen<int>[], false);
- Eval(10161, o is INotEmptyGen<int>, false);
- Eval(10162, o is INotEmptyGen<int>[], false);
+// Eval(10159, o is IEmptyGen<int>, false);
+// Eval(10160, o is IEmptyGen<int>[], false);
+// Eval(10161, o is INotEmptyGen<int>, false);
+// Eval(10162, o is INotEmptyGen<int>[], false);
Eval(10163, o is SimpleDelegate, false);
Eval(10164, o is SimpleDelegate[], false);
- Eval(10165, o is GenericDelegate<int>, false);
- Eval(10166, o is GenericDelegate<int>[], false);
+// Eval(10165, o is GenericDelegate<int>, false);
+// Eval(10166, o is GenericDelegate<int>[], false);
Eval(10167, o is EmptyClass, false);
Eval(10168, o is EmptyClass[], false);
Eval(10169, o is NotEmptyClass, false);
Eval(10170, o is NotEmptyClass[], false);
- Eval(10171, o is EmptyClassGen<int>, false);
- Eval(10172, o is EmptyClassGen<int>[], false);
- Eval(10173, o is NotEmptyClassGen<Guid>, false);
- Eval(10174, o is NotEmptyClassGen<Guid>[], false);
- Eval(10175, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10176, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10171, o is EmptyClassGen<int>, false);
+// Eval(10172, o is EmptyClassGen<int>[], false);
+// Eval(10173, o is NotEmptyClassGen<Guid>, false);
+// Eval(10174, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10175, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10176, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10177, o is NestedClass, false);
Eval(10178, o is NestedClass[], false);
- Eval(10179, o is NestedClassGen<Decimal>, false);
- Eval(10180, o is NestedClassGen<Decimal>[], false);
+// Eval(10179, o is NestedClassGen<Decimal>, false);
+// Eval(10180, o is NestedClassGen<Decimal>[], false);
Eval(10181, o is ImplementOneInterfaceC, false);
Eval(10182, o is ImplementOneInterfaceC[], false);
Eval(10183, o is ImplementTwoInterfaceC, false);
Eval(10184, o is ImplementTwoInterfaceC[], false);
- Eval(10185, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10186, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10187, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10188, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10189, o is ImplementAllInterfaceC<int>, false);
- Eval(10190, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10185, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10186, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10187, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10188, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10189, o is ImplementAllInterfaceC<int>, false);
+// Eval(10190, o is ImplementAllInterfaceC<int>[], false);
Eval(10191, o is SealedClass, false);
Eval(10192, o is SealedClass[], false);
}
@@ -8116,26 +8116,26 @@ internal class Program
Eval(10198, o is NotEmptyStruct[], false);
Eval(10199, o is NotEmptyStruct?, false);
Eval(10200, o is NotEmptyStruct?[], false);
- Eval(10201, o is EmptyStructGen<int>, false);
- Eval(10202, o is EmptyStructGen<int>[], false);
- Eval(10203, o is EmptyStructGen<int>?, false);
- Eval(10204, o is EmptyStructGen<int>?[], false);
- Eval(10205, o is NotEmptyStructGen<Guid>, false);
- Eval(10206, o is NotEmptyStructGen<Guid>[], false);
- Eval(10207, o is NotEmptyStructGen<Guid>?, false);
- Eval(10208, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10209, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10210, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10211, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10212, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10201, o is EmptyStructGen<int>, false);
+// Eval(10202, o is EmptyStructGen<int>[], false);
+// Eval(10203, o is EmptyStructGen<int>?, false);
+// Eval(10204, o is EmptyStructGen<int>?[], false);
+// Eval(10205, o is NotEmptyStructGen<Guid>, false);
+// Eval(10206, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10207, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10208, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10209, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10210, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10211, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10212, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10213, o is NestedStruct, false);
Eval(10214, o is NestedStruct[], false);
Eval(10215, o is NestedStruct?, false);
Eval(10216, o is NestedStruct?[], false);
- Eval(10217, o is NestedStructGen<Decimal>, false);
- Eval(10218, o is NestedStructGen<Decimal>[], false);
- Eval(10219, o is NestedStructGen<Decimal>?, false);
- Eval(10220, o is NestedStructGen<Decimal>?[], false);
+// Eval(10217, o is NestedStructGen<Decimal>, false);
+// Eval(10218, o is NestedStructGen<Decimal>[], false);
+// Eval(10219, o is NestedStructGen<Decimal>?, false);
+// Eval(10220, o is NestedStructGen<Decimal>?[], false);
Eval(10221, o is ExplicitFieldOffsetStruct, false);
Eval(10222, o is ExplicitFieldOffsetStruct[], false);
Eval(10223, o is ExplicitFieldOffsetStruct?, false);
@@ -8152,18 +8152,18 @@ internal class Program
Eval(10242, o is ImplementTwoInterface[], false);
Eval(10243, o is ImplementTwoInterface?, false);
Eval(10244, o is ImplementTwoInterface?[], false);
- Eval(10245, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10246, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10247, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10248, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10249, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10250, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10251, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10252, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10253, o is ImplementAllInterface<int>, false);
- Eval(10254, o is ImplementAllInterface<int>[], false);
- Eval(10255, o is ImplementAllInterface<int>?, false);
- Eval(10256, o is ImplementAllInterface<int>?[], false);
+// Eval(10245, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10246, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10247, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10248, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10249, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10250, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10251, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10252, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10253, o is ImplementAllInterface<int>, false);
+// Eval(10254, o is ImplementAllInterface<int>[], false);
+// Eval(10255, o is ImplementAllInterface<int>?, false);
+// Eval(10256, o is ImplementAllInterface<int>?[], false);
Eval(10257, o is IntE, false);
Eval(10258, o is IntE[], false);
Eval(10259, o is IntE?, false);
@@ -8262,38 +8262,38 @@ internal class Program
Eval(10352, o is IEmpty[], false);
Eval(10353, o is INotEmpty, false);
Eval(10354, o is INotEmpty[], false);
- Eval(10355, o is IEmptyGen<int>, false);
- Eval(10356, o is IEmptyGen<int>[], false);
- Eval(10357, o is INotEmptyGen<int>, false);
- Eval(10358, o is INotEmptyGen<int>[], false);
+// Eval(10355, o is IEmptyGen<int>, false);
+// Eval(10356, o is IEmptyGen<int>[], false);
+// Eval(10357, o is INotEmptyGen<int>, false);
+// Eval(10358, o is INotEmptyGen<int>[], false);
Eval(10359, o is SimpleDelegate, false);
Eval(10360, o is SimpleDelegate[], false);
- Eval(10361, o is GenericDelegate<int>, false);
- Eval(10362, o is GenericDelegate<int>[], false);
+// Eval(10361, o is GenericDelegate<int>, false);
+// Eval(10362, o is GenericDelegate<int>[], false);
Eval(10363, o is EmptyClass, false);
Eval(10364, o is EmptyClass[], false);
Eval(10365, o is NotEmptyClass, false);
Eval(10366, o is NotEmptyClass[], false);
- Eval(10367, o is EmptyClassGen<int>, false);
- Eval(10368, o is EmptyClassGen<int>[], false);
- Eval(10369, o is NotEmptyClassGen<Guid>, false);
- Eval(10370, o is NotEmptyClassGen<Guid>[], false);
- Eval(10371, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10372, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10367, o is EmptyClassGen<int>, false);
+// Eval(10368, o is EmptyClassGen<int>[], false);
+// Eval(10369, o is NotEmptyClassGen<Guid>, false);
+// Eval(10370, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10371, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10372, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10373, o is NestedClass, false);
Eval(10374, o is NestedClass[], false);
- Eval(10375, o is NestedClassGen<Decimal>, false);
- Eval(10376, o is NestedClassGen<Decimal>[], false);
+// Eval(10375, o is NestedClassGen<Decimal>, false);
+// Eval(10376, o is NestedClassGen<Decimal>[], false);
Eval(10377, o is ImplementOneInterfaceC, false);
Eval(10378, o is ImplementOneInterfaceC[], false);
Eval(10379, o is ImplementTwoInterfaceC, false);
Eval(10380, o is ImplementTwoInterfaceC[], false);
- Eval(10381, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10382, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10383, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10384, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10385, o is ImplementAllInterfaceC<int>, false);
- Eval(10386, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10381, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10382, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10383, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10384, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10385, o is ImplementAllInterfaceC<int>, false);
+// Eval(10386, o is ImplementAllInterfaceC<int>[], false);
Eval(10387, o is SealedClass, false);
Eval(10388, o is SealedClass[], false);
}
@@ -8308,26 +8308,26 @@ internal class Program
Eval(10394, o is NotEmptyStruct[], false);
Eval(10395, o is NotEmptyStruct?, false);
Eval(10396, o is NotEmptyStruct?[], false);
- Eval(10397, o is EmptyStructGen<int>, false);
- Eval(10398, o is EmptyStructGen<int>[], false);
- Eval(10399, o is EmptyStructGen<int>?, false);
- Eval(10400, o is EmptyStructGen<int>?[], false);
- Eval(10401, o is NotEmptyStructGen<Guid>, false);
- Eval(10402, o is NotEmptyStructGen<Guid>[], false);
- Eval(10403, o is NotEmptyStructGen<Guid>?, false);
- Eval(10404, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10405, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10406, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10407, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10408, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10397, o is EmptyStructGen<int>, false);
+// Eval(10398, o is EmptyStructGen<int>[], false);
+// Eval(10399, o is EmptyStructGen<int>?, false);
+// Eval(10400, o is EmptyStructGen<int>?[], false);
+// Eval(10401, o is NotEmptyStructGen<Guid>, false);
+// Eval(10402, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10403, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10404, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10405, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10406, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10407, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10408, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10409, o is NestedStruct, false);
Eval(10410, o is NestedStruct[], false);
Eval(10411, o is NestedStruct?, false);
Eval(10412, o is NestedStruct?[], false);
- Eval(10413, o is NestedStructGen<Decimal>, false);
- Eval(10414, o is NestedStructGen<Decimal>[], false);
- Eval(10415, o is NestedStructGen<Decimal>?, false);
- Eval(10416, o is NestedStructGen<Decimal>?[], false);
+// Eval(10413, o is NestedStructGen<Decimal>, false);
+// Eval(10414, o is NestedStructGen<Decimal>[], false);
+// Eval(10415, o is NestedStructGen<Decimal>?, false);
+// Eval(10416, o is NestedStructGen<Decimal>?[], false);
Eval(10417, o is ExplicitFieldOffsetStruct, false);
Eval(10418, o is ExplicitFieldOffsetStruct[], false);
Eval(10419, o is ExplicitFieldOffsetStruct?, false);
@@ -8344,18 +8344,18 @@ internal class Program
Eval(10438, o is ImplementTwoInterface[], false);
Eval(10439, o is ImplementTwoInterface?, false);
Eval(10440, o is ImplementTwoInterface?[], false);
- Eval(10441, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10442, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10443, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10444, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10445, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10446, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10447, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10448, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10449, o is ImplementAllInterface<int>, false);
- Eval(10450, o is ImplementAllInterface<int>[], false);
- Eval(10451, o is ImplementAllInterface<int>?, false);
- Eval(10452, o is ImplementAllInterface<int>?[], false);
+// Eval(10441, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10442, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10443, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10444, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10445, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10446, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10447, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10448, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10449, o is ImplementAllInterface<int>, false);
+// Eval(10450, o is ImplementAllInterface<int>[], false);
+// Eval(10451, o is ImplementAllInterface<int>?, false);
+// Eval(10452, o is ImplementAllInterface<int>?[], false);
Eval(10453, o is IntE, false);
Eval(10454, o is IntE[], false);
Eval(10455, o is IntE?, false);
@@ -8454,38 +8454,38 @@ internal class Program
Eval(10548, o is IEmpty[], false);
Eval(10549, o is INotEmpty, false);
Eval(10550, o is INotEmpty[], false);
- Eval(10551, o is IEmptyGen<int>, false);
- Eval(10552, o is IEmptyGen<int>[], false);
- Eval(10553, o is INotEmptyGen<int>, false);
- Eval(10554, o is INotEmptyGen<int>[], false);
+// Eval(10551, o is IEmptyGen<int>, false);
+// Eval(10552, o is IEmptyGen<int>[], false);
+// Eval(10553, o is INotEmptyGen<int>, false);
+// Eval(10554, o is INotEmptyGen<int>[], false);
Eval(10555, o is SimpleDelegate, false);
Eval(10556, o is SimpleDelegate[], false);
- Eval(10557, o is GenericDelegate<int>, false);
- Eval(10558, o is GenericDelegate<int>[], false);
+// Eval(10557, o is GenericDelegate<int>, false);
+// Eval(10558, o is GenericDelegate<int>[], false);
Eval(10559, o is EmptyClass, false);
Eval(10560, o is EmptyClass[], false);
Eval(10561, o is NotEmptyClass, false);
Eval(10562, o is NotEmptyClass[], false);
- Eval(10563, o is EmptyClassGen<int>, false);
- Eval(10564, o is EmptyClassGen<int>[], false);
- Eval(10565, o is NotEmptyClassGen<Guid>, false);
- Eval(10566, o is NotEmptyClassGen<Guid>[], false);
- Eval(10567, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10568, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10563, o is EmptyClassGen<int>, false);
+// Eval(10564, o is EmptyClassGen<int>[], false);
+// Eval(10565, o is NotEmptyClassGen<Guid>, false);
+// Eval(10566, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10567, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10568, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10569, o is NestedClass, false);
Eval(10570, o is NestedClass[], false);
- Eval(10571, o is NestedClassGen<Decimal>, false);
- Eval(10572, o is NestedClassGen<Decimal>[], false);
+// Eval(10571, o is NestedClassGen<Decimal>, false);
+// Eval(10572, o is NestedClassGen<Decimal>[], false);
Eval(10573, o is ImplementOneInterfaceC, false);
Eval(10574, o is ImplementOneInterfaceC[], false);
Eval(10575, o is ImplementTwoInterfaceC, false);
Eval(10576, o is ImplementTwoInterfaceC[], false);
- Eval(10577, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10578, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10579, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10580, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10581, o is ImplementAllInterfaceC<int>, false);
- Eval(10582, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10577, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10578, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10579, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10580, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10581, o is ImplementAllInterfaceC<int>, false);
+// Eval(10582, o is ImplementAllInterfaceC<int>[], false);
Eval(10583, o is SealedClass, false);
Eval(10584, o is SealedClass[], false);
}
@@ -8500,26 +8500,26 @@ internal class Program
Eval(10590, o is NotEmptyStruct[], false);
Eval(10591, o is NotEmptyStruct?, false);
Eval(10592, o is NotEmptyStruct?[], false);
- Eval(10593, o is EmptyStructGen<int>, false);
- Eval(10594, o is EmptyStructGen<int>[], false);
- Eval(10595, o is EmptyStructGen<int>?, false);
- Eval(10596, o is EmptyStructGen<int>?[], false);
- Eval(10597, o is NotEmptyStructGen<Guid>, false);
- Eval(10598, o is NotEmptyStructGen<Guid>[], false);
- Eval(10599, o is NotEmptyStructGen<Guid>?, false);
- Eval(10600, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10601, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10602, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10603, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10604, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10593, o is EmptyStructGen<int>, false);
+// Eval(10594, o is EmptyStructGen<int>[], false);
+// Eval(10595, o is EmptyStructGen<int>?, false);
+// Eval(10596, o is EmptyStructGen<int>?[], false);
+// Eval(10597, o is NotEmptyStructGen<Guid>, false);
+// Eval(10598, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10599, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10600, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10601, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10602, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10603, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10604, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10605, o is NestedStruct, false);
Eval(10606, o is NestedStruct[], false);
Eval(10607, o is NestedStruct?, false);
Eval(10608, o is NestedStruct?[], false);
- Eval(10609, o is NestedStructGen<Decimal>, false);
- Eval(10610, o is NestedStructGen<Decimal>[], false);
- Eval(10611, o is NestedStructGen<Decimal>?, false);
- Eval(10612, o is NestedStructGen<Decimal>?[], false);
+// Eval(10609, o is NestedStructGen<Decimal>, false);
+// Eval(10610, o is NestedStructGen<Decimal>[], false);
+// Eval(10611, o is NestedStructGen<Decimal>?, false);
+// Eval(10612, o is NestedStructGen<Decimal>?[], false);
Eval(10613, o is ExplicitFieldOffsetStruct, false);
Eval(10614, o is ExplicitFieldOffsetStruct[], false);
Eval(10615, o is ExplicitFieldOffsetStruct?, false);
@@ -8536,18 +8536,18 @@ internal class Program
Eval(10634, o is ImplementTwoInterface[], false);
Eval(10635, o is ImplementTwoInterface?, false);
Eval(10636, o is ImplementTwoInterface?[], false);
- Eval(10637, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10638, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10639, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10640, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10641, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10642, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10643, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10644, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10645, o is ImplementAllInterface<int>, false);
- Eval(10646, o is ImplementAllInterface<int>[], false);
- Eval(10647, o is ImplementAllInterface<int>?, false);
- Eval(10648, o is ImplementAllInterface<int>?[], false);
+// Eval(10637, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10638, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10639, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10640, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10641, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10642, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10643, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10644, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10645, o is ImplementAllInterface<int>, false);
+// Eval(10646, o is ImplementAllInterface<int>[], false);
+// Eval(10647, o is ImplementAllInterface<int>?, false);
+// Eval(10648, o is ImplementAllInterface<int>?[], false);
Eval(10649, o is IntE, false);
Eval(10650, o is IntE[], false);
Eval(10651, o is IntE?, false);
@@ -8646,38 +8646,38 @@ internal class Program
Eval(10744, o is IEmpty[], false);
Eval(10745, o is INotEmpty, false);
Eval(10746, o is INotEmpty[], false);
- Eval(10747, o is IEmptyGen<int>, false);
- Eval(10748, o is IEmptyGen<int>[], false);
- Eval(10749, o is INotEmptyGen<int>, false);
- Eval(10750, o is INotEmptyGen<int>[], false);
+// Eval(10747, o is IEmptyGen<int>, false);
+// Eval(10748, o is IEmptyGen<int>[], false);
+// Eval(10749, o is INotEmptyGen<int>, false);
+// Eval(10750, o is INotEmptyGen<int>[], false);
Eval(10751, o is SimpleDelegate, false);
Eval(10752, o is SimpleDelegate[], false);
- Eval(10753, o is GenericDelegate<int>, false);
- Eval(10754, o is GenericDelegate<int>[], false);
+// Eval(10753, o is GenericDelegate<int>, false);
+// Eval(10754, o is GenericDelegate<int>[], false);
Eval(10755, o is EmptyClass, false);
Eval(10756, o is EmptyClass[], false);
Eval(10757, o is NotEmptyClass, false);
Eval(10758, o is NotEmptyClass[], false);
- Eval(10759, o is EmptyClassGen<int>, false);
- Eval(10760, o is EmptyClassGen<int>[], false);
- Eval(10761, o is NotEmptyClassGen<Guid>, false);
- Eval(10762, o is NotEmptyClassGen<Guid>[], false);
- Eval(10763, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10764, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10759, o is EmptyClassGen<int>, false);
+// Eval(10760, o is EmptyClassGen<int>[], false);
+// Eval(10761, o is NotEmptyClassGen<Guid>, false);
+// Eval(10762, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10763, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10764, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10765, o is NestedClass, false);
Eval(10766, o is NestedClass[], false);
- Eval(10767, o is NestedClassGen<Decimal>, false);
- Eval(10768, o is NestedClassGen<Decimal>[], false);
+// Eval(10767, o is NestedClassGen<Decimal>, false);
+// Eval(10768, o is NestedClassGen<Decimal>[], false);
Eval(10769, o is ImplementOneInterfaceC, false);
Eval(10770, o is ImplementOneInterfaceC[], false);
Eval(10771, o is ImplementTwoInterfaceC, false);
Eval(10772, o is ImplementTwoInterfaceC[], false);
- Eval(10773, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10774, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10775, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10776, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10777, o is ImplementAllInterfaceC<int>, false);
- Eval(10778, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10773, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10774, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10775, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10776, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10777, o is ImplementAllInterfaceC<int>, false);
+// Eval(10778, o is ImplementAllInterfaceC<int>[], false);
Eval(10779, o is SealedClass, false);
Eval(10780, o is SealedClass[], false);
}
@@ -8695,26 +8695,26 @@ internal class Program
Eval(10786, o is NotEmptyStruct[], false);
Eval(10787, o is NotEmptyStruct?, false);
Eval(10788, o is NotEmptyStruct?[], false);
- Eval(10789, o is EmptyStructGen<int>, false);
- Eval(10790, o is EmptyStructGen<int>[], false);
- Eval(10791, o is EmptyStructGen<int>?, false);
- Eval(10792, o is EmptyStructGen<int>?[], false);
- Eval(10793, o is NotEmptyStructGen<Guid>, false);
- Eval(10794, o is NotEmptyStructGen<Guid>[], false);
- Eval(10795, o is NotEmptyStructGen<Guid>?, false);
- Eval(10796, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10797, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10798, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10799, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10800, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10789, o is EmptyStructGen<int>, false);
+// Eval(10790, o is EmptyStructGen<int>[], false);
+// Eval(10791, o is EmptyStructGen<int>?, false);
+// Eval(10792, o is EmptyStructGen<int>?[], false);
+// Eval(10793, o is NotEmptyStructGen<Guid>, false);
+// Eval(10794, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10795, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10796, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10797, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10798, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10799, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10800, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10801, o is NestedStruct, false);
Eval(10802, o is NestedStruct[], false);
Eval(10803, o is NestedStruct?, false);
Eval(10804, o is NestedStruct?[], false);
- Eval(10805, o is NestedStructGen<Decimal>, false);
- Eval(10806, o is NestedStructGen<Decimal>[], false);
- Eval(10807, o is NestedStructGen<Decimal>?, false);
- Eval(10808, o is NestedStructGen<Decimal>?[], false);
+// Eval(10805, o is NestedStructGen<Decimal>, false);
+// Eval(10806, o is NestedStructGen<Decimal>[], false);
+// Eval(10807, o is NestedStructGen<Decimal>?, false);
+// Eval(10808, o is NestedStructGen<Decimal>?[], false);
Eval(10809, o is ExplicitFieldOffsetStruct, false);
Eval(10810, o is ExplicitFieldOffsetStruct[], false);
Eval(10811, o is ExplicitFieldOffsetStruct?, false);
@@ -8731,18 +8731,18 @@ internal class Program
Eval(10830, o is ImplementTwoInterface[], false);
Eval(10831, o is ImplementTwoInterface?, false);
Eval(10832, o is ImplementTwoInterface?[], false);
- Eval(10833, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10834, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10835, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10836, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10837, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10838, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10839, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10840, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10841, o is ImplementAllInterface<int>, false);
- Eval(10842, o is ImplementAllInterface<int>[], false);
- Eval(10843, o is ImplementAllInterface<int>?, false);
- Eval(10844, o is ImplementAllInterface<int>?[], false);
+// Eval(10833, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10834, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10835, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10836, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10837, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10838, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10839, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10840, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10841, o is ImplementAllInterface<int>, false);
+// Eval(10842, o is ImplementAllInterface<int>[], false);
+// Eval(10843, o is ImplementAllInterface<int>?, false);
+// Eval(10844, o is ImplementAllInterface<int>?[], false);
Eval(10845, o is IntE, false);
Eval(10846, o is IntE[], false);
Eval(10847, o is IntE?, false);
@@ -8841,38 +8841,38 @@ internal class Program
Eval(10940, o is IEmpty[], false);
Eval(10941, o is INotEmpty, false);
Eval(10942, o is INotEmpty[], false);
- Eval(10943, o is IEmptyGen<int>, false);
- Eval(10944, o is IEmptyGen<int>[], false);
- Eval(10945, o is INotEmptyGen<int>, false);
- Eval(10946, o is INotEmptyGen<int>[], false);
+// Eval(10943, o is IEmptyGen<int>, false);
+// Eval(10944, o is IEmptyGen<int>[], false);
+// Eval(10945, o is INotEmptyGen<int>, false);
+// Eval(10946, o is INotEmptyGen<int>[], false);
Eval(10947, o is SimpleDelegate, false);
Eval(10948, o is SimpleDelegate[], false);
- Eval(10949, o is GenericDelegate<int>, false);
- Eval(10950, o is GenericDelegate<int>[], false);
+// Eval(10949, o is GenericDelegate<int>, false);
+// Eval(10950, o is GenericDelegate<int>[], false);
Eval(10951, o is EmptyClass, false);
Eval(10952, o is EmptyClass[], false);
Eval(10953, o is NotEmptyClass, false);
Eval(10954, o is NotEmptyClass[], false);
- Eval(10955, o is EmptyClassGen<int>, false);
- Eval(10956, o is EmptyClassGen<int>[], false);
- Eval(10957, o is NotEmptyClassGen<Guid>, false);
- Eval(10958, o is NotEmptyClassGen<Guid>[], false);
- Eval(10959, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10960, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10955, o is EmptyClassGen<int>, false);
+// Eval(10956, o is EmptyClassGen<int>[], false);
+// Eval(10957, o is NotEmptyClassGen<Guid>, false);
+// Eval(10958, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10959, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10960, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10961, o is NestedClass, false);
Eval(10962, o is NestedClass[], false);
- Eval(10963, o is NestedClassGen<Decimal>, false);
- Eval(10964, o is NestedClassGen<Decimal>[], false);
+// Eval(10963, o is NestedClassGen<Decimal>, false);
+// Eval(10964, o is NestedClassGen<Decimal>[], false);
Eval(10965, o is ImplementOneInterfaceC, false);
Eval(10966, o is ImplementOneInterfaceC[], false);
Eval(10967, o is ImplementTwoInterfaceC, false);
Eval(10968, o is ImplementTwoInterfaceC[], false);
- Eval(10969, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10970, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10971, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10972, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10973, o is ImplementAllInterfaceC<int>, false);
- Eval(10974, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10969, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10970, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10971, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10972, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10973, o is ImplementAllInterfaceC<int>, false);
+// Eval(10974, o is ImplementAllInterfaceC<int>[], false);
Eval(10975, o is SealedClass, false);
Eval(10976, o is SealedClass[], false);
}
@@ -8887,26 +8887,26 @@ internal class Program
Eval(10982, o is NotEmptyStruct[], false);
Eval(10983, o is NotEmptyStruct?, false);
Eval(10984, o is NotEmptyStruct?[], false);
- Eval(10985, o is EmptyStructGen<int>, false);
- Eval(10986, o is EmptyStructGen<int>[], false);
- Eval(10987, o is EmptyStructGen<int>?, false);
- Eval(10988, o is EmptyStructGen<int>?[], false);
- Eval(10989, o is NotEmptyStructGen<Guid>, false);
- Eval(10990, o is NotEmptyStructGen<Guid>[], false);
- Eval(10991, o is NotEmptyStructGen<Guid>?, false);
- Eval(10992, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10993, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10994, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10995, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10996, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10985, o is EmptyStructGen<int>, false);
+// Eval(10986, o is EmptyStructGen<int>[], false);
+// Eval(10987, o is EmptyStructGen<int>?, false);
+// Eval(10988, o is EmptyStructGen<int>?[], false);
+// Eval(10989, o is NotEmptyStructGen<Guid>, false);
+// Eval(10990, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10991, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10992, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10993, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10994, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10995, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10996, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10997, o is NestedStruct, false);
Eval(10998, o is NestedStruct[], false);
Eval(10999, o is NestedStruct?, false);
Eval(11000, o is NestedStruct?[], false);
- Eval(11001, o is NestedStructGen<Decimal>, false);
- Eval(11002, o is NestedStructGen<Decimal>[], false);
- Eval(11003, o is NestedStructGen<Decimal>?, false);
- Eval(11004, o is NestedStructGen<Decimal>?[], false);
+// Eval(11001, o is NestedStructGen<Decimal>, false);
+// Eval(11002, o is NestedStructGen<Decimal>[], false);
+// Eval(11003, o is NestedStructGen<Decimal>?, false);
+// Eval(11004, o is NestedStructGen<Decimal>?[], false);
Eval(11005, o is ExplicitFieldOffsetStruct, false);
Eval(11006, o is ExplicitFieldOffsetStruct[], false);
Eval(11007, o is ExplicitFieldOffsetStruct?, false);
@@ -8923,18 +8923,18 @@ internal class Program
Eval(11026, o is ImplementTwoInterface[], false);
Eval(11027, o is ImplementTwoInterface?, false);
Eval(11028, o is ImplementTwoInterface?[], false);
- Eval(11029, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11030, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11031, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11032, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11033, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11034, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11035, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11036, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11037, o is ImplementAllInterface<int>, false);
- Eval(11038, o is ImplementAllInterface<int>[], false);
- Eval(11039, o is ImplementAllInterface<int>?, false);
- Eval(11040, o is ImplementAllInterface<int>?[], false);
+// Eval(11029, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11030, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11031, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11032, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11033, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11034, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11035, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11036, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11037, o is ImplementAllInterface<int>, false);
+// Eval(11038, o is ImplementAllInterface<int>[], false);
+// Eval(11039, o is ImplementAllInterface<int>?, false);
+// Eval(11040, o is ImplementAllInterface<int>?[], false);
Eval(11041, o is IntE, false);
Eval(11042, o is IntE[], false);
Eval(11043, o is IntE?, false);
@@ -9033,38 +9033,38 @@ internal class Program
Eval(11136, o is IEmpty[], false);
Eval(11137, o is INotEmpty, false);
Eval(11138, o is INotEmpty[], false);
- Eval(11139, o is IEmptyGen<int>, false);
- Eval(11140, o is IEmptyGen<int>[], false);
- Eval(11141, o is INotEmptyGen<int>, false);
- Eval(11142, o is INotEmptyGen<int>[], false);
+// Eval(11139, o is IEmptyGen<int>, false);
+// Eval(11140, o is IEmptyGen<int>[], false);
+// Eval(11141, o is INotEmptyGen<int>, false);
+// Eval(11142, o is INotEmptyGen<int>[], false);
Eval(11143, o is SimpleDelegate, false);
Eval(11144, o is SimpleDelegate[], false);
- Eval(11145, o is GenericDelegate<int>, false);
- Eval(11146, o is GenericDelegate<int>[], false);
+// Eval(11145, o is GenericDelegate<int>, false);
+// Eval(11146, o is GenericDelegate<int>[], false);
Eval(11147, o is EmptyClass, false);
Eval(11148, o is EmptyClass[], false);
Eval(11149, o is NotEmptyClass, false);
Eval(11150, o is NotEmptyClass[], false);
- Eval(11151, o is EmptyClassGen<int>, false);
- Eval(11152, o is EmptyClassGen<int>[], false);
- Eval(11153, o is NotEmptyClassGen<Guid>, false);
- Eval(11154, o is NotEmptyClassGen<Guid>[], false);
- Eval(11155, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11156, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11151, o is EmptyClassGen<int>, false);
+// Eval(11152, o is EmptyClassGen<int>[], false);
+// Eval(11153, o is NotEmptyClassGen<Guid>, false);
+// Eval(11154, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11155, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11156, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11157, o is NestedClass, false);
Eval(11158, o is NestedClass[], false);
- Eval(11159, o is NestedClassGen<Decimal>, false);
- Eval(11160, o is NestedClassGen<Decimal>[], false);
+// Eval(11159, o is NestedClassGen<Decimal>, false);
+// Eval(11160, o is NestedClassGen<Decimal>[], false);
Eval(11161, o is ImplementOneInterfaceC, false);
Eval(11162, o is ImplementOneInterfaceC[], false);
Eval(11163, o is ImplementTwoInterfaceC, false);
Eval(11164, o is ImplementTwoInterfaceC[], false);
- Eval(11165, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11166, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11167, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11168, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11169, o is ImplementAllInterfaceC<int>, false);
- Eval(11170, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11165, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11166, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11167, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11168, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11169, o is ImplementAllInterfaceC<int>, false);
+// Eval(11170, o is ImplementAllInterfaceC<int>[], false);
Eval(11171, o is SealedClass, false);
Eval(11172, o is SealedClass[], false);
}
@@ -9079,26 +9079,26 @@ internal class Program
Eval(11178, o is NotEmptyStruct[], false);
Eval(11179, o is NotEmptyStruct?, false);
Eval(11180, o is NotEmptyStruct?[], false);
- Eval(11181, o is EmptyStructGen<int>, false);
- Eval(11182, o is EmptyStructGen<int>[], false);
- Eval(11183, o is EmptyStructGen<int>?, false);
- Eval(11184, o is EmptyStructGen<int>?[], false);
- Eval(11185, o is NotEmptyStructGen<Guid>, false);
- Eval(11186, o is NotEmptyStructGen<Guid>[], false);
- Eval(11187, o is NotEmptyStructGen<Guid>?, false);
- Eval(11188, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11189, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11190, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11191, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11192, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11181, o is EmptyStructGen<int>, false);
+// Eval(11182, o is EmptyStructGen<int>[], false);
+// Eval(11183, o is EmptyStructGen<int>?, false);
+// Eval(11184, o is EmptyStructGen<int>?[], false);
+// Eval(11185, o is NotEmptyStructGen<Guid>, false);
+// Eval(11186, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11187, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11188, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11189, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11190, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11191, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11192, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11193, o is NestedStruct, false);
Eval(11194, o is NestedStruct[], false);
Eval(11195, o is NestedStruct?, false);
Eval(11196, o is NestedStruct?[], false);
- Eval(11197, o is NestedStructGen<Decimal>, false);
- Eval(11198, o is NestedStructGen<Decimal>[], false);
- Eval(11199, o is NestedStructGen<Decimal>?, false);
- Eval(11200, o is NestedStructGen<Decimal>?[], false);
+// Eval(11197, o is NestedStructGen<Decimal>, false);
+// Eval(11198, o is NestedStructGen<Decimal>[], false);
+// Eval(11199, o is NestedStructGen<Decimal>?, false);
+// Eval(11200, o is NestedStructGen<Decimal>?[], false);
Eval(11201, o is ExplicitFieldOffsetStruct, false);
Eval(11202, o is ExplicitFieldOffsetStruct[], false);
Eval(11203, o is ExplicitFieldOffsetStruct?, false);
@@ -9115,18 +9115,18 @@ internal class Program
Eval(11222, o is ImplementTwoInterface[], false);
Eval(11223, o is ImplementTwoInterface?, false);
Eval(11224, o is ImplementTwoInterface?[], false);
- Eval(11225, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11226, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11227, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11228, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11229, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11230, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11231, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11232, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11233, o is ImplementAllInterface<int>, false);
- Eval(11234, o is ImplementAllInterface<int>[], false);
- Eval(11235, o is ImplementAllInterface<int>?, false);
- Eval(11236, o is ImplementAllInterface<int>?[], false);
+// Eval(11225, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11226, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11227, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11228, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11229, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11230, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11231, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11232, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11233, o is ImplementAllInterface<int>, false);
+// Eval(11234, o is ImplementAllInterface<int>[], false);
+// Eval(11235, o is ImplementAllInterface<int>?, false);
+// Eval(11236, o is ImplementAllInterface<int>?[], false);
Eval(11237, o is IntE, false);
Eval(11238, o is IntE[], false);
Eval(11239, o is IntE?, false);
@@ -9225,38 +9225,38 @@ internal class Program
Eval(11332, o is IEmpty[], false);
Eval(11333, o is INotEmpty, false);
Eval(11334, o is INotEmpty[], false);
- Eval(11335, o is IEmptyGen<int>, false);
- Eval(11336, o is IEmptyGen<int>[], false);
- Eval(11337, o is INotEmptyGen<int>, false);
- Eval(11338, o is INotEmptyGen<int>[], false);
+// Eval(11335, o is IEmptyGen<int>, false);
+// Eval(11336, o is IEmptyGen<int>[], false);
+// Eval(11337, o is INotEmptyGen<int>, false);
+// Eval(11338, o is INotEmptyGen<int>[], false);
Eval(11339, o is SimpleDelegate, false);
Eval(11340, o is SimpleDelegate[], false);
- Eval(11341, o is GenericDelegate<int>, false);
- Eval(11342, o is GenericDelegate<int>[], false);
+// Eval(11341, o is GenericDelegate<int>, false);
+// Eval(11342, o is GenericDelegate<int>[], false);
Eval(11343, o is EmptyClass, false);
Eval(11344, o is EmptyClass[], false);
Eval(11345, o is NotEmptyClass, false);
Eval(11346, o is NotEmptyClass[], false);
- Eval(11347, o is EmptyClassGen<int>, false);
- Eval(11348, o is EmptyClassGen<int>[], false);
- Eval(11349, o is NotEmptyClassGen<Guid>, false);
- Eval(11350, o is NotEmptyClassGen<Guid>[], false);
- Eval(11351, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11352, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11347, o is EmptyClassGen<int>, false);
+// Eval(11348, o is EmptyClassGen<int>[], false);
+// Eval(11349, o is NotEmptyClassGen<Guid>, false);
+// Eval(11350, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11351, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11352, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11353, o is NestedClass, false);
Eval(11354, o is NestedClass[], false);
- Eval(11355, o is NestedClassGen<Decimal>, false);
- Eval(11356, o is NestedClassGen<Decimal>[], false);
+// Eval(11355, o is NestedClassGen<Decimal>, false);
+// Eval(11356, o is NestedClassGen<Decimal>[], false);
Eval(11357, o is ImplementOneInterfaceC, false);
Eval(11358, o is ImplementOneInterfaceC[], false);
Eval(11359, o is ImplementTwoInterfaceC, false);
Eval(11360, o is ImplementTwoInterfaceC[], false);
- Eval(11361, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11362, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11363, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11364, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11365, o is ImplementAllInterfaceC<int>, false);
- Eval(11366, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11361, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11362, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11363, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11364, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11365, o is ImplementAllInterfaceC<int>, false);
+// Eval(11366, o is ImplementAllInterfaceC<int>[], false);
Eval(11367, o is SealedClass, false);
Eval(11368, o is SealedClass[], false);
}
@@ -9271,26 +9271,26 @@ internal class Program
Eval(11374, o is NotEmptyStruct[], false);
Eval(11375, o is NotEmptyStruct?, false);
Eval(11376, o is NotEmptyStruct?[], false);
- Eval(11377, o is EmptyStructGen<int>, false);
- Eval(11378, o is EmptyStructGen<int>[], false);
- Eval(11379, o is EmptyStructGen<int>?, false);
- Eval(11380, o is EmptyStructGen<int>?[], false);
- Eval(11381, o is NotEmptyStructGen<Guid>, false);
- Eval(11382, o is NotEmptyStructGen<Guid>[], false);
- Eval(11383, o is NotEmptyStructGen<Guid>?, false);
- Eval(11384, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11385, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11386, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11387, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11388, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11377, o is EmptyStructGen<int>, false);
+// Eval(11378, o is EmptyStructGen<int>[], false);
+// Eval(11379, o is EmptyStructGen<int>?, false);
+// Eval(11380, o is EmptyStructGen<int>?[], false);
+// Eval(11381, o is NotEmptyStructGen<Guid>, false);
+// Eval(11382, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11383, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11384, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11385, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11386, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11387, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11388, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11389, o is NestedStruct, false);
Eval(11390, o is NestedStruct[], false);
Eval(11391, o is NestedStruct?, false);
Eval(11392, o is NestedStruct?[], false);
- Eval(11393, o is NestedStructGen<Decimal>, false);
- Eval(11394, o is NestedStructGen<Decimal>[], false);
- Eval(11395, o is NestedStructGen<Decimal>?, false);
- Eval(11396, o is NestedStructGen<Decimal>?[], false);
+// Eval(11393, o is NestedStructGen<Decimal>, false);
+// Eval(11394, o is NestedStructGen<Decimal>[], false);
+// Eval(11395, o is NestedStructGen<Decimal>?, false);
+// Eval(11396, o is NestedStructGen<Decimal>?[], false);
Eval(11397, o is ExplicitFieldOffsetStruct, false);
Eval(11398, o is ExplicitFieldOffsetStruct[], false);
Eval(11399, o is ExplicitFieldOffsetStruct?, false);
@@ -9307,18 +9307,18 @@ internal class Program
Eval(11418, o is ImplementTwoInterface[], false);
Eval(11419, o is ImplementTwoInterface?, false);
Eval(11420, o is ImplementTwoInterface?[], false);
- Eval(11421, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11422, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11423, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11424, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11425, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11426, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11427, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11428, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11429, o is ImplementAllInterface<int>, false);
- Eval(11430, o is ImplementAllInterface<int>[], false);
- Eval(11431, o is ImplementAllInterface<int>?, false);
- Eval(11432, o is ImplementAllInterface<int>?[], false);
+// Eval(11421, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11422, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11423, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11424, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11425, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11426, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11427, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11428, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11429, o is ImplementAllInterface<int>, false);
+// Eval(11430, o is ImplementAllInterface<int>[], false);
+// Eval(11431, o is ImplementAllInterface<int>?, false);
+// Eval(11432, o is ImplementAllInterface<int>?[], false);
Eval(11433, o is IntE, false);
Eval(11434, o is IntE[], false);
Eval(11435, o is IntE?, false);
@@ -9417,38 +9417,38 @@ internal class Program
Eval(11528, o is IEmpty[], false);
Eval(11529, o is INotEmpty, false);
Eval(11530, o is INotEmpty[], false);
- Eval(11531, o is IEmptyGen<int>, false);
- Eval(11532, o is IEmptyGen<int>[], false);
- Eval(11533, o is INotEmptyGen<int>, false);
- Eval(11534, o is INotEmptyGen<int>[], false);
+// Eval(11531, o is IEmptyGen<int>, false);
+// Eval(11532, o is IEmptyGen<int>[], false);
+// Eval(11533, o is INotEmptyGen<int>, false);
+// Eval(11534, o is INotEmptyGen<int>[], false);
Eval(11535, o is SimpleDelegate, false);
Eval(11536, o is SimpleDelegate[], false);
- Eval(11537, o is GenericDelegate<int>, false);
- Eval(11538, o is GenericDelegate<int>[], false);
+// Eval(11537, o is GenericDelegate<int>, false);
+// Eval(11538, o is GenericDelegate<int>[], false);
Eval(11539, o is EmptyClass, false);
Eval(11540, o is EmptyClass[], false);
Eval(11541, o is NotEmptyClass, false);
Eval(11542, o is NotEmptyClass[], false);
- Eval(11543, o is EmptyClassGen<int>, false);
- Eval(11544, o is EmptyClassGen<int>[], false);
- Eval(11545, o is NotEmptyClassGen<Guid>, false);
- Eval(11546, o is NotEmptyClassGen<Guid>[], false);
- Eval(11547, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11548, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11543, o is EmptyClassGen<int>, false);
+// Eval(11544, o is EmptyClassGen<int>[], false);
+// Eval(11545, o is NotEmptyClassGen<Guid>, false);
+// Eval(11546, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11547, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11548, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11549, o is NestedClass, false);
Eval(11550, o is NestedClass[], false);
- Eval(11551, o is NestedClassGen<Decimal>, false);
- Eval(11552, o is NestedClassGen<Decimal>[], false);
+// Eval(11551, o is NestedClassGen<Decimal>, false);
+// Eval(11552, o is NestedClassGen<Decimal>[], false);
Eval(11553, o is ImplementOneInterfaceC, false);
Eval(11554, o is ImplementOneInterfaceC[], false);
Eval(11555, o is ImplementTwoInterfaceC, false);
Eval(11556, o is ImplementTwoInterfaceC[], false);
- Eval(11557, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11558, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11559, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11560, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11561, o is ImplementAllInterfaceC<int>, false);
- Eval(11562, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11557, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11558, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11559, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11560, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11561, o is ImplementAllInterfaceC<int>, false);
+// Eval(11562, o is ImplementAllInterfaceC<int>[], false);
Eval(11563, o is SealedClass, false);
Eval(11564, o is SealedClass[], false);
}
@@ -9463,26 +9463,26 @@ internal class Program
Eval(11570, o is NotEmptyStruct[], false);
Eval(11571, o is NotEmptyStruct?, false);
Eval(11572, o is NotEmptyStruct?[], false);
- Eval(11573, o is EmptyStructGen<int>, false);
- Eval(11574, o is EmptyStructGen<int>[], false);
- Eval(11575, o is EmptyStructGen<int>?, false);
- Eval(11576, o is EmptyStructGen<int>?[], false);
- Eval(11577, o is NotEmptyStructGen<Guid>, false);
- Eval(11578, o is NotEmptyStructGen<Guid>[], false);
- Eval(11579, o is NotEmptyStructGen<Guid>?, false);
- Eval(11580, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11581, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11582, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11583, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11584, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11573, o is EmptyStructGen<int>, false);
+// Eval(11574, o is EmptyStructGen<int>[], false);
+// Eval(11575, o is EmptyStructGen<int>?, false);
+// Eval(11576, o is EmptyStructGen<int>?[], false);
+// Eval(11577, o is NotEmptyStructGen<Guid>, false);
+// Eval(11578, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11579, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11580, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11581, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11582, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11583, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11584, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11585, o is NestedStruct, false);
Eval(11586, o is NestedStruct[], false);
Eval(11587, o is NestedStruct?, false);
Eval(11588, o is NestedStruct?[], false);
- Eval(11589, o is NestedStructGen<Decimal>, false);
- Eval(11590, o is NestedStructGen<Decimal>[], false);
- Eval(11591, o is NestedStructGen<Decimal>?, false);
- Eval(11592, o is NestedStructGen<Decimal>?[], false);
+// Eval(11589, o is NestedStructGen<Decimal>, false);
+// Eval(11590, o is NestedStructGen<Decimal>[], false);
+// Eval(11591, o is NestedStructGen<Decimal>?, false);
+// Eval(11592, o is NestedStructGen<Decimal>?[], false);
Eval(11593, o is ExplicitFieldOffsetStruct, false);
Eval(11594, o is ExplicitFieldOffsetStruct[], false);
Eval(11595, o is ExplicitFieldOffsetStruct?, false);
@@ -9499,18 +9499,18 @@ internal class Program
Eval(11614, o is ImplementTwoInterface[], false);
Eval(11615, o is ImplementTwoInterface?, false);
Eval(11616, o is ImplementTwoInterface?[], false);
- Eval(11617, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11618, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11619, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11620, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11621, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11622, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11623, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11624, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11625, o is ImplementAllInterface<int>, false);
- Eval(11626, o is ImplementAllInterface<int>[], false);
- Eval(11627, o is ImplementAllInterface<int>?, false);
- Eval(11628, o is ImplementAllInterface<int>?[], false);
+// Eval(11617, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11618, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11619, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11620, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11621, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11622, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11623, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11624, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11625, o is ImplementAllInterface<int>, false);
+// Eval(11626, o is ImplementAllInterface<int>[], false);
+// Eval(11627, o is ImplementAllInterface<int>?, false);
+// Eval(11628, o is ImplementAllInterface<int>?[], false);
Eval(11629, o is IntE, false);
Eval(11630, o is IntE[], false);
Eval(11631, o is IntE?, false);
@@ -9609,38 +9609,38 @@ internal class Program
Eval(11724, o is IEmpty[], false);
Eval(11725, o is INotEmpty, false);
Eval(11726, o is INotEmpty[], false);
- Eval(11727, o is IEmptyGen<int>, false);
- Eval(11728, o is IEmptyGen<int>[], false);
- Eval(11729, o is INotEmptyGen<int>, false);
- Eval(11730, o is INotEmptyGen<int>[], false);
+// Eval(11727, o is IEmptyGen<int>, false);
+// Eval(11728, o is IEmptyGen<int>[], false);
+// Eval(11729, o is INotEmptyGen<int>, false);
+// Eval(11730, o is INotEmptyGen<int>[], false);
Eval(11731, o is SimpleDelegate, false);
Eval(11732, o is SimpleDelegate[], false);
- Eval(11733, o is GenericDelegate<int>, false);
- Eval(11734, o is GenericDelegate<int>[], false);
+// Eval(11733, o is GenericDelegate<int>, false);
+// Eval(11734, o is GenericDelegate<int>[], false);
Eval(11735, o is EmptyClass, false);
Eval(11736, o is EmptyClass[], false);
Eval(11737, o is NotEmptyClass, false);
Eval(11738, o is NotEmptyClass[], false);
- Eval(11739, o is EmptyClassGen<int>, false);
- Eval(11740, o is EmptyClassGen<int>[], false);
- Eval(11741, o is NotEmptyClassGen<Guid>, false);
- Eval(11742, o is NotEmptyClassGen<Guid>[], false);
- Eval(11743, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11744, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11739, o is EmptyClassGen<int>, false);
+// Eval(11740, o is EmptyClassGen<int>[], false);
+// Eval(11741, o is NotEmptyClassGen<Guid>, false);
+// Eval(11742, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11743, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11744, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11745, o is NestedClass, false);
Eval(11746, o is NestedClass[], false);
- Eval(11747, o is NestedClassGen<Decimal>, false);
- Eval(11748, o is NestedClassGen<Decimal>[], false);
+// Eval(11747, o is NestedClassGen<Decimal>, false);
+// Eval(11748, o is NestedClassGen<Decimal>[], false);
Eval(11749, o is ImplementOneInterfaceC, false);
Eval(11750, o is ImplementOneInterfaceC[], false);
Eval(11751, o is ImplementTwoInterfaceC, false);
Eval(11752, o is ImplementTwoInterfaceC[], false);
- Eval(11753, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11754, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11755, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11756, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11757, o is ImplementAllInterfaceC<int>, false);
- Eval(11758, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11753, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11754, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11755, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11756, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11757, o is ImplementAllInterfaceC<int>, false);
+// Eval(11758, o is ImplementAllInterfaceC<int>[], false);
Eval(11759, o is SealedClass, false);
Eval(11760, o is SealedClass[], false);
}
@@ -9658,26 +9658,26 @@ internal class Program
Eval(11766, o is NotEmptyStruct[], false);
Eval(11767, o is NotEmptyStruct?, false);
Eval(11768, o is NotEmptyStruct?[], false);
- Eval(11769, o is EmptyStructGen<int>, false);
- Eval(11770, o is EmptyStructGen<int>[], false);
- Eval(11771, o is EmptyStructGen<int>?, false);
- Eval(11772, o is EmptyStructGen<int>?[], false);
- Eval(11773, o is NotEmptyStructGen<Guid>, false);
- Eval(11774, o is NotEmptyStructGen<Guid>[], false);
- Eval(11775, o is NotEmptyStructGen<Guid>?, false);
- Eval(11776, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11777, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11778, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11779, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11780, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11769, o is EmptyStructGen<int>, false);
+// Eval(11770, o is EmptyStructGen<int>[], false);
+// Eval(11771, o is EmptyStructGen<int>?, false);
+// Eval(11772, o is EmptyStructGen<int>?[], false);
+// Eval(11773, o is NotEmptyStructGen<Guid>, false);
+// Eval(11774, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11775, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11776, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11777, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11778, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11779, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11780, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11781, o is NestedStruct, false);
Eval(11782, o is NestedStruct[], false);
Eval(11783, o is NestedStruct?, false);
Eval(11784, o is NestedStruct?[], false);
- Eval(11785, o is NestedStructGen<Decimal>, false);
- Eval(11786, o is NestedStructGen<Decimal>[], false);
- Eval(11787, o is NestedStructGen<Decimal>?, false);
- Eval(11788, o is NestedStructGen<Decimal>?[], false);
+// Eval(11785, o is NestedStructGen<Decimal>, false);
+// Eval(11786, o is NestedStructGen<Decimal>[], false);
+// Eval(11787, o is NestedStructGen<Decimal>?, false);
+// Eval(11788, o is NestedStructGen<Decimal>?[], false);
Eval(11789, o is ExplicitFieldOffsetStruct, false);
Eval(11790, o is ExplicitFieldOffsetStruct[], false);
Eval(11791, o is ExplicitFieldOffsetStruct?, false);
@@ -9694,18 +9694,18 @@ internal class Program
Eval(11810, o is ImplementTwoInterface[], false);
Eval(11811, o is ImplementTwoInterface?, true);
Eval(11812, o is ImplementTwoInterface?[], false);
- Eval(11813, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11814, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11815, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11816, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11817, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11818, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11819, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11820, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11821, o is ImplementAllInterface<int>, false);
- Eval(11822, o is ImplementAllInterface<int>[], false);
- Eval(11823, o is ImplementAllInterface<int>?, false);
- Eval(11824, o is ImplementAllInterface<int>?[], false);
+// Eval(11813, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11814, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11815, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11816, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11817, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11818, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11819, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11820, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11821, o is ImplementAllInterface<int>, false);
+// Eval(11822, o is ImplementAllInterface<int>[], false);
+// Eval(11823, o is ImplementAllInterface<int>?, false);
+// Eval(11824, o is ImplementAllInterface<int>?[], false);
Eval(11825, o is IntE, false);
Eval(11826, o is IntE[], false);
Eval(11827, o is IntE?, false);
@@ -9804,38 +9804,38 @@ internal class Program
Eval(11920, o is IEmpty[], false);
Eval(11921, o is INotEmpty, true);
Eval(11922, o is INotEmpty[], false);
- Eval(11923, o is IEmptyGen<int>, false);
- Eval(11924, o is IEmptyGen<int>[], false);
- Eval(11925, o is INotEmptyGen<int>, false);
- Eval(11926, o is INotEmptyGen<int>[], false);
+// Eval(11923, o is IEmptyGen<int>, false);
+// Eval(11924, o is IEmptyGen<int>[], false);
+// Eval(11925, o is INotEmptyGen<int>, false);
+// Eval(11926, o is INotEmptyGen<int>[], false);
Eval(11927, o is SimpleDelegate, false);
Eval(11928, o is SimpleDelegate[], false);
- Eval(11929, o is GenericDelegate<int>, false);
- Eval(11930, o is GenericDelegate<int>[], false);
+// Eval(11929, o is GenericDelegate<int>, false);
+// Eval(11930, o is GenericDelegate<int>[], false);
Eval(11931, o is EmptyClass, false);
Eval(11932, o is EmptyClass[], false);
Eval(11933, o is NotEmptyClass, false);
Eval(11934, o is NotEmptyClass[], false);
- Eval(11935, o is EmptyClassGen<int>, false);
- Eval(11936, o is EmptyClassGen<int>[], false);
- Eval(11937, o is NotEmptyClassGen<Guid>, false);
- Eval(11938, o is NotEmptyClassGen<Guid>[], false);
- Eval(11939, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11940, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11935, o is EmptyClassGen<int>, false);
+// Eval(11936, o is EmptyClassGen<int>[], false);
+// Eval(11937, o is NotEmptyClassGen<Guid>, false);
+// Eval(11938, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11939, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11940, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11941, o is NestedClass, false);
Eval(11942, o is NestedClass[], false);
- Eval(11943, o is NestedClassGen<Decimal>, false);
- Eval(11944, o is NestedClassGen<Decimal>[], false);
+// Eval(11943, o is NestedClassGen<Decimal>, false);
+// Eval(11944, o is NestedClassGen<Decimal>[], false);
Eval(11945, o is ImplementOneInterfaceC, false);
Eval(11946, o is ImplementOneInterfaceC[], false);
Eval(11947, o is ImplementTwoInterfaceC, false);
Eval(11948, o is ImplementTwoInterfaceC[], false);
- Eval(11949, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11950, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11951, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11952, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11953, o is ImplementAllInterfaceC<int>, false);
- Eval(11954, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11949, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11950, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11951, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11952, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11953, o is ImplementAllInterfaceC<int>, false);
+// Eval(11954, o is ImplementAllInterfaceC<int>[], false);
Eval(11955, o is SealedClass, false);
Eval(11956, o is SealedClass[], false);
}
@@ -9850,26 +9850,26 @@ internal class Program
Eval(11962, o is NotEmptyStruct[], false);
Eval(11963, o is NotEmptyStruct?, false);
Eval(11964, o is NotEmptyStruct?[], false);
- Eval(11965, o is EmptyStructGen<int>, false);
- Eval(11966, o is EmptyStructGen<int>[], false);
- Eval(11967, o is EmptyStructGen<int>?, false);
- Eval(11968, o is EmptyStructGen<int>?[], false);
- Eval(11969, o is NotEmptyStructGen<Guid>, false);
- Eval(11970, o is NotEmptyStructGen<Guid>[], false);
- Eval(11971, o is NotEmptyStructGen<Guid>?, false);
- Eval(11972, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11973, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11974, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11975, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11976, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11965, o is EmptyStructGen<int>, false);
+// Eval(11966, o is EmptyStructGen<int>[], false);
+// Eval(11967, o is EmptyStructGen<int>?, false);
+// Eval(11968, o is EmptyStructGen<int>?[], false);
+// Eval(11969, o is NotEmptyStructGen<Guid>, false);
+// Eval(11970, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11971, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11972, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11973, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11974, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11975, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11976, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11977, o is NestedStruct, false);
Eval(11978, o is NestedStruct[], false);
Eval(11979, o is NestedStruct?, false);
Eval(11980, o is NestedStruct?[], false);
- Eval(11981, o is NestedStructGen<Decimal>, false);
- Eval(11982, o is NestedStructGen<Decimal>[], false);
- Eval(11983, o is NestedStructGen<Decimal>?, false);
- Eval(11984, o is NestedStructGen<Decimal>?[], false);
+// Eval(11981, o is NestedStructGen<Decimal>, false);
+// Eval(11982, o is NestedStructGen<Decimal>[], false);
+// Eval(11983, o is NestedStructGen<Decimal>?, false);
+// Eval(11984, o is NestedStructGen<Decimal>?[], false);
Eval(11985, o is ExplicitFieldOffsetStruct, false);
Eval(11986, o is ExplicitFieldOffsetStruct[], false);
Eval(11987, o is ExplicitFieldOffsetStruct?, false);
@@ -9886,18 +9886,18 @@ internal class Program
Eval(12006, o is ImplementTwoInterface[], false);
Eval(12007, o is ImplementTwoInterface?, true);
Eval(12008, o is ImplementTwoInterface?[], false);
- Eval(12009, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12010, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12011, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12012, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12013, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12014, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12015, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12016, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12017, o is ImplementAllInterface<int>, false);
- Eval(12018, o is ImplementAllInterface<int>[], false);
- Eval(12019, o is ImplementAllInterface<int>?, false);
- Eval(12020, o is ImplementAllInterface<int>?[], false);
+// Eval(12009, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12010, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12011, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12012, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12013, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12014, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12015, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12016, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12017, o is ImplementAllInterface<int>, false);
+// Eval(12018, o is ImplementAllInterface<int>[], false);
+// Eval(12019, o is ImplementAllInterface<int>?, false);
+// Eval(12020, o is ImplementAllInterface<int>?[], false);
Eval(12021, o is IntE, false);
Eval(12022, o is IntE[], false);
Eval(12023, o is IntE?, false);
@@ -9996,38 +9996,38 @@ internal class Program
Eval(12116, o is IEmpty[], false);
Eval(12117, o is INotEmpty, true);
Eval(12118, o is INotEmpty[], false);
- Eval(12119, o is IEmptyGen<int>, false);
- Eval(12120, o is IEmptyGen<int>[], false);
- Eval(12121, o is INotEmptyGen<int>, false);
- Eval(12122, o is INotEmptyGen<int>[], false);
+// Eval(12119, o is IEmptyGen<int>, false);
+// Eval(12120, o is IEmptyGen<int>[], false);
+// Eval(12121, o is INotEmptyGen<int>, false);
+// Eval(12122, o is INotEmptyGen<int>[], false);
Eval(12123, o is SimpleDelegate, false);
Eval(12124, o is SimpleDelegate[], false);
- Eval(12125, o is GenericDelegate<int>, false);
- Eval(12126, o is GenericDelegate<int>[], false);
+// Eval(12125, o is GenericDelegate<int>, false);
+// Eval(12126, o is GenericDelegate<int>[], false);
Eval(12127, o is EmptyClass, false);
Eval(12128, o is EmptyClass[], false);
Eval(12129, o is NotEmptyClass, false);
Eval(12130, o is NotEmptyClass[], false);
- Eval(12131, o is EmptyClassGen<int>, false);
- Eval(12132, o is EmptyClassGen<int>[], false);
- Eval(12133, o is NotEmptyClassGen<Guid>, false);
- Eval(12134, o is NotEmptyClassGen<Guid>[], false);
- Eval(12135, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12136, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12131, o is EmptyClassGen<int>, false);
+// Eval(12132, o is EmptyClassGen<int>[], false);
+// Eval(12133, o is NotEmptyClassGen<Guid>, false);
+// Eval(12134, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12135, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12136, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12137, o is NestedClass, false);
Eval(12138, o is NestedClass[], false);
- Eval(12139, o is NestedClassGen<Decimal>, false);
- Eval(12140, o is NestedClassGen<Decimal>[], false);
+// Eval(12139, o is NestedClassGen<Decimal>, false);
+// Eval(12140, o is NestedClassGen<Decimal>[], false);
Eval(12141, o is ImplementOneInterfaceC, false);
Eval(12142, o is ImplementOneInterfaceC[], false);
Eval(12143, o is ImplementTwoInterfaceC, false);
Eval(12144, o is ImplementTwoInterfaceC[], false);
- Eval(12145, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12146, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12147, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12148, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12149, o is ImplementAllInterfaceC<int>, false);
- Eval(12150, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12145, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12146, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12147, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12148, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12149, o is ImplementAllInterfaceC<int>, false);
+// Eval(12150, o is ImplementAllInterfaceC<int>[], false);
Eval(12151, o is SealedClass, false);
Eval(12152, o is SealedClass[], false);
}
@@ -10042,26 +10042,26 @@ internal class Program
Eval(12158, o is NotEmptyStruct[], false);
Eval(12159, o is NotEmptyStruct?, false);
Eval(12160, o is NotEmptyStruct?[], false);
- Eval(12161, o is EmptyStructGen<int>, false);
- Eval(12162, o is EmptyStructGen<int>[], false);
- Eval(12163, o is EmptyStructGen<int>?, false);
- Eval(12164, o is EmptyStructGen<int>?[], false);
- Eval(12165, o is NotEmptyStructGen<Guid>, false);
- Eval(12166, o is NotEmptyStructGen<Guid>[], false);
- Eval(12167, o is NotEmptyStructGen<Guid>?, false);
- Eval(12168, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12169, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12170, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12171, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12172, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12161, o is EmptyStructGen<int>, false);
+// Eval(12162, o is EmptyStructGen<int>[], false);
+// Eval(12163, o is EmptyStructGen<int>?, false);
+// Eval(12164, o is EmptyStructGen<int>?[], false);
+// Eval(12165, o is NotEmptyStructGen<Guid>, false);
+// Eval(12166, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12167, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12168, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12169, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12170, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12171, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12172, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12173, o is NestedStruct, false);
Eval(12174, o is NestedStruct[], false);
Eval(12175, o is NestedStruct?, false);
Eval(12176, o is NestedStruct?[], false);
- Eval(12177, o is NestedStructGen<Decimal>, false);
- Eval(12178, o is NestedStructGen<Decimal>[], false);
- Eval(12179, o is NestedStructGen<Decimal>?, false);
- Eval(12180, o is NestedStructGen<Decimal>?[], false);
+// Eval(12177, o is NestedStructGen<Decimal>, false);
+// Eval(12178, o is NestedStructGen<Decimal>[], false);
+// Eval(12179, o is NestedStructGen<Decimal>?, false);
+// Eval(12180, o is NestedStructGen<Decimal>?[], false);
Eval(12181, o is ExplicitFieldOffsetStruct, false);
Eval(12182, o is ExplicitFieldOffsetStruct[], false);
Eval(12183, o is ExplicitFieldOffsetStruct?, false);
@@ -10078,18 +10078,18 @@ internal class Program
Eval(12202, o is ImplementTwoInterface[], false);
Eval(12203, o is ImplementTwoInterface?, false);
Eval(12204, o is ImplementTwoInterface?[], false);
- Eval(12205, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12206, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12207, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12208, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12209, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12210, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12211, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12212, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12213, o is ImplementAllInterface<int>, false);
- Eval(12214, o is ImplementAllInterface<int>[], false);
- Eval(12215, o is ImplementAllInterface<int>?, false);
- Eval(12216, o is ImplementAllInterface<int>?[], false);
+// Eval(12205, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12206, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12207, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12208, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12209, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12210, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12211, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12212, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12213, o is ImplementAllInterface<int>, false);
+// Eval(12214, o is ImplementAllInterface<int>[], false);
+// Eval(12215, o is ImplementAllInterface<int>?, false);
+// Eval(12216, o is ImplementAllInterface<int>?[], false);
Eval(12217, o is IntE, false);
Eval(12218, o is IntE[], false);
Eval(12219, o is IntE?, false);
@@ -10188,38 +10188,38 @@ internal class Program
Eval(12312, o is IEmpty[], false);
Eval(12313, o is INotEmpty, false);
Eval(12314, o is INotEmpty[], false);
- Eval(12315, o is IEmptyGen<int>, false);
- Eval(12316, o is IEmptyGen<int>[], false);
- Eval(12317, o is INotEmptyGen<int>, false);
- Eval(12318, o is INotEmptyGen<int>[], false);
+// Eval(12315, o is IEmptyGen<int>, false);
+// Eval(12316, o is IEmptyGen<int>[], false);
+// Eval(12317, o is INotEmptyGen<int>, false);
+// Eval(12318, o is INotEmptyGen<int>[], false);
Eval(12319, o is SimpleDelegate, false);
Eval(12320, o is SimpleDelegate[], false);
- Eval(12321, o is GenericDelegate<int>, false);
- Eval(12322, o is GenericDelegate<int>[], false);
+// Eval(12321, o is GenericDelegate<int>, false);
+// Eval(12322, o is GenericDelegate<int>[], false);
Eval(12323, o is EmptyClass, false);
Eval(12324, o is EmptyClass[], false);
Eval(12325, o is NotEmptyClass, false);
Eval(12326, o is NotEmptyClass[], false);
- Eval(12327, o is EmptyClassGen<int>, false);
- Eval(12328, o is EmptyClassGen<int>[], false);
- Eval(12329, o is NotEmptyClassGen<Guid>, false);
- Eval(12330, o is NotEmptyClassGen<Guid>[], false);
- Eval(12331, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12332, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12327, o is EmptyClassGen<int>, false);
+// Eval(12328, o is EmptyClassGen<int>[], false);
+// Eval(12329, o is NotEmptyClassGen<Guid>, false);
+// Eval(12330, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12331, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12332, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12333, o is NestedClass, false);
Eval(12334, o is NestedClass[], false);
- Eval(12335, o is NestedClassGen<Decimal>, false);
- Eval(12336, o is NestedClassGen<Decimal>[], false);
+// Eval(12335, o is NestedClassGen<Decimal>, false);
+// Eval(12336, o is NestedClassGen<Decimal>[], false);
Eval(12337, o is ImplementOneInterfaceC, false);
Eval(12338, o is ImplementOneInterfaceC[], false);
Eval(12339, o is ImplementTwoInterfaceC, false);
Eval(12340, o is ImplementTwoInterfaceC[], false);
- Eval(12341, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12342, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12343, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12344, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12345, o is ImplementAllInterfaceC<int>, false);
- Eval(12346, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12341, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12342, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12343, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12344, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12345, o is ImplementAllInterfaceC<int>, false);
+// Eval(12346, o is ImplementAllInterfaceC<int>[], false);
Eval(12347, o is SealedClass, false);
Eval(12348, o is SealedClass[], false);
}
@@ -10234,26 +10234,26 @@ internal class Program
Eval(12354, o is NotEmptyStruct[], false);
Eval(12355, o is NotEmptyStruct?, false);
Eval(12356, o is NotEmptyStruct?[], false);
- Eval(12357, o is EmptyStructGen<int>, false);
- Eval(12358, o is EmptyStructGen<int>[], false);
- Eval(12359, o is EmptyStructGen<int>?, false);
- Eval(12360, o is EmptyStructGen<int>?[], false);
- Eval(12361, o is NotEmptyStructGen<Guid>, false);
- Eval(12362, o is NotEmptyStructGen<Guid>[], false);
- Eval(12363, o is NotEmptyStructGen<Guid>?, false);
- Eval(12364, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12365, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12366, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12367, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12368, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12357, o is EmptyStructGen<int>, false);
+// Eval(12358, o is EmptyStructGen<int>[], false);
+// Eval(12359, o is EmptyStructGen<int>?, false);
+// Eval(12360, o is EmptyStructGen<int>?[], false);
+// Eval(12361, o is NotEmptyStructGen<Guid>, false);
+// Eval(12362, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12363, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12364, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12365, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12366, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12367, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12368, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12369, o is NestedStruct, false);
Eval(12370, o is NestedStruct[], false);
Eval(12371, o is NestedStruct?, false);
Eval(12372, o is NestedStruct?[], false);
- Eval(12373, o is NestedStructGen<Decimal>, false);
- Eval(12374, o is NestedStructGen<Decimal>[], false);
- Eval(12375, o is NestedStructGen<Decimal>?, false);
- Eval(12376, o is NestedStructGen<Decimal>?[], false);
+// Eval(12373, o is NestedStructGen<Decimal>, false);
+// Eval(12374, o is NestedStructGen<Decimal>[], false);
+// Eval(12375, o is NestedStructGen<Decimal>?, false);
+// Eval(12376, o is NestedStructGen<Decimal>?[], false);
Eval(12377, o is ExplicitFieldOffsetStruct, false);
Eval(12378, o is ExplicitFieldOffsetStruct[], false);
Eval(12379, o is ExplicitFieldOffsetStruct?, false);
@@ -10270,18 +10270,18 @@ internal class Program
Eval(12398, o is ImplementTwoInterface[], false);
Eval(12399, o is ImplementTwoInterface?, false);
Eval(12400, o is ImplementTwoInterface?[], false);
- Eval(12401, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12402, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12403, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12404, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12405, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12406, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12407, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12408, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12409, o is ImplementAllInterface<int>, false);
- Eval(12410, o is ImplementAllInterface<int>[], false);
- Eval(12411, o is ImplementAllInterface<int>?, false);
- Eval(12412, o is ImplementAllInterface<int>?[], false);
+// Eval(12401, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12402, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12403, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12404, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12405, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12406, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12407, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12408, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12409, o is ImplementAllInterface<int>, false);
+// Eval(12410, o is ImplementAllInterface<int>[], false);
+// Eval(12411, o is ImplementAllInterface<int>?, false);
+// Eval(12412, o is ImplementAllInterface<int>?[], false);
Eval(12413, o is IntE, false);
Eval(12414, o is IntE[], false);
Eval(12415, o is IntE?, false);
@@ -10380,38 +10380,38 @@ internal class Program
Eval(12508, o is IEmpty[], false);
Eval(12509, o is INotEmpty, false);
Eval(12510, o is INotEmpty[], false);
- Eval(12511, o is IEmptyGen<int>, false);
- Eval(12512, o is IEmptyGen<int>[], false);
- Eval(12513, o is INotEmptyGen<int>, false);
- Eval(12514, o is INotEmptyGen<int>[], false);
+// Eval(12511, o is IEmptyGen<int>, false);
+// Eval(12512, o is IEmptyGen<int>[], false);
+// Eval(12513, o is INotEmptyGen<int>, false);
+// Eval(12514, o is INotEmptyGen<int>[], false);
Eval(12515, o is SimpleDelegate, false);
Eval(12516, o is SimpleDelegate[], false);
- Eval(12517, o is GenericDelegate<int>, false);
- Eval(12518, o is GenericDelegate<int>[], false);
+// Eval(12517, o is GenericDelegate<int>, false);
+// Eval(12518, o is GenericDelegate<int>[], false);
Eval(12519, o is EmptyClass, false);
Eval(12520, o is EmptyClass[], false);
Eval(12521, o is NotEmptyClass, false);
Eval(12522, o is NotEmptyClass[], false);
- Eval(12523, o is EmptyClassGen<int>, false);
- Eval(12524, o is EmptyClassGen<int>[], false);
- Eval(12525, o is NotEmptyClassGen<Guid>, false);
- Eval(12526, o is NotEmptyClassGen<Guid>[], false);
- Eval(12527, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12528, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12523, o is EmptyClassGen<int>, false);
+// Eval(12524, o is EmptyClassGen<int>[], false);
+// Eval(12525, o is NotEmptyClassGen<Guid>, false);
+// Eval(12526, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12527, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12528, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12529, o is NestedClass, false);
Eval(12530, o is NestedClass[], false);
- Eval(12531, o is NestedClassGen<Decimal>, false);
- Eval(12532, o is NestedClassGen<Decimal>[], false);
+// Eval(12531, o is NestedClassGen<Decimal>, false);
+// Eval(12532, o is NestedClassGen<Decimal>[], false);
Eval(12533, o is ImplementOneInterfaceC, false);
Eval(12534, o is ImplementOneInterfaceC[], false);
Eval(12535, o is ImplementTwoInterfaceC, false);
Eval(12536, o is ImplementTwoInterfaceC[], false);
- Eval(12537, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12538, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12539, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12540, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12541, o is ImplementAllInterfaceC<int>, false);
- Eval(12542, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12537, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12538, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12539, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12540, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12541, o is ImplementAllInterfaceC<int>, false);
+// Eval(12542, o is ImplementAllInterfaceC<int>[], false);
Eval(12543, o is SealedClass, false);
Eval(12544, o is SealedClass[], false);
}
@@ -10426,26 +10426,26 @@ internal class Program
Eval(12550, o is NotEmptyStruct[], false);
Eval(12551, o is NotEmptyStruct?, false);
Eval(12552, o is NotEmptyStruct?[], false);
- Eval(12553, o is EmptyStructGen<int>, false);
- Eval(12554, o is EmptyStructGen<int>[], false);
- Eval(12555, o is EmptyStructGen<int>?, false);
- Eval(12556, o is EmptyStructGen<int>?[], false);
- Eval(12557, o is NotEmptyStructGen<Guid>, false);
- Eval(12558, o is NotEmptyStructGen<Guid>[], false);
- Eval(12559, o is NotEmptyStructGen<Guid>?, false);
- Eval(12560, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12561, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12562, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12563, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12564, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12553, o is EmptyStructGen<int>, false);
+// Eval(12554, o is EmptyStructGen<int>[], false);
+// Eval(12555, o is EmptyStructGen<int>?, false);
+// Eval(12556, o is EmptyStructGen<int>?[], false);
+// Eval(12557, o is NotEmptyStructGen<Guid>, false);
+// Eval(12558, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12559, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12560, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12561, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12562, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12563, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12564, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12565, o is NestedStruct, false);
Eval(12566, o is NestedStruct[], false);
Eval(12567, o is NestedStruct?, false);
Eval(12568, o is NestedStruct?[], false);
- Eval(12569, o is NestedStructGen<Decimal>, false);
- Eval(12570, o is NestedStructGen<Decimal>[], false);
- Eval(12571, o is NestedStructGen<Decimal>?, false);
- Eval(12572, o is NestedStructGen<Decimal>?[], false);
+// Eval(12569, o is NestedStructGen<Decimal>, false);
+// Eval(12570, o is NestedStructGen<Decimal>[], false);
+// Eval(12571, o is NestedStructGen<Decimal>?, false);
+// Eval(12572, o is NestedStructGen<Decimal>?[], false);
Eval(12573, o is ExplicitFieldOffsetStruct, false);
Eval(12574, o is ExplicitFieldOffsetStruct[], false);
Eval(12575, o is ExplicitFieldOffsetStruct?, false);
@@ -10462,18 +10462,18 @@ internal class Program
Eval(12594, o is ImplementTwoInterface[], false);
Eval(12595, o is ImplementTwoInterface?, false);
Eval(12596, o is ImplementTwoInterface?[], true);
- Eval(12597, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12598, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12599, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12600, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12601, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12602, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12603, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12604, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12605, o is ImplementAllInterface<int>, false);
- Eval(12606, o is ImplementAllInterface<int>[], false);
- Eval(12607, o is ImplementAllInterface<int>?, false);
- Eval(12608, o is ImplementAllInterface<int>?[], false);
+// Eval(12597, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12598, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12599, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12600, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12601, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12602, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12603, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12604, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12605, o is ImplementAllInterface<int>, false);
+// Eval(12606, o is ImplementAllInterface<int>[], false);
+// Eval(12607, o is ImplementAllInterface<int>?, false);
+// Eval(12608, o is ImplementAllInterface<int>?[], false);
Eval(12609, o is IntE, false);
Eval(12610, o is IntE[], false);
Eval(12611, o is IntE?, false);
@@ -10572,38 +10572,38 @@ internal class Program
Eval(12704, o is IEmpty[], false);
Eval(12705, o is INotEmpty, false);
Eval(12706, o is INotEmpty[], false);
- Eval(12707, o is IEmptyGen<int>, false);
- Eval(12708, o is IEmptyGen<int>[], false);
- Eval(12709, o is INotEmptyGen<int>, false);
- Eval(12710, o is INotEmptyGen<int>[], false);
+// Eval(12707, o is IEmptyGen<int>, false);
+// Eval(12708, o is IEmptyGen<int>[], false);
+// Eval(12709, o is INotEmptyGen<int>, false);
+// Eval(12710, o is INotEmptyGen<int>[], false);
Eval(12711, o is SimpleDelegate, false);
Eval(12712, o is SimpleDelegate[], false);
- Eval(12713, o is GenericDelegate<int>, false);
- Eval(12714, o is GenericDelegate<int>[], false);
+// Eval(12713, o is GenericDelegate<int>, false);
+// Eval(12714, o is GenericDelegate<int>[], false);
Eval(12715, o is EmptyClass, false);
Eval(12716, o is EmptyClass[], false);
Eval(12717, o is NotEmptyClass, false);
Eval(12718, o is NotEmptyClass[], false);
- Eval(12719, o is EmptyClassGen<int>, false);
- Eval(12720, o is EmptyClassGen<int>[], false);
- Eval(12721, o is NotEmptyClassGen<Guid>, false);
- Eval(12722, o is NotEmptyClassGen<Guid>[], false);
- Eval(12723, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12724, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12719, o is EmptyClassGen<int>, false);
+// Eval(12720, o is EmptyClassGen<int>[], false);
+// Eval(12721, o is NotEmptyClassGen<Guid>, false);
+// Eval(12722, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12723, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12724, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12725, o is NestedClass, false);
Eval(12726, o is NestedClass[], false);
- Eval(12727, o is NestedClassGen<Decimal>, false);
- Eval(12728, o is NestedClassGen<Decimal>[], false);
+// Eval(12727, o is NestedClassGen<Decimal>, false);
+// Eval(12728, o is NestedClassGen<Decimal>[], false);
Eval(12729, o is ImplementOneInterfaceC, false);
Eval(12730, o is ImplementOneInterfaceC[], false);
Eval(12731, o is ImplementTwoInterfaceC, false);
Eval(12732, o is ImplementTwoInterfaceC[], false);
- Eval(12733, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12734, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12735, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12736, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12737, o is ImplementAllInterfaceC<int>, false);
- Eval(12738, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12733, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12734, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12735, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12736, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12737, o is ImplementAllInterfaceC<int>, false);
+// Eval(12738, o is ImplementAllInterfaceC<int>[], false);
Eval(12739, o is SealedClass, false);
Eval(12740, o is SealedClass[], false);
}
@@ -10621,26 +10621,26 @@ internal class Program
Eval(12746, o is NotEmptyStruct[], false);
Eval(12747, o is NotEmptyStruct?, false);
Eval(12748, o is NotEmptyStruct?[], false);
- Eval(12749, o is EmptyStructGen<int>, false);
- Eval(12750, o is EmptyStructGen<int>[], false);
- Eval(12751, o is EmptyStructGen<int>?, false);
- Eval(12752, o is EmptyStructGen<int>?[], false);
- Eval(12753, o is NotEmptyStructGen<Guid>, false);
- Eval(12754, o is NotEmptyStructGen<Guid>[], false);
- Eval(12755, o is NotEmptyStructGen<Guid>?, false);
- Eval(12756, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12757, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12758, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12759, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12760, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12749, o is EmptyStructGen<int>, false);
+// Eval(12750, o is EmptyStructGen<int>[], false);
+// Eval(12751, o is EmptyStructGen<int>?, false);
+// Eval(12752, o is EmptyStructGen<int>?[], false);
+// Eval(12753, o is NotEmptyStructGen<Guid>, false);
+// Eval(12754, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12755, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12756, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12757, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12758, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12759, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12760, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12761, o is NestedStruct, false);
Eval(12762, o is NestedStruct[], false);
Eval(12763, o is NestedStruct?, false);
Eval(12764, o is NestedStruct?[], false);
- Eval(12765, o is NestedStructGen<Decimal>, false);
- Eval(12766, o is NestedStructGen<Decimal>[], false);
- Eval(12767, o is NestedStructGen<Decimal>?, false);
- Eval(12768, o is NestedStructGen<Decimal>?[], false);
+// Eval(12765, o is NestedStructGen<Decimal>, false);
+// Eval(12766, o is NestedStructGen<Decimal>[], false);
+// Eval(12767, o is NestedStructGen<Decimal>?, false);
+// Eval(12768, o is NestedStructGen<Decimal>?[], false);
Eval(12769, o is ExplicitFieldOffsetStruct, false);
Eval(12770, o is ExplicitFieldOffsetStruct[], false);
Eval(12771, o is ExplicitFieldOffsetStruct?, false);
@@ -10657,18 +10657,18 @@ internal class Program
Eval(12790, o is ImplementTwoInterface[], false);
Eval(12791, o is ImplementTwoInterface?, false);
Eval(12792, o is ImplementTwoInterface?[], false);
- Eval(12793, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(12794, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12795, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(12796, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12797, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12798, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12799, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12800, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12801, o is ImplementAllInterface<int>, false);
- Eval(12802, o is ImplementAllInterface<int>[], false);
- Eval(12803, o is ImplementAllInterface<int>?, false);
- Eval(12804, o is ImplementAllInterface<int>?[], false);
+// Eval(12793, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(12794, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12795, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(12796, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12797, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12798, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12799, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12800, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12801, o is ImplementAllInterface<int>, false);
+// Eval(12802, o is ImplementAllInterface<int>[], false);
+// Eval(12803, o is ImplementAllInterface<int>?, false);
+// Eval(12804, o is ImplementAllInterface<int>?[], false);
Eval(12805, o is IntE, false);
Eval(12806, o is IntE[], false);
Eval(12807, o is IntE?, false);
@@ -10767,38 +10767,38 @@ internal class Program
Eval(12900, o is IEmpty[], false);
Eval(12901, o is INotEmpty, false);
Eval(12902, o is INotEmpty[], false);
- Eval(12903, o is IEmptyGen<int>, false);
- Eval(12904, o is IEmptyGen<int>[], false);
- Eval(12905, o is INotEmptyGen<int>, false);
- Eval(12906, o is INotEmptyGen<int>[], false);
+// Eval(12903, o is IEmptyGen<int>, false);
+// Eval(12904, o is IEmptyGen<int>[], false);
+// Eval(12905, o is INotEmptyGen<int>, false);
+// Eval(12906, o is INotEmptyGen<int>[], false);
Eval(12907, o is SimpleDelegate, false);
Eval(12908, o is SimpleDelegate[], false);
- Eval(12909, o is GenericDelegate<int>, false);
- Eval(12910, o is GenericDelegate<int>[], false);
+// Eval(12909, o is GenericDelegate<int>, false);
+// Eval(12910, o is GenericDelegate<int>[], false);
Eval(12911, o is EmptyClass, false);
Eval(12912, o is EmptyClass[], false);
Eval(12913, o is NotEmptyClass, false);
Eval(12914, o is NotEmptyClass[], false);
- Eval(12915, o is EmptyClassGen<int>, false);
- Eval(12916, o is EmptyClassGen<int>[], false);
- Eval(12917, o is NotEmptyClassGen<Guid>, false);
- Eval(12918, o is NotEmptyClassGen<Guid>[], false);
- Eval(12919, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12920, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12915, o is EmptyClassGen<int>, false);
+// Eval(12916, o is EmptyClassGen<int>[], false);
+// Eval(12917, o is NotEmptyClassGen<Guid>, false);
+// Eval(12918, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12919, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12920, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12921, o is NestedClass, false);
Eval(12922, o is NestedClass[], false);
- Eval(12923, o is NestedClassGen<Decimal>, false);
- Eval(12924, o is NestedClassGen<Decimal>[], false);
+// Eval(12923, o is NestedClassGen<Decimal>, false);
+// Eval(12924, o is NestedClassGen<Decimal>[], false);
Eval(12925, o is ImplementOneInterfaceC, false);
Eval(12926, o is ImplementOneInterfaceC[], false);
Eval(12927, o is ImplementTwoInterfaceC, false);
Eval(12928, o is ImplementTwoInterfaceC[], false);
- Eval(12929, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12930, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12931, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12932, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12933, o is ImplementAllInterfaceC<int>, false);
- Eval(12934, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12929, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12930, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12931, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12932, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12933, o is ImplementAllInterfaceC<int>, false);
+// Eval(12934, o is ImplementAllInterfaceC<int>[], false);
Eval(12935, o is SealedClass, false);
Eval(12936, o is SealedClass[], false);
}
@@ -10813,26 +10813,26 @@ internal class Program
Eval(12942, o is NotEmptyStruct[], false);
Eval(12943, o is NotEmptyStruct?, false);
Eval(12944, o is NotEmptyStruct?[], false);
- Eval(12945, o is EmptyStructGen<int>, false);
- Eval(12946, o is EmptyStructGen<int>[], false);
- Eval(12947, o is EmptyStructGen<int>?, false);
- Eval(12948, o is EmptyStructGen<int>?[], false);
- Eval(12949, o is NotEmptyStructGen<Guid>, false);
- Eval(12950, o is NotEmptyStructGen<Guid>[], false);
- Eval(12951, o is NotEmptyStructGen<Guid>?, false);
- Eval(12952, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12953, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12954, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12955, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12956, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12945, o is EmptyStructGen<int>, false);
+// Eval(12946, o is EmptyStructGen<int>[], false);
+// Eval(12947, o is EmptyStructGen<int>?, false);
+// Eval(12948, o is EmptyStructGen<int>?[], false);
+// Eval(12949, o is NotEmptyStructGen<Guid>, false);
+// Eval(12950, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12951, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12952, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12953, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12954, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12955, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12956, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12957, o is NestedStruct, false);
Eval(12958, o is NestedStruct[], false);
Eval(12959, o is NestedStruct?, false);
Eval(12960, o is NestedStruct?[], false);
- Eval(12961, o is NestedStructGen<Decimal>, false);
- Eval(12962, o is NestedStructGen<Decimal>[], false);
- Eval(12963, o is NestedStructGen<Decimal>?, false);
- Eval(12964, o is NestedStructGen<Decimal>?[], false);
+// Eval(12961, o is NestedStructGen<Decimal>, false);
+// Eval(12962, o is NestedStructGen<Decimal>[], false);
+// Eval(12963, o is NestedStructGen<Decimal>?, false);
+// Eval(12964, o is NestedStructGen<Decimal>?[], false);
Eval(12965, o is ExplicitFieldOffsetStruct, false);
Eval(12966, o is ExplicitFieldOffsetStruct[], false);
Eval(12967, o is ExplicitFieldOffsetStruct?, false);
@@ -10849,18 +10849,18 @@ internal class Program
Eval(12986, o is ImplementTwoInterface[], false);
Eval(12987, o is ImplementTwoInterface?, false);
Eval(12988, o is ImplementTwoInterface?[], false);
- Eval(12989, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(12990, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12991, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(12992, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12993, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12994, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12995, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12996, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12997, o is ImplementAllInterface<int>, false);
- Eval(12998, o is ImplementAllInterface<int>[], false);
- Eval(12999, o is ImplementAllInterface<int>?, false);
- Eval(13000, o is ImplementAllInterface<int>?[], false);
+// Eval(12989, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(12990, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12991, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(12992, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12993, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12994, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12995, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12996, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12997, o is ImplementAllInterface<int>, false);
+// Eval(12998, o is ImplementAllInterface<int>[], false);
+// Eval(12999, o is ImplementAllInterface<int>?, false);
+// Eval(13000, o is ImplementAllInterface<int>?[], false);
Eval(13001, o is IntE, false);
Eval(13002, o is IntE[], false);
Eval(13003, o is IntE?, false);
@@ -10959,38 +10959,38 @@ internal class Program
Eval(13096, o is IEmpty[], false);
Eval(13097, o is INotEmpty, false);
Eval(13098, o is INotEmpty[], false);
- Eval(13099, o is IEmptyGen<int>, false);
- Eval(13100, o is IEmptyGen<int>[], false);
- Eval(13101, o is INotEmptyGen<int>, false);
- Eval(13102, o is INotEmptyGen<int>[], false);
+// Eval(13099, o is IEmptyGen<int>, false);
+// Eval(13100, o is IEmptyGen<int>[], false);
+// Eval(13101, o is INotEmptyGen<int>, false);
+// Eval(13102, o is INotEmptyGen<int>[], false);
Eval(13103, o is SimpleDelegate, false);
Eval(13104, o is SimpleDelegate[], false);
- Eval(13105, o is GenericDelegate<int>, false);
- Eval(13106, o is GenericDelegate<int>[], false);
+// Eval(13105, o is GenericDelegate<int>, false);
+// Eval(13106, o is GenericDelegate<int>[], false);
Eval(13107, o is EmptyClass, false);
Eval(13108, o is EmptyClass[], false);
Eval(13109, o is NotEmptyClass, false);
Eval(13110, o is NotEmptyClass[], false);
- Eval(13111, o is EmptyClassGen<int>, false);
- Eval(13112, o is EmptyClassGen<int>[], false);
- Eval(13113, o is NotEmptyClassGen<Guid>, false);
- Eval(13114, o is NotEmptyClassGen<Guid>[], false);
- Eval(13115, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13116, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13111, o is EmptyClassGen<int>, false);
+// Eval(13112, o is EmptyClassGen<int>[], false);
+// Eval(13113, o is NotEmptyClassGen<Guid>, false);
+// Eval(13114, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13115, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13116, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13117, o is NestedClass, false);
Eval(13118, o is NestedClass[], false);
- Eval(13119, o is NestedClassGen<Decimal>, false);
- Eval(13120, o is NestedClassGen<Decimal>[], false);
+// Eval(13119, o is NestedClassGen<Decimal>, false);
+// Eval(13120, o is NestedClassGen<Decimal>[], false);
Eval(13121, o is ImplementOneInterfaceC, false);
Eval(13122, o is ImplementOneInterfaceC[], false);
Eval(13123, o is ImplementTwoInterfaceC, false);
Eval(13124, o is ImplementTwoInterfaceC[], false);
- Eval(13125, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13126, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13127, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13128, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13129, o is ImplementAllInterfaceC<int>, false);
- Eval(13130, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13125, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13126, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13127, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13128, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13129, o is ImplementAllInterfaceC<int>, false);
+// Eval(13130, o is ImplementAllInterfaceC<int>[], false);
Eval(13131, o is SealedClass, false);
Eval(13132, o is SealedClass[], false);
}
@@ -11005,26 +11005,26 @@ internal class Program
Eval(13138, o is NotEmptyStruct[], false);
Eval(13139, o is NotEmptyStruct?, false);
Eval(13140, o is NotEmptyStruct?[], false);
- Eval(13141, o is EmptyStructGen<int>, false);
- Eval(13142, o is EmptyStructGen<int>[], false);
- Eval(13143, o is EmptyStructGen<int>?, false);
- Eval(13144, o is EmptyStructGen<int>?[], false);
- Eval(13145, o is NotEmptyStructGen<Guid>, false);
- Eval(13146, o is NotEmptyStructGen<Guid>[], false);
- Eval(13147, o is NotEmptyStructGen<Guid>?, false);
- Eval(13148, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13149, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13150, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13151, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13152, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13141, o is EmptyStructGen<int>, false);
+// Eval(13142, o is EmptyStructGen<int>[], false);
+// Eval(13143, o is EmptyStructGen<int>?, false);
+// Eval(13144, o is EmptyStructGen<int>?[], false);
+// Eval(13145, o is NotEmptyStructGen<Guid>, false);
+// Eval(13146, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13147, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13148, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13149, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13150, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13151, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13152, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13153, o is NestedStruct, false);
Eval(13154, o is NestedStruct[], false);
Eval(13155, o is NestedStruct?, false);
Eval(13156, o is NestedStruct?[], false);
- Eval(13157, o is NestedStructGen<Decimal>, false);
- Eval(13158, o is NestedStructGen<Decimal>[], false);
- Eval(13159, o is NestedStructGen<Decimal>?, false);
- Eval(13160, o is NestedStructGen<Decimal>?[], false);
+// Eval(13157, o is NestedStructGen<Decimal>, false);
+// Eval(13158, o is NestedStructGen<Decimal>[], false);
+// Eval(13159, o is NestedStructGen<Decimal>?, false);
+// Eval(13160, o is NestedStructGen<Decimal>?[], false);
Eval(13161, o is ExplicitFieldOffsetStruct, false);
Eval(13162, o is ExplicitFieldOffsetStruct[], false);
Eval(13163, o is ExplicitFieldOffsetStruct?, false);
@@ -11041,18 +11041,18 @@ internal class Program
Eval(13182, o is ImplementTwoInterface[], false);
Eval(13183, o is ImplementTwoInterface?, false);
Eval(13184, o is ImplementTwoInterface?[], false);
- Eval(13185, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13186, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13187, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13188, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13189, o is ImplementTwoInterfaceGen<int>, false);
- Eval(13190, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13191, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(13192, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13193, o is ImplementAllInterface<int>, false);
- Eval(13194, o is ImplementAllInterface<int>[], false);
- Eval(13195, o is ImplementAllInterface<int>?, false);
- Eval(13196, o is ImplementAllInterface<int>?[], false);
+// Eval(13185, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13186, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13187, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13188, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13189, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(13190, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13191, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13192, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13193, o is ImplementAllInterface<int>, false);
+// Eval(13194, o is ImplementAllInterface<int>[], false);
+// Eval(13195, o is ImplementAllInterface<int>?, false);
+// Eval(13196, o is ImplementAllInterface<int>?[], false);
Eval(13197, o is IntE, false);
Eval(13198, o is IntE[], false);
Eval(13199, o is IntE?, false);
@@ -11151,38 +11151,38 @@ internal class Program
Eval(13292, o is IEmpty[], false);
Eval(13293, o is INotEmpty, false);
Eval(13294, o is INotEmpty[], false);
- Eval(13295, o is IEmptyGen<int>, false);
- Eval(13296, o is IEmptyGen<int>[], false);
- Eval(13297, o is INotEmptyGen<int>, false);
- Eval(13298, o is INotEmptyGen<int>[], false);
+// Eval(13295, o is IEmptyGen<int>, false);
+// Eval(13296, o is IEmptyGen<int>[], false);
+// Eval(13297, o is INotEmptyGen<int>, false);
+// Eval(13298, o is INotEmptyGen<int>[], false);
Eval(13299, o is SimpleDelegate, false);
Eval(13300, o is SimpleDelegate[], false);
- Eval(13301, o is GenericDelegate<int>, false);
- Eval(13302, o is GenericDelegate<int>[], false);
+// Eval(13301, o is GenericDelegate<int>, false);
+// Eval(13302, o is GenericDelegate<int>[], false);
Eval(13303, o is EmptyClass, false);
Eval(13304, o is EmptyClass[], false);
Eval(13305, o is NotEmptyClass, false);
Eval(13306, o is NotEmptyClass[], false);
- Eval(13307, o is EmptyClassGen<int>, false);
- Eval(13308, o is EmptyClassGen<int>[], false);
- Eval(13309, o is NotEmptyClassGen<Guid>, false);
- Eval(13310, o is NotEmptyClassGen<Guid>[], false);
- Eval(13311, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13312, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13307, o is EmptyClassGen<int>, false);
+// Eval(13308, o is EmptyClassGen<int>[], false);
+// Eval(13309, o is NotEmptyClassGen<Guid>, false);
+// Eval(13310, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13311, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13312, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13313, o is NestedClass, false);
Eval(13314, o is NestedClass[], false);
- Eval(13315, o is NestedClassGen<Decimal>, false);
- Eval(13316, o is NestedClassGen<Decimal>[], false);
+// Eval(13315, o is NestedClassGen<Decimal>, false);
+// Eval(13316, o is NestedClassGen<Decimal>[], false);
Eval(13317, o is ImplementOneInterfaceC, false);
Eval(13318, o is ImplementOneInterfaceC[], false);
Eval(13319, o is ImplementTwoInterfaceC, false);
Eval(13320, o is ImplementTwoInterfaceC[], false);
- Eval(13321, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13322, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13323, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13324, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13325, o is ImplementAllInterfaceC<int>, false);
- Eval(13326, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13321, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13322, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13323, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13324, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13325, o is ImplementAllInterfaceC<int>, false);
+// Eval(13326, o is ImplementAllInterfaceC<int>[], false);
Eval(13327, o is SealedClass, false);
Eval(13328, o is SealedClass[], false);
}
@@ -11197,26 +11197,26 @@ internal class Program
Eval(13334, o is NotEmptyStruct[], false);
Eval(13335, o is NotEmptyStruct?, false);
Eval(13336, o is NotEmptyStruct?[], false);
- Eval(13337, o is EmptyStructGen<int>, false);
- Eval(13338, o is EmptyStructGen<int>[], false);
- Eval(13339, o is EmptyStructGen<int>?, false);
- Eval(13340, o is EmptyStructGen<int>?[], false);
- Eval(13341, o is NotEmptyStructGen<Guid>, false);
- Eval(13342, o is NotEmptyStructGen<Guid>[], false);
- Eval(13343, o is NotEmptyStructGen<Guid>?, false);
- Eval(13344, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13345, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13346, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13347, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13348, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13337, o is EmptyStructGen<int>, false);
+// Eval(13338, o is EmptyStructGen<int>[], false);
+// Eval(13339, o is EmptyStructGen<int>?, false);
+// Eval(13340, o is EmptyStructGen<int>?[], false);
+// Eval(13341, o is NotEmptyStructGen<Guid>, false);
+// Eval(13342, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13343, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13344, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13345, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13346, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13347, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13348, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13349, o is NestedStruct, false);
Eval(13350, o is NestedStruct[], false);
Eval(13351, o is NestedStruct?, false);
Eval(13352, o is NestedStruct?[], false);
- Eval(13353, o is NestedStructGen<Decimal>, false);
- Eval(13354, o is NestedStructGen<Decimal>[], false);
- Eval(13355, o is NestedStructGen<Decimal>?, false);
- Eval(13356, o is NestedStructGen<Decimal>?[], false);
+// Eval(13353, o is NestedStructGen<Decimal>, false);
+// Eval(13354, o is NestedStructGen<Decimal>[], false);
+// Eval(13355, o is NestedStructGen<Decimal>?, false);
+// Eval(13356, o is NestedStructGen<Decimal>?[], false);
Eval(13357, o is ExplicitFieldOffsetStruct, false);
Eval(13358, o is ExplicitFieldOffsetStruct[], false);
Eval(13359, o is ExplicitFieldOffsetStruct?, false);
@@ -11233,18 +11233,18 @@ internal class Program
Eval(13378, o is ImplementTwoInterface[], false);
Eval(13379, o is ImplementTwoInterface?, false);
Eval(13380, o is ImplementTwoInterface?[], false);
- Eval(13381, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13382, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13383, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13384, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13385, o is ImplementTwoInterfaceGen<int>, false);
- Eval(13386, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13387, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(13388, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13389, o is ImplementAllInterface<int>, false);
- Eval(13390, o is ImplementAllInterface<int>[], false);
- Eval(13391, o is ImplementAllInterface<int>?, false);
- Eval(13392, o is ImplementAllInterface<int>?[], false);
+// Eval(13381, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13382, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13383, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13384, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13385, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(13386, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13387, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13388, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13389, o is ImplementAllInterface<int>, false);
+// Eval(13390, o is ImplementAllInterface<int>[], false);
+// Eval(13391, o is ImplementAllInterface<int>?, false);
+// Eval(13392, o is ImplementAllInterface<int>?[], false);
Eval(13393, o is IntE, false);
Eval(13394, o is IntE[], false);
Eval(13395, o is IntE?, false);
@@ -11343,38 +11343,38 @@ internal class Program
Eval(13488, o is IEmpty[], false);
Eval(13489, o is INotEmpty, false);
Eval(13490, o is INotEmpty[], false);
- Eval(13491, o is IEmptyGen<int>, false);
- Eval(13492, o is IEmptyGen<int>[], false);
- Eval(13493, o is INotEmptyGen<int>, false);
- Eval(13494, o is INotEmptyGen<int>[], false);
+// Eval(13491, o is IEmptyGen<int>, false);
+// Eval(13492, o is IEmptyGen<int>[], false);
+// Eval(13493, o is INotEmptyGen<int>, false);
+// Eval(13494, o is INotEmptyGen<int>[], false);
Eval(13495, o is SimpleDelegate, false);
Eval(13496, o is SimpleDelegate[], false);
- Eval(13497, o is GenericDelegate<int>, false);
- Eval(13498, o is GenericDelegate<int>[], false);
+// Eval(13497, o is GenericDelegate<int>, false);
+// Eval(13498, o is GenericDelegate<int>[], false);
Eval(13499, o is EmptyClass, false);
Eval(13500, o is EmptyClass[], false);
Eval(13501, o is NotEmptyClass, false);
Eval(13502, o is NotEmptyClass[], false);
- Eval(13503, o is EmptyClassGen<int>, false);
- Eval(13504, o is EmptyClassGen<int>[], false);
- Eval(13505, o is NotEmptyClassGen<Guid>, false);
- Eval(13506, o is NotEmptyClassGen<Guid>[], false);
- Eval(13507, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13508, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13503, o is EmptyClassGen<int>, false);
+// Eval(13504, o is EmptyClassGen<int>[], false);
+// Eval(13505, o is NotEmptyClassGen<Guid>, false);
+// Eval(13506, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13507, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13508, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13509, o is NestedClass, false);
Eval(13510, o is NestedClass[], false);
- Eval(13511, o is NestedClassGen<Decimal>, false);
- Eval(13512, o is NestedClassGen<Decimal>[], false);
+// Eval(13511, o is NestedClassGen<Decimal>, false);
+// Eval(13512, o is NestedClassGen<Decimal>[], false);
Eval(13513, o is ImplementOneInterfaceC, false);
Eval(13514, o is ImplementOneInterfaceC[], false);
Eval(13515, o is ImplementTwoInterfaceC, false);
Eval(13516, o is ImplementTwoInterfaceC[], false);
- Eval(13517, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13518, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13519, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13520, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13521, o is ImplementAllInterfaceC<int>, false);
- Eval(13522, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13517, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13518, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13519, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13520, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13521, o is ImplementAllInterfaceC<int>, false);
+// Eval(13522, o is ImplementAllInterfaceC<int>[], false);
Eval(13523, o is SealedClass, false);
Eval(13524, o is SealedClass[], false);
}
@@ -11389,26 +11389,26 @@ internal class Program
Eval(13530, o is NotEmptyStruct[], false);
Eval(13531, o is NotEmptyStruct?, false);
Eval(13532, o is NotEmptyStruct?[], false);
- Eval(13533, o is EmptyStructGen<int>, false);
- Eval(13534, o is EmptyStructGen<int>[], false);
- Eval(13535, o is EmptyStructGen<int>?, false);
- Eval(13536, o is EmptyStructGen<int>?[], false);
- Eval(13537, o is NotEmptyStructGen<Guid>, false);
- Eval(13538, o is NotEmptyStructGen<Guid>[], false);
- Eval(13539, o is NotEmptyStructGen<Guid>?, false);
- Eval(13540, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13541, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13542, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13543, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13544, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13533, o is EmptyStructGen<int>, false);
+// Eval(13534, o is EmptyStructGen<int>[], false);
+// Eval(13535, o is EmptyStructGen<int>?, false);
+// Eval(13536, o is EmptyStructGen<int>?[], false);
+// Eval(13537, o is NotEmptyStructGen<Guid>, false);
+// Eval(13538, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13539, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13540, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13541, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13542, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13543, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13544, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13545, o is NestedStruct, false);
Eval(13546, o is NestedStruct[], false);
Eval(13547, o is NestedStruct?, false);
Eval(13548, o is NestedStruct?[], false);
- Eval(13549, o is NestedStructGen<Decimal>, false);
- Eval(13550, o is NestedStructGen<Decimal>[], false);
- Eval(13551, o is NestedStructGen<Decimal>?, false);
- Eval(13552, o is NestedStructGen<Decimal>?[], false);
+// Eval(13549, o is NestedStructGen<Decimal>, false);
+// Eval(13550, o is NestedStructGen<Decimal>[], false);
+// Eval(13551, o is NestedStructGen<Decimal>?, false);
+// Eval(13552, o is NestedStructGen<Decimal>?[], false);
Eval(13553, o is ExplicitFieldOffsetStruct, false);
Eval(13554, o is ExplicitFieldOffsetStruct[], false);
Eval(13555, o is ExplicitFieldOffsetStruct?, false);
@@ -11425,18 +11425,18 @@ internal class Program
Eval(13574, o is ImplementTwoInterface[], false);
Eval(13575, o is ImplementTwoInterface?, false);
Eval(13576, o is ImplementTwoInterface?[], false);
- Eval(13577, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13578, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13579, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13580, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], true);
- Eval(13581, o is ImplementTwoInterfaceGen<int>, false);
- Eval(13582, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13583, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(13584, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13585, o is ImplementAllInterface<int>, false);
- Eval(13586, o is ImplementAllInterface<int>[], false);
- Eval(13587, o is ImplementAllInterface<int>?, false);
- Eval(13588, o is ImplementAllInterface<int>?[], false);
+// Eval(13577, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13578, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13579, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13580, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], true);
+// Eval(13581, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(13582, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13583, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13584, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13585, o is ImplementAllInterface<int>, false);
+// Eval(13586, o is ImplementAllInterface<int>[], false);
+// Eval(13587, o is ImplementAllInterface<int>?, false);
+// Eval(13588, o is ImplementAllInterface<int>?[], false);
Eval(13589, o is IntE, false);
Eval(13590, o is IntE[], false);
Eval(13591, o is IntE?, false);
@@ -11535,38 +11535,38 @@ internal class Program
Eval(13684, o is IEmpty[], false);
Eval(13685, o is INotEmpty, false);
Eval(13686, o is INotEmpty[], false);
- Eval(13687, o is IEmptyGen<int>, false);
- Eval(13688, o is IEmptyGen<int>[], false);
- Eval(13689, o is INotEmptyGen<int>, false);
- Eval(13690, o is INotEmptyGen<int>[], false);
+// Eval(13687, o is IEmptyGen<int>, false);
+// Eval(13688, o is IEmptyGen<int>[], false);
+// Eval(13689, o is INotEmptyGen<int>, false);
+// Eval(13690, o is INotEmptyGen<int>[], false);
Eval(13691, o is SimpleDelegate, false);
Eval(13692, o is SimpleDelegate[], false);
- Eval(13693, o is GenericDelegate<int>, false);
- Eval(13694, o is GenericDelegate<int>[], false);
+// Eval(13693, o is GenericDelegate<int>, false);
+// Eval(13694, o is GenericDelegate<int>[], false);
Eval(13695, o is EmptyClass, false);
Eval(13696, o is EmptyClass[], false);
Eval(13697, o is NotEmptyClass, false);
Eval(13698, o is NotEmptyClass[], false);
- Eval(13699, o is EmptyClassGen<int>, false);
- Eval(13700, o is EmptyClassGen<int>[], false);
- Eval(13701, o is NotEmptyClassGen<Guid>, false);
- Eval(13702, o is NotEmptyClassGen<Guid>[], false);
- Eval(13703, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13704, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13699, o is EmptyClassGen<int>, false);
+// Eval(13700, o is EmptyClassGen<int>[], false);
+// Eval(13701, o is NotEmptyClassGen<Guid>, false);
+// Eval(13702, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13703, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13704, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13705, o is NestedClass, false);
Eval(13706, o is NestedClass[], false);
- Eval(13707, o is NestedClassGen<Decimal>, false);
- Eval(13708, o is NestedClassGen<Decimal>[], false);
+// Eval(13707, o is NestedClassGen<Decimal>, false);
+// Eval(13708, o is NestedClassGen<Decimal>[], false);
Eval(13709, o is ImplementOneInterfaceC, false);
Eval(13710, o is ImplementOneInterfaceC[], false);
Eval(13711, o is ImplementTwoInterfaceC, false);
Eval(13712, o is ImplementTwoInterfaceC[], false);
- Eval(13713, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13714, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13715, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13716, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13717, o is ImplementAllInterfaceC<int>, false);
- Eval(13718, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13713, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13714, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13715, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13716, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13717, o is ImplementAllInterfaceC<int>, false);
+// Eval(13718, o is ImplementAllInterfaceC<int>[], false);
Eval(13719, o is SealedClass, false);
Eval(13720, o is SealedClass[], false);
}
@@ -11584,26 +11584,26 @@ internal class Program
Eval(13726, o is NotEmptyStruct[], false);
Eval(13727, o is NotEmptyStruct?, false);
Eval(13728, o is NotEmptyStruct?[], false);
- Eval(13729, o is EmptyStructGen<int>, false);
- Eval(13730, o is EmptyStructGen<int>[], false);
- Eval(13731, o is EmptyStructGen<int>?, false);
- Eval(13732, o is EmptyStructGen<int>?[], false);
- Eval(13733, o is NotEmptyStructGen<Guid>, false);
- Eval(13734, o is NotEmptyStructGen<Guid>[], false);
- Eval(13735, o is NotEmptyStructGen<Guid>?, false);
- Eval(13736, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13737, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13738, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13739, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13740, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13729, o is EmptyStructGen<int>, false);
+// Eval(13730, o is EmptyStructGen<int>[], false);
+// Eval(13731, o is EmptyStructGen<int>?, false);
+// Eval(13732, o is EmptyStructGen<int>?[], false);
+// Eval(13733, o is NotEmptyStructGen<Guid>, false);
+// Eval(13734, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13735, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13736, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13737, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13738, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13739, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13740, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13741, o is NestedStruct, false);
Eval(13742, o is NestedStruct[], false);
Eval(13743, o is NestedStruct?, false);
Eval(13744, o is NestedStruct?[], false);
- Eval(13745, o is NestedStructGen<Decimal>, false);
- Eval(13746, o is NestedStructGen<Decimal>[], false);
- Eval(13747, o is NestedStructGen<Decimal>?, false);
- Eval(13748, o is NestedStructGen<Decimal>?[], false);
+// Eval(13745, o is NestedStructGen<Decimal>, false);
+// Eval(13746, o is NestedStructGen<Decimal>[], false);
+// Eval(13747, o is NestedStructGen<Decimal>?, false);
+// Eval(13748, o is NestedStructGen<Decimal>?[], false);
Eval(13749, o is ExplicitFieldOffsetStruct, false);
Eval(13750, o is ExplicitFieldOffsetStruct[], false);
Eval(13751, o is ExplicitFieldOffsetStruct?, false);
@@ -11620,18 +11620,18 @@ internal class Program
Eval(13770, o is ImplementTwoInterface[], false);
Eval(13771, o is ImplementTwoInterface?, false);
Eval(13772, o is ImplementTwoInterface?[], false);
- Eval(13773, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13774, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13775, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13776, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13777, o is ImplementTwoInterfaceGen<int>, true);
- Eval(13778, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13779, o is ImplementTwoInterfaceGen<int>?, true);
- Eval(13780, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13781, o is ImplementAllInterface<int>, false);
- Eval(13782, o is ImplementAllInterface<int>[], false);
- Eval(13783, o is ImplementAllInterface<int>?, false);
- Eval(13784, o is ImplementAllInterface<int>?[], false);
+// Eval(13773, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13774, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13775, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13776, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13777, o is ImplementTwoInterfaceGen<int>, true);
+// Eval(13778, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13779, o is ImplementTwoInterfaceGen<int>?, true);
+// Eval(13780, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13781, o is ImplementAllInterface<int>, false);
+// Eval(13782, o is ImplementAllInterface<int>[], false);
+// Eval(13783, o is ImplementAllInterface<int>?, false);
+// Eval(13784, o is ImplementAllInterface<int>?[], false);
Eval(13785, o is IntE, false);
Eval(13786, o is IntE[], false);
Eval(13787, o is IntE?, false);
@@ -11730,38 +11730,38 @@ internal class Program
Eval(13880, o is IEmpty[], false);
Eval(13881, o is INotEmpty, false);
Eval(13882, o is INotEmpty[], false);
- Eval(13883, o is IEmptyGen<int>, true);
- Eval(13884, o is IEmptyGen<int>[], false);
- Eval(13885, o is INotEmptyGen<int>, true);
- Eval(13886, o is INotEmptyGen<int>[], false);
+// Eval(13883, o is IEmptyGen<int>, true);
+// Eval(13884, o is IEmptyGen<int>[], false);
+// Eval(13885, o is INotEmptyGen<int>, true);
+// Eval(13886, o is INotEmptyGen<int>[], false);
Eval(13887, o is SimpleDelegate, false);
Eval(13888, o is SimpleDelegate[], false);
- Eval(13889, o is GenericDelegate<int>, false);
- Eval(13890, o is GenericDelegate<int>[], false);
+// Eval(13889, o is GenericDelegate<int>, false);
+// Eval(13890, o is GenericDelegate<int>[], false);
Eval(13891, o is EmptyClass, false);
Eval(13892, o is EmptyClass[], false);
Eval(13893, o is NotEmptyClass, false);
Eval(13894, o is NotEmptyClass[], false);
- Eval(13895, o is EmptyClassGen<int>, false);
- Eval(13896, o is EmptyClassGen<int>[], false);
- Eval(13897, o is NotEmptyClassGen<Guid>, false);
- Eval(13898, o is NotEmptyClassGen<Guid>[], false);
- Eval(13899, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13900, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13895, o is EmptyClassGen<int>, false);
+// Eval(13896, o is EmptyClassGen<int>[], false);
+// Eval(13897, o is NotEmptyClassGen<Guid>, false);
+// Eval(13898, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13899, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13900, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13901, o is NestedClass, false);
Eval(13902, o is NestedClass[], false);
- Eval(13903, o is NestedClassGen<Decimal>, false);
- Eval(13904, o is NestedClassGen<Decimal>[], false);
+// Eval(13903, o is NestedClassGen<Decimal>, false);
+// Eval(13904, o is NestedClassGen<Decimal>[], false);
Eval(13905, o is ImplementOneInterfaceC, false);
Eval(13906, o is ImplementOneInterfaceC[], false);
Eval(13907, o is ImplementTwoInterfaceC, false);
Eval(13908, o is ImplementTwoInterfaceC[], false);
- Eval(13909, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13910, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13911, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13912, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13913, o is ImplementAllInterfaceC<int>, false);
- Eval(13914, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13909, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13910, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13911, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13912, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13913, o is ImplementAllInterfaceC<int>, false);
+// Eval(13914, o is ImplementAllInterfaceC<int>[], false);
Eval(13915, o is SealedClass, false);
Eval(13916, o is SealedClass[], false);
}
@@ -11776,26 +11776,26 @@ internal class Program
Eval(13922, o is NotEmptyStruct[], false);
Eval(13923, o is NotEmptyStruct?, false);
Eval(13924, o is NotEmptyStruct?[], false);
- Eval(13925, o is EmptyStructGen<int>, false);
- Eval(13926, o is EmptyStructGen<int>[], false);
- Eval(13927, o is EmptyStructGen<int>?, false);
- Eval(13928, o is EmptyStructGen<int>?[], false);
- Eval(13929, o is NotEmptyStructGen<Guid>, false);
- Eval(13930, o is NotEmptyStructGen<Guid>[], false);
- Eval(13931, o is NotEmptyStructGen<Guid>?, false);
- Eval(13932, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13933, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13934, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13935, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13936, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13925, o is EmptyStructGen<int>, false);
+// Eval(13926, o is EmptyStructGen<int>[], false);
+// Eval(13927, o is EmptyStructGen<int>?, false);
+// Eval(13928, o is EmptyStructGen<int>?[], false);
+// Eval(13929, o is NotEmptyStructGen<Guid>, false);
+// Eval(13930, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13931, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13932, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13933, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13934, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13935, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13936, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13937, o is NestedStruct, false);
Eval(13938, o is NestedStruct[], false);
Eval(13939, o is NestedStruct?, false);
Eval(13940, o is NestedStruct?[], false);
- Eval(13941, o is NestedStructGen<Decimal>, false);
- Eval(13942, o is NestedStructGen<Decimal>[], false);
- Eval(13943, o is NestedStructGen<Decimal>?, false);
- Eval(13944, o is NestedStructGen<Decimal>?[], false);
+// Eval(13941, o is NestedStructGen<Decimal>, false);
+// Eval(13942, o is NestedStructGen<Decimal>[], false);
+// Eval(13943, o is NestedStructGen<Decimal>?, false);
+// Eval(13944, o is NestedStructGen<Decimal>?[], false);
Eval(13945, o is ExplicitFieldOffsetStruct, false);
Eval(13946, o is ExplicitFieldOffsetStruct[], false);
Eval(13947, o is ExplicitFieldOffsetStruct?, false);
@@ -11812,18 +11812,18 @@ internal class Program
Eval(13966, o is ImplementTwoInterface[], false);
Eval(13967, o is ImplementTwoInterface?, false);
Eval(13968, o is ImplementTwoInterface?[], false);
- Eval(13969, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13970, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13971, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13972, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13973, o is ImplementTwoInterfaceGen<int>, true);
- Eval(13974, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13975, o is ImplementTwoInterfaceGen<int>?, true);
- Eval(13976, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13977, o is ImplementAllInterface<int>, false);
- Eval(13978, o is ImplementAllInterface<int>[], false);
- Eval(13979, o is ImplementAllInterface<int>?, false);
- Eval(13980, o is ImplementAllInterface<int>?[], false);
+// Eval(13969, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13970, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13971, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13972, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13973, o is ImplementTwoInterfaceGen<int>, true);
+// Eval(13974, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13975, o is ImplementTwoInterfaceGen<int>?, true);
+// Eval(13976, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13977, o is ImplementAllInterface<int>, false);
+// Eval(13978, o is ImplementAllInterface<int>[], false);
+// Eval(13979, o is ImplementAllInterface<int>?, false);
+// Eval(13980, o is ImplementAllInterface<int>?[], false);
Eval(13981, o is IntE, false);
Eval(13982, o is IntE[], false);
Eval(13983, o is IntE?, false);
@@ -11922,38 +11922,38 @@ internal class Program
Eval(14076, o is IEmpty[], false);
Eval(14077, o is INotEmpty, false);
Eval(14078, o is INotEmpty[], false);
- Eval(14079, o is IEmptyGen<int>, true);
- Eval(14080, o is IEmptyGen<int>[], false);
- Eval(14081, o is INotEmptyGen<int>, true);
- Eval(14082, o is INotEmptyGen<int>[], false);
+// Eval(14079, o is IEmptyGen<int>, true);
+// Eval(14080, o is IEmptyGen<int>[], false);
+// Eval(14081, o is INotEmptyGen<int>, true);
+// Eval(14082, o is INotEmptyGen<int>[], false);
Eval(14083, o is SimpleDelegate, false);
Eval(14084, o is SimpleDelegate[], false);
- Eval(14085, o is GenericDelegate<int>, false);
- Eval(14086, o is GenericDelegate<int>[], false);
+// Eval(14085, o is GenericDelegate<int>, false);
+// Eval(14086, o is GenericDelegate<int>[], false);
Eval(14087, o is EmptyClass, false);
Eval(14088, o is EmptyClass[], false);
Eval(14089, o is NotEmptyClass, false);
Eval(14090, o is NotEmptyClass[], false);
- Eval(14091, o is EmptyClassGen<int>, false);
- Eval(14092, o is EmptyClassGen<int>[], false);
- Eval(14093, o is NotEmptyClassGen<Guid>, false);
- Eval(14094, o is NotEmptyClassGen<Guid>[], false);
- Eval(14095, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14096, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14091, o is EmptyClassGen<int>, false);
+// Eval(14092, o is EmptyClassGen<int>[], false);
+// Eval(14093, o is NotEmptyClassGen<Guid>, false);
+// Eval(14094, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14095, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14096, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14097, o is NestedClass, false);
Eval(14098, o is NestedClass[], false);
- Eval(14099, o is NestedClassGen<Decimal>, false);
- Eval(14100, o is NestedClassGen<Decimal>[], false);
+// Eval(14099, o is NestedClassGen<Decimal>, false);
+// Eval(14100, o is NestedClassGen<Decimal>[], false);
Eval(14101, o is ImplementOneInterfaceC, false);
Eval(14102, o is ImplementOneInterfaceC[], false);
Eval(14103, o is ImplementTwoInterfaceC, false);
Eval(14104, o is ImplementTwoInterfaceC[], false);
- Eval(14105, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14106, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14107, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14108, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14109, o is ImplementAllInterfaceC<int>, false);
- Eval(14110, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14105, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14106, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14107, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14108, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14109, o is ImplementAllInterfaceC<int>, false);
+// Eval(14110, o is ImplementAllInterfaceC<int>[], false);
Eval(14111, o is SealedClass, false);
Eval(14112, o is SealedClass[], false);
}
@@ -11968,26 +11968,26 @@ internal class Program
Eval(14118, o is NotEmptyStruct[], false);
Eval(14119, o is NotEmptyStruct?, false);
Eval(14120, o is NotEmptyStruct?[], false);
- Eval(14121, o is EmptyStructGen<int>, false);
- Eval(14122, o is EmptyStructGen<int>[], false);
- Eval(14123, o is EmptyStructGen<int>?, false);
- Eval(14124, o is EmptyStructGen<int>?[], false);
- Eval(14125, o is NotEmptyStructGen<Guid>, false);
- Eval(14126, o is NotEmptyStructGen<Guid>[], false);
- Eval(14127, o is NotEmptyStructGen<Guid>?, false);
- Eval(14128, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14129, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14130, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14131, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14132, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14121, o is EmptyStructGen<int>, false);
+// Eval(14122, o is EmptyStructGen<int>[], false);
+// Eval(14123, o is EmptyStructGen<int>?, false);
+// Eval(14124, o is EmptyStructGen<int>?[], false);
+// Eval(14125, o is NotEmptyStructGen<Guid>, false);
+// Eval(14126, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14127, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14128, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14129, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14130, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14131, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14132, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14133, o is NestedStruct, false);
Eval(14134, o is NestedStruct[], false);
Eval(14135, o is NestedStruct?, false);
Eval(14136, o is NestedStruct?[], false);
- Eval(14137, o is NestedStructGen<Decimal>, false);
- Eval(14138, o is NestedStructGen<Decimal>[], false);
- Eval(14139, o is NestedStructGen<Decimal>?, false);
- Eval(14140, o is NestedStructGen<Decimal>?[], false);
+// Eval(14137, o is NestedStructGen<Decimal>, false);
+// Eval(14138, o is NestedStructGen<Decimal>[], false);
+// Eval(14139, o is NestedStructGen<Decimal>?, false);
+// Eval(14140, o is NestedStructGen<Decimal>?[], false);
Eval(14141, o is ExplicitFieldOffsetStruct, false);
Eval(14142, o is ExplicitFieldOffsetStruct[], false);
Eval(14143, o is ExplicitFieldOffsetStruct?, false);
@@ -12004,18 +12004,18 @@ internal class Program
Eval(14162, o is ImplementTwoInterface[], false);
Eval(14163, o is ImplementTwoInterface?, false);
Eval(14164, o is ImplementTwoInterface?[], false);
- Eval(14165, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14166, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14167, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14168, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14169, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14170, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14171, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14172, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14173, o is ImplementAllInterface<int>, false);
- Eval(14174, o is ImplementAllInterface<int>[], false);
- Eval(14175, o is ImplementAllInterface<int>?, false);
- Eval(14176, o is ImplementAllInterface<int>?[], false);
+// Eval(14165, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14166, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14167, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14168, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14169, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14170, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14171, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14172, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14173, o is ImplementAllInterface<int>, false);
+// Eval(14174, o is ImplementAllInterface<int>[], false);
+// Eval(14175, o is ImplementAllInterface<int>?, false);
+// Eval(14176, o is ImplementAllInterface<int>?[], false);
Eval(14177, o is IntE, false);
Eval(14178, o is IntE[], false);
Eval(14179, o is IntE?, false);
@@ -12114,38 +12114,38 @@ internal class Program
Eval(14272, o is IEmpty[], false);
Eval(14273, o is INotEmpty, false);
Eval(14274, o is INotEmpty[], false);
- Eval(14275, o is IEmptyGen<int>, false);
- Eval(14276, o is IEmptyGen<int>[], false);
- Eval(14277, o is INotEmptyGen<int>, false);
- Eval(14278, o is INotEmptyGen<int>[], false);
+// Eval(14275, o is IEmptyGen<int>, false);
+// Eval(14276, o is IEmptyGen<int>[], false);
+// Eval(14277, o is INotEmptyGen<int>, false);
+// Eval(14278, o is INotEmptyGen<int>[], false);
Eval(14279, o is SimpleDelegate, false);
Eval(14280, o is SimpleDelegate[], false);
- Eval(14281, o is GenericDelegate<int>, false);
- Eval(14282, o is GenericDelegate<int>[], false);
+// Eval(14281, o is GenericDelegate<int>, false);
+// Eval(14282, o is GenericDelegate<int>[], false);
Eval(14283, o is EmptyClass, false);
Eval(14284, o is EmptyClass[], false);
Eval(14285, o is NotEmptyClass, false);
Eval(14286, o is NotEmptyClass[], false);
- Eval(14287, o is EmptyClassGen<int>, false);
- Eval(14288, o is EmptyClassGen<int>[], false);
- Eval(14289, o is NotEmptyClassGen<Guid>, false);
- Eval(14290, o is NotEmptyClassGen<Guid>[], false);
- Eval(14291, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14292, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14287, o is EmptyClassGen<int>, false);
+// Eval(14288, o is EmptyClassGen<int>[], false);
+// Eval(14289, o is NotEmptyClassGen<Guid>, false);
+// Eval(14290, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14291, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14292, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14293, o is NestedClass, false);
Eval(14294, o is NestedClass[], false);
- Eval(14295, o is NestedClassGen<Decimal>, false);
- Eval(14296, o is NestedClassGen<Decimal>[], false);
+// Eval(14295, o is NestedClassGen<Decimal>, false);
+// Eval(14296, o is NestedClassGen<Decimal>[], false);
Eval(14297, o is ImplementOneInterfaceC, false);
Eval(14298, o is ImplementOneInterfaceC[], false);
Eval(14299, o is ImplementTwoInterfaceC, false);
Eval(14300, o is ImplementTwoInterfaceC[], false);
- Eval(14301, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14302, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14303, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14304, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14305, o is ImplementAllInterfaceC<int>, false);
- Eval(14306, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14301, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14302, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14303, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14304, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14305, o is ImplementAllInterfaceC<int>, false);
+// Eval(14306, o is ImplementAllInterfaceC<int>[], false);
Eval(14307, o is SealedClass, false);
Eval(14308, o is SealedClass[], false);
}
@@ -12160,26 +12160,26 @@ internal class Program
Eval(14314, o is NotEmptyStruct[], false);
Eval(14315, o is NotEmptyStruct?, false);
Eval(14316, o is NotEmptyStruct?[], false);
- Eval(14317, o is EmptyStructGen<int>, false);
- Eval(14318, o is EmptyStructGen<int>[], false);
- Eval(14319, o is EmptyStructGen<int>?, false);
- Eval(14320, o is EmptyStructGen<int>?[], false);
- Eval(14321, o is NotEmptyStructGen<Guid>, false);
- Eval(14322, o is NotEmptyStructGen<Guid>[], false);
- Eval(14323, o is NotEmptyStructGen<Guid>?, false);
- Eval(14324, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14325, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14326, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14327, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14328, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14317, o is EmptyStructGen<int>, false);
+// Eval(14318, o is EmptyStructGen<int>[], false);
+// Eval(14319, o is EmptyStructGen<int>?, false);
+// Eval(14320, o is EmptyStructGen<int>?[], false);
+// Eval(14321, o is NotEmptyStructGen<Guid>, false);
+// Eval(14322, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14323, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14324, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14325, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14326, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14327, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14328, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14329, o is NestedStruct, false);
Eval(14330, o is NestedStruct[], false);
Eval(14331, o is NestedStruct?, false);
Eval(14332, o is NestedStruct?[], false);
- Eval(14333, o is NestedStructGen<Decimal>, false);
- Eval(14334, o is NestedStructGen<Decimal>[], false);
- Eval(14335, o is NestedStructGen<Decimal>?, false);
- Eval(14336, o is NestedStructGen<Decimal>?[], false);
+// Eval(14333, o is NestedStructGen<Decimal>, false);
+// Eval(14334, o is NestedStructGen<Decimal>[], false);
+// Eval(14335, o is NestedStructGen<Decimal>?, false);
+// Eval(14336, o is NestedStructGen<Decimal>?[], false);
Eval(14337, o is ExplicitFieldOffsetStruct, false);
Eval(14338, o is ExplicitFieldOffsetStruct[], false);
Eval(14339, o is ExplicitFieldOffsetStruct?, false);
@@ -12196,18 +12196,18 @@ internal class Program
Eval(14358, o is ImplementTwoInterface[], false);
Eval(14359, o is ImplementTwoInterface?, false);
Eval(14360, o is ImplementTwoInterface?[], false);
- Eval(14361, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14362, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14363, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14364, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14365, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14366, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14367, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14368, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14369, o is ImplementAllInterface<int>, false);
- Eval(14370, o is ImplementAllInterface<int>[], false);
- Eval(14371, o is ImplementAllInterface<int>?, false);
- Eval(14372, o is ImplementAllInterface<int>?[], false);
+// Eval(14361, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14362, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14363, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14364, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14365, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14366, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14367, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14368, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14369, o is ImplementAllInterface<int>, false);
+// Eval(14370, o is ImplementAllInterface<int>[], false);
+// Eval(14371, o is ImplementAllInterface<int>?, false);
+// Eval(14372, o is ImplementAllInterface<int>?[], false);
Eval(14373, o is IntE, false);
Eval(14374, o is IntE[], false);
Eval(14375, o is IntE?, false);
@@ -12306,38 +12306,38 @@ internal class Program
Eval(14468, o is IEmpty[], false);
Eval(14469, o is INotEmpty, false);
Eval(14470, o is INotEmpty[], false);
- Eval(14471, o is IEmptyGen<int>, false);
- Eval(14472, o is IEmptyGen<int>[], false);
- Eval(14473, o is INotEmptyGen<int>, false);
- Eval(14474, o is INotEmptyGen<int>[], false);
+// Eval(14471, o is IEmptyGen<int>, false);
+// Eval(14472, o is IEmptyGen<int>[], false);
+// Eval(14473, o is INotEmptyGen<int>, false);
+// Eval(14474, o is INotEmptyGen<int>[], false);
Eval(14475, o is SimpleDelegate, false);
Eval(14476, o is SimpleDelegate[], false);
- Eval(14477, o is GenericDelegate<int>, false);
- Eval(14478, o is GenericDelegate<int>[], false);
+// Eval(14477, o is GenericDelegate<int>, false);
+// Eval(14478, o is GenericDelegate<int>[], false);
Eval(14479, o is EmptyClass, false);
Eval(14480, o is EmptyClass[], false);
Eval(14481, o is NotEmptyClass, false);
Eval(14482, o is NotEmptyClass[], false);
- Eval(14483, o is EmptyClassGen<int>, false);
- Eval(14484, o is EmptyClassGen<int>[], false);
- Eval(14485, o is NotEmptyClassGen<Guid>, false);
- Eval(14486, o is NotEmptyClassGen<Guid>[], false);
- Eval(14487, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14488, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14483, o is EmptyClassGen<int>, false);
+// Eval(14484, o is EmptyClassGen<int>[], false);
+// Eval(14485, o is NotEmptyClassGen<Guid>, false);
+// Eval(14486, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14487, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14488, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14489, o is NestedClass, false);
Eval(14490, o is NestedClass[], false);
- Eval(14491, o is NestedClassGen<Decimal>, false);
- Eval(14492, o is NestedClassGen<Decimal>[], false);
+// Eval(14491, o is NestedClassGen<Decimal>, false);
+// Eval(14492, o is NestedClassGen<Decimal>[], false);
Eval(14493, o is ImplementOneInterfaceC, false);
Eval(14494, o is ImplementOneInterfaceC[], false);
Eval(14495, o is ImplementTwoInterfaceC, false);
Eval(14496, o is ImplementTwoInterfaceC[], false);
- Eval(14497, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14498, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14499, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14500, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14501, o is ImplementAllInterfaceC<int>, false);
- Eval(14502, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14497, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14498, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14499, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14500, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14501, o is ImplementAllInterfaceC<int>, false);
+// Eval(14502, o is ImplementAllInterfaceC<int>[], false);
Eval(14503, o is SealedClass, false);
Eval(14504, o is SealedClass[], false);
}
@@ -12352,26 +12352,26 @@ internal class Program
Eval(14510, o is NotEmptyStruct[], false);
Eval(14511, o is NotEmptyStruct?, false);
Eval(14512, o is NotEmptyStruct?[], false);
- Eval(14513, o is EmptyStructGen<int>, false);
- Eval(14514, o is EmptyStructGen<int>[], false);
- Eval(14515, o is EmptyStructGen<int>?, false);
- Eval(14516, o is EmptyStructGen<int>?[], false);
- Eval(14517, o is NotEmptyStructGen<Guid>, false);
- Eval(14518, o is NotEmptyStructGen<Guid>[], false);
- Eval(14519, o is NotEmptyStructGen<Guid>?, false);
- Eval(14520, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14521, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14522, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14523, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14524, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14513, o is EmptyStructGen<int>, false);
+// Eval(14514, o is EmptyStructGen<int>[], false);
+// Eval(14515, o is EmptyStructGen<int>?, false);
+// Eval(14516, o is EmptyStructGen<int>?[], false);
+// Eval(14517, o is NotEmptyStructGen<Guid>, false);
+// Eval(14518, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14519, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14520, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14521, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14522, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14523, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14524, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14525, o is NestedStruct, false);
Eval(14526, o is NestedStruct[], false);
Eval(14527, o is NestedStruct?, false);
Eval(14528, o is NestedStruct?[], false);
- Eval(14529, o is NestedStructGen<Decimal>, false);
- Eval(14530, o is NestedStructGen<Decimal>[], false);
- Eval(14531, o is NestedStructGen<Decimal>?, false);
- Eval(14532, o is NestedStructGen<Decimal>?[], false);
+// Eval(14529, o is NestedStructGen<Decimal>, false);
+// Eval(14530, o is NestedStructGen<Decimal>[], false);
+// Eval(14531, o is NestedStructGen<Decimal>?, false);
+// Eval(14532, o is NestedStructGen<Decimal>?[], false);
Eval(14533, o is ExplicitFieldOffsetStruct, false);
Eval(14534, o is ExplicitFieldOffsetStruct[], false);
Eval(14535, o is ExplicitFieldOffsetStruct?, false);
@@ -12388,18 +12388,18 @@ internal class Program
Eval(14554, o is ImplementTwoInterface[], false);
Eval(14555, o is ImplementTwoInterface?, false);
Eval(14556, o is ImplementTwoInterface?[], false);
- Eval(14557, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14558, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14559, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14560, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14561, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14562, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14563, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14564, o is ImplementTwoInterfaceGen<int>?[], true);
- Eval(14565, o is ImplementAllInterface<int>, false);
- Eval(14566, o is ImplementAllInterface<int>[], false);
- Eval(14567, o is ImplementAllInterface<int>?, false);
- Eval(14568, o is ImplementAllInterface<int>?[], false);
+// Eval(14557, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14558, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14559, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14560, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14561, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14562, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14563, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14564, o is ImplementTwoInterfaceGen<int>?[], true);
+// Eval(14565, o is ImplementAllInterface<int>, false);
+// Eval(14566, o is ImplementAllInterface<int>[], false);
+// Eval(14567, o is ImplementAllInterface<int>?, false);
+// Eval(14568, o is ImplementAllInterface<int>?[], false);
Eval(14569, o is IntE, false);
Eval(14570, o is IntE[], false);
Eval(14571, o is IntE?, false);
@@ -12498,38 +12498,38 @@ internal class Program
Eval(14664, o is IEmpty[], false);
Eval(14665, o is INotEmpty, false);
Eval(14666, o is INotEmpty[], false);
- Eval(14667, o is IEmptyGen<int>, false);
- Eval(14668, o is IEmptyGen<int>[], false);
- Eval(14669, o is INotEmptyGen<int>, false);
- Eval(14670, o is INotEmptyGen<int>[], false);
+// Eval(14667, o is IEmptyGen<int>, false);
+// Eval(14668, o is IEmptyGen<int>[], false);
+// Eval(14669, o is INotEmptyGen<int>, false);
+// Eval(14670, o is INotEmptyGen<int>[], false);
Eval(14671, o is SimpleDelegate, false);
Eval(14672, o is SimpleDelegate[], false);
- Eval(14673, o is GenericDelegate<int>, false);
- Eval(14674, o is GenericDelegate<int>[], false);
+// Eval(14673, o is GenericDelegate<int>, false);
+// Eval(14674, o is GenericDelegate<int>[], false);
Eval(14675, o is EmptyClass, false);
Eval(14676, o is EmptyClass[], false);
Eval(14677, o is NotEmptyClass, false);
Eval(14678, o is NotEmptyClass[], false);
- Eval(14679, o is EmptyClassGen<int>, false);
- Eval(14680, o is EmptyClassGen<int>[], false);
- Eval(14681, o is NotEmptyClassGen<Guid>, false);
- Eval(14682, o is NotEmptyClassGen<Guid>[], false);
- Eval(14683, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14684, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14679, o is EmptyClassGen<int>, false);
+// Eval(14680, o is EmptyClassGen<int>[], false);
+// Eval(14681, o is NotEmptyClassGen<Guid>, false);
+// Eval(14682, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14683, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14684, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14685, o is NestedClass, false);
Eval(14686, o is NestedClass[], false);
- Eval(14687, o is NestedClassGen<Decimal>, false);
- Eval(14688, o is NestedClassGen<Decimal>[], false);
+// Eval(14687, o is NestedClassGen<Decimal>, false);
+// Eval(14688, o is NestedClassGen<Decimal>[], false);
Eval(14689, o is ImplementOneInterfaceC, false);
Eval(14690, o is ImplementOneInterfaceC[], false);
Eval(14691, o is ImplementTwoInterfaceC, false);
Eval(14692, o is ImplementTwoInterfaceC[], false);
- Eval(14693, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14694, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14695, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14696, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14697, o is ImplementAllInterfaceC<int>, false);
- Eval(14698, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14693, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14694, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14695, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14696, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14697, o is ImplementAllInterfaceC<int>, false);
+// Eval(14698, o is ImplementAllInterfaceC<int>[], false);
Eval(14699, o is SealedClass, false);
Eval(14700, o is SealedClass[], false);
}
@@ -12547,26 +12547,26 @@ internal class Program
Eval(14706, o is NotEmptyStruct[], false);
Eval(14707, o is NotEmptyStruct?, false);
Eval(14708, o is NotEmptyStruct?[], false);
- Eval(14709, o is EmptyStructGen<int>, false);
- Eval(14710, o is EmptyStructGen<int>[], false);
- Eval(14711, o is EmptyStructGen<int>?, false);
- Eval(14712, o is EmptyStructGen<int>?[], false);
- Eval(14713, o is NotEmptyStructGen<Guid>, false);
- Eval(14714, o is NotEmptyStructGen<Guid>[], false);
- Eval(14715, o is NotEmptyStructGen<Guid>?, false);
- Eval(14716, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14717, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14718, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14719, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14720, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14709, o is EmptyStructGen<int>, false);
+// Eval(14710, o is EmptyStructGen<int>[], false);
+// Eval(14711, o is EmptyStructGen<int>?, false);
+// Eval(14712, o is EmptyStructGen<int>?[], false);
+// Eval(14713, o is NotEmptyStructGen<Guid>, false);
+// Eval(14714, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14715, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14716, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14717, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14718, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14719, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14720, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14721, o is NestedStruct, false);
Eval(14722, o is NestedStruct[], false);
Eval(14723, o is NestedStruct?, false);
Eval(14724, o is NestedStruct?[], false);
- Eval(14725, o is NestedStructGen<Decimal>, false);
- Eval(14726, o is NestedStructGen<Decimal>[], false);
- Eval(14727, o is NestedStructGen<Decimal>?, false);
- Eval(14728, o is NestedStructGen<Decimal>?[], false);
+// Eval(14725, o is NestedStructGen<Decimal>, false);
+// Eval(14726, o is NestedStructGen<Decimal>[], false);
+// Eval(14727, o is NestedStructGen<Decimal>?, false);
+// Eval(14728, o is NestedStructGen<Decimal>?[], false);
Eval(14729, o is ExplicitFieldOffsetStruct, false);
Eval(14730, o is ExplicitFieldOffsetStruct[], false);
Eval(14731, o is ExplicitFieldOffsetStruct?, false);
@@ -12583,18 +12583,18 @@ internal class Program
Eval(14750, o is ImplementTwoInterface[], false);
Eval(14751, o is ImplementTwoInterface?, false);
Eval(14752, o is ImplementTwoInterface?[], false);
- Eval(14753, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14754, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14755, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14756, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14757, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14758, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14759, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14760, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14761, o is ImplementAllInterface<int>, true);
- Eval(14762, o is ImplementAllInterface<int>[], false);
- Eval(14763, o is ImplementAllInterface<int>?, true);
- Eval(14764, o is ImplementAllInterface<int>?[], false);
+// Eval(14753, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14754, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14755, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14756, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14757, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14758, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14759, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14760, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14761, o is ImplementAllInterface<int>, true);
+// Eval(14762, o is ImplementAllInterface<int>[], false);
+// Eval(14763, o is ImplementAllInterface<int>?, true);
+// Eval(14764, o is ImplementAllInterface<int>?[], false);
Eval(14765, o is IntE, false);
Eval(14766, o is IntE[], false);
Eval(14767, o is IntE?, false);
@@ -12693,38 +12693,38 @@ internal class Program
Eval(14860, o is IEmpty[], false);
Eval(14861, o is INotEmpty, true);
Eval(14862, o is INotEmpty[], false);
- Eval(14863, o is IEmptyGen<int>, true);
- Eval(14864, o is IEmptyGen<int>[], false);
- Eval(14865, o is INotEmptyGen<int>, true);
- Eval(14866, o is INotEmptyGen<int>[], false);
+// Eval(14863, o is IEmptyGen<int>, true);
+// Eval(14864, o is IEmptyGen<int>[], false);
+// Eval(14865, o is INotEmptyGen<int>, true);
+// Eval(14866, o is INotEmptyGen<int>[], false);
Eval(14867, o is SimpleDelegate, false);
Eval(14868, o is SimpleDelegate[], false);
- Eval(14869, o is GenericDelegate<int>, false);
- Eval(14870, o is GenericDelegate<int>[], false);
+// Eval(14869, o is GenericDelegate<int>, false);
+// Eval(14870, o is GenericDelegate<int>[], false);
Eval(14871, o is EmptyClass, false);
Eval(14872, o is EmptyClass[], false);
Eval(14873, o is NotEmptyClass, false);
Eval(14874, o is NotEmptyClass[], false);
- Eval(14875, o is EmptyClassGen<int>, false);
- Eval(14876, o is EmptyClassGen<int>[], false);
- Eval(14877, o is NotEmptyClassGen<Guid>, false);
- Eval(14878, o is NotEmptyClassGen<Guid>[], false);
- Eval(14879, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14880, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14875, o is EmptyClassGen<int>, false);
+// Eval(14876, o is EmptyClassGen<int>[], false);
+// Eval(14877, o is NotEmptyClassGen<Guid>, false);
+// Eval(14878, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14879, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14880, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14881, o is NestedClass, false);
Eval(14882, o is NestedClass[], false);
- Eval(14883, o is NestedClassGen<Decimal>, false);
- Eval(14884, o is NestedClassGen<Decimal>[], false);
+// Eval(14883, o is NestedClassGen<Decimal>, false);
+// Eval(14884, o is NestedClassGen<Decimal>[], false);
Eval(14885, o is ImplementOneInterfaceC, false);
Eval(14886, o is ImplementOneInterfaceC[], false);
Eval(14887, o is ImplementTwoInterfaceC, false);
Eval(14888, o is ImplementTwoInterfaceC[], false);
- Eval(14889, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14890, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14891, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14892, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14893, o is ImplementAllInterfaceC<int>, false);
- Eval(14894, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14889, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14890, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14891, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14892, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14893, o is ImplementAllInterfaceC<int>, false);
+// Eval(14894, o is ImplementAllInterfaceC<int>[], false);
Eval(14895, o is SealedClass, false);
Eval(14896, o is SealedClass[], false);
}
@@ -12739,26 +12739,26 @@ internal class Program
Eval(14902, o is NotEmptyStruct[], false);
Eval(14903, o is NotEmptyStruct?, false);
Eval(14904, o is NotEmptyStruct?[], false);
- Eval(14905, o is EmptyStructGen<int>, false);
- Eval(14906, o is EmptyStructGen<int>[], false);
- Eval(14907, o is EmptyStructGen<int>?, false);
- Eval(14908, o is EmptyStructGen<int>?[], false);
- Eval(14909, o is NotEmptyStructGen<Guid>, false);
- Eval(14910, o is NotEmptyStructGen<Guid>[], false);
- Eval(14911, o is NotEmptyStructGen<Guid>?, false);
- Eval(14912, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14913, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14914, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14915, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14916, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14905, o is EmptyStructGen<int>, false);
+// Eval(14906, o is EmptyStructGen<int>[], false);
+// Eval(14907, o is EmptyStructGen<int>?, false);
+// Eval(14908, o is EmptyStructGen<int>?[], false);
+// Eval(14909, o is NotEmptyStructGen<Guid>, false);
+// Eval(14910, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14911, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14912, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14913, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14914, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14915, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14916, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14917, o is NestedStruct, false);
Eval(14918, o is NestedStruct[], false);
Eval(14919, o is NestedStruct?, false);
Eval(14920, o is NestedStruct?[], false);
- Eval(14921, o is NestedStructGen<Decimal>, false);
- Eval(14922, o is NestedStructGen<Decimal>[], false);
- Eval(14923, o is NestedStructGen<Decimal>?, false);
- Eval(14924, o is NestedStructGen<Decimal>?[], false);
+// Eval(14921, o is NestedStructGen<Decimal>, false);
+// Eval(14922, o is NestedStructGen<Decimal>[], false);
+// Eval(14923, o is NestedStructGen<Decimal>?, false);
+// Eval(14924, o is NestedStructGen<Decimal>?[], false);
Eval(14925, o is ExplicitFieldOffsetStruct, false);
Eval(14926, o is ExplicitFieldOffsetStruct[], false);
Eval(14927, o is ExplicitFieldOffsetStruct?, false);
@@ -12775,18 +12775,18 @@ internal class Program
Eval(14946, o is ImplementTwoInterface[], false);
Eval(14947, o is ImplementTwoInterface?, false);
Eval(14948, o is ImplementTwoInterface?[], false);
- Eval(14949, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14950, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14951, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14952, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14953, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14954, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14955, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14956, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14957, o is ImplementAllInterface<int>, true);
- Eval(14958, o is ImplementAllInterface<int>[], false);
- Eval(14959, o is ImplementAllInterface<int>?, true);
- Eval(14960, o is ImplementAllInterface<int>?[], false);
+// Eval(14949, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14950, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14951, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14952, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14953, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14954, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14955, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14956, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14957, o is ImplementAllInterface<int>, true);
+// Eval(14958, o is ImplementAllInterface<int>[], false);
+// Eval(14959, o is ImplementAllInterface<int>?, true);
+// Eval(14960, o is ImplementAllInterface<int>?[], false);
Eval(14961, o is IntE, false);
Eval(14962, o is IntE[], false);
Eval(14963, o is IntE?, false);
@@ -12885,38 +12885,38 @@ internal class Program
Eval(15056, o is IEmpty[], false);
Eval(15057, o is INotEmpty, true);
Eval(15058, o is INotEmpty[], false);
- Eval(15059, o is IEmptyGen<int>, true);
- Eval(15060, o is IEmptyGen<int>[], false);
- Eval(15061, o is INotEmptyGen<int>, true);
- Eval(15062, o is INotEmptyGen<int>[], false);
+// Eval(15059, o is IEmptyGen<int>, true);
+// Eval(15060, o is IEmptyGen<int>[], false);
+// Eval(15061, o is INotEmptyGen<int>, true);
+// Eval(15062, o is INotEmptyGen<int>[], false);
Eval(15063, o is SimpleDelegate, false);
Eval(15064, o is SimpleDelegate[], false);
- Eval(15065, o is GenericDelegate<int>, false);
- Eval(15066, o is GenericDelegate<int>[], false);
+// Eval(15065, o is GenericDelegate<int>, false);
+// Eval(15066, o is GenericDelegate<int>[], false);
Eval(15067, o is EmptyClass, false);
Eval(15068, o is EmptyClass[], false);
Eval(15069, o is NotEmptyClass, false);
Eval(15070, o is NotEmptyClass[], false);
- Eval(15071, o is EmptyClassGen<int>, false);
- Eval(15072, o is EmptyClassGen<int>[], false);
- Eval(15073, o is NotEmptyClassGen<Guid>, false);
- Eval(15074, o is NotEmptyClassGen<Guid>[], false);
- Eval(15075, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15076, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15071, o is EmptyClassGen<int>, false);
+// Eval(15072, o is EmptyClassGen<int>[], false);
+// Eval(15073, o is NotEmptyClassGen<Guid>, false);
+// Eval(15074, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15075, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15076, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15077, o is NestedClass, false);
Eval(15078, o is NestedClass[], false);
- Eval(15079, o is NestedClassGen<Decimal>, false);
- Eval(15080, o is NestedClassGen<Decimal>[], false);
+// Eval(15079, o is NestedClassGen<Decimal>, false);
+// Eval(15080, o is NestedClassGen<Decimal>[], false);
Eval(15081, o is ImplementOneInterfaceC, false);
Eval(15082, o is ImplementOneInterfaceC[], false);
Eval(15083, o is ImplementTwoInterfaceC, false);
Eval(15084, o is ImplementTwoInterfaceC[], false);
- Eval(15085, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15086, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15087, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15088, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15089, o is ImplementAllInterfaceC<int>, false);
- Eval(15090, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15085, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15086, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15087, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15088, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15089, o is ImplementAllInterfaceC<int>, false);
+// Eval(15090, o is ImplementAllInterfaceC<int>[], false);
Eval(15091, o is SealedClass, false);
Eval(15092, o is SealedClass[], false);
}
@@ -12931,26 +12931,26 @@ internal class Program
Eval(15098, o is NotEmptyStruct[], false);
Eval(15099, o is NotEmptyStruct?, false);
Eval(15100, o is NotEmptyStruct?[], false);
- Eval(15101, o is EmptyStructGen<int>, false);
- Eval(15102, o is EmptyStructGen<int>[], false);
- Eval(15103, o is EmptyStructGen<int>?, false);
- Eval(15104, o is EmptyStructGen<int>?[], false);
- Eval(15105, o is NotEmptyStructGen<Guid>, false);
- Eval(15106, o is NotEmptyStructGen<Guid>[], false);
- Eval(15107, o is NotEmptyStructGen<Guid>?, false);
- Eval(15108, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15109, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15110, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15111, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15112, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15101, o is EmptyStructGen<int>, false);
+// Eval(15102, o is EmptyStructGen<int>[], false);
+// Eval(15103, o is EmptyStructGen<int>?, false);
+// Eval(15104, o is EmptyStructGen<int>?[], false);
+// Eval(15105, o is NotEmptyStructGen<Guid>, false);
+// Eval(15106, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15107, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15108, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15109, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15110, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15111, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15112, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15113, o is NestedStruct, false);
Eval(15114, o is NestedStruct[], false);
Eval(15115, o is NestedStruct?, false);
Eval(15116, o is NestedStruct?[], false);
- Eval(15117, o is NestedStructGen<Decimal>, false);
- Eval(15118, o is NestedStructGen<Decimal>[], false);
- Eval(15119, o is NestedStructGen<Decimal>?, false);
- Eval(15120, o is NestedStructGen<Decimal>?[], false);
+// Eval(15117, o is NestedStructGen<Decimal>, false);
+// Eval(15118, o is NestedStructGen<Decimal>[], false);
+// Eval(15119, o is NestedStructGen<Decimal>?, false);
+// Eval(15120, o is NestedStructGen<Decimal>?[], false);
Eval(15121, o is ExplicitFieldOffsetStruct, false);
Eval(15122, o is ExplicitFieldOffsetStruct[], false);
Eval(15123, o is ExplicitFieldOffsetStruct?, false);
@@ -12967,18 +12967,18 @@ internal class Program
Eval(15142, o is ImplementTwoInterface[], false);
Eval(15143, o is ImplementTwoInterface?, false);
Eval(15144, o is ImplementTwoInterface?[], false);
- Eval(15145, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15146, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15147, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15148, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15149, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15150, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15151, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15152, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15153, o is ImplementAllInterface<int>, false);
- Eval(15154, o is ImplementAllInterface<int>[], false);
- Eval(15155, o is ImplementAllInterface<int>?, false);
- Eval(15156, o is ImplementAllInterface<int>?[], false);
+// Eval(15145, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15146, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15147, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15148, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15149, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15150, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15151, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15152, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15153, o is ImplementAllInterface<int>, false);
+// Eval(15154, o is ImplementAllInterface<int>[], false);
+// Eval(15155, o is ImplementAllInterface<int>?, false);
+// Eval(15156, o is ImplementAllInterface<int>?[], false);
Eval(15157, o is IntE, false);
Eval(15158, o is IntE[], false);
Eval(15159, o is IntE?, false);
@@ -13077,38 +13077,38 @@ internal class Program
Eval(15252, o is IEmpty[], false);
Eval(15253, o is INotEmpty, false);
Eval(15254, o is INotEmpty[], false);
- Eval(15255, o is IEmptyGen<int>, false);
- Eval(15256, o is IEmptyGen<int>[], false);
- Eval(15257, o is INotEmptyGen<int>, false);
- Eval(15258, o is INotEmptyGen<int>[], false);
+// Eval(15255, o is IEmptyGen<int>, false);
+// Eval(15256, o is IEmptyGen<int>[], false);
+// Eval(15257, o is INotEmptyGen<int>, false);
+// Eval(15258, o is INotEmptyGen<int>[], false);
Eval(15259, o is SimpleDelegate, false);
Eval(15260, o is SimpleDelegate[], false);
- Eval(15261, o is GenericDelegate<int>, false);
- Eval(15262, o is GenericDelegate<int>[], false);
+// Eval(15261, o is GenericDelegate<int>, false);
+// Eval(15262, o is GenericDelegate<int>[], false);
Eval(15263, o is EmptyClass, false);
Eval(15264, o is EmptyClass[], false);
Eval(15265, o is NotEmptyClass, false);
Eval(15266, o is NotEmptyClass[], false);
- Eval(15267, o is EmptyClassGen<int>, false);
- Eval(15268, o is EmptyClassGen<int>[], false);
- Eval(15269, o is NotEmptyClassGen<Guid>, false);
- Eval(15270, o is NotEmptyClassGen<Guid>[], false);
- Eval(15271, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15272, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15267, o is EmptyClassGen<int>, false);
+// Eval(15268, o is EmptyClassGen<int>[], false);
+// Eval(15269, o is NotEmptyClassGen<Guid>, false);
+// Eval(15270, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15271, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15272, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15273, o is NestedClass, false);
Eval(15274, o is NestedClass[], false);
- Eval(15275, o is NestedClassGen<Decimal>, false);
- Eval(15276, o is NestedClassGen<Decimal>[], false);
+// Eval(15275, o is NestedClassGen<Decimal>, false);
+// Eval(15276, o is NestedClassGen<Decimal>[], false);
Eval(15277, o is ImplementOneInterfaceC, false);
Eval(15278, o is ImplementOneInterfaceC[], false);
Eval(15279, o is ImplementTwoInterfaceC, false);
Eval(15280, o is ImplementTwoInterfaceC[], false);
- Eval(15281, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15282, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15283, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15284, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15285, o is ImplementAllInterfaceC<int>, false);
- Eval(15286, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15281, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15282, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15283, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15284, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15285, o is ImplementAllInterfaceC<int>, false);
+// Eval(15286, o is ImplementAllInterfaceC<int>[], false);
Eval(15287, o is SealedClass, false);
Eval(15288, o is SealedClass[], false);
}
@@ -13123,26 +13123,26 @@ internal class Program
Eval(15294, o is NotEmptyStruct[], false);
Eval(15295, o is NotEmptyStruct?, false);
Eval(15296, o is NotEmptyStruct?[], false);
- Eval(15297, o is EmptyStructGen<int>, false);
- Eval(15298, o is EmptyStructGen<int>[], false);
- Eval(15299, o is EmptyStructGen<int>?, false);
- Eval(15300, o is EmptyStructGen<int>?[], false);
- Eval(15301, o is NotEmptyStructGen<Guid>, false);
- Eval(15302, o is NotEmptyStructGen<Guid>[], false);
- Eval(15303, o is NotEmptyStructGen<Guid>?, false);
- Eval(15304, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15305, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15306, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15307, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15308, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15297, o is EmptyStructGen<int>, false);
+// Eval(15298, o is EmptyStructGen<int>[], false);
+// Eval(15299, o is EmptyStructGen<int>?, false);
+// Eval(15300, o is EmptyStructGen<int>?[], false);
+// Eval(15301, o is NotEmptyStructGen<Guid>, false);
+// Eval(15302, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15303, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15304, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15305, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15306, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15307, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15308, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15309, o is NestedStruct, false);
Eval(15310, o is NestedStruct[], false);
Eval(15311, o is NestedStruct?, false);
Eval(15312, o is NestedStruct?[], false);
- Eval(15313, o is NestedStructGen<Decimal>, false);
- Eval(15314, o is NestedStructGen<Decimal>[], false);
- Eval(15315, o is NestedStructGen<Decimal>?, false);
- Eval(15316, o is NestedStructGen<Decimal>?[], false);
+// Eval(15313, o is NestedStructGen<Decimal>, false);
+// Eval(15314, o is NestedStructGen<Decimal>[], false);
+// Eval(15315, o is NestedStructGen<Decimal>?, false);
+// Eval(15316, o is NestedStructGen<Decimal>?[], false);
Eval(15317, o is ExplicitFieldOffsetStruct, false);
Eval(15318, o is ExplicitFieldOffsetStruct[], false);
Eval(15319, o is ExplicitFieldOffsetStruct?, false);
@@ -13159,18 +13159,18 @@ internal class Program
Eval(15338, o is ImplementTwoInterface[], false);
Eval(15339, o is ImplementTwoInterface?, false);
Eval(15340, o is ImplementTwoInterface?[], false);
- Eval(15341, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15342, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15343, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15344, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15345, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15346, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15347, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15348, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15349, o is ImplementAllInterface<int>, false);
- Eval(15350, o is ImplementAllInterface<int>[], false);
- Eval(15351, o is ImplementAllInterface<int>?, false);
- Eval(15352, o is ImplementAllInterface<int>?[], false);
+// Eval(15341, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15342, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15343, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15344, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15345, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15346, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15347, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15348, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15349, o is ImplementAllInterface<int>, false);
+// Eval(15350, o is ImplementAllInterface<int>[], false);
+// Eval(15351, o is ImplementAllInterface<int>?, false);
+// Eval(15352, o is ImplementAllInterface<int>?[], false);
Eval(15353, o is IntE, false);
Eval(15354, o is IntE[], false);
Eval(15355, o is IntE?, false);
@@ -13269,38 +13269,38 @@ internal class Program
Eval(15448, o is IEmpty[], false);
Eval(15449, o is INotEmpty, false);
Eval(15450, o is INotEmpty[], false);
- Eval(15451, o is IEmptyGen<int>, false);
- Eval(15452, o is IEmptyGen<int>[], false);
- Eval(15453, o is INotEmptyGen<int>, false);
- Eval(15454, o is INotEmptyGen<int>[], false);
+// Eval(15451, o is IEmptyGen<int>, false);
+// Eval(15452, o is IEmptyGen<int>[], false);
+// Eval(15453, o is INotEmptyGen<int>, false);
+// Eval(15454, o is INotEmptyGen<int>[], false);
Eval(15455, o is SimpleDelegate, false);
Eval(15456, o is SimpleDelegate[], false);
- Eval(15457, o is GenericDelegate<int>, false);
- Eval(15458, o is GenericDelegate<int>[], false);
+// Eval(15457, o is GenericDelegate<int>, false);
+// Eval(15458, o is GenericDelegate<int>[], false);
Eval(15459, o is EmptyClass, false);
Eval(15460, o is EmptyClass[], false);
Eval(15461, o is NotEmptyClass, false);
Eval(15462, o is NotEmptyClass[], false);
- Eval(15463, o is EmptyClassGen<int>, false);
- Eval(15464, o is EmptyClassGen<int>[], false);
- Eval(15465, o is NotEmptyClassGen<Guid>, false);
- Eval(15466, o is NotEmptyClassGen<Guid>[], false);
- Eval(15467, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15468, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15463, o is EmptyClassGen<int>, false);
+// Eval(15464, o is EmptyClassGen<int>[], false);
+// Eval(15465, o is NotEmptyClassGen<Guid>, false);
+// Eval(15466, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15467, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15468, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15469, o is NestedClass, false);
Eval(15470, o is NestedClass[], false);
- Eval(15471, o is NestedClassGen<Decimal>, false);
- Eval(15472, o is NestedClassGen<Decimal>[], false);
+// Eval(15471, o is NestedClassGen<Decimal>, false);
+// Eval(15472, o is NestedClassGen<Decimal>[], false);
Eval(15473, o is ImplementOneInterfaceC, false);
Eval(15474, o is ImplementOneInterfaceC[], false);
Eval(15475, o is ImplementTwoInterfaceC, false);
Eval(15476, o is ImplementTwoInterfaceC[], false);
- Eval(15477, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15478, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15479, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15480, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15481, o is ImplementAllInterfaceC<int>, false);
- Eval(15482, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15477, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15478, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15479, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15480, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15481, o is ImplementAllInterfaceC<int>, false);
+// Eval(15482, o is ImplementAllInterfaceC<int>[], false);
Eval(15483, o is SealedClass, false);
Eval(15484, o is SealedClass[], false);
}
@@ -13315,26 +13315,26 @@ internal class Program
Eval(15490, o is NotEmptyStruct[], false);
Eval(15491, o is NotEmptyStruct?, false);
Eval(15492, o is NotEmptyStruct?[], false);
- Eval(15493, o is EmptyStructGen<int>, false);
- Eval(15494, o is EmptyStructGen<int>[], false);
- Eval(15495, o is EmptyStructGen<int>?, false);
- Eval(15496, o is EmptyStructGen<int>?[], false);
- Eval(15497, o is NotEmptyStructGen<Guid>, false);
- Eval(15498, o is NotEmptyStructGen<Guid>[], false);
- Eval(15499, o is NotEmptyStructGen<Guid>?, false);
- Eval(15500, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15501, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15502, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15503, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15504, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15493, o is EmptyStructGen<int>, false);
+// Eval(15494, o is EmptyStructGen<int>[], false);
+// Eval(15495, o is EmptyStructGen<int>?, false);
+// Eval(15496, o is EmptyStructGen<int>?[], false);
+// Eval(15497, o is NotEmptyStructGen<Guid>, false);
+// Eval(15498, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15499, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15500, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15501, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15502, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15503, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15504, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15505, o is NestedStruct, false);
Eval(15506, o is NestedStruct[], false);
Eval(15507, o is NestedStruct?, false);
Eval(15508, o is NestedStruct?[], false);
- Eval(15509, o is NestedStructGen<Decimal>, false);
- Eval(15510, o is NestedStructGen<Decimal>[], false);
- Eval(15511, o is NestedStructGen<Decimal>?, false);
- Eval(15512, o is NestedStructGen<Decimal>?[], false);
+// Eval(15509, o is NestedStructGen<Decimal>, false);
+// Eval(15510, o is NestedStructGen<Decimal>[], false);
+// Eval(15511, o is NestedStructGen<Decimal>?, false);
+// Eval(15512, o is NestedStructGen<Decimal>?[], false);
Eval(15513, o is ExplicitFieldOffsetStruct, false);
Eval(15514, o is ExplicitFieldOffsetStruct[], false);
Eval(15515, o is ExplicitFieldOffsetStruct?, false);
@@ -13351,18 +13351,18 @@ internal class Program
Eval(15534, o is ImplementTwoInterface[], false);
Eval(15535, o is ImplementTwoInterface?, false);
Eval(15536, o is ImplementTwoInterface?[], false);
- Eval(15537, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15538, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15539, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15540, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15541, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15542, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15543, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15544, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15545, o is ImplementAllInterface<int>, false);
- Eval(15546, o is ImplementAllInterface<int>[], false);
- Eval(15547, o is ImplementAllInterface<int>?, false);
- Eval(15548, o is ImplementAllInterface<int>?[], true);
+// Eval(15537, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15538, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15539, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15540, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15541, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15542, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15543, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15544, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15545, o is ImplementAllInterface<int>, false);
+// Eval(15546, o is ImplementAllInterface<int>[], false);
+// Eval(15547, o is ImplementAllInterface<int>?, false);
+// Eval(15548, o is ImplementAllInterface<int>?[], true);
Eval(15549, o is IntE, false);
Eval(15550, o is IntE[], false);
Eval(15551, o is IntE?, false);
@@ -13461,38 +13461,38 @@ internal class Program
Eval(15644, o is IEmpty[], false);
Eval(15645, o is INotEmpty, false);
Eval(15646, o is INotEmpty[], false);
- Eval(15647, o is IEmptyGen<int>, false);
- Eval(15648, o is IEmptyGen<int>[], false);
- Eval(15649, o is INotEmptyGen<int>, false);
- Eval(15650, o is INotEmptyGen<int>[], false);
+// Eval(15647, o is IEmptyGen<int>, false);
+// Eval(15648, o is IEmptyGen<int>[], false);
+// Eval(15649, o is INotEmptyGen<int>, false);
+// Eval(15650, o is INotEmptyGen<int>[], false);
Eval(15651, o is SimpleDelegate, false);
Eval(15652, o is SimpleDelegate[], false);
- Eval(15653, o is GenericDelegate<int>, false);
- Eval(15654, o is GenericDelegate<int>[], false);
+// Eval(15653, o is GenericDelegate<int>, false);
+// Eval(15654, o is GenericDelegate<int>[], false);
Eval(15655, o is EmptyClass, false);
Eval(15656, o is EmptyClass[], false);
Eval(15657, o is NotEmptyClass, false);
Eval(15658, o is NotEmptyClass[], false);
- Eval(15659, o is EmptyClassGen<int>, false);
- Eval(15660, o is EmptyClassGen<int>[], false);
- Eval(15661, o is NotEmptyClassGen<Guid>, false);
- Eval(15662, o is NotEmptyClassGen<Guid>[], false);
- Eval(15663, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15664, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15659, o is EmptyClassGen<int>, false);
+// Eval(15660, o is EmptyClassGen<int>[], false);
+// Eval(15661, o is NotEmptyClassGen<Guid>, false);
+// Eval(15662, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15663, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15664, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15665, o is NestedClass, false);
Eval(15666, o is NestedClass[], false);
- Eval(15667, o is NestedClassGen<Decimal>, false);
- Eval(15668, o is NestedClassGen<Decimal>[], false);
+// Eval(15667, o is NestedClassGen<Decimal>, false);
+// Eval(15668, o is NestedClassGen<Decimal>[], false);
Eval(15669, o is ImplementOneInterfaceC, false);
Eval(15670, o is ImplementOneInterfaceC[], false);
Eval(15671, o is ImplementTwoInterfaceC, false);
Eval(15672, o is ImplementTwoInterfaceC[], false);
- Eval(15673, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15674, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15675, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15676, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15677, o is ImplementAllInterfaceC<int>, false);
- Eval(15678, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15673, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15674, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15675, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15676, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15677, o is ImplementAllInterfaceC<int>, false);
+// Eval(15678, o is ImplementAllInterfaceC<int>[], false);
Eval(15679, o is SealedClass, false);
Eval(15680, o is SealedClass[], false);
}
@@ -13510,26 +13510,26 @@ internal class Program
Eval(15686, o is NotEmptyStruct[], false);
Eval(15687, o is NotEmptyStruct?, false);
Eval(15688, o is NotEmptyStruct?[], false);
- Eval(15689, o is EmptyStructGen<int>, false);
- Eval(15690, o is EmptyStructGen<int>[], false);
- Eval(15691, o is EmptyStructGen<int>?, false);
- Eval(15692, o is EmptyStructGen<int>?[], false);
- Eval(15693, o is NotEmptyStructGen<Guid>, false);
- Eval(15694, o is NotEmptyStructGen<Guid>[], false);
- Eval(15695, o is NotEmptyStructGen<Guid>?, false);
- Eval(15696, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15697, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15698, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15699, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15700, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15689, o is EmptyStructGen<int>, false);
+// Eval(15690, o is EmptyStructGen<int>[], false);
+// Eval(15691, o is EmptyStructGen<int>?, false);
+// Eval(15692, o is EmptyStructGen<int>?[], false);
+// Eval(15693, o is NotEmptyStructGen<Guid>, false);
+// Eval(15694, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15695, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15696, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15697, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15698, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15699, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15700, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15701, o is NestedStruct, false);
Eval(15702, o is NestedStruct[], false);
Eval(15703, o is NestedStruct?, false);
Eval(15704, o is NestedStruct?[], false);
- Eval(15705, o is NestedStructGen<Decimal>, false);
- Eval(15706, o is NestedStructGen<Decimal>[], false);
- Eval(15707, o is NestedStructGen<Decimal>?, false);
- Eval(15708, o is NestedStructGen<Decimal>?[], false);
+// Eval(15705, o is NestedStructGen<Decimal>, false);
+// Eval(15706, o is NestedStructGen<Decimal>[], false);
+// Eval(15707, o is NestedStructGen<Decimal>?, false);
+// Eval(15708, o is NestedStructGen<Decimal>?[], false);
Eval(15709, o is ExplicitFieldOffsetStruct, false);
Eval(15710, o is ExplicitFieldOffsetStruct[], false);
Eval(15711, o is ExplicitFieldOffsetStruct?, false);
@@ -13546,18 +13546,18 @@ internal class Program
Eval(15730, o is ImplementTwoInterface[], false);
Eval(15731, o is ImplementTwoInterface?, false);
Eval(15732, o is ImplementTwoInterface?[], false);
- Eval(15733, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15734, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15735, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15736, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15737, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15738, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15739, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15740, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15741, o is ImplementAllInterface<int>, false);
- Eval(15742, o is ImplementAllInterface<int>[], false);
- Eval(15743, o is ImplementAllInterface<int>?, false);
- Eval(15744, o is ImplementAllInterface<int>?[], false);
+// Eval(15733, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15734, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15735, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15736, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15737, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15738, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15739, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15740, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15741, o is ImplementAllInterface<int>, false);
+// Eval(15742, o is ImplementAllInterface<int>[], false);
+// Eval(15743, o is ImplementAllInterface<int>?, false);
+// Eval(15744, o is ImplementAllInterface<int>?[], false);
Eval(15745, o is IntE, true);
Eval(15746, o is IntE[], false);
Eval(15747, o is IntE?, true);
@@ -13656,38 +13656,38 @@ internal class Program
Eval(15840, o is IEmpty[], false);
Eval(15841, o is INotEmpty, false);
Eval(15842, o is INotEmpty[], false);
- Eval(15843, o is IEmptyGen<int>, false);
- Eval(15844, o is IEmptyGen<int>[], false);
- Eval(15845, o is INotEmptyGen<int>, false);
- Eval(15846, o is INotEmptyGen<int>[], false);
+// Eval(15843, o is IEmptyGen<int>, false);
+// Eval(15844, o is IEmptyGen<int>[], false);
+// Eval(15845, o is INotEmptyGen<int>, false);
+// Eval(15846, o is INotEmptyGen<int>[], false);
Eval(15847, o is SimpleDelegate, false);
Eval(15848, o is SimpleDelegate[], false);
- Eval(15849, o is GenericDelegate<int>, false);
- Eval(15850, o is GenericDelegate<int>[], false);
+// Eval(15849, o is GenericDelegate<int>, false);
+// Eval(15850, o is GenericDelegate<int>[], false);
Eval(15851, o is EmptyClass, false);
Eval(15852, o is EmptyClass[], false);
Eval(15853, o is NotEmptyClass, false);
Eval(15854, o is NotEmptyClass[], false);
- Eval(15855, o is EmptyClassGen<int>, false);
- Eval(15856, o is EmptyClassGen<int>[], false);
- Eval(15857, o is NotEmptyClassGen<Guid>, false);
- Eval(15858, o is NotEmptyClassGen<Guid>[], false);
- Eval(15859, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15860, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15855, o is EmptyClassGen<int>, false);
+// Eval(15856, o is EmptyClassGen<int>[], false);
+// Eval(15857, o is NotEmptyClassGen<Guid>, false);
+// Eval(15858, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15859, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15860, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15861, o is NestedClass, false);
Eval(15862, o is NestedClass[], false);
- Eval(15863, o is NestedClassGen<Decimal>, false);
- Eval(15864, o is NestedClassGen<Decimal>[], false);
+// Eval(15863, o is NestedClassGen<Decimal>, false);
+// Eval(15864, o is NestedClassGen<Decimal>[], false);
Eval(15865, o is ImplementOneInterfaceC, false);
Eval(15866, o is ImplementOneInterfaceC[], false);
Eval(15867, o is ImplementTwoInterfaceC, false);
Eval(15868, o is ImplementTwoInterfaceC[], false);
- Eval(15869, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15870, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15871, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15872, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15873, o is ImplementAllInterfaceC<int>, false);
- Eval(15874, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15869, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15870, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15871, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15872, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15873, o is ImplementAllInterfaceC<int>, false);
+// Eval(15874, o is ImplementAllInterfaceC<int>[], false);
Eval(15875, o is SealedClass, false);
Eval(15876, o is SealedClass[], false);
}
@@ -13702,26 +13702,26 @@ internal class Program
Eval(15882, o is NotEmptyStruct[], false);
Eval(15883, o is NotEmptyStruct?, false);
Eval(15884, o is NotEmptyStruct?[], false);
- Eval(15885, o is EmptyStructGen<int>, false);
- Eval(15886, o is EmptyStructGen<int>[], false);
- Eval(15887, o is EmptyStructGen<int>?, false);
- Eval(15888, o is EmptyStructGen<int>?[], false);
- Eval(15889, o is NotEmptyStructGen<Guid>, false);
- Eval(15890, o is NotEmptyStructGen<Guid>[], false);
- Eval(15891, o is NotEmptyStructGen<Guid>?, false);
- Eval(15892, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15893, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15894, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15895, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15896, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15885, o is EmptyStructGen<int>, false);
+// Eval(15886, o is EmptyStructGen<int>[], false);
+// Eval(15887, o is EmptyStructGen<int>?, false);
+// Eval(15888, o is EmptyStructGen<int>?[], false);
+// Eval(15889, o is NotEmptyStructGen<Guid>, false);
+// Eval(15890, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15891, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15892, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15893, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15894, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15895, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15896, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15897, o is NestedStruct, false);
Eval(15898, o is NestedStruct[], false);
Eval(15899, o is NestedStruct?, false);
Eval(15900, o is NestedStruct?[], false);
- Eval(15901, o is NestedStructGen<Decimal>, false);
- Eval(15902, o is NestedStructGen<Decimal>[], false);
- Eval(15903, o is NestedStructGen<Decimal>?, false);
- Eval(15904, o is NestedStructGen<Decimal>?[], false);
+// Eval(15901, o is NestedStructGen<Decimal>, false);
+// Eval(15902, o is NestedStructGen<Decimal>[], false);
+// Eval(15903, o is NestedStructGen<Decimal>?, false);
+// Eval(15904, o is NestedStructGen<Decimal>?[], false);
Eval(15905, o is ExplicitFieldOffsetStruct, false);
Eval(15906, o is ExplicitFieldOffsetStruct[], false);
Eval(15907, o is ExplicitFieldOffsetStruct?, false);
@@ -13738,18 +13738,18 @@ internal class Program
Eval(15926, o is ImplementTwoInterface[], false);
Eval(15927, o is ImplementTwoInterface?, false);
Eval(15928, o is ImplementTwoInterface?[], false);
- Eval(15929, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15930, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15931, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15932, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15933, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15934, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15935, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15936, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15937, o is ImplementAllInterface<int>, false);
- Eval(15938, o is ImplementAllInterface<int>[], false);
- Eval(15939, o is ImplementAllInterface<int>?, false);
- Eval(15940, o is ImplementAllInterface<int>?[], false);
+// Eval(15929, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15930, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15931, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15932, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15933, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15934, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15935, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15936, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15937, o is ImplementAllInterface<int>, false);
+// Eval(15938, o is ImplementAllInterface<int>[], false);
+// Eval(15939, o is ImplementAllInterface<int>?, false);
+// Eval(15940, o is ImplementAllInterface<int>?[], false);
Eval(15941, o is IntE, true);
Eval(15942, o is IntE[], false);
Eval(15943, o is IntE?, true);
@@ -13848,38 +13848,38 @@ internal class Program
Eval(16036, o is IEmpty[], false);
Eval(16037, o is INotEmpty, false);
Eval(16038, o is INotEmpty[], false);
- Eval(16039, o is IEmptyGen<int>, false);
- Eval(16040, o is IEmptyGen<int>[], false);
- Eval(16041, o is INotEmptyGen<int>, false);
- Eval(16042, o is INotEmptyGen<int>[], false);
+// Eval(16039, o is IEmptyGen<int>, false);
+// Eval(16040, o is IEmptyGen<int>[], false);
+// Eval(16041, o is INotEmptyGen<int>, false);
+// Eval(16042, o is INotEmptyGen<int>[], false);
Eval(16043, o is SimpleDelegate, false);
Eval(16044, o is SimpleDelegate[], false);
- Eval(16045, o is GenericDelegate<int>, false);
- Eval(16046, o is GenericDelegate<int>[], false);
+// Eval(16045, o is GenericDelegate<int>, false);
+// Eval(16046, o is GenericDelegate<int>[], false);
Eval(16047, o is EmptyClass, false);
Eval(16048, o is EmptyClass[], false);
Eval(16049, o is NotEmptyClass, false);
Eval(16050, o is NotEmptyClass[], false);
- Eval(16051, o is EmptyClassGen<int>, false);
- Eval(16052, o is EmptyClassGen<int>[], false);
- Eval(16053, o is NotEmptyClassGen<Guid>, false);
- Eval(16054, o is NotEmptyClassGen<Guid>[], false);
- Eval(16055, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(16056, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16051, o is EmptyClassGen<int>, false);
+// Eval(16052, o is EmptyClassGen<int>[], false);
+// Eval(16053, o is NotEmptyClassGen<Guid>, false);
+// Eval(16054, o is NotEmptyClassGen<Guid>[], false);
+// Eval(16055, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16056, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(16057, o is NestedClass, false);
Eval(16058, o is NestedClass[], false);
- Eval(16059, o is NestedClassGen<Decimal>, false);
- Eval(16060, o is NestedClassGen<Decimal>[], false);
+// Eval(16059, o is NestedClassGen<Decimal>, false);
+// Eval(16060, o is NestedClassGen<Decimal>[], false);
Eval(16061, o is ImplementOneInterfaceC, false);
Eval(16062, o is ImplementOneInterfaceC[], false);
Eval(16063, o is ImplementTwoInterfaceC, false);
Eval(16064, o is ImplementTwoInterfaceC[], false);
- Eval(16065, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16066, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16067, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(16068, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16069, o is ImplementAllInterfaceC<int>, false);
- Eval(16070, o is ImplementAllInterfaceC<int>[], false);
+// Eval(16065, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16066, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16067, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16068, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16069, o is ImplementAllInterfaceC<int>, false);
+// Eval(16070, o is ImplementAllInterfaceC<int>[], false);
Eval(16071, o is SealedClass, false);
Eval(16072, o is SealedClass[], false);
}
@@ -13894,26 +13894,26 @@ internal class Program
Eval(16078, o is NotEmptyStruct[], false);
Eval(16079, o is NotEmptyStruct?, false);
Eval(16080, o is NotEmptyStruct?[], false);
- Eval(16081, o is EmptyStructGen<int>, false);
- Eval(16082, o is EmptyStructGen<int>[], false);
- Eval(16083, o is EmptyStructGen<int>?, false);
- Eval(16084, o is EmptyStructGen<int>?[], false);
- Eval(16085, o is NotEmptyStructGen<Guid>, false);
- Eval(16086, o is NotEmptyStructGen<Guid>[], false);
- Eval(16087, o is NotEmptyStructGen<Guid>?, false);
- Eval(16088, o is NotEmptyStructGen<Guid>?[], false);
- Eval(16089, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16090, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16091, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16092, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16081, o is EmptyStructGen<int>, false);
+// Eval(16082, o is EmptyStructGen<int>[], false);
+// Eval(16083, o is EmptyStructGen<int>?, false);
+// Eval(16084, o is EmptyStructGen<int>?[], false);
+// Eval(16085, o is NotEmptyStructGen<Guid>, false);
+// Eval(16086, o is NotEmptyStructGen<Guid>[], false);
+// Eval(16087, o is NotEmptyStructGen<Guid>?, false);
+// Eval(16088, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(16089, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16090, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16091, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16092, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16093, o is NestedStruct, false);
Eval(16094, o is NestedStruct[], false);
Eval(16095, o is NestedStruct?, false);
Eval(16096, o is NestedStruct?[], false);
- Eval(16097, o is NestedStructGen<Decimal>, false);
- Eval(16098, o is NestedStructGen<Decimal>[], false);
- Eval(16099, o is NestedStructGen<Decimal>?, false);
- Eval(16100, o is NestedStructGen<Decimal>?[], false);
+// Eval(16097, o is NestedStructGen<Decimal>, false);
+// Eval(16098, o is NestedStructGen<Decimal>[], false);
+// Eval(16099, o is NestedStructGen<Decimal>?, false);
+// Eval(16100, o is NestedStructGen<Decimal>?[], false);
Eval(16101, o is ExplicitFieldOffsetStruct, false);
Eval(16102, o is ExplicitFieldOffsetStruct[], false);
Eval(16103, o is ExplicitFieldOffsetStruct?, false);
@@ -13930,18 +13930,18 @@ internal class Program
Eval(16122, o is ImplementTwoInterface[], false);
Eval(16123, o is ImplementTwoInterface?, false);
Eval(16124, o is ImplementTwoInterface?[], false);
- Eval(16125, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16126, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16127, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16128, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16129, o is ImplementTwoInterfaceGen<int>, false);
- Eval(16130, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(16131, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(16132, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16133, o is ImplementAllInterface<int>, false);
- Eval(16134, o is ImplementAllInterface<int>[], false);
- Eval(16135, o is ImplementAllInterface<int>?, false);
- Eval(16136, o is ImplementAllInterface<int>?[], false);
+// Eval(16125, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16126, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16127, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16128, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16129, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(16130, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16131, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16132, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16133, o is ImplementAllInterface<int>, false);
+// Eval(16134, o is ImplementAllInterface<int>[], false);
+// Eval(16135, o is ImplementAllInterface<int>?, false);
+// Eval(16136, o is ImplementAllInterface<int>?[], false);
Eval(16137, o is IntE, false);
Eval(16138, o is IntE[], false);
Eval(16139, o is IntE?, false);
@@ -14040,38 +14040,38 @@ internal class Program
Eval(16232, o is IEmpty[], false);
Eval(16233, o is INotEmpty, false);
Eval(16234, o is INotEmpty[], false);
- Eval(16235, o is IEmptyGen<int>, false);
- Eval(16236, o is IEmptyGen<int>[], false);
- Eval(16237, o is INotEmptyGen<int>, false);
- Eval(16238, o is INotEmptyGen<int>[], false);
+// Eval(16235, o is IEmptyGen<int>, false);
+// Eval(16236, o is IEmptyGen<int>[], false);
+// Eval(16237, o is INotEmptyGen<int>, false);
+// Eval(16238, o is INotEmptyGen<int>[], false);
Eval(16239, o is SimpleDelegate, false);
Eval(16240, o is SimpleDelegate[], false);
- Eval(16241, o is GenericDelegate<int>, false);
- Eval(16242, o is GenericDelegate<int>[], false);
+// Eval(16241, o is GenericDelegate<int>, false);
+// Eval(16242, o is GenericDelegate<int>[], false);
Eval(16243, o is EmptyClass, false);
Eval(16244, o is EmptyClass[], false);
Eval(16245, o is NotEmptyClass, false);
Eval(16246, o is NotEmptyClass[], false);
- Eval(16247, o is EmptyClassGen<int>, false);
- Eval(16248, o is EmptyClassGen<int>[], false);
- Eval(16249, o is NotEmptyClassGen<Guid>, false);
- Eval(16250, o is NotEmptyClassGen<Guid>[], false);
- Eval(16251, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(16252, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16247, o is EmptyClassGen<int>, false);
+// Eval(16248, o is EmptyClassGen<int>[], false);
+// Eval(16249, o is NotEmptyClassGen<Guid>, false);
+// Eval(16250, o is NotEmptyClassGen<Guid>[], false);
+// Eval(16251, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16252, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(16253, o is NestedClass, false);
Eval(16254, o is NestedClass[], false);
- Eval(16255, o is NestedClassGen<Decimal>, false);
- Eval(16256, o is NestedClassGen<Decimal>[], false);
+// Eval(16255, o is NestedClassGen<Decimal>, false);
+// Eval(16256, o is NestedClassGen<Decimal>[], false);
Eval(16257, o is ImplementOneInterfaceC, false);
Eval(16258, o is ImplementOneInterfaceC[], false);
Eval(16259, o is ImplementTwoInterfaceC, false);
Eval(16260, o is ImplementTwoInterfaceC[], false);
- Eval(16261, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16262, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16263, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(16264, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16265, o is ImplementAllInterfaceC<int>, false);
- Eval(16266, o is ImplementAllInterfaceC<int>[], false);
+// Eval(16261, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16262, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16263, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16264, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16265, o is ImplementAllInterfaceC<int>, false);
+// Eval(16266, o is ImplementAllInterfaceC<int>[], false);
Eval(16267, o is SealedClass, false);
Eval(16268, o is SealedClass[], false);
}
@@ -14086,26 +14086,26 @@ internal class Program
Eval(16274, o is NotEmptyStruct[], false);
Eval(16275, o is NotEmptyStruct?, false);
Eval(16276, o is NotEmptyStruct?[], false);
- Eval(16277, o is EmptyStructGen<int>, false);
- Eval(16278, o is EmptyStructGen<int>[], false);
- Eval(16279, o is EmptyStructGen<int>?, false);
- Eval(16280, o is EmptyStructGen<int>?[], false);
- Eval(16281, o is NotEmptyStructGen<Guid>, false);
- Eval(16282, o is NotEmptyStructGen<Guid>[], false);
- Eval(16283, o is NotEmptyStructGen<Guid>?, false);
- Eval(16284, o is NotEmptyStructGen<Guid>?[], false);
- Eval(16285, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16286, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16287, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16288, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16277, o is EmptyStructGen<int>, false);
+// Eval(16278, o is EmptyStructGen<int>[], false);
+// Eval(16279, o is EmptyStructGen<int>?, false);
+// Eval(16280, o is EmptyStructGen<int>?[], false);
+// Eval(16281, o is NotEmptyStructGen<Guid>, false);
+// Eval(16282, o is NotEmptyStructGen<Guid>[], false);
+// Eval(16283, o is NotEmptyStructGen<Guid>?, false);
+// Eval(16284, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(16285, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16286, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16287, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16288, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16289, o is NestedStruct, false);
Eval(16290, o is NestedStruct[], false);
Eval(16291, o is NestedStruct?, false);
Eval(16292, o is NestedStruct?[], false);
- Eval(16293, o is NestedStructGen<Decimal>, false);
- Eval(16294, o is NestedStructGen<Decimal>[], false);
- Eval(16295, o is NestedStructGen<Decimal>?, false);
- Eval(16296, o is NestedStructGen<Decimal>?[], false);
+// Eval(16293, o is NestedStructGen<Decimal>, false);
+// Eval(16294, o is NestedStructGen<Decimal>[], false);
+// Eval(16295, o is NestedStructGen<Decimal>?, false);
+// Eval(16296, o is NestedStructGen<Decimal>?[], false);
Eval(16297, o is ExplicitFieldOffsetStruct, false);
Eval(16298, o is ExplicitFieldOffsetStruct[], false);
Eval(16299, o is ExplicitFieldOffsetStruct?, false);
@@ -14122,18 +14122,18 @@ internal class Program
Eval(16318, o is ImplementTwoInterface[], false);
Eval(16319, o is ImplementTwoInterface?, false);
Eval(16320, o is ImplementTwoInterface?[], false);
- Eval(16321, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16322, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16323, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16324, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16325, o is ImplementTwoInterfaceGen<int>, false);
- Eval(16326, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(16327, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(16328, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16329, o is ImplementAllInterface<int>, false);
- Eval(16330, o is ImplementAllInterface<int>[], false);
- Eval(16331, o is ImplementAllInterface<int>?, false);
- Eval(16332, o is ImplementAllInterface<int>?[], false);
+// Eval(16321, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16322, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16323, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16324, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16325, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(16326, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16327, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16328, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16329, o is ImplementAllInterface<int>, false);
+// Eval(16330, o is ImplementAllInterface<int>[], false);
+// Eval(16331, o is ImplementAllInterface<int>?, false);
+// Eval(16332, o is ImplementAllInterface<int>?[], false);
Eval(16333, o is IntE, false);
Eval(16334, o is IntE[], false);
Eval(16335, o is IntE?, false);
@@ -14232,38 +14232,38 @@ internal class Program
Eval(16428, o is IEmpty[], false);
Eval(16429, o is INotEmpty, false);
Eval(16430, o is INotEmpty[], false);
- Eval(16431, o is IEmptyGen<int>, false);
- Eval(16432, o is IEmptyGen<int>[], false);
- Eval(16433, o is INotEmptyGen<int>, false);
- Eval(16434, o is INotEmptyGen<int>[], false);
+// Eval(16431, o is IEmptyGen<int>, false);
+// Eval(16432, o is IEmptyGen<int>[], false);
+// Eval(16433, o is INotEmptyGen<int>, false);
+// Eval(16434, o is INotEmptyGen<int>[], false);
Eval(16435, o is SimpleDelegate, false);
Eval(16436, o is SimpleDelegate[], false);
- Eval(16437, o is GenericDelegate<int>, false);
- Eval(16438, o is GenericDelegate<int>[], false);
+// Eval(16437, o is GenericDelegate<int>, false);
+// Eval(16438, o is GenericDelegate<int>[], false);
Eval(16439, o is EmptyClass, false);
Eval(16440, o is EmptyClass[], false);
Eval(16441, o is NotEmptyClass, false);
Eval(16442, o is NotEmptyClass[], false);
- Eval(16443, o is EmptyClassGen<int>, false);
- Eval(16444, o is EmptyClassGen<int>[], false);
- Eval(16445, o is NotEmptyClassGen<Guid>, false);
- Eval(16446, o is NotEmptyClassGen<Guid>[], false);
- Eval(16447, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(16448, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16443, o is EmptyClassGen<int>, false);
+// Eval(16444, o is EmptyClassGen<int>[], false);
+// Eval(16445, o is NotEmptyClassGen<Guid>, false);
+// Eval(16446, o is NotEmptyClassGen<Guid>[], false);
+// Eval(16447, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16448, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(16449, o is NestedClass, false);
Eval(16450, o is NestedClass[], false);
- Eval(16451, o is NestedClassGen<Decimal>, false);
- Eval(16452, o is NestedClassGen<Decimal>[], false);
+// Eval(16451, o is NestedClassGen<Decimal>, false);
+// Eval(16452, o is NestedClassGen<Decimal>[], false);
Eval(16453, o is ImplementOneInterfaceC, false);
Eval(16454, o is ImplementOneInterfaceC[], false);
Eval(16455, o is ImplementTwoInterfaceC, false);
Eval(16456, o is ImplementTwoInterfaceC[], false);
- Eval(16457, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16458, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16459, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(16460, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16461, o is ImplementAllInterfaceC<int>, false);
- Eval(16462, o is ImplementAllInterfaceC<int>[], false);
+// Eval(16457, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16458, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16459, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16460, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16461, o is ImplementAllInterfaceC<int>, false);
+// Eval(16462, o is ImplementAllInterfaceC<int>[], false);
Eval(16463, o is SealedClass, false);
Eval(16464, o is SealedClass[], false);
}
@@ -14278,26 +14278,26 @@ internal class Program
Eval(16470, o is NotEmptyStruct[], false);
Eval(16471, o is NotEmptyStruct?, false);
Eval(16472, o is NotEmptyStruct?[], false);
- Eval(16473, o is EmptyStructGen<int>, false);
- Eval(16474, o is EmptyStructGen<int>[], false);
- Eval(16475, o is EmptyStructGen<int>?, false);
- Eval(16476, o is EmptyStructGen<int>?[], false);
- Eval(16477, o is NotEmptyStructGen<Guid>, false);
- Eval(16478, o is NotEmptyStructGen<Guid>[], false);
- Eval(16479, o is NotEmptyStructGen<Guid>?, false);
- Eval(16480, o is NotEmptyStructGen<Guid>?[], false);
- Eval(16481, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16482, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16483, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16484, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16473, o is EmptyStructGen<int>, false);
+// Eval(16474, o is EmptyStructGen<int>[], false);
+// Eval(16475, o is EmptyStructGen<int>?, false);
+// Eval(16476, o is EmptyStructGen<int>?[], false);
+// Eval(16477, o is NotEmptyStructGen<Guid>, false);
+// Eval(16478, o is NotEmptyStructGen<Guid>[], false);
+// Eval(16479, o is NotEmptyStructGen<Guid>?, false);
+// Eval(16480, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(16481, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16482, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16483, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16484, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16485, o is NestedStruct, false);
Eval(16486, o is NestedStruct[], false);
Eval(16487, o is NestedStruct?, false);
Eval(16488, o is NestedStruct?[], false);
- Eval(16489, o is NestedStructGen<Decimal>, false);
- Eval(16490, o is NestedStructGen<Decimal>[], false);
- Eval(16491, o is NestedStructGen<Decimal>?, false);
- Eval(16492, o is NestedStructGen<Decimal>?[], false);
+// Eval(16489, o is NestedStructGen<Decimal>, false);
+// Eval(16490, o is NestedStructGen<Decimal>[], false);
+// Eval(16491, o is NestedStructGen<Decimal>?, false);
+// Eval(16492, o is NestedStructGen<Decimal>?[], false);
Eval(16493, o is ExplicitFieldOffsetStruct, false);
Eval(16494, o is ExplicitFieldOffsetStruct[], false);
Eval(16495, o is ExplicitFieldOffsetStruct?, false);
@@ -14314,18 +14314,18 @@ internal class Program
Eval(16514, o is ImplementTwoInterface[], false);
Eval(16515, o is ImplementTwoInterface?, false);
Eval(16516, o is ImplementTwoInterface?[], false);
- Eval(16517, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16518, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16519, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16520, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16521, o is ImplementTwoInterfaceGen<int>, false);
- Eval(16522, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(16523, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(16524, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16525, o is ImplementAllInterface<int>, false);
- Eval(16526, o is ImplementAllInterface<int>[], false);
- Eval(16527, o is ImplementAllInterface<int>?, false);
- Eval(16528, o is ImplementAllInterface<int>?[], false);
+// Eval(16517, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16518, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16519, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16520, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16521, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(16522, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16523, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16524, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16525, o is ImplementAllInterface<int>, false);
+// Eval(16526, o is ImplementAllInterface<int>[], false);
+// Eval(16527, o is ImplementAllInterface<int>?, false);
+// Eval(16528, o is ImplementAllInterface<int>?[], false);
Eval(16529, o is IntE, false);
Eval(16530, o is IntE[], false);
Eval(16531, o is IntE?, false);
@@ -14424,38 +14424,38 @@ internal class Program
Eval(16624, o is IEmpty[], false);
Eval(16625, o is INotEmpty, false);
Eval(16626, o is INotEmpty[], false);
- Eval(16627, o is IEmptyGen<int>, false);
- Eval(16628, o is IEmptyGen<int>[], false);
- Eval(16629, o is INotEmptyGen<int>, false);
- Eval(16630, o is INotEmptyGen<int>[], false);
+// Eval(16627, o is IEmptyGen<int>, false);
+// Eval(16628, o is IEmptyGen<int>[], false);
+// Eval(16629, o is INotEmptyGen<int>, false);
+// Eval(16630, o is INotEmptyGen<int>[], false);
Eval(16631, o is SimpleDelegate, false);
Eval(16632, o is SimpleDelegate[], false);
- Eval(16633, o is GenericDelegate<int>, false);
- Eval(16634, o is GenericDelegate<int>[], false);
+// Eval(16633, o is GenericDelegate<int>, false);
+// Eval(16634, o is GenericDelegate<int>[], false);
Eval(16635, o is EmptyClass, false);
Eval(16636, o is EmptyClass[], false);
Eval(16637, o is NotEmptyClass, false);
Eval(16638, o is NotEmptyClass[], false);
- Eval(16639, o is EmptyClassGen<int>, false);
- Eval(16640, o is EmptyClassGen<int>[], false);
- Eval(16641, o is NotEmptyClassGen<Guid>, false);
- Eval(16642, o is NotEmptyClassGen<Guid>[], false);
- Eval(16643, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(16644, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16639, o is EmptyClassGen<int>, false);
+// Eval(16640, o is EmptyClassGen<int>[], false);
+// Eval(16641, o is NotEmptyClassGen<Guid>, false);
+// Eval(16642, o is NotEmptyClassGen<Guid>[], false);
+// Eval(16643, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16644, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(16645, o is NestedClass, false);
Eval(16646, o is NestedClass[], false);
- Eval(16647, o is NestedClassGen<Decimal>, false);
- Eval(16648, o is NestedClassGen<Decimal>[], false);
+// Eval(16647, o is NestedClassGen<Decimal>, false);
+// Eval(16648, o is NestedClassGen<Decimal>[], false);
Eval(16649, o is ImplementOneInterfaceC, false);
Eval(16650, o is ImplementOneInterfaceC[], false);
Eval(16651, o is ImplementTwoInterfaceC, false);
Eval(16652, o is ImplementTwoInterfaceC[], false);
- Eval(16653, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16654, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16655, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(16656, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16657, o is ImplementAllInterfaceC<int>, false);
- Eval(16658, o is ImplementAllInterfaceC<int>[], false);
+// Eval(16653, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16654, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16655, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16656, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16657, o is ImplementAllInterfaceC<int>, false);
+// Eval(16658, o is ImplementAllInterfaceC<int>[], false);
Eval(16659, o is SealedClass, false);
Eval(16660, o is SealedClass[], false);
}
diff --git a/tests/src/JIT/Directed/nullabletypes/isinstenum.cs b/tests/src/JIT/Directed/nullabletypes/isinstenum.cs
index 64e4590938..f9720d94ee 100644
--- a/tests/src/JIT/Directed/nullabletypes/isinstenum.cs
+++ b/tests/src/JIT/Directed/nullabletypes/isinstenum.cs
@@ -50,38 +50,38 @@ internal class Program
Eval(0028, o is IEmpty[], false);
Eval(0029, o is INotEmpty, false);
Eval(0030, o is INotEmpty[], false);
- Eval(0031, o is IEmptyGen<int>, false);
- Eval(0032, o is IEmptyGen<int>[], false);
- Eval(0033, o is INotEmptyGen<int>, false);
- Eval(0034, o is INotEmptyGen<int>[], false);
+// Eval(0031, o is IEmptyGen<int>, false);
+// Eval(0032, o is IEmptyGen<int>[], false);
+// Eval(0033, o is INotEmptyGen<int>, false);
+// Eval(0034, o is INotEmptyGen<int>[], false);
Eval(0035, o is SimpleDelegate, false);
Eval(0036, o is SimpleDelegate[], false);
- Eval(0037, o is GenericDelegate<int>, false);
- Eval(0038, o is GenericDelegate<int>[], false);
+// Eval(0037, o is GenericDelegate<int>, false);
+// Eval(0038, o is GenericDelegate<int>[], false);
Eval(0039, o is EmptyClass, false);
Eval(0040, o is EmptyClass[], false);
Eval(0041, o is NotEmptyClass, false);
Eval(0042, o is NotEmptyClass[], false);
- Eval(0043, o is EmptyClassGen<int>, false);
- Eval(0044, o is EmptyClassGen<int>[], false);
- Eval(0045, o is NotEmptyClassGen<Guid>, false);
- Eval(0046, o is NotEmptyClassGen<Guid>[], false);
- Eval(0047, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0048, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0043, o is EmptyClassGen<int>, false);
+// Eval(0044, o is EmptyClassGen<int>[], false);
+// Eval(0045, o is NotEmptyClassGen<Guid>, false);
+// Eval(0046, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0047, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0048, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0049, o is NestedClass, false);
Eval(0050, o is NestedClass[], false);
- Eval(0051, o is NestedClassGen<Decimal>, false);
- Eval(0052, o is NestedClassGen<Decimal>[], false);
+// Eval(0051, o is NestedClassGen<Decimal>, false);
+// Eval(0052, o is NestedClassGen<Decimal>[], false);
Eval(0053, o is ImplementOneInterfaceC, false);
Eval(0054, o is ImplementOneInterfaceC[], false);
Eval(0055, o is ImplementTwoInterfaceC, false);
Eval(0056, o is ImplementTwoInterfaceC[], false);
- Eval(0057, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0058, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0059, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0060, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0061, o is ImplementAllInterfaceC<int>, false);
- Eval(0062, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0057, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0058, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0059, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0060, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0061, o is ImplementAllInterfaceC<int>, false);
+// Eval(0062, o is ImplementAllInterfaceC<int>[], false);
Eval(0063, o is SealedClass, false);
Eval(0064, o is SealedClass[], false);
}
@@ -118,38 +118,38 @@ internal class Program
Eval(0092, o is IEmpty[], false);
Eval(0093, o is INotEmpty, false);
Eval(0094, o is INotEmpty[], false);
- Eval(0095, o is IEmptyGen<int>, false);
- Eval(0096, o is IEmptyGen<int>[], false);
- Eval(0097, o is INotEmptyGen<int>, false);
- Eval(0098, o is INotEmptyGen<int>[], false);
+// Eval(0095, o is IEmptyGen<int>, false);
+// Eval(0096, o is IEmptyGen<int>[], false);
+// Eval(0097, o is INotEmptyGen<int>, false);
+// Eval(0098, o is INotEmptyGen<int>[], false);
Eval(0099, o is SimpleDelegate, false);
Eval(0100, o is SimpleDelegate[], false);
- Eval(0101, o is GenericDelegate<int>, false);
- Eval(0102, o is GenericDelegate<int>[], false);
+// Eval(0101, o is GenericDelegate<int>, false);
+// Eval(0102, o is GenericDelegate<int>[], false);
Eval(0103, o is EmptyClass, false);
Eval(0104, o is EmptyClass[], false);
Eval(0105, o is NotEmptyClass, false);
Eval(0106, o is NotEmptyClass[], false);
- Eval(0107, o is EmptyClassGen<int>, false);
- Eval(0108, o is EmptyClassGen<int>[], false);
- Eval(0109, o is NotEmptyClassGen<Guid>, false);
- Eval(0110, o is NotEmptyClassGen<Guid>[], false);
- Eval(0111, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0112, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0107, o is EmptyClassGen<int>, false);
+// Eval(0108, o is EmptyClassGen<int>[], false);
+// Eval(0109, o is NotEmptyClassGen<Guid>, false);
+// Eval(0110, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0111, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0112, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0113, o is NestedClass, false);
Eval(0114, o is NestedClass[], false);
- Eval(0115, o is NestedClassGen<Decimal>, false);
- Eval(0116, o is NestedClassGen<Decimal>[], false);
+// Eval(0115, o is NestedClassGen<Decimal>, false);
+// Eval(0116, o is NestedClassGen<Decimal>[], false);
Eval(0117, o is ImplementOneInterfaceC, false);
Eval(0118, o is ImplementOneInterfaceC[], false);
Eval(0119, o is ImplementTwoInterfaceC, false);
Eval(0120, o is ImplementTwoInterfaceC[], false);
- Eval(0121, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0122, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0123, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0124, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0125, o is ImplementAllInterfaceC<int>, false);
- Eval(0126, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0121, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0122, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0123, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0124, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0125, o is ImplementAllInterfaceC<int>, false);
+// Eval(0126, o is ImplementAllInterfaceC<int>[], false);
Eval(0127, o is SealedClass, false);
Eval(0128, o is SealedClass[], false);
}
@@ -186,38 +186,38 @@ internal class Program
Eval(0156, o is IEmpty[], false);
Eval(0157, o is INotEmpty, false);
Eval(0158, o is INotEmpty[], false);
- Eval(0159, o is IEmptyGen<int>, false);
- Eval(0160, o is IEmptyGen<int>[], false);
- Eval(0161, o is INotEmptyGen<int>, false);
- Eval(0162, o is INotEmptyGen<int>[], false);
+// Eval(0159, o is IEmptyGen<int>, false);
+// Eval(0160, o is IEmptyGen<int>[], false);
+// Eval(0161, o is INotEmptyGen<int>, false);
+// Eval(0162, o is INotEmptyGen<int>[], false);
Eval(0163, o is SimpleDelegate, false);
Eval(0164, o is SimpleDelegate[], false);
- Eval(0165, o is GenericDelegate<int>, false);
- Eval(0166, o is GenericDelegate<int>[], false);
+// Eval(0165, o is GenericDelegate<int>, false);
+// Eval(0166, o is GenericDelegate<int>[], false);
Eval(0167, o is EmptyClass, false);
Eval(0168, o is EmptyClass[], false);
Eval(0169, o is NotEmptyClass, false);
Eval(0170, o is NotEmptyClass[], false);
- Eval(0171, o is EmptyClassGen<int>, false);
- Eval(0172, o is EmptyClassGen<int>[], false);
- Eval(0173, o is NotEmptyClassGen<Guid>, false);
- Eval(0174, o is NotEmptyClassGen<Guid>[], false);
- Eval(0175, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0176, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0171, o is EmptyClassGen<int>, false);
+// Eval(0172, o is EmptyClassGen<int>[], false);
+// Eval(0173, o is NotEmptyClassGen<Guid>, false);
+// Eval(0174, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0175, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0176, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0177, o is NestedClass, false);
Eval(0178, o is NestedClass[], false);
- Eval(0179, o is NestedClassGen<Decimal>, false);
- Eval(0180, o is NestedClassGen<Decimal>[], false);
+// Eval(0179, o is NestedClassGen<Decimal>, false);
+// Eval(0180, o is NestedClassGen<Decimal>[], false);
Eval(0181, o is ImplementOneInterfaceC, false);
Eval(0182, o is ImplementOneInterfaceC[], false);
Eval(0183, o is ImplementTwoInterfaceC, false);
Eval(0184, o is ImplementTwoInterfaceC[], false);
- Eval(0185, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0186, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0187, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0188, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0189, o is ImplementAllInterfaceC<int>, false);
- Eval(0190, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0185, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0186, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0187, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0188, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0189, o is ImplementAllInterfaceC<int>, false);
+// Eval(0190, o is ImplementAllInterfaceC<int>[], false);
Eval(0191, o is SealedClass, false);
Eval(0192, o is SealedClass[], false);
}
@@ -257,38 +257,38 @@ internal class Program
Eval(0220, o is IEmpty[], false);
Eval(0221, o is INotEmpty, false);
Eval(0222, o is INotEmpty[], false);
- Eval(0223, o is IEmptyGen<int>, false);
- Eval(0224, o is IEmptyGen<int>[], false);
- Eval(0225, o is INotEmptyGen<int>, false);
- Eval(0226, o is INotEmptyGen<int>[], false);
+// Eval(0223, o is IEmptyGen<int>, false);
+// Eval(0224, o is IEmptyGen<int>[], false);
+// Eval(0225, o is INotEmptyGen<int>, false);
+// Eval(0226, o is INotEmptyGen<int>[], false);
Eval(0227, o is SimpleDelegate, false);
Eval(0228, o is SimpleDelegate[], false);
- Eval(0229, o is GenericDelegate<int>, false);
- Eval(0230, o is GenericDelegate<int>[], false);
+// Eval(0229, o is GenericDelegate<int>, false);
+// Eval(0230, o is GenericDelegate<int>[], false);
Eval(0231, o is EmptyClass, false);
Eval(0232, o is EmptyClass[], false);
Eval(0233, o is NotEmptyClass, false);
Eval(0234, o is NotEmptyClass[], false);
- Eval(0235, o is EmptyClassGen<int>, false);
- Eval(0236, o is EmptyClassGen<int>[], false);
- Eval(0237, o is NotEmptyClassGen<Guid>, false);
- Eval(0238, o is NotEmptyClassGen<Guid>[], false);
- Eval(0239, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0240, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0235, o is EmptyClassGen<int>, false);
+// Eval(0236, o is EmptyClassGen<int>[], false);
+// Eval(0237, o is NotEmptyClassGen<Guid>, false);
+// Eval(0238, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0239, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0240, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0241, o is NestedClass, false);
Eval(0242, o is NestedClass[], false);
- Eval(0243, o is NestedClassGen<Decimal>, false);
- Eval(0244, o is NestedClassGen<Decimal>[], false);
+// Eval(0243, o is NestedClassGen<Decimal>, false);
+// Eval(0244, o is NestedClassGen<Decimal>[], false);
Eval(0245, o is ImplementOneInterfaceC, false);
Eval(0246, o is ImplementOneInterfaceC[], false);
Eval(0247, o is ImplementTwoInterfaceC, false);
Eval(0248, o is ImplementTwoInterfaceC[], false);
- Eval(0249, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0250, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0251, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0252, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0253, o is ImplementAllInterfaceC<int>, false);
- Eval(0254, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0249, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0250, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0251, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0252, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0253, o is ImplementAllInterfaceC<int>, false);
+// Eval(0254, o is ImplementAllInterfaceC<int>[], false);
Eval(0255, o is SealedClass, false);
Eval(0256, o is SealedClass[], false);
}
@@ -325,38 +325,38 @@ internal class Program
Eval(0284, o is IEmpty[], false);
Eval(0285, o is INotEmpty, false);
Eval(0286, o is INotEmpty[], false);
- Eval(0287, o is IEmptyGen<int>, false);
- Eval(0288, o is IEmptyGen<int>[], false);
- Eval(0289, o is INotEmptyGen<int>, false);
- Eval(0290, o is INotEmptyGen<int>[], false);
+// Eval(0287, o is IEmptyGen<int>, false);
+// Eval(0288, o is IEmptyGen<int>[], false);
+// Eval(0289, o is INotEmptyGen<int>, false);
+// Eval(0290, o is INotEmptyGen<int>[], false);
Eval(0291, o is SimpleDelegate, false);
Eval(0292, o is SimpleDelegate[], false);
- Eval(0293, o is GenericDelegate<int>, false);
- Eval(0294, o is GenericDelegate<int>[], false);
+// Eval(0293, o is GenericDelegate<int>, false);
+// Eval(0294, o is GenericDelegate<int>[], false);
Eval(0295, o is EmptyClass, false);
Eval(0296, o is EmptyClass[], false);
Eval(0297, o is NotEmptyClass, false);
Eval(0298, o is NotEmptyClass[], false);
- Eval(0299, o is EmptyClassGen<int>, false);
- Eval(0300, o is EmptyClassGen<int>[], false);
- Eval(0301, o is NotEmptyClassGen<Guid>, false);
- Eval(0302, o is NotEmptyClassGen<Guid>[], false);
- Eval(0303, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0304, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0299, o is EmptyClassGen<int>, false);
+// Eval(0300, o is EmptyClassGen<int>[], false);
+// Eval(0301, o is NotEmptyClassGen<Guid>, false);
+// Eval(0302, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0303, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0304, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0305, o is NestedClass, false);
Eval(0306, o is NestedClass[], false);
- Eval(0307, o is NestedClassGen<Decimal>, false);
- Eval(0308, o is NestedClassGen<Decimal>[], false);
+// Eval(0307, o is NestedClassGen<Decimal>, false);
+// Eval(0308, o is NestedClassGen<Decimal>[], false);
Eval(0309, o is ImplementOneInterfaceC, false);
Eval(0310, o is ImplementOneInterfaceC[], false);
Eval(0311, o is ImplementTwoInterfaceC, false);
Eval(0312, o is ImplementTwoInterfaceC[], false);
- Eval(0313, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0314, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0315, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0316, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0317, o is ImplementAllInterfaceC<int>, false);
- Eval(0318, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0313, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0314, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0315, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0316, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0317, o is ImplementAllInterfaceC<int>, false);
+// Eval(0318, o is ImplementAllInterfaceC<int>[], false);
Eval(0319, o is SealedClass, false);
Eval(0320, o is SealedClass[], false);
}
@@ -393,38 +393,38 @@ internal class Program
Eval(0348, o is IEmpty[], false);
Eval(0349, o is INotEmpty, false);
Eval(0350, o is INotEmpty[], false);
- Eval(0351, o is IEmptyGen<int>, false);
- Eval(0352, o is IEmptyGen<int>[], false);
- Eval(0353, o is INotEmptyGen<int>, false);
- Eval(0354, o is INotEmptyGen<int>[], false);
+// Eval(0351, o is IEmptyGen<int>, false);
+// Eval(0352, o is IEmptyGen<int>[], false);
+// Eval(0353, o is INotEmptyGen<int>, false);
+// Eval(0354, o is INotEmptyGen<int>[], false);
Eval(0355, o is SimpleDelegate, false);
Eval(0356, o is SimpleDelegate[], false);
- Eval(0357, o is GenericDelegate<int>, false);
- Eval(0358, o is GenericDelegate<int>[], false);
+// Eval(0357, o is GenericDelegate<int>, false);
+// Eval(0358, o is GenericDelegate<int>[], false);
Eval(0359, o is EmptyClass, false);
Eval(0360, o is EmptyClass[], false);
Eval(0361, o is NotEmptyClass, false);
Eval(0362, o is NotEmptyClass[], false);
- Eval(0363, o is EmptyClassGen<int>, false);
- Eval(0364, o is EmptyClassGen<int>[], false);
- Eval(0365, o is NotEmptyClassGen<Guid>, false);
- Eval(0366, o is NotEmptyClassGen<Guid>[], false);
- Eval(0367, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0368, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0363, o is EmptyClassGen<int>, false);
+// Eval(0364, o is EmptyClassGen<int>[], false);
+// Eval(0365, o is NotEmptyClassGen<Guid>, false);
+// Eval(0366, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0367, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0368, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0369, o is NestedClass, false);
Eval(0370, o is NestedClass[], false);
- Eval(0371, o is NestedClassGen<Decimal>, false);
- Eval(0372, o is NestedClassGen<Decimal>[], false);
+// Eval(0371, o is NestedClassGen<Decimal>, false);
+// Eval(0372, o is NestedClassGen<Decimal>[], false);
Eval(0373, o is ImplementOneInterfaceC, false);
Eval(0374, o is ImplementOneInterfaceC[], false);
Eval(0375, o is ImplementTwoInterfaceC, false);
Eval(0376, o is ImplementTwoInterfaceC[], false);
- Eval(0377, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0378, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0379, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0380, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0381, o is ImplementAllInterfaceC<int>, false);
- Eval(0382, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0377, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0378, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0379, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0380, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0381, o is ImplementAllInterfaceC<int>, false);
+// Eval(0382, o is ImplementAllInterfaceC<int>[], false);
Eval(0383, o is SealedClass, false);
Eval(0384, o is SealedClass[], false);
}
@@ -464,38 +464,38 @@ internal class Program
Eval(0412, o is IEmpty[], false);
Eval(0413, o is INotEmpty, false);
Eval(0414, o is INotEmpty[], false);
- Eval(0415, o is IEmptyGen<int>, false);
- Eval(0416, o is IEmptyGen<int>[], false);
- Eval(0417, o is INotEmptyGen<int>, false);
- Eval(0418, o is INotEmptyGen<int>[], false);
+// Eval(0415, o is IEmptyGen<int>, false);
+// Eval(0416, o is IEmptyGen<int>[], false);
+// Eval(0417, o is INotEmptyGen<int>, false);
+// Eval(0418, o is INotEmptyGen<int>[], false);
Eval(0419, o is SimpleDelegate, false);
Eval(0420, o is SimpleDelegate[], false);
- Eval(0421, o is GenericDelegate<int>, false);
- Eval(0422, o is GenericDelegate<int>[], false);
+// Eval(0421, o is GenericDelegate<int>, false);
+// Eval(0422, o is GenericDelegate<int>[], false);
Eval(0423, o is EmptyClass, false);
Eval(0424, o is EmptyClass[], false);
Eval(0425, o is NotEmptyClass, false);
Eval(0426, o is NotEmptyClass[], false);
- Eval(0427, o is EmptyClassGen<int>, false);
- Eval(0428, o is EmptyClassGen<int>[], false);
- Eval(0429, o is NotEmptyClassGen<Guid>, false);
- Eval(0430, o is NotEmptyClassGen<Guid>[], false);
- Eval(0431, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0432, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0427, o is EmptyClassGen<int>, false);
+// Eval(0428, o is EmptyClassGen<int>[], false);
+// Eval(0429, o is NotEmptyClassGen<Guid>, false);
+// Eval(0430, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0431, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0432, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0433, o is NestedClass, false);
Eval(0434, o is NestedClass[], false);
- Eval(0435, o is NestedClassGen<Decimal>, false);
- Eval(0436, o is NestedClassGen<Decimal>[], false);
+// Eval(0435, o is NestedClassGen<Decimal>, false);
+// Eval(0436, o is NestedClassGen<Decimal>[], false);
Eval(0437, o is ImplementOneInterfaceC, false);
Eval(0438, o is ImplementOneInterfaceC[], false);
Eval(0439, o is ImplementTwoInterfaceC, false);
Eval(0440, o is ImplementTwoInterfaceC[], false);
- Eval(0441, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0442, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0443, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0444, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0445, o is ImplementAllInterfaceC<int>, false);
- Eval(0446, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0441, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0442, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0443, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0444, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0445, o is ImplementAllInterfaceC<int>, false);
+// Eval(0446, o is ImplementAllInterfaceC<int>[], false);
Eval(0447, o is SealedClass, false);
Eval(0448, o is SealedClass[], false);
}
@@ -532,38 +532,38 @@ internal class Program
Eval(0476, o is IEmpty[], false);
Eval(0477, o is INotEmpty, false);
Eval(0478, o is INotEmpty[], false);
- Eval(0479, o is IEmptyGen<int>, false);
- Eval(0480, o is IEmptyGen<int>[], false);
- Eval(0481, o is INotEmptyGen<int>, false);
- Eval(0482, o is INotEmptyGen<int>[], false);
+// Eval(0479, o is IEmptyGen<int>, false);
+// Eval(0480, o is IEmptyGen<int>[], false);
+// Eval(0481, o is INotEmptyGen<int>, false);
+// Eval(0482, o is INotEmptyGen<int>[], false);
Eval(0483, o is SimpleDelegate, false);
Eval(0484, o is SimpleDelegate[], false);
- Eval(0485, o is GenericDelegate<int>, false);
- Eval(0486, o is GenericDelegate<int>[], false);
+// Eval(0485, o is GenericDelegate<int>, false);
+// Eval(0486, o is GenericDelegate<int>[], false);
Eval(0487, o is EmptyClass, false);
Eval(0488, o is EmptyClass[], false);
Eval(0489, o is NotEmptyClass, false);
Eval(0490, o is NotEmptyClass[], false);
- Eval(0491, o is EmptyClassGen<int>, false);
- Eval(0492, o is EmptyClassGen<int>[], false);
- Eval(0493, o is NotEmptyClassGen<Guid>, false);
- Eval(0494, o is NotEmptyClassGen<Guid>[], false);
- Eval(0495, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0496, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0491, o is EmptyClassGen<int>, false);
+// Eval(0492, o is EmptyClassGen<int>[], false);
+// Eval(0493, o is NotEmptyClassGen<Guid>, false);
+// Eval(0494, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0495, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0496, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0497, o is NestedClass, false);
Eval(0498, o is NestedClass[], false);
- Eval(0499, o is NestedClassGen<Decimal>, false);
- Eval(0500, o is NestedClassGen<Decimal>[], false);
+// Eval(0499, o is NestedClassGen<Decimal>, false);
+// Eval(0500, o is NestedClassGen<Decimal>[], false);
Eval(0501, o is ImplementOneInterfaceC, false);
Eval(0502, o is ImplementOneInterfaceC[], false);
Eval(0503, o is ImplementTwoInterfaceC, false);
Eval(0504, o is ImplementTwoInterfaceC[], false);
- Eval(0505, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0506, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0507, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0508, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0509, o is ImplementAllInterfaceC<int>, false);
- Eval(0510, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0505, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0506, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0507, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0508, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0509, o is ImplementAllInterfaceC<int>, false);
+// Eval(0510, o is ImplementAllInterfaceC<int>[], false);
Eval(0511, o is SealedClass, false);
Eval(0512, o is SealedClass[], false);
}
@@ -600,38 +600,38 @@ internal class Program
Eval(0540, o is IEmpty[], false);
Eval(0541, o is INotEmpty, false);
Eval(0542, o is INotEmpty[], false);
- Eval(0543, o is IEmptyGen<int>, false);
- Eval(0544, o is IEmptyGen<int>[], false);
- Eval(0545, o is INotEmptyGen<int>, false);
- Eval(0546, o is INotEmptyGen<int>[], false);
+// Eval(0543, o is IEmptyGen<int>, false);
+// Eval(0544, o is IEmptyGen<int>[], false);
+// Eval(0545, o is INotEmptyGen<int>, false);
+// Eval(0546, o is INotEmptyGen<int>[], false);
Eval(0547, o is SimpleDelegate, false);
Eval(0548, o is SimpleDelegate[], false);
- Eval(0549, o is GenericDelegate<int>, false);
- Eval(0550, o is GenericDelegate<int>[], false);
+// Eval(0549, o is GenericDelegate<int>, false);
+// Eval(0550, o is GenericDelegate<int>[], false);
Eval(0551, o is EmptyClass, false);
Eval(0552, o is EmptyClass[], false);
Eval(0553, o is NotEmptyClass, false);
Eval(0554, o is NotEmptyClass[], false);
- Eval(0555, o is EmptyClassGen<int>, false);
- Eval(0556, o is EmptyClassGen<int>[], false);
- Eval(0557, o is NotEmptyClassGen<Guid>, false);
- Eval(0558, o is NotEmptyClassGen<Guid>[], false);
- Eval(0559, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0560, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0555, o is EmptyClassGen<int>, false);
+// Eval(0556, o is EmptyClassGen<int>[], false);
+// Eval(0557, o is NotEmptyClassGen<Guid>, false);
+// Eval(0558, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0559, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0560, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0561, o is NestedClass, false);
Eval(0562, o is NestedClass[], false);
- Eval(0563, o is NestedClassGen<Decimal>, false);
- Eval(0564, o is NestedClassGen<Decimal>[], false);
+// Eval(0563, o is NestedClassGen<Decimal>, false);
+// Eval(0564, o is NestedClassGen<Decimal>[], false);
Eval(0565, o is ImplementOneInterfaceC, false);
Eval(0566, o is ImplementOneInterfaceC[], false);
Eval(0567, o is ImplementTwoInterfaceC, false);
Eval(0568, o is ImplementTwoInterfaceC[], false);
- Eval(0569, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0570, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0571, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0572, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0573, o is ImplementAllInterfaceC<int>, false);
- Eval(0574, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0569, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0570, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0571, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0572, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0573, o is ImplementAllInterfaceC<int>, false);
+// Eval(0574, o is ImplementAllInterfaceC<int>[], false);
Eval(0575, o is SealedClass, false);
Eval(0576, o is SealedClass[], false);
}
diff --git a/tests/src/JIT/Directed/nullabletypes/isinstgenerics.cs b/tests/src/JIT/Directed/nullabletypes/isinstgenerics.cs
index 53056bffb5..e131939ffb 100644
--- a/tests/src/JIT/Directed/nullabletypes/isinstgenerics.cs
+++ b/tests/src/JIT/Directed/nullabletypes/isinstgenerics.cs
@@ -28,26 +28,26 @@ internal class Program
Eval(0006, v is NotEmptyStruct[], false);
Eval(0007, v is NotEmptyStruct?, false);
Eval(0008, v is NotEmptyStruct?[], false);
- Eval(0009, v is EmptyStructGen<int>, false);
- Eval(0010, v is EmptyStructGen<int>[], false);
- Eval(0011, v is EmptyStructGen<int>?, false);
- Eval(0012, v is EmptyStructGen<int>?[], false);
- Eval(0013, v is NotEmptyStructGen<Guid>, false);
- Eval(0014, v is NotEmptyStructGen<Guid>[], false);
- Eval(0015, v is NotEmptyStructGen<Guid>?, false);
- Eval(0016, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0017, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0018, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0019, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0020, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0009, v is EmptyStructGen<int>, false);
+// Eval(0010, v is EmptyStructGen<int>[], false);
+// Eval(0011, v is EmptyStructGen<int>?, false);
+// Eval(0012, v is EmptyStructGen<int>?[], false);
+// Eval(0013, v is NotEmptyStructGen<Guid>, false);
+// Eval(0014, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0015, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0016, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0017, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0018, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0019, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0020, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0021, v is NestedStruct, false);
Eval(0022, v is NestedStruct[], false);
Eval(0023, v is NestedStruct?, false);
Eval(0024, v is NestedStruct?[], false);
- Eval(0025, v is NestedStructGen<Decimal>, false);
- Eval(0026, v is NestedStructGen<Decimal>[], false);
- Eval(0027, v is NestedStructGen<Decimal>?, false);
- Eval(0028, v is NestedStructGen<Decimal>?[], false);
+// Eval(0025, v is NestedStructGen<Decimal>, false);
+// Eval(0026, v is NestedStructGen<Decimal>[], false);
+// Eval(0027, v is NestedStructGen<Decimal>?, false);
+// Eval(0028, v is NestedStructGen<Decimal>?[], false);
Eval(0029, v is ExplicitFieldOffsetStruct, false);
Eval(0030, v is ExplicitFieldOffsetStruct[], false);
Eval(0031, v is ExplicitFieldOffsetStruct?, false);
@@ -64,18 +64,18 @@ internal class Program
Eval(0050, v is ImplementTwoInterface[], false);
Eval(0051, v is ImplementTwoInterface?, false);
Eval(0052, v is ImplementTwoInterface?[], false);
- Eval(0053, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0054, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0055, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0056, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0057, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0058, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0059, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0060, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0061, v is ImplementAllInterface<int>, false);
- Eval(0062, v is ImplementAllInterface<int>[], false);
- Eval(0063, v is ImplementAllInterface<int>?, false);
- Eval(0064, v is ImplementAllInterface<int>?[], false);
+// Eval(0053, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0054, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0055, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0056, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0057, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0058, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0059, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0060, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0061, v is ImplementAllInterface<int>, false);
+// Eval(0062, v is ImplementAllInterface<int>[], false);
+// Eval(0063, v is ImplementAllInterface<int>?, false);
+// Eval(0064, v is ImplementAllInterface<int>?[], false);
Eval(0065, v is IntE, false);
Eval(0066, v is IntE[], false);
Eval(0067, v is IntE?, false);
@@ -174,38 +174,38 @@ internal class Program
Eval(0160, v is IEmpty[], false);
Eval(0161, v is INotEmpty, false);
Eval(0162, v is INotEmpty[], false);
- Eval(0163, v is IEmptyGen<int>, false);
- Eval(0164, v is IEmptyGen<int>[], false);
- Eval(0165, v is INotEmptyGen<int>, false);
- Eval(0166, v is INotEmptyGen<int>[], false);
+// Eval(0163, v is IEmptyGen<int>, false);
+// Eval(0164, v is IEmptyGen<int>[], false);
+// Eval(0165, v is INotEmptyGen<int>, false);
+// Eval(0166, v is INotEmptyGen<int>[], false);
Eval(0167, v is SimpleDelegate, false);
Eval(0168, v is SimpleDelegate[], false);
- Eval(0169, v is GenericDelegate<int>, false);
- Eval(0170, v is GenericDelegate<int>[], false);
+// Eval(0169, v is GenericDelegate<int>, false);
+// Eval(0170, v is GenericDelegate<int>[], false);
Eval(0171, v is EmptyClass, false);
Eval(0172, v is EmptyClass[], false);
Eval(0173, v is NotEmptyClass, false);
Eval(0174, v is NotEmptyClass[], false);
- Eval(0175, v is EmptyClassGen<int>, false);
- Eval(0176, v is EmptyClassGen<int>[], false);
- Eval(0177, v is NotEmptyClassGen<Guid>, false);
- Eval(0178, v is NotEmptyClassGen<Guid>[], false);
- Eval(0179, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0180, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0175, v is EmptyClassGen<int>, false);
+// Eval(0176, v is EmptyClassGen<int>[], false);
+// Eval(0177, v is NotEmptyClassGen<Guid>, false);
+// Eval(0178, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0179, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0180, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0181, v is NestedClass, false);
Eval(0182, v is NestedClass[], false);
- Eval(0183, v is NestedClassGen<Decimal>, false);
- Eval(0184, v is NestedClassGen<Decimal>[], false);
+// Eval(0183, v is NestedClassGen<Decimal>, false);
+// Eval(0184, v is NestedClassGen<Decimal>[], false);
Eval(0185, v is ImplementOneInterfaceC, false);
Eval(0186, v is ImplementOneInterfaceC[], false);
Eval(0187, v is ImplementTwoInterfaceC, false);
Eval(0188, v is ImplementTwoInterfaceC[], false);
- Eval(0189, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0190, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0191, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0192, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0193, v is ImplementAllInterfaceC<int>, false);
- Eval(0194, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0189, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0190, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0191, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0192, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0193, v is ImplementAllInterfaceC<int>, false);
+// Eval(0194, v is ImplementAllInterfaceC<int>[], false);
Eval(0195, v is SealedClass, false);
Eval(0196, v is SealedClass[], false);
}
@@ -219,26 +219,26 @@ internal class Program
Eval(0202, v is NotEmptyStruct[], false);
Eval(0203, v is NotEmptyStruct?, false);
Eval(0204, v is NotEmptyStruct?[], false);
- Eval(0205, v is EmptyStructGen<int>, false);
- Eval(0206, v is EmptyStructGen<int>[], false);
- Eval(0207, v is EmptyStructGen<int>?, false);
- Eval(0208, v is EmptyStructGen<int>?[], false);
- Eval(0209, v is NotEmptyStructGen<Guid>, false);
- Eval(0210, v is NotEmptyStructGen<Guid>[], false);
- Eval(0211, v is NotEmptyStructGen<Guid>?, false);
- Eval(0212, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0213, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0214, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0215, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0216, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0205, v is EmptyStructGen<int>, false);
+// Eval(0206, v is EmptyStructGen<int>[], false);
+// Eval(0207, v is EmptyStructGen<int>?, false);
+// Eval(0208, v is EmptyStructGen<int>?[], false);
+// Eval(0209, v is NotEmptyStructGen<Guid>, false);
+// Eval(0210, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0211, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0212, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0213, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0214, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0215, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0216, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0217, v is NestedStruct, false);
Eval(0218, v is NestedStruct[], false);
Eval(0219, v is NestedStruct?, false);
Eval(0220, v is NestedStruct?[], false);
- Eval(0221, v is NestedStructGen<Decimal>, false);
- Eval(0222, v is NestedStructGen<Decimal>[], false);
- Eval(0223, v is NestedStructGen<Decimal>?, false);
- Eval(0224, v is NestedStructGen<Decimal>?[], false);
+// Eval(0221, v is NestedStructGen<Decimal>, false);
+// Eval(0222, v is NestedStructGen<Decimal>[], false);
+// Eval(0223, v is NestedStructGen<Decimal>?, false);
+// Eval(0224, v is NestedStructGen<Decimal>?[], false);
Eval(0225, v is ExplicitFieldOffsetStruct, false);
Eval(0226, v is ExplicitFieldOffsetStruct[], false);
Eval(0227, v is ExplicitFieldOffsetStruct?, false);
@@ -255,18 +255,18 @@ internal class Program
Eval(0246, v is ImplementTwoInterface[], false);
Eval(0247, v is ImplementTwoInterface?, false);
Eval(0248, v is ImplementTwoInterface?[], false);
- Eval(0249, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0250, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0251, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0252, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0253, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0254, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0255, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0256, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0257, v is ImplementAllInterface<int>, false);
- Eval(0258, v is ImplementAllInterface<int>[], false);
- Eval(0259, v is ImplementAllInterface<int>?, false);
- Eval(0260, v is ImplementAllInterface<int>?[], false);
+// Eval(0249, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0250, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0251, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0252, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0253, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0254, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0255, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0256, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0257, v is ImplementAllInterface<int>, false);
+// Eval(0258, v is ImplementAllInterface<int>[], false);
+// Eval(0259, v is ImplementAllInterface<int>?, false);
+// Eval(0260, v is ImplementAllInterface<int>?[], false);
Eval(0261, v is IntE, false);
Eval(0262, v is IntE[], false);
Eval(0263, v is IntE?, false);
@@ -365,38 +365,38 @@ internal class Program
Eval(0356, v is IEmpty[], false);
Eval(0357, v is INotEmpty, false);
Eval(0358, v is INotEmpty[], false);
- Eval(0359, v is IEmptyGen<int>, false);
- Eval(0360, v is IEmptyGen<int>[], false);
- Eval(0361, v is INotEmptyGen<int>, false);
- Eval(0362, v is INotEmptyGen<int>[], false);
+// Eval(0359, v is IEmptyGen<int>, false);
+// Eval(0360, v is IEmptyGen<int>[], false);
+// Eval(0361, v is INotEmptyGen<int>, false);
+// Eval(0362, v is INotEmptyGen<int>[], false);
Eval(0363, v is SimpleDelegate, false);
Eval(0364, v is SimpleDelegate[], false);
- Eval(0365, v is GenericDelegate<int>, false);
- Eval(0366, v is GenericDelegate<int>[], false);
+// Eval(0365, v is GenericDelegate<int>, false);
+// Eval(0366, v is GenericDelegate<int>[], false);
Eval(0367, v is EmptyClass, false);
Eval(0368, v is EmptyClass[], false);
Eval(0369, v is NotEmptyClass, false);
Eval(0370, v is NotEmptyClass[], false);
- Eval(0371, v is EmptyClassGen<int>, false);
- Eval(0372, v is EmptyClassGen<int>[], false);
- Eval(0373, v is NotEmptyClassGen<Guid>, false);
- Eval(0374, v is NotEmptyClassGen<Guid>[], false);
- Eval(0375, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0376, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0371, v is EmptyClassGen<int>, false);
+// Eval(0372, v is EmptyClassGen<int>[], false);
+// Eval(0373, v is NotEmptyClassGen<Guid>, false);
+// Eval(0374, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0375, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0376, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0377, v is NestedClass, false);
Eval(0378, v is NestedClass[], false);
- Eval(0379, v is NestedClassGen<Decimal>, false);
- Eval(0380, v is NestedClassGen<Decimal>[], false);
+// Eval(0379, v is NestedClassGen<Decimal>, false);
+// Eval(0380, v is NestedClassGen<Decimal>[], false);
Eval(0381, v is ImplementOneInterfaceC, false);
Eval(0382, v is ImplementOneInterfaceC[], false);
Eval(0383, v is ImplementTwoInterfaceC, false);
Eval(0384, v is ImplementTwoInterfaceC[], false);
- Eval(0385, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0386, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0387, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0388, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0389, v is ImplementAllInterfaceC<int>, false);
- Eval(0390, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0385, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0386, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0387, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0388, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0389, v is ImplementAllInterfaceC<int>, false);
+// Eval(0390, v is ImplementAllInterfaceC<int>[], false);
Eval(0391, v is SealedClass, false);
Eval(0392, v is SealedClass[], false);
}
@@ -410,26 +410,26 @@ internal class Program
Eval(0398, v is NotEmptyStruct[], false);
Eval(0399, v is NotEmptyStruct?, false);
Eval(0400, v is NotEmptyStruct?[], false);
- Eval(0401, v is EmptyStructGen<int>, false);
- Eval(0402, v is EmptyStructGen<int>[], false);
- Eval(0403, v is EmptyStructGen<int>?, false);
- Eval(0404, v is EmptyStructGen<int>?[], false);
- Eval(0405, v is NotEmptyStructGen<Guid>, false);
- Eval(0406, v is NotEmptyStructGen<Guid>[], false);
- Eval(0407, v is NotEmptyStructGen<Guid>?, false);
- Eval(0408, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0409, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0410, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0411, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0412, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0401, v is EmptyStructGen<int>, false);
+// Eval(0402, v is EmptyStructGen<int>[], false);
+// Eval(0403, v is EmptyStructGen<int>?, false);
+// Eval(0404, v is EmptyStructGen<int>?[], false);
+// Eval(0405, v is NotEmptyStructGen<Guid>, false);
+// Eval(0406, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0407, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0408, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0409, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0410, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0411, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0412, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0413, v is NestedStruct, false);
Eval(0414, v is NestedStruct[], false);
Eval(0415, v is NestedStruct?, false);
Eval(0416, v is NestedStruct?[], false);
- Eval(0417, v is NestedStructGen<Decimal>, false);
- Eval(0418, v is NestedStructGen<Decimal>[], false);
- Eval(0419, v is NestedStructGen<Decimal>?, false);
- Eval(0420, v is NestedStructGen<Decimal>?[], false);
+// Eval(0417, v is NestedStructGen<Decimal>, false);
+// Eval(0418, v is NestedStructGen<Decimal>[], false);
+// Eval(0419, v is NestedStructGen<Decimal>?, false);
+// Eval(0420, v is NestedStructGen<Decimal>?[], false);
Eval(0421, v is ExplicitFieldOffsetStruct, false);
Eval(0422, v is ExplicitFieldOffsetStruct[], false);
Eval(0423, v is ExplicitFieldOffsetStruct?, false);
@@ -446,18 +446,18 @@ internal class Program
Eval(0442, v is ImplementTwoInterface[], false);
Eval(0443, v is ImplementTwoInterface?, false);
Eval(0444, v is ImplementTwoInterface?[], false);
- Eval(0445, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0446, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0447, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0448, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0449, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0450, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0451, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0452, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0453, v is ImplementAllInterface<int>, false);
- Eval(0454, v is ImplementAllInterface<int>[], false);
- Eval(0455, v is ImplementAllInterface<int>?, false);
- Eval(0456, v is ImplementAllInterface<int>?[], false);
+// Eval(0445, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0446, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0447, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0448, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0449, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0450, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0451, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0452, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0453, v is ImplementAllInterface<int>, false);
+// Eval(0454, v is ImplementAllInterface<int>[], false);
+// Eval(0455, v is ImplementAllInterface<int>?, false);
+// Eval(0456, v is ImplementAllInterface<int>?[], false);
Eval(0457, v is IntE, false);
Eval(0458, v is IntE[], false);
Eval(0459, v is IntE?, false);
@@ -556,38 +556,38 @@ internal class Program
Eval(0552, v is IEmpty[], false);
Eval(0553, v is INotEmpty, false);
Eval(0554, v is INotEmpty[], false);
- Eval(0555, v is IEmptyGen<int>, false);
- Eval(0556, v is IEmptyGen<int>[], false);
- Eval(0557, v is INotEmptyGen<int>, false);
- Eval(0558, v is INotEmptyGen<int>[], false);
+// Eval(0555, v is IEmptyGen<int>, false);
+// Eval(0556, v is IEmptyGen<int>[], false);
+// Eval(0557, v is INotEmptyGen<int>, false);
+// Eval(0558, v is INotEmptyGen<int>[], false);
Eval(0559, v is SimpleDelegate, false);
Eval(0560, v is SimpleDelegate[], false);
- Eval(0561, v is GenericDelegate<int>, false);
- Eval(0562, v is GenericDelegate<int>[], false);
+// Eval(0561, v is GenericDelegate<int>, false);
+// Eval(0562, v is GenericDelegate<int>[], false);
Eval(0563, v is EmptyClass, false);
Eval(0564, v is EmptyClass[], false);
Eval(0565, v is NotEmptyClass, false);
Eval(0566, v is NotEmptyClass[], false);
- Eval(0567, v is EmptyClassGen<int>, false);
- Eval(0568, v is EmptyClassGen<int>[], false);
- Eval(0569, v is NotEmptyClassGen<Guid>, false);
- Eval(0570, v is NotEmptyClassGen<Guid>[], false);
- Eval(0571, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0572, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0567, v is EmptyClassGen<int>, false);
+// Eval(0568, v is EmptyClassGen<int>[], false);
+// Eval(0569, v is NotEmptyClassGen<Guid>, false);
+// Eval(0570, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0571, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0572, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0573, v is NestedClass, false);
Eval(0574, v is NestedClass[], false);
- Eval(0575, v is NestedClassGen<Decimal>, false);
- Eval(0576, v is NestedClassGen<Decimal>[], false);
+// Eval(0575, v is NestedClassGen<Decimal>, false);
+// Eval(0576, v is NestedClassGen<Decimal>[], false);
Eval(0577, v is ImplementOneInterfaceC, false);
Eval(0578, v is ImplementOneInterfaceC[], false);
Eval(0579, v is ImplementTwoInterfaceC, false);
Eval(0580, v is ImplementTwoInterfaceC[], false);
- Eval(0581, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0582, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0583, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0584, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0585, v is ImplementAllInterfaceC<int>, false);
- Eval(0586, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0581, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0582, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0583, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0584, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0585, v is ImplementAllInterfaceC<int>, false);
+// Eval(0586, v is ImplementAllInterfaceC<int>[], false);
Eval(0587, v is SealedClass, false);
Eval(0588, v is SealedClass[], false);
}
@@ -601,26 +601,26 @@ internal class Program
Eval(0594, v is NotEmptyStruct[], false);
Eval(0595, v is NotEmptyStruct?, false);
Eval(0596, v is NotEmptyStruct?[], false);
- Eval(0597, v is EmptyStructGen<int>, false);
- Eval(0598, v is EmptyStructGen<int>[], false);
- Eval(0599, v is EmptyStructGen<int>?, false);
- Eval(0600, v is EmptyStructGen<int>?[], false);
- Eval(0601, v is NotEmptyStructGen<Guid>, false);
- Eval(0602, v is NotEmptyStructGen<Guid>[], false);
- Eval(0603, v is NotEmptyStructGen<Guid>?, false);
- Eval(0604, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0605, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0606, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0607, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0608, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0597, v is EmptyStructGen<int>, false);
+// Eval(0598, v is EmptyStructGen<int>[], false);
+// Eval(0599, v is EmptyStructGen<int>?, false);
+// Eval(0600, v is EmptyStructGen<int>?[], false);
+// Eval(0601, v is NotEmptyStructGen<Guid>, false);
+// Eval(0602, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0603, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0604, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0605, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0606, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0607, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0608, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0609, v is NestedStruct, false);
Eval(0610, v is NestedStruct[], false);
Eval(0611, v is NestedStruct?, false);
Eval(0612, v is NestedStruct?[], false);
- Eval(0613, v is NestedStructGen<Decimal>, false);
- Eval(0614, v is NestedStructGen<Decimal>[], false);
- Eval(0615, v is NestedStructGen<Decimal>?, false);
- Eval(0616, v is NestedStructGen<Decimal>?[], false);
+// Eval(0613, v is NestedStructGen<Decimal>, false);
+// Eval(0614, v is NestedStructGen<Decimal>[], false);
+// Eval(0615, v is NestedStructGen<Decimal>?, false);
+// Eval(0616, v is NestedStructGen<Decimal>?[], false);
Eval(0617, v is ExplicitFieldOffsetStruct, false);
Eval(0618, v is ExplicitFieldOffsetStruct[], false);
Eval(0619, v is ExplicitFieldOffsetStruct?, false);
@@ -637,18 +637,18 @@ internal class Program
Eval(0638, v is ImplementTwoInterface[], false);
Eval(0639, v is ImplementTwoInterface?, false);
Eval(0640, v is ImplementTwoInterface?[], false);
- Eval(0641, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0642, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0643, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0644, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0645, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0646, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0647, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0648, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0649, v is ImplementAllInterface<int>, false);
- Eval(0650, v is ImplementAllInterface<int>[], false);
- Eval(0651, v is ImplementAllInterface<int>?, false);
- Eval(0652, v is ImplementAllInterface<int>?[], false);
+// Eval(0641, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0642, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0643, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0644, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0645, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0646, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0647, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0648, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0649, v is ImplementAllInterface<int>, false);
+// Eval(0650, v is ImplementAllInterface<int>[], false);
+// Eval(0651, v is ImplementAllInterface<int>?, false);
+// Eval(0652, v is ImplementAllInterface<int>?[], false);
Eval(0653, v is IntE, false);
Eval(0654, v is IntE[], false);
Eval(0655, v is IntE?, false);
@@ -747,38 +747,38 @@ internal class Program
Eval(0748, v is IEmpty[], false);
Eval(0749, v is INotEmpty, false);
Eval(0750, v is INotEmpty[], false);
- Eval(0751, v is IEmptyGen<int>, false);
- Eval(0752, v is IEmptyGen<int>[], false);
- Eval(0753, v is INotEmptyGen<int>, false);
- Eval(0754, v is INotEmptyGen<int>[], false);
+// Eval(0751, v is IEmptyGen<int>, false);
+// Eval(0752, v is IEmptyGen<int>[], false);
+// Eval(0753, v is INotEmptyGen<int>, false);
+// Eval(0754, v is INotEmptyGen<int>[], false);
Eval(0755, v is SimpleDelegate, false);
Eval(0756, v is SimpleDelegate[], false);
- Eval(0757, v is GenericDelegate<int>, false);
- Eval(0758, v is GenericDelegate<int>[], false);
+// Eval(0757, v is GenericDelegate<int>, false);
+// Eval(0758, v is GenericDelegate<int>[], false);
Eval(0759, v is EmptyClass, false);
Eval(0760, v is EmptyClass[], false);
Eval(0761, v is NotEmptyClass, false);
Eval(0762, v is NotEmptyClass[], false);
- Eval(0763, v is EmptyClassGen<int>, false);
- Eval(0764, v is EmptyClassGen<int>[], false);
- Eval(0765, v is NotEmptyClassGen<Guid>, false);
- Eval(0766, v is NotEmptyClassGen<Guid>[], false);
- Eval(0767, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0768, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0763, v is EmptyClassGen<int>, false);
+// Eval(0764, v is EmptyClassGen<int>[], false);
+// Eval(0765, v is NotEmptyClassGen<Guid>, false);
+// Eval(0766, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0767, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0768, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0769, v is NestedClass, false);
Eval(0770, v is NestedClass[], false);
- Eval(0771, v is NestedClassGen<Decimal>, false);
- Eval(0772, v is NestedClassGen<Decimal>[], false);
+// Eval(0771, v is NestedClassGen<Decimal>, false);
+// Eval(0772, v is NestedClassGen<Decimal>[], false);
Eval(0773, v is ImplementOneInterfaceC, false);
Eval(0774, v is ImplementOneInterfaceC[], false);
Eval(0775, v is ImplementTwoInterfaceC, false);
Eval(0776, v is ImplementTwoInterfaceC[], false);
- Eval(0777, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0778, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0779, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0780, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0781, v is ImplementAllInterfaceC<int>, false);
- Eval(0782, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0777, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0778, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0779, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0780, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0781, v is ImplementAllInterfaceC<int>, false);
+// Eval(0782, v is ImplementAllInterfaceC<int>[], false);
Eval(0783, v is SealedClass, false);
Eval(0784, v is SealedClass[], false);
}
@@ -792,26 +792,26 @@ internal class Program
Eval(0790, v is NotEmptyStruct[], false);
Eval(0791, v is NotEmptyStruct?, false);
Eval(0792, v is NotEmptyStruct?[], false);
- Eval(0793, v is EmptyStructGen<int>, false);
- Eval(0794, v is EmptyStructGen<int>[], false);
- Eval(0795, v is EmptyStructGen<int>?, false);
- Eval(0796, v is EmptyStructGen<int>?[], false);
- Eval(0797, v is NotEmptyStructGen<Guid>, false);
- Eval(0798, v is NotEmptyStructGen<Guid>[], false);
- Eval(0799, v is NotEmptyStructGen<Guid>?, false);
- Eval(0800, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0801, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0802, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0803, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0804, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0793, v is EmptyStructGen<int>, false);
+// Eval(0794, v is EmptyStructGen<int>[], false);
+// Eval(0795, v is EmptyStructGen<int>?, false);
+// Eval(0796, v is EmptyStructGen<int>?[], false);
+// Eval(0797, v is NotEmptyStructGen<Guid>, false);
+// Eval(0798, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0799, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0800, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0801, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0802, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0803, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0804, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0805, v is NestedStruct, false);
Eval(0806, v is NestedStruct[], false);
Eval(0807, v is NestedStruct?, false);
Eval(0808, v is NestedStruct?[], false);
- Eval(0809, v is NestedStructGen<Decimal>, false);
- Eval(0810, v is NestedStructGen<Decimal>[], false);
- Eval(0811, v is NestedStructGen<Decimal>?, false);
- Eval(0812, v is NestedStructGen<Decimal>?[], false);
+// Eval(0809, v is NestedStructGen<Decimal>, false);
+// Eval(0810, v is NestedStructGen<Decimal>[], false);
+// Eval(0811, v is NestedStructGen<Decimal>?, false);
+// Eval(0812, v is NestedStructGen<Decimal>?[], false);
Eval(0813, v is ExplicitFieldOffsetStruct, false);
Eval(0814, v is ExplicitFieldOffsetStruct[], false);
Eval(0815, v is ExplicitFieldOffsetStruct?, false);
@@ -828,18 +828,18 @@ internal class Program
Eval(0834, v is ImplementTwoInterface[], false);
Eval(0835, v is ImplementTwoInterface?, false);
Eval(0836, v is ImplementTwoInterface?[], false);
- Eval(0837, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0838, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0839, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0840, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0841, v is ImplementTwoInterfaceGen<int>, false);
- Eval(0842, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(0843, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(0844, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0845, v is ImplementAllInterface<int>, false);
- Eval(0846, v is ImplementAllInterface<int>[], false);
- Eval(0847, v is ImplementAllInterface<int>?, false);
- Eval(0848, v is ImplementAllInterface<int>?[], false);
+// Eval(0837, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0838, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0839, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0840, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0841, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(0842, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0843, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0844, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0845, v is ImplementAllInterface<int>, false);
+// Eval(0846, v is ImplementAllInterface<int>[], false);
+// Eval(0847, v is ImplementAllInterface<int>?, false);
+// Eval(0848, v is ImplementAllInterface<int>?[], false);
Eval(0849, v is IntE, false);
Eval(0850, v is IntE[], false);
Eval(0851, v is IntE?, false);
@@ -938,38 +938,38 @@ internal class Program
Eval(0944, v is IEmpty[], false);
Eval(0945, v is INotEmpty, false);
Eval(0946, v is INotEmpty[], false);
- Eval(0947, v is IEmptyGen<int>, false);
- Eval(0948, v is IEmptyGen<int>[], false);
- Eval(0949, v is INotEmptyGen<int>, false);
- Eval(0950, v is INotEmptyGen<int>[], false);
+// Eval(0947, v is IEmptyGen<int>, false);
+// Eval(0948, v is IEmptyGen<int>[], false);
+// Eval(0949, v is INotEmptyGen<int>, false);
+// Eval(0950, v is INotEmptyGen<int>[], false);
Eval(0951, v is SimpleDelegate, false);
Eval(0952, v is SimpleDelegate[], false);
- Eval(0953, v is GenericDelegate<int>, false);
- Eval(0954, v is GenericDelegate<int>[], false);
+// Eval(0953, v is GenericDelegate<int>, false);
+// Eval(0954, v is GenericDelegate<int>[], false);
Eval(0955, v is EmptyClass, false);
Eval(0956, v is EmptyClass[], false);
Eval(0957, v is NotEmptyClass, false);
Eval(0958, v is NotEmptyClass[], false);
- Eval(0959, v is EmptyClassGen<int>, false);
- Eval(0960, v is EmptyClassGen<int>[], false);
- Eval(0961, v is NotEmptyClassGen<Guid>, false);
- Eval(0962, v is NotEmptyClassGen<Guid>[], false);
- Eval(0963, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(0964, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0959, v is EmptyClassGen<int>, false);
+// Eval(0960, v is EmptyClassGen<int>[], false);
+// Eval(0961, v is NotEmptyClassGen<Guid>, false);
+// Eval(0962, v is NotEmptyClassGen<Guid>[], false);
+// Eval(0963, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0964, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(0965, v is NestedClass, false);
Eval(0966, v is NestedClass[], false);
- Eval(0967, v is NestedClassGen<Decimal>, false);
- Eval(0968, v is NestedClassGen<Decimal>[], false);
+// Eval(0967, v is NestedClassGen<Decimal>, false);
+// Eval(0968, v is NestedClassGen<Decimal>[], false);
Eval(0969, v is ImplementOneInterfaceC, false);
Eval(0970, v is ImplementOneInterfaceC[], false);
Eval(0971, v is ImplementTwoInterfaceC, false);
Eval(0972, v is ImplementTwoInterfaceC[], false);
- Eval(0973, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0974, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0975, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(0976, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0977, v is ImplementAllInterfaceC<int>, false);
- Eval(0978, v is ImplementAllInterfaceC<int>[], false);
+// Eval(0973, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0974, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0975, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0976, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0977, v is ImplementAllInterfaceC<int>, false);
+// Eval(0978, v is ImplementAllInterfaceC<int>[], false);
Eval(0979, v is SealedClass, false);
Eval(0980, v is SealedClass[], false);
}
@@ -986,26 +986,26 @@ internal class Program
Eval(0986, v is NotEmptyStruct[], false);
Eval(0987, v is NotEmptyStruct?, true);
Eval(0988, v is NotEmptyStruct?[], false);
- Eval(0989, v is EmptyStructGen<int>, false);
- Eval(0990, v is EmptyStructGen<int>[], false);
- Eval(0991, v is EmptyStructGen<int>?, false);
- Eval(0992, v is EmptyStructGen<int>?[], false);
- Eval(0993, v is NotEmptyStructGen<Guid>, false);
- Eval(0994, v is NotEmptyStructGen<Guid>[], false);
- Eval(0995, v is NotEmptyStructGen<Guid>?, false);
- Eval(0996, v is NotEmptyStructGen<Guid>?[], false);
- Eval(0997, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0998, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0999, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1000, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0989, v is EmptyStructGen<int>, false);
+// Eval(0990, v is EmptyStructGen<int>[], false);
+// Eval(0991, v is EmptyStructGen<int>?, false);
+// Eval(0992, v is EmptyStructGen<int>?[], false);
+// Eval(0993, v is NotEmptyStructGen<Guid>, false);
+// Eval(0994, v is NotEmptyStructGen<Guid>[], false);
+// Eval(0995, v is NotEmptyStructGen<Guid>?, false);
+// Eval(0996, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(0997, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0998, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0999, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1000, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1001, v is NestedStruct, false);
Eval(1002, v is NestedStruct[], false);
Eval(1003, v is NestedStruct?, false);
Eval(1004, v is NestedStruct?[], false);
- Eval(1005, v is NestedStructGen<Decimal>, false);
- Eval(1006, v is NestedStructGen<Decimal>[], false);
- Eval(1007, v is NestedStructGen<Decimal>?, false);
- Eval(1008, v is NestedStructGen<Decimal>?[], false);
+// Eval(1005, v is NestedStructGen<Decimal>, false);
+// Eval(1006, v is NestedStructGen<Decimal>[], false);
+// Eval(1007, v is NestedStructGen<Decimal>?, false);
+// Eval(1008, v is NestedStructGen<Decimal>?[], false);
Eval(1009, v is ExplicitFieldOffsetStruct, false);
Eval(1010, v is ExplicitFieldOffsetStruct[], false);
Eval(1011, v is ExplicitFieldOffsetStruct?, false);
@@ -1022,18 +1022,18 @@ internal class Program
Eval(1030, v is ImplementTwoInterface[], false);
Eval(1031, v is ImplementTwoInterface?, false);
Eval(1032, v is ImplementTwoInterface?[], false);
- Eval(1033, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1034, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1035, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1036, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1037, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1038, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1039, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1040, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1041, v is ImplementAllInterface<int>, false);
- Eval(1042, v is ImplementAllInterface<int>[], false);
- Eval(1043, v is ImplementAllInterface<int>?, false);
- Eval(1044, v is ImplementAllInterface<int>?[], false);
+// Eval(1033, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1034, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1035, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1036, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1037, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1038, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1039, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1040, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1041, v is ImplementAllInterface<int>, false);
+// Eval(1042, v is ImplementAllInterface<int>[], false);
+// Eval(1043, v is ImplementAllInterface<int>?, false);
+// Eval(1044, v is ImplementAllInterface<int>?[], false);
Eval(1045, v is IntE, false);
Eval(1046, v is IntE[], false);
Eval(1047, v is IntE?, false);
@@ -1132,38 +1132,38 @@ internal class Program
Eval(1140, v is IEmpty[], false);
Eval(1141, v is INotEmpty, false);
Eval(1142, v is INotEmpty[], false);
- Eval(1143, v is IEmptyGen<int>, false);
- Eval(1144, v is IEmptyGen<int>[], false);
- Eval(1145, v is INotEmptyGen<int>, false);
- Eval(1146, v is INotEmptyGen<int>[], false);
+// Eval(1143, v is IEmptyGen<int>, false);
+// Eval(1144, v is IEmptyGen<int>[], false);
+// Eval(1145, v is INotEmptyGen<int>, false);
+// Eval(1146, v is INotEmptyGen<int>[], false);
Eval(1147, v is SimpleDelegate, false);
Eval(1148, v is SimpleDelegate[], false);
- Eval(1149, v is GenericDelegate<int>, false);
- Eval(1150, v is GenericDelegate<int>[], false);
+// Eval(1149, v is GenericDelegate<int>, false);
+// Eval(1150, v is GenericDelegate<int>[], false);
Eval(1151, v is EmptyClass, false);
Eval(1152, v is EmptyClass[], false);
Eval(1153, v is NotEmptyClass, false);
Eval(1154, v is NotEmptyClass[], false);
- Eval(1155, v is EmptyClassGen<int>, false);
- Eval(1156, v is EmptyClassGen<int>[], false);
- Eval(1157, v is NotEmptyClassGen<Guid>, false);
- Eval(1158, v is NotEmptyClassGen<Guid>[], false);
- Eval(1159, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1160, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1155, v is EmptyClassGen<int>, false);
+// Eval(1156, v is EmptyClassGen<int>[], false);
+// Eval(1157, v is NotEmptyClassGen<Guid>, false);
+// Eval(1158, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1159, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1160, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1161, v is NestedClass, false);
Eval(1162, v is NestedClass[], false);
- Eval(1163, v is NestedClassGen<Decimal>, false);
- Eval(1164, v is NestedClassGen<Decimal>[], false);
+// Eval(1163, v is NestedClassGen<Decimal>, false);
+// Eval(1164, v is NestedClassGen<Decimal>[], false);
Eval(1165, v is ImplementOneInterfaceC, false);
Eval(1166, v is ImplementOneInterfaceC[], false);
Eval(1167, v is ImplementTwoInterfaceC, false);
Eval(1168, v is ImplementTwoInterfaceC[], false);
- Eval(1169, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1170, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1171, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1172, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1173, v is ImplementAllInterfaceC<int>, false);
- Eval(1174, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1169, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1170, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1171, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1172, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1173, v is ImplementAllInterfaceC<int>, false);
+// Eval(1174, v is ImplementAllInterfaceC<int>[], false);
Eval(1175, v is SealedClass, false);
Eval(1176, v is SealedClass[], false);
}
@@ -1177,26 +1177,26 @@ internal class Program
Eval(1182, v is NotEmptyStruct[], false);
Eval(1183, v is NotEmptyStruct?, true);
Eval(1184, v is NotEmptyStruct?[], false);
- Eval(1185, v is EmptyStructGen<int>, false);
- Eval(1186, v is EmptyStructGen<int>[], false);
- Eval(1187, v is EmptyStructGen<int>?, false);
- Eval(1188, v is EmptyStructGen<int>?[], false);
- Eval(1189, v is NotEmptyStructGen<Guid>, false);
- Eval(1190, v is NotEmptyStructGen<Guid>[], false);
- Eval(1191, v is NotEmptyStructGen<Guid>?, false);
- Eval(1192, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1193, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1194, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1195, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1196, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1185, v is EmptyStructGen<int>, false);
+// Eval(1186, v is EmptyStructGen<int>[], false);
+// Eval(1187, v is EmptyStructGen<int>?, false);
+// Eval(1188, v is EmptyStructGen<int>?[], false);
+// Eval(1189, v is NotEmptyStructGen<Guid>, false);
+// Eval(1190, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1191, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1192, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1193, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1194, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1195, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1196, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1197, v is NestedStruct, false);
Eval(1198, v is NestedStruct[], false);
Eval(1199, v is NestedStruct?, false);
Eval(1200, v is NestedStruct?[], false);
- Eval(1201, v is NestedStructGen<Decimal>, false);
- Eval(1202, v is NestedStructGen<Decimal>[], false);
- Eval(1203, v is NestedStructGen<Decimal>?, false);
- Eval(1204, v is NestedStructGen<Decimal>?[], false);
+// Eval(1201, v is NestedStructGen<Decimal>, false);
+// Eval(1202, v is NestedStructGen<Decimal>[], false);
+// Eval(1203, v is NestedStructGen<Decimal>?, false);
+// Eval(1204, v is NestedStructGen<Decimal>?[], false);
Eval(1205, v is ExplicitFieldOffsetStruct, false);
Eval(1206, v is ExplicitFieldOffsetStruct[], false);
Eval(1207, v is ExplicitFieldOffsetStruct?, false);
@@ -1213,18 +1213,18 @@ internal class Program
Eval(1226, v is ImplementTwoInterface[], false);
Eval(1227, v is ImplementTwoInterface?, false);
Eval(1228, v is ImplementTwoInterface?[], false);
- Eval(1229, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1230, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1231, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1232, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1233, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1234, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1235, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1236, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1237, v is ImplementAllInterface<int>, false);
- Eval(1238, v is ImplementAllInterface<int>[], false);
- Eval(1239, v is ImplementAllInterface<int>?, false);
- Eval(1240, v is ImplementAllInterface<int>?[], false);
+// Eval(1229, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1230, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1231, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1232, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1233, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1234, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1235, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1236, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1237, v is ImplementAllInterface<int>, false);
+// Eval(1238, v is ImplementAllInterface<int>[], false);
+// Eval(1239, v is ImplementAllInterface<int>?, false);
+// Eval(1240, v is ImplementAllInterface<int>?[], false);
Eval(1241, v is IntE, false);
Eval(1242, v is IntE[], false);
Eval(1243, v is IntE?, false);
@@ -1323,38 +1323,38 @@ internal class Program
Eval(1336, v is IEmpty[], false);
Eval(1337, v is INotEmpty, false);
Eval(1338, v is INotEmpty[], false);
- Eval(1339, v is IEmptyGen<int>, false);
- Eval(1340, v is IEmptyGen<int>[], false);
- Eval(1341, v is INotEmptyGen<int>, false);
- Eval(1342, v is INotEmptyGen<int>[], false);
+// Eval(1339, v is IEmptyGen<int>, false);
+// Eval(1340, v is IEmptyGen<int>[], false);
+// Eval(1341, v is INotEmptyGen<int>, false);
+// Eval(1342, v is INotEmptyGen<int>[], false);
Eval(1343, v is SimpleDelegate, false);
Eval(1344, v is SimpleDelegate[], false);
- Eval(1345, v is GenericDelegate<int>, false);
- Eval(1346, v is GenericDelegate<int>[], false);
+// Eval(1345, v is GenericDelegate<int>, false);
+// Eval(1346, v is GenericDelegate<int>[], false);
Eval(1347, v is EmptyClass, false);
Eval(1348, v is EmptyClass[], false);
Eval(1349, v is NotEmptyClass, false);
Eval(1350, v is NotEmptyClass[], false);
- Eval(1351, v is EmptyClassGen<int>, false);
- Eval(1352, v is EmptyClassGen<int>[], false);
- Eval(1353, v is NotEmptyClassGen<Guid>, false);
- Eval(1354, v is NotEmptyClassGen<Guid>[], false);
- Eval(1355, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1356, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1351, v is EmptyClassGen<int>, false);
+// Eval(1352, v is EmptyClassGen<int>[], false);
+// Eval(1353, v is NotEmptyClassGen<Guid>, false);
+// Eval(1354, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1355, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1356, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1357, v is NestedClass, false);
Eval(1358, v is NestedClass[], false);
- Eval(1359, v is NestedClassGen<Decimal>, false);
- Eval(1360, v is NestedClassGen<Decimal>[], false);
+// Eval(1359, v is NestedClassGen<Decimal>, false);
+// Eval(1360, v is NestedClassGen<Decimal>[], false);
Eval(1361, v is ImplementOneInterfaceC, false);
Eval(1362, v is ImplementOneInterfaceC[], false);
Eval(1363, v is ImplementTwoInterfaceC, false);
Eval(1364, v is ImplementTwoInterfaceC[], false);
- Eval(1365, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1366, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1367, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1368, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1369, v is ImplementAllInterfaceC<int>, false);
- Eval(1370, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1365, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1366, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1367, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1368, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1369, v is ImplementAllInterfaceC<int>, false);
+// Eval(1370, v is ImplementAllInterfaceC<int>[], false);
Eval(1371, v is SealedClass, false);
Eval(1372, v is SealedClass[], false);
}
@@ -1368,26 +1368,26 @@ internal class Program
Eval(1378, v is NotEmptyStruct[], false);
Eval(1379, v is NotEmptyStruct?, false);
Eval(1380, v is NotEmptyStruct?[], false);
- Eval(1381, v is EmptyStructGen<int>, false);
- Eval(1382, v is EmptyStructGen<int>[], false);
- Eval(1383, v is EmptyStructGen<int>?, false);
- Eval(1384, v is EmptyStructGen<int>?[], false);
- Eval(1385, v is NotEmptyStructGen<Guid>, false);
- Eval(1386, v is NotEmptyStructGen<Guid>[], false);
- Eval(1387, v is NotEmptyStructGen<Guid>?, false);
- Eval(1388, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1389, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1390, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1391, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1392, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1381, v is EmptyStructGen<int>, false);
+// Eval(1382, v is EmptyStructGen<int>[], false);
+// Eval(1383, v is EmptyStructGen<int>?, false);
+// Eval(1384, v is EmptyStructGen<int>?[], false);
+// Eval(1385, v is NotEmptyStructGen<Guid>, false);
+// Eval(1386, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1387, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1388, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1389, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1390, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1391, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1392, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1393, v is NestedStruct, false);
Eval(1394, v is NestedStruct[], false);
Eval(1395, v is NestedStruct?, false);
Eval(1396, v is NestedStruct?[], false);
- Eval(1397, v is NestedStructGen<Decimal>, false);
- Eval(1398, v is NestedStructGen<Decimal>[], false);
- Eval(1399, v is NestedStructGen<Decimal>?, false);
- Eval(1400, v is NestedStructGen<Decimal>?[], false);
+// Eval(1397, v is NestedStructGen<Decimal>, false);
+// Eval(1398, v is NestedStructGen<Decimal>[], false);
+// Eval(1399, v is NestedStructGen<Decimal>?, false);
+// Eval(1400, v is NestedStructGen<Decimal>?[], false);
Eval(1401, v is ExplicitFieldOffsetStruct, false);
Eval(1402, v is ExplicitFieldOffsetStruct[], false);
Eval(1403, v is ExplicitFieldOffsetStruct?, false);
@@ -1404,18 +1404,18 @@ internal class Program
Eval(1422, v is ImplementTwoInterface[], false);
Eval(1423, v is ImplementTwoInterface?, false);
Eval(1424, v is ImplementTwoInterface?[], false);
- Eval(1425, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1426, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1427, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1428, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1429, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1430, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1431, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1432, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1433, v is ImplementAllInterface<int>, false);
- Eval(1434, v is ImplementAllInterface<int>[], false);
- Eval(1435, v is ImplementAllInterface<int>?, false);
- Eval(1436, v is ImplementAllInterface<int>?[], false);
+// Eval(1425, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1426, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1427, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1428, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1429, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1430, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1431, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1432, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1433, v is ImplementAllInterface<int>, false);
+// Eval(1434, v is ImplementAllInterface<int>[], false);
+// Eval(1435, v is ImplementAllInterface<int>?, false);
+// Eval(1436, v is ImplementAllInterface<int>?[], false);
Eval(1437, v is IntE, false);
Eval(1438, v is IntE[], false);
Eval(1439, v is IntE?, false);
@@ -1514,38 +1514,38 @@ internal class Program
Eval(1532, v is IEmpty[], false);
Eval(1533, v is INotEmpty, false);
Eval(1534, v is INotEmpty[], false);
- Eval(1535, v is IEmptyGen<int>, false);
- Eval(1536, v is IEmptyGen<int>[], false);
- Eval(1537, v is INotEmptyGen<int>, false);
- Eval(1538, v is INotEmptyGen<int>[], false);
+// Eval(1535, v is IEmptyGen<int>, false);
+// Eval(1536, v is IEmptyGen<int>[], false);
+// Eval(1537, v is INotEmptyGen<int>, false);
+// Eval(1538, v is INotEmptyGen<int>[], false);
Eval(1539, v is SimpleDelegate, false);
Eval(1540, v is SimpleDelegate[], false);
- Eval(1541, v is GenericDelegate<int>, false);
- Eval(1542, v is GenericDelegate<int>[], false);
+// Eval(1541, v is GenericDelegate<int>, false);
+// Eval(1542, v is GenericDelegate<int>[], false);
Eval(1543, v is EmptyClass, false);
Eval(1544, v is EmptyClass[], false);
Eval(1545, v is NotEmptyClass, false);
Eval(1546, v is NotEmptyClass[], false);
- Eval(1547, v is EmptyClassGen<int>, false);
- Eval(1548, v is EmptyClassGen<int>[], false);
- Eval(1549, v is NotEmptyClassGen<Guid>, false);
- Eval(1550, v is NotEmptyClassGen<Guid>[], false);
- Eval(1551, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1552, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1547, v is EmptyClassGen<int>, false);
+// Eval(1548, v is EmptyClassGen<int>[], false);
+// Eval(1549, v is NotEmptyClassGen<Guid>, false);
+// Eval(1550, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1551, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1552, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1553, v is NestedClass, false);
Eval(1554, v is NestedClass[], false);
- Eval(1555, v is NestedClassGen<Decimal>, false);
- Eval(1556, v is NestedClassGen<Decimal>[], false);
+// Eval(1555, v is NestedClassGen<Decimal>, false);
+// Eval(1556, v is NestedClassGen<Decimal>[], false);
Eval(1557, v is ImplementOneInterfaceC, false);
Eval(1558, v is ImplementOneInterfaceC[], false);
Eval(1559, v is ImplementTwoInterfaceC, false);
Eval(1560, v is ImplementTwoInterfaceC[], false);
- Eval(1561, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1562, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1563, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1564, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1565, v is ImplementAllInterfaceC<int>, false);
- Eval(1566, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1561, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1562, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1563, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1564, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1565, v is ImplementAllInterfaceC<int>, false);
+// Eval(1566, v is ImplementAllInterfaceC<int>[], false);
Eval(1567, v is SealedClass, false);
Eval(1568, v is SealedClass[], false);
}
@@ -1559,26 +1559,26 @@ internal class Program
Eval(1574, v is NotEmptyStruct[], false);
Eval(1575, v is NotEmptyStruct?, false);
Eval(1576, v is NotEmptyStruct?[], false);
- Eval(1577, v is EmptyStructGen<int>, false);
- Eval(1578, v is EmptyStructGen<int>[], false);
- Eval(1579, v is EmptyStructGen<int>?, false);
- Eval(1580, v is EmptyStructGen<int>?[], false);
- Eval(1581, v is NotEmptyStructGen<Guid>, false);
- Eval(1582, v is NotEmptyStructGen<Guid>[], false);
- Eval(1583, v is NotEmptyStructGen<Guid>?, false);
- Eval(1584, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1585, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1586, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1587, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1588, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1577, v is EmptyStructGen<int>, false);
+// Eval(1578, v is EmptyStructGen<int>[], false);
+// Eval(1579, v is EmptyStructGen<int>?, false);
+// Eval(1580, v is EmptyStructGen<int>?[], false);
+// Eval(1581, v is NotEmptyStructGen<Guid>, false);
+// Eval(1582, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1583, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1584, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1585, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1586, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1587, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1588, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1589, v is NestedStruct, false);
Eval(1590, v is NestedStruct[], false);
Eval(1591, v is NestedStruct?, false);
Eval(1592, v is NestedStruct?[], false);
- Eval(1593, v is NestedStructGen<Decimal>, false);
- Eval(1594, v is NestedStructGen<Decimal>[], false);
- Eval(1595, v is NestedStructGen<Decimal>?, false);
- Eval(1596, v is NestedStructGen<Decimal>?[], false);
+// Eval(1593, v is NestedStructGen<Decimal>, false);
+// Eval(1594, v is NestedStructGen<Decimal>[], false);
+// Eval(1595, v is NestedStructGen<Decimal>?, false);
+// Eval(1596, v is NestedStructGen<Decimal>?[], false);
Eval(1597, v is ExplicitFieldOffsetStruct, false);
Eval(1598, v is ExplicitFieldOffsetStruct[], false);
Eval(1599, v is ExplicitFieldOffsetStruct?, false);
@@ -1595,18 +1595,18 @@ internal class Program
Eval(1618, v is ImplementTwoInterface[], false);
Eval(1619, v is ImplementTwoInterface?, false);
Eval(1620, v is ImplementTwoInterface?[], false);
- Eval(1621, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1622, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1623, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1624, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1625, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1626, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1627, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1628, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1629, v is ImplementAllInterface<int>, false);
- Eval(1630, v is ImplementAllInterface<int>[], false);
- Eval(1631, v is ImplementAllInterface<int>?, false);
- Eval(1632, v is ImplementAllInterface<int>?[], false);
+// Eval(1621, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1622, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1623, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1624, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1625, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1626, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1627, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1628, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1629, v is ImplementAllInterface<int>, false);
+// Eval(1630, v is ImplementAllInterface<int>[], false);
+// Eval(1631, v is ImplementAllInterface<int>?, false);
+// Eval(1632, v is ImplementAllInterface<int>?[], false);
Eval(1633, v is IntE, false);
Eval(1634, v is IntE[], false);
Eval(1635, v is IntE?, false);
@@ -1705,38 +1705,38 @@ internal class Program
Eval(1728, v is IEmpty[], false);
Eval(1729, v is INotEmpty, false);
Eval(1730, v is INotEmpty[], false);
- Eval(1731, v is IEmptyGen<int>, false);
- Eval(1732, v is IEmptyGen<int>[], false);
- Eval(1733, v is INotEmptyGen<int>, false);
- Eval(1734, v is INotEmptyGen<int>[], false);
+// Eval(1731, v is IEmptyGen<int>, false);
+// Eval(1732, v is IEmptyGen<int>[], false);
+// Eval(1733, v is INotEmptyGen<int>, false);
+// Eval(1734, v is INotEmptyGen<int>[], false);
Eval(1735, v is SimpleDelegate, false);
Eval(1736, v is SimpleDelegate[], false);
- Eval(1737, v is GenericDelegate<int>, false);
- Eval(1738, v is GenericDelegate<int>[], false);
+// Eval(1737, v is GenericDelegate<int>, false);
+// Eval(1738, v is GenericDelegate<int>[], false);
Eval(1739, v is EmptyClass, false);
Eval(1740, v is EmptyClass[], false);
Eval(1741, v is NotEmptyClass, false);
Eval(1742, v is NotEmptyClass[], false);
- Eval(1743, v is EmptyClassGen<int>, false);
- Eval(1744, v is EmptyClassGen<int>[], false);
- Eval(1745, v is NotEmptyClassGen<Guid>, false);
- Eval(1746, v is NotEmptyClassGen<Guid>[], false);
- Eval(1747, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1748, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1743, v is EmptyClassGen<int>, false);
+// Eval(1744, v is EmptyClassGen<int>[], false);
+// Eval(1745, v is NotEmptyClassGen<Guid>, false);
+// Eval(1746, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1747, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1748, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1749, v is NestedClass, false);
Eval(1750, v is NestedClass[], false);
- Eval(1751, v is NestedClassGen<Decimal>, false);
- Eval(1752, v is NestedClassGen<Decimal>[], false);
+// Eval(1751, v is NestedClassGen<Decimal>, false);
+// Eval(1752, v is NestedClassGen<Decimal>[], false);
Eval(1753, v is ImplementOneInterfaceC, false);
Eval(1754, v is ImplementOneInterfaceC[], false);
Eval(1755, v is ImplementTwoInterfaceC, false);
Eval(1756, v is ImplementTwoInterfaceC[], false);
- Eval(1757, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1758, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1759, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1760, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1761, v is ImplementAllInterfaceC<int>, false);
- Eval(1762, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1757, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1758, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1759, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1760, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1761, v is ImplementAllInterfaceC<int>, false);
+// Eval(1762, v is ImplementAllInterfaceC<int>[], false);
Eval(1763, v is SealedClass, false);
Eval(1764, v is SealedClass[], false);
}
@@ -1750,26 +1750,26 @@ internal class Program
Eval(1770, v is NotEmptyStruct[], false);
Eval(1771, v is NotEmptyStruct?, false);
Eval(1772, v is NotEmptyStruct?[], true);
- Eval(1773, v is EmptyStructGen<int>, false);
- Eval(1774, v is EmptyStructGen<int>[], false);
- Eval(1775, v is EmptyStructGen<int>?, false);
- Eval(1776, v is EmptyStructGen<int>?[], false);
- Eval(1777, v is NotEmptyStructGen<Guid>, false);
- Eval(1778, v is NotEmptyStructGen<Guid>[], false);
- Eval(1779, v is NotEmptyStructGen<Guid>?, false);
- Eval(1780, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1781, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1782, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1783, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1784, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1773, v is EmptyStructGen<int>, false);
+// Eval(1774, v is EmptyStructGen<int>[], false);
+// Eval(1775, v is EmptyStructGen<int>?, false);
+// Eval(1776, v is EmptyStructGen<int>?[], false);
+// Eval(1777, v is NotEmptyStructGen<Guid>, false);
+// Eval(1778, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1779, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1780, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1781, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1782, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1783, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1784, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1785, v is NestedStruct, false);
Eval(1786, v is NestedStruct[], false);
Eval(1787, v is NestedStruct?, false);
Eval(1788, v is NestedStruct?[], false);
- Eval(1789, v is NestedStructGen<Decimal>, false);
- Eval(1790, v is NestedStructGen<Decimal>[], false);
- Eval(1791, v is NestedStructGen<Decimal>?, false);
- Eval(1792, v is NestedStructGen<Decimal>?[], false);
+// Eval(1789, v is NestedStructGen<Decimal>, false);
+// Eval(1790, v is NestedStructGen<Decimal>[], false);
+// Eval(1791, v is NestedStructGen<Decimal>?, false);
+// Eval(1792, v is NestedStructGen<Decimal>?[], false);
Eval(1793, v is ExplicitFieldOffsetStruct, false);
Eval(1794, v is ExplicitFieldOffsetStruct[], false);
Eval(1795, v is ExplicitFieldOffsetStruct?, false);
@@ -1786,18 +1786,18 @@ internal class Program
Eval(1814, v is ImplementTwoInterface[], false);
Eval(1815, v is ImplementTwoInterface?, false);
Eval(1816, v is ImplementTwoInterface?[], false);
- Eval(1817, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1818, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1819, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1820, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1821, v is ImplementTwoInterfaceGen<int>, false);
- Eval(1822, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(1823, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(1824, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1825, v is ImplementAllInterface<int>, false);
- Eval(1826, v is ImplementAllInterface<int>[], false);
- Eval(1827, v is ImplementAllInterface<int>?, false);
- Eval(1828, v is ImplementAllInterface<int>?[], false);
+// Eval(1817, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1818, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1819, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1820, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1821, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(1822, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1823, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1824, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1825, v is ImplementAllInterface<int>, false);
+// Eval(1826, v is ImplementAllInterface<int>[], false);
+// Eval(1827, v is ImplementAllInterface<int>?, false);
+// Eval(1828, v is ImplementAllInterface<int>?[], false);
Eval(1829, v is IntE, false);
Eval(1830, v is IntE[], false);
Eval(1831, v is IntE?, false);
@@ -1896,38 +1896,38 @@ internal class Program
Eval(1924, v is IEmpty[], false);
Eval(1925, v is INotEmpty, false);
Eval(1926, v is INotEmpty[], false);
- Eval(1927, v is IEmptyGen<int>, false);
- Eval(1928, v is IEmptyGen<int>[], false);
- Eval(1929, v is INotEmptyGen<int>, false);
- Eval(1930, v is INotEmptyGen<int>[], false);
+// Eval(1927, v is IEmptyGen<int>, false);
+// Eval(1928, v is IEmptyGen<int>[], false);
+// Eval(1929, v is INotEmptyGen<int>, false);
+// Eval(1930, v is INotEmptyGen<int>[], false);
Eval(1931, v is SimpleDelegate, false);
Eval(1932, v is SimpleDelegate[], false);
- Eval(1933, v is GenericDelegate<int>, false);
- Eval(1934, v is GenericDelegate<int>[], false);
+// Eval(1933, v is GenericDelegate<int>, false);
+// Eval(1934, v is GenericDelegate<int>[], false);
Eval(1935, v is EmptyClass, false);
Eval(1936, v is EmptyClass[], false);
Eval(1937, v is NotEmptyClass, false);
Eval(1938, v is NotEmptyClass[], false);
- Eval(1939, v is EmptyClassGen<int>, false);
- Eval(1940, v is EmptyClassGen<int>[], false);
- Eval(1941, v is NotEmptyClassGen<Guid>, false);
- Eval(1942, v is NotEmptyClassGen<Guid>[], false);
- Eval(1943, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(1944, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1939, v is EmptyClassGen<int>, false);
+// Eval(1940, v is EmptyClassGen<int>[], false);
+// Eval(1941, v is NotEmptyClassGen<Guid>, false);
+// Eval(1942, v is NotEmptyClassGen<Guid>[], false);
+// Eval(1943, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1944, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(1945, v is NestedClass, false);
Eval(1946, v is NestedClass[], false);
- Eval(1947, v is NestedClassGen<Decimal>, false);
- Eval(1948, v is NestedClassGen<Decimal>[], false);
+// Eval(1947, v is NestedClassGen<Decimal>, false);
+// Eval(1948, v is NestedClassGen<Decimal>[], false);
Eval(1949, v is ImplementOneInterfaceC, false);
Eval(1950, v is ImplementOneInterfaceC[], false);
Eval(1951, v is ImplementTwoInterfaceC, false);
Eval(1952, v is ImplementTwoInterfaceC[], false);
- Eval(1953, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1954, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1955, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(1956, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1957, v is ImplementAllInterfaceC<int>, false);
- Eval(1958, v is ImplementAllInterfaceC<int>[], false);
+// Eval(1953, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1954, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1955, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1956, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1957, v is ImplementAllInterfaceC<int>, false);
+// Eval(1958, v is ImplementAllInterfaceC<int>[], false);
Eval(1959, v is SealedClass, false);
Eval(1960, v is SealedClass[], false);
}
@@ -1944,26 +1944,26 @@ internal class Program
Eval(1966, v is NotEmptyStruct[], false);
Eval(1967, v is NotEmptyStruct?, false);
Eval(1968, v is NotEmptyStruct?[], false);
- Eval(1969, v is EmptyStructGen<int>, true);
- Eval(1970, v is EmptyStructGen<int>[], false);
- Eval(1971, v is EmptyStructGen<int>?, true);
- Eval(1972, v is EmptyStructGen<int>?[], false);
- Eval(1973, v is NotEmptyStructGen<Guid>, false);
- Eval(1974, v is NotEmptyStructGen<Guid>[], false);
- Eval(1975, v is NotEmptyStructGen<Guid>?, false);
- Eval(1976, v is NotEmptyStructGen<Guid>?[], false);
- Eval(1977, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1978, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1979, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1980, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1969, v is EmptyStructGen<int>, true);
+// Eval(1970, v is EmptyStructGen<int>[], false);
+// Eval(1971, v is EmptyStructGen<int>?, true);
+// Eval(1972, v is EmptyStructGen<int>?[], false);
+// Eval(1973, v is NotEmptyStructGen<Guid>, false);
+// Eval(1974, v is NotEmptyStructGen<Guid>[], false);
+// Eval(1975, v is NotEmptyStructGen<Guid>?, false);
+// Eval(1976, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(1977, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1978, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1979, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1980, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1981, v is NestedStruct, false);
Eval(1982, v is NestedStruct[], false);
Eval(1983, v is NestedStruct?, false);
Eval(1984, v is NestedStruct?[], false);
- Eval(1985, v is NestedStructGen<Decimal>, false);
- Eval(1986, v is NestedStructGen<Decimal>[], false);
- Eval(1987, v is NestedStructGen<Decimal>?, false);
- Eval(1988, v is NestedStructGen<Decimal>?[], false);
+// Eval(1985, v is NestedStructGen<Decimal>, false);
+// Eval(1986, v is NestedStructGen<Decimal>[], false);
+// Eval(1987, v is NestedStructGen<Decimal>?, false);
+// Eval(1988, v is NestedStructGen<Decimal>?[], false);
Eval(1989, v is ExplicitFieldOffsetStruct, false);
Eval(1990, v is ExplicitFieldOffsetStruct[], false);
Eval(1991, v is ExplicitFieldOffsetStruct?, false);
@@ -1980,18 +1980,18 @@ internal class Program
Eval(2010, v is ImplementTwoInterface[], false);
Eval(2011, v is ImplementTwoInterface?, false);
Eval(2012, v is ImplementTwoInterface?[], false);
- Eval(2013, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2014, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2015, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2016, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2017, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2018, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2019, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2020, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2021, v is ImplementAllInterface<int>, false);
- Eval(2022, v is ImplementAllInterface<int>[], false);
- Eval(2023, v is ImplementAllInterface<int>?, false);
- Eval(2024, v is ImplementAllInterface<int>?[], false);
+// Eval(2013, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2014, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2015, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2016, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2017, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2018, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2019, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2020, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2021, v is ImplementAllInterface<int>, false);
+// Eval(2022, v is ImplementAllInterface<int>[], false);
+// Eval(2023, v is ImplementAllInterface<int>?, false);
+// Eval(2024, v is ImplementAllInterface<int>?[], false);
Eval(2025, v is IntE, false);
Eval(2026, v is IntE[], false);
Eval(2027, v is IntE?, false);
@@ -2090,38 +2090,38 @@ internal class Program
Eval(2120, v is IEmpty[], false);
Eval(2121, v is INotEmpty, false);
Eval(2122, v is INotEmpty[], false);
- Eval(2123, v is IEmptyGen<int>, false);
- Eval(2124, v is IEmptyGen<int>[], false);
- Eval(2125, v is INotEmptyGen<int>, false);
- Eval(2126, v is INotEmptyGen<int>[], false);
+// Eval(2123, v is IEmptyGen<int>, false);
+// Eval(2124, v is IEmptyGen<int>[], false);
+// Eval(2125, v is INotEmptyGen<int>, false);
+// Eval(2126, v is INotEmptyGen<int>[], false);
Eval(2127, v is SimpleDelegate, false);
Eval(2128, v is SimpleDelegate[], false);
- Eval(2129, v is GenericDelegate<int>, false);
- Eval(2130, v is GenericDelegate<int>[], false);
+// Eval(2129, v is GenericDelegate<int>, false);
+// Eval(2130, v is GenericDelegate<int>[], false);
Eval(2131, v is EmptyClass, false);
Eval(2132, v is EmptyClass[], false);
Eval(2133, v is NotEmptyClass, false);
Eval(2134, v is NotEmptyClass[], false);
- Eval(2135, v is EmptyClassGen<int>, false);
- Eval(2136, v is EmptyClassGen<int>[], false);
- Eval(2137, v is NotEmptyClassGen<Guid>, false);
- Eval(2138, v is NotEmptyClassGen<Guid>[], false);
- Eval(2139, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2140, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2135, v is EmptyClassGen<int>, false);
+// Eval(2136, v is EmptyClassGen<int>[], false);
+// Eval(2137, v is NotEmptyClassGen<Guid>, false);
+// Eval(2138, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2139, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2140, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2141, v is NestedClass, false);
Eval(2142, v is NestedClass[], false);
- Eval(2143, v is NestedClassGen<Decimal>, false);
- Eval(2144, v is NestedClassGen<Decimal>[], false);
+// Eval(2143, v is NestedClassGen<Decimal>, false);
+// Eval(2144, v is NestedClassGen<Decimal>[], false);
Eval(2145, v is ImplementOneInterfaceC, false);
Eval(2146, v is ImplementOneInterfaceC[], false);
Eval(2147, v is ImplementTwoInterfaceC, false);
Eval(2148, v is ImplementTwoInterfaceC[], false);
- Eval(2149, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2150, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2151, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2152, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2153, v is ImplementAllInterfaceC<int>, false);
- Eval(2154, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2149, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2150, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2151, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2152, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2153, v is ImplementAllInterfaceC<int>, false);
+// Eval(2154, v is ImplementAllInterfaceC<int>[], false);
Eval(2155, v is SealedClass, false);
Eval(2156, v is SealedClass[], false);
}
@@ -2135,26 +2135,26 @@ internal class Program
Eval(2162, v is NotEmptyStruct[], false);
Eval(2163, v is NotEmptyStruct?, false);
Eval(2164, v is NotEmptyStruct?[], false);
- Eval(2165, v is EmptyStructGen<int>, true);
- Eval(2166, v is EmptyStructGen<int>[], false);
- Eval(2167, v is EmptyStructGen<int>?, true);
- Eval(2168, v is EmptyStructGen<int>?[], false);
- Eval(2169, v is NotEmptyStructGen<Guid>, false);
- Eval(2170, v is NotEmptyStructGen<Guid>[], false);
- Eval(2171, v is NotEmptyStructGen<Guid>?, false);
- Eval(2172, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2173, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2174, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2175, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2176, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2165, v is EmptyStructGen<int>, true);
+// Eval(2166, v is EmptyStructGen<int>[], false);
+// Eval(2167, v is EmptyStructGen<int>?, true);
+// Eval(2168, v is EmptyStructGen<int>?[], false);
+// Eval(2169, v is NotEmptyStructGen<Guid>, false);
+// Eval(2170, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2171, v is NotEmptyStructGen<Guid>?, false);
+// Eval(2172, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2173, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2174, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2175, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2176, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2177, v is NestedStruct, false);
Eval(2178, v is NestedStruct[], false);
Eval(2179, v is NestedStruct?, false);
Eval(2180, v is NestedStruct?[], false);
- Eval(2181, v is NestedStructGen<Decimal>, false);
- Eval(2182, v is NestedStructGen<Decimal>[], false);
- Eval(2183, v is NestedStructGen<Decimal>?, false);
- Eval(2184, v is NestedStructGen<Decimal>?[], false);
+// Eval(2181, v is NestedStructGen<Decimal>, false);
+// Eval(2182, v is NestedStructGen<Decimal>[], false);
+// Eval(2183, v is NestedStructGen<Decimal>?, false);
+// Eval(2184, v is NestedStructGen<Decimal>?[], false);
Eval(2185, v is ExplicitFieldOffsetStruct, false);
Eval(2186, v is ExplicitFieldOffsetStruct[], false);
Eval(2187, v is ExplicitFieldOffsetStruct?, false);
@@ -2171,18 +2171,18 @@ internal class Program
Eval(2206, v is ImplementTwoInterface[], false);
Eval(2207, v is ImplementTwoInterface?, false);
Eval(2208, v is ImplementTwoInterface?[], false);
- Eval(2209, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2210, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2211, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2212, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2213, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2214, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2215, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2216, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2217, v is ImplementAllInterface<int>, false);
- Eval(2218, v is ImplementAllInterface<int>[], false);
- Eval(2219, v is ImplementAllInterface<int>?, false);
- Eval(2220, v is ImplementAllInterface<int>?[], false);
+// Eval(2209, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2210, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2211, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2212, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2213, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2214, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2215, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2216, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2217, v is ImplementAllInterface<int>, false);
+// Eval(2218, v is ImplementAllInterface<int>[], false);
+// Eval(2219, v is ImplementAllInterface<int>?, false);
+// Eval(2220, v is ImplementAllInterface<int>?[], false);
Eval(2221, v is IntE, false);
Eval(2222, v is IntE[], false);
Eval(2223, v is IntE?, false);
@@ -2281,38 +2281,38 @@ internal class Program
Eval(2316, v is IEmpty[], false);
Eval(2317, v is INotEmpty, false);
Eval(2318, v is INotEmpty[], false);
- Eval(2319, v is IEmptyGen<int>, false);
- Eval(2320, v is IEmptyGen<int>[], false);
- Eval(2321, v is INotEmptyGen<int>, false);
- Eval(2322, v is INotEmptyGen<int>[], false);
+// Eval(2319, v is IEmptyGen<int>, false);
+// Eval(2320, v is IEmptyGen<int>[], false);
+// Eval(2321, v is INotEmptyGen<int>, false);
+// Eval(2322, v is INotEmptyGen<int>[], false);
Eval(2323, v is SimpleDelegate, false);
Eval(2324, v is SimpleDelegate[], false);
- Eval(2325, v is GenericDelegate<int>, false);
- Eval(2326, v is GenericDelegate<int>[], false);
+// Eval(2325, v is GenericDelegate<int>, false);
+// Eval(2326, v is GenericDelegate<int>[], false);
Eval(2327, v is EmptyClass, false);
Eval(2328, v is EmptyClass[], false);
Eval(2329, v is NotEmptyClass, false);
Eval(2330, v is NotEmptyClass[], false);
- Eval(2331, v is EmptyClassGen<int>, false);
- Eval(2332, v is EmptyClassGen<int>[], false);
- Eval(2333, v is NotEmptyClassGen<Guid>, false);
- Eval(2334, v is NotEmptyClassGen<Guid>[], false);
- Eval(2335, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2336, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2331, v is EmptyClassGen<int>, false);
+// Eval(2332, v is EmptyClassGen<int>[], false);
+// Eval(2333, v is NotEmptyClassGen<Guid>, false);
+// Eval(2334, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2335, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2336, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2337, v is NestedClass, false);
Eval(2338, v is NestedClass[], false);
- Eval(2339, v is NestedClassGen<Decimal>, false);
- Eval(2340, v is NestedClassGen<Decimal>[], false);
+// Eval(2339, v is NestedClassGen<Decimal>, false);
+// Eval(2340, v is NestedClassGen<Decimal>[], false);
Eval(2341, v is ImplementOneInterfaceC, false);
Eval(2342, v is ImplementOneInterfaceC[], false);
Eval(2343, v is ImplementTwoInterfaceC, false);
Eval(2344, v is ImplementTwoInterfaceC[], false);
- Eval(2345, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2346, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2347, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2348, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2349, v is ImplementAllInterfaceC<int>, false);
- Eval(2350, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2345, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2346, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2347, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2348, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2349, v is ImplementAllInterfaceC<int>, false);
+// Eval(2350, v is ImplementAllInterfaceC<int>[], false);
Eval(2351, v is SealedClass, false);
Eval(2352, v is SealedClass[], false);
}
@@ -2326,26 +2326,26 @@ internal class Program
Eval(2358, v is NotEmptyStruct[], false);
Eval(2359, v is NotEmptyStruct?, false);
Eval(2360, v is NotEmptyStruct?[], false);
- Eval(2361, v is EmptyStructGen<int>, false);
- Eval(2362, v is EmptyStructGen<int>[], false);
- Eval(2363, v is EmptyStructGen<int>?, false);
- Eval(2364, v is EmptyStructGen<int>?[], false);
- Eval(2365, v is NotEmptyStructGen<Guid>, false);
- Eval(2366, v is NotEmptyStructGen<Guid>[], false);
- Eval(2367, v is NotEmptyStructGen<Guid>?, false);
- Eval(2368, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2369, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2370, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2371, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2372, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2361, v is EmptyStructGen<int>, false);
+// Eval(2362, v is EmptyStructGen<int>[], false);
+// Eval(2363, v is EmptyStructGen<int>?, false);
+// Eval(2364, v is EmptyStructGen<int>?[], false);
+// Eval(2365, v is NotEmptyStructGen<Guid>, false);
+// Eval(2366, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2367, v is NotEmptyStructGen<Guid>?, false);
+// Eval(2368, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2369, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2370, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2371, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2372, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2373, v is NestedStruct, false);
Eval(2374, v is NestedStruct[], false);
Eval(2375, v is NestedStruct?, false);
Eval(2376, v is NestedStruct?[], false);
- Eval(2377, v is NestedStructGen<Decimal>, false);
- Eval(2378, v is NestedStructGen<Decimal>[], false);
- Eval(2379, v is NestedStructGen<Decimal>?, false);
- Eval(2380, v is NestedStructGen<Decimal>?[], false);
+// Eval(2377, v is NestedStructGen<Decimal>, false);
+// Eval(2378, v is NestedStructGen<Decimal>[], false);
+// Eval(2379, v is NestedStructGen<Decimal>?, false);
+// Eval(2380, v is NestedStructGen<Decimal>?[], false);
Eval(2381, v is ExplicitFieldOffsetStruct, false);
Eval(2382, v is ExplicitFieldOffsetStruct[], false);
Eval(2383, v is ExplicitFieldOffsetStruct?, false);
@@ -2362,18 +2362,18 @@ internal class Program
Eval(2402, v is ImplementTwoInterface[], false);
Eval(2403, v is ImplementTwoInterface?, false);
Eval(2404, v is ImplementTwoInterface?[], false);
- Eval(2405, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2406, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2407, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2408, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2409, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2410, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2411, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2412, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2413, v is ImplementAllInterface<int>, false);
- Eval(2414, v is ImplementAllInterface<int>[], false);
- Eval(2415, v is ImplementAllInterface<int>?, false);
- Eval(2416, v is ImplementAllInterface<int>?[], false);
+// Eval(2405, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2406, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2407, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2408, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2409, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2410, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2411, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2412, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2413, v is ImplementAllInterface<int>, false);
+// Eval(2414, v is ImplementAllInterface<int>[], false);
+// Eval(2415, v is ImplementAllInterface<int>?, false);
+// Eval(2416, v is ImplementAllInterface<int>?[], false);
Eval(2417, v is IntE, false);
Eval(2418, v is IntE[], false);
Eval(2419, v is IntE?, false);
@@ -2472,38 +2472,38 @@ internal class Program
Eval(2512, v is IEmpty[], false);
Eval(2513, v is INotEmpty, false);
Eval(2514, v is INotEmpty[], false);
- Eval(2515, v is IEmptyGen<int>, false);
- Eval(2516, v is IEmptyGen<int>[], false);
- Eval(2517, v is INotEmptyGen<int>, false);
- Eval(2518, v is INotEmptyGen<int>[], false);
+// Eval(2515, v is IEmptyGen<int>, false);
+// Eval(2516, v is IEmptyGen<int>[], false);
+// Eval(2517, v is INotEmptyGen<int>, false);
+// Eval(2518, v is INotEmptyGen<int>[], false);
Eval(2519, v is SimpleDelegate, false);
Eval(2520, v is SimpleDelegate[], false);
- Eval(2521, v is GenericDelegate<int>, false);
- Eval(2522, v is GenericDelegate<int>[], false);
+// Eval(2521, v is GenericDelegate<int>, false);
+// Eval(2522, v is GenericDelegate<int>[], false);
Eval(2523, v is EmptyClass, false);
Eval(2524, v is EmptyClass[], false);
Eval(2525, v is NotEmptyClass, false);
Eval(2526, v is NotEmptyClass[], false);
- Eval(2527, v is EmptyClassGen<int>, false);
- Eval(2528, v is EmptyClassGen<int>[], false);
- Eval(2529, v is NotEmptyClassGen<Guid>, false);
- Eval(2530, v is NotEmptyClassGen<Guid>[], false);
- Eval(2531, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2532, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2527, v is EmptyClassGen<int>, false);
+// Eval(2528, v is EmptyClassGen<int>[], false);
+// Eval(2529, v is NotEmptyClassGen<Guid>, false);
+// Eval(2530, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2531, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2532, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2533, v is NestedClass, false);
Eval(2534, v is NestedClass[], false);
- Eval(2535, v is NestedClassGen<Decimal>, false);
- Eval(2536, v is NestedClassGen<Decimal>[], false);
+// Eval(2535, v is NestedClassGen<Decimal>, false);
+// Eval(2536, v is NestedClassGen<Decimal>[], false);
Eval(2537, v is ImplementOneInterfaceC, false);
Eval(2538, v is ImplementOneInterfaceC[], false);
Eval(2539, v is ImplementTwoInterfaceC, false);
Eval(2540, v is ImplementTwoInterfaceC[], false);
- Eval(2541, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2542, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2543, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2544, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2545, v is ImplementAllInterfaceC<int>, false);
- Eval(2546, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2541, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2542, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2543, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2544, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2545, v is ImplementAllInterfaceC<int>, false);
+// Eval(2546, v is ImplementAllInterfaceC<int>[], false);
Eval(2547, v is SealedClass, false);
Eval(2548, v is SealedClass[], false);
}
@@ -2517,26 +2517,26 @@ internal class Program
Eval(2554, v is NotEmptyStruct[], false);
Eval(2555, v is NotEmptyStruct?, false);
Eval(2556, v is NotEmptyStruct?[], false);
- Eval(2557, v is EmptyStructGen<int>, false);
- Eval(2558, v is EmptyStructGen<int>[], false);
- Eval(2559, v is EmptyStructGen<int>?, false);
- Eval(2560, v is EmptyStructGen<int>?[], false);
- Eval(2561, v is NotEmptyStructGen<Guid>, false);
- Eval(2562, v is NotEmptyStructGen<Guid>[], false);
- Eval(2563, v is NotEmptyStructGen<Guid>?, false);
- Eval(2564, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2565, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2566, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2567, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2568, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2557, v is EmptyStructGen<int>, false);
+// Eval(2558, v is EmptyStructGen<int>[], false);
+// Eval(2559, v is EmptyStructGen<int>?, false);
+// Eval(2560, v is EmptyStructGen<int>?[], false);
+// Eval(2561, v is NotEmptyStructGen<Guid>, false);
+// Eval(2562, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2563, v is NotEmptyStructGen<Guid>?, false);
+// Eval(2564, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2565, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2566, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2567, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2568, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2569, v is NestedStruct, false);
Eval(2570, v is NestedStruct[], false);
Eval(2571, v is NestedStruct?, false);
Eval(2572, v is NestedStruct?[], false);
- Eval(2573, v is NestedStructGen<Decimal>, false);
- Eval(2574, v is NestedStructGen<Decimal>[], false);
- Eval(2575, v is NestedStructGen<Decimal>?, false);
- Eval(2576, v is NestedStructGen<Decimal>?[], false);
+// Eval(2573, v is NestedStructGen<Decimal>, false);
+// Eval(2574, v is NestedStructGen<Decimal>[], false);
+// Eval(2575, v is NestedStructGen<Decimal>?, false);
+// Eval(2576, v is NestedStructGen<Decimal>?[], false);
Eval(2577, v is ExplicitFieldOffsetStruct, false);
Eval(2578, v is ExplicitFieldOffsetStruct[], false);
Eval(2579, v is ExplicitFieldOffsetStruct?, false);
@@ -2553,18 +2553,18 @@ internal class Program
Eval(2598, v is ImplementTwoInterface[], false);
Eval(2599, v is ImplementTwoInterface?, false);
Eval(2600, v is ImplementTwoInterface?[], false);
- Eval(2601, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2602, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2603, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2604, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2605, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2606, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2607, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2608, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2609, v is ImplementAllInterface<int>, false);
- Eval(2610, v is ImplementAllInterface<int>[], false);
- Eval(2611, v is ImplementAllInterface<int>?, false);
- Eval(2612, v is ImplementAllInterface<int>?[], false);
+// Eval(2601, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2602, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2603, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2604, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2605, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2606, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2607, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2608, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2609, v is ImplementAllInterface<int>, false);
+// Eval(2610, v is ImplementAllInterface<int>[], false);
+// Eval(2611, v is ImplementAllInterface<int>?, false);
+// Eval(2612, v is ImplementAllInterface<int>?[], false);
Eval(2613, v is IntE, false);
Eval(2614, v is IntE[], false);
Eval(2615, v is IntE?, false);
@@ -2663,38 +2663,38 @@ internal class Program
Eval(2708, v is IEmpty[], false);
Eval(2709, v is INotEmpty, false);
Eval(2710, v is INotEmpty[], false);
- Eval(2711, v is IEmptyGen<int>, false);
- Eval(2712, v is IEmptyGen<int>[], false);
- Eval(2713, v is INotEmptyGen<int>, false);
- Eval(2714, v is INotEmptyGen<int>[], false);
+// Eval(2711, v is IEmptyGen<int>, false);
+// Eval(2712, v is IEmptyGen<int>[], false);
+// Eval(2713, v is INotEmptyGen<int>, false);
+// Eval(2714, v is INotEmptyGen<int>[], false);
Eval(2715, v is SimpleDelegate, false);
Eval(2716, v is SimpleDelegate[], false);
- Eval(2717, v is GenericDelegate<int>, false);
- Eval(2718, v is GenericDelegate<int>[], false);
+// Eval(2717, v is GenericDelegate<int>, false);
+// Eval(2718, v is GenericDelegate<int>[], false);
Eval(2719, v is EmptyClass, false);
Eval(2720, v is EmptyClass[], false);
Eval(2721, v is NotEmptyClass, false);
Eval(2722, v is NotEmptyClass[], false);
- Eval(2723, v is EmptyClassGen<int>, false);
- Eval(2724, v is EmptyClassGen<int>[], false);
- Eval(2725, v is NotEmptyClassGen<Guid>, false);
- Eval(2726, v is NotEmptyClassGen<Guid>[], false);
- Eval(2727, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2728, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2723, v is EmptyClassGen<int>, false);
+// Eval(2724, v is EmptyClassGen<int>[], false);
+// Eval(2725, v is NotEmptyClassGen<Guid>, false);
+// Eval(2726, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2727, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2728, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2729, v is NestedClass, false);
Eval(2730, v is NestedClass[], false);
- Eval(2731, v is NestedClassGen<Decimal>, false);
- Eval(2732, v is NestedClassGen<Decimal>[], false);
+// Eval(2731, v is NestedClassGen<Decimal>, false);
+// Eval(2732, v is NestedClassGen<Decimal>[], false);
Eval(2733, v is ImplementOneInterfaceC, false);
Eval(2734, v is ImplementOneInterfaceC[], false);
Eval(2735, v is ImplementTwoInterfaceC, false);
Eval(2736, v is ImplementTwoInterfaceC[], false);
- Eval(2737, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2738, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2739, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2740, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2741, v is ImplementAllInterfaceC<int>, false);
- Eval(2742, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2737, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2738, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2739, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2740, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2741, v is ImplementAllInterfaceC<int>, false);
+// Eval(2742, v is ImplementAllInterfaceC<int>[], false);
Eval(2743, v is SealedClass, false);
Eval(2744, v is SealedClass[], false);
}
@@ -2708,26 +2708,26 @@ internal class Program
Eval(2750, v is NotEmptyStruct[], false);
Eval(2751, v is NotEmptyStruct?, false);
Eval(2752, v is NotEmptyStruct?[], false);
- Eval(2753, v is EmptyStructGen<int>, false);
- Eval(2754, v is EmptyStructGen<int>[], false);
- Eval(2755, v is EmptyStructGen<int>?, false);
- Eval(2756, v is EmptyStructGen<int>?[], true);
- Eval(2757, v is NotEmptyStructGen<Guid>, false);
- Eval(2758, v is NotEmptyStructGen<Guid>[], false);
- Eval(2759, v is NotEmptyStructGen<Guid>?, false);
- Eval(2760, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2761, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2762, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2763, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2764, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2753, v is EmptyStructGen<int>, false);
+// Eval(2754, v is EmptyStructGen<int>[], false);
+// Eval(2755, v is EmptyStructGen<int>?, false);
+// Eval(2756, v is EmptyStructGen<int>?[], true);
+// Eval(2757, v is NotEmptyStructGen<Guid>, false);
+// Eval(2758, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2759, v is NotEmptyStructGen<Guid>?, false);
+// Eval(2760, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2761, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2762, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2763, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2764, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2765, v is NestedStruct, false);
Eval(2766, v is NestedStruct[], false);
Eval(2767, v is NestedStruct?, false);
Eval(2768, v is NestedStruct?[], false);
- Eval(2769, v is NestedStructGen<Decimal>, false);
- Eval(2770, v is NestedStructGen<Decimal>[], false);
- Eval(2771, v is NestedStructGen<Decimal>?, false);
- Eval(2772, v is NestedStructGen<Decimal>?[], false);
+// Eval(2769, v is NestedStructGen<Decimal>, false);
+// Eval(2770, v is NestedStructGen<Decimal>[], false);
+// Eval(2771, v is NestedStructGen<Decimal>?, false);
+// Eval(2772, v is NestedStructGen<Decimal>?[], false);
Eval(2773, v is ExplicitFieldOffsetStruct, false);
Eval(2774, v is ExplicitFieldOffsetStruct[], false);
Eval(2775, v is ExplicitFieldOffsetStruct?, false);
@@ -2744,18 +2744,18 @@ internal class Program
Eval(2794, v is ImplementTwoInterface[], false);
Eval(2795, v is ImplementTwoInterface?, false);
Eval(2796, v is ImplementTwoInterface?[], false);
- Eval(2797, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2798, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2799, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2800, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2801, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2802, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2803, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(2804, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2805, v is ImplementAllInterface<int>, false);
- Eval(2806, v is ImplementAllInterface<int>[], false);
- Eval(2807, v is ImplementAllInterface<int>?, false);
- Eval(2808, v is ImplementAllInterface<int>?[], false);
+// Eval(2797, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2798, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2799, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2800, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2801, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2802, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2803, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2804, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2805, v is ImplementAllInterface<int>, false);
+// Eval(2806, v is ImplementAllInterface<int>[], false);
+// Eval(2807, v is ImplementAllInterface<int>?, false);
+// Eval(2808, v is ImplementAllInterface<int>?[], false);
Eval(2809, v is IntE, false);
Eval(2810, v is IntE[], false);
Eval(2811, v is IntE?, false);
@@ -2854,38 +2854,38 @@ internal class Program
Eval(2904, v is IEmpty[], false);
Eval(2905, v is INotEmpty, false);
Eval(2906, v is INotEmpty[], false);
- Eval(2907, v is IEmptyGen<int>, false);
- Eval(2908, v is IEmptyGen<int>[], false);
- Eval(2909, v is INotEmptyGen<int>, false);
- Eval(2910, v is INotEmptyGen<int>[], false);
+// Eval(2907, v is IEmptyGen<int>, false);
+// Eval(2908, v is IEmptyGen<int>[], false);
+// Eval(2909, v is INotEmptyGen<int>, false);
+// Eval(2910, v is INotEmptyGen<int>[], false);
Eval(2911, v is SimpleDelegate, false);
Eval(2912, v is SimpleDelegate[], false);
- Eval(2913, v is GenericDelegate<int>, false);
- Eval(2914, v is GenericDelegate<int>[], false);
+// Eval(2913, v is GenericDelegate<int>, false);
+// Eval(2914, v is GenericDelegate<int>[], false);
Eval(2915, v is EmptyClass, false);
Eval(2916, v is EmptyClass[], false);
Eval(2917, v is NotEmptyClass, false);
Eval(2918, v is NotEmptyClass[], false);
- Eval(2919, v is EmptyClassGen<int>, false);
- Eval(2920, v is EmptyClassGen<int>[], false);
- Eval(2921, v is NotEmptyClassGen<Guid>, false);
- Eval(2922, v is NotEmptyClassGen<Guid>[], false);
- Eval(2923, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(2924, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2919, v is EmptyClassGen<int>, false);
+// Eval(2920, v is EmptyClassGen<int>[], false);
+// Eval(2921, v is NotEmptyClassGen<Guid>, false);
+// Eval(2922, v is NotEmptyClassGen<Guid>[], false);
+// Eval(2923, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2924, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(2925, v is NestedClass, false);
Eval(2926, v is NestedClass[], false);
- Eval(2927, v is NestedClassGen<Decimal>, false);
- Eval(2928, v is NestedClassGen<Decimal>[], false);
+// Eval(2927, v is NestedClassGen<Decimal>, false);
+// Eval(2928, v is NestedClassGen<Decimal>[], false);
Eval(2929, v is ImplementOneInterfaceC, false);
Eval(2930, v is ImplementOneInterfaceC[], false);
Eval(2931, v is ImplementTwoInterfaceC, false);
Eval(2932, v is ImplementTwoInterfaceC[], false);
- Eval(2933, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2934, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2935, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(2936, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2937, v is ImplementAllInterfaceC<int>, false);
- Eval(2938, v is ImplementAllInterfaceC<int>[], false);
+// Eval(2933, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2934, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2935, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2936, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2937, v is ImplementAllInterfaceC<int>, false);
+// Eval(2938, v is ImplementAllInterfaceC<int>[], false);
Eval(2939, v is SealedClass, false);
Eval(2940, v is SealedClass[], false);
}
@@ -2902,26 +2902,26 @@ internal class Program
Eval(2946, v is NotEmptyStruct[], false);
Eval(2947, v is NotEmptyStruct?, false);
Eval(2948, v is NotEmptyStruct?[], false);
- Eval(2949, v is EmptyStructGen<int>, false);
- Eval(2950, v is EmptyStructGen<int>[], false);
- Eval(2951, v is EmptyStructGen<int>?, false);
- Eval(2952, v is EmptyStructGen<int>?[], false);
- Eval(2953, v is NotEmptyStructGen<Guid>, true);
- Eval(2954, v is NotEmptyStructGen<Guid>[], false);
- Eval(2955, v is NotEmptyStructGen<Guid>?, true);
- Eval(2956, v is NotEmptyStructGen<Guid>?[], false);
- Eval(2957, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2958, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2959, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2960, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2949, v is EmptyStructGen<int>, false);
+// Eval(2950, v is EmptyStructGen<int>[], false);
+// Eval(2951, v is EmptyStructGen<int>?, false);
+// Eval(2952, v is EmptyStructGen<int>?[], false);
+// Eval(2953, v is NotEmptyStructGen<Guid>, true);
+// Eval(2954, v is NotEmptyStructGen<Guid>[], false);
+// Eval(2955, v is NotEmptyStructGen<Guid>?, true);
+// Eval(2956, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(2957, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2958, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2959, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2960, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2961, v is NestedStruct, false);
Eval(2962, v is NestedStruct[], false);
Eval(2963, v is NestedStruct?, false);
Eval(2964, v is NestedStruct?[], false);
- Eval(2965, v is NestedStructGen<Decimal>, false);
- Eval(2966, v is NestedStructGen<Decimal>[], false);
- Eval(2967, v is NestedStructGen<Decimal>?, false);
- Eval(2968, v is NestedStructGen<Decimal>?[], false);
+// Eval(2965, v is NestedStructGen<Decimal>, false);
+// Eval(2966, v is NestedStructGen<Decimal>[], false);
+// Eval(2967, v is NestedStructGen<Decimal>?, false);
+// Eval(2968, v is NestedStructGen<Decimal>?[], false);
Eval(2969, v is ExplicitFieldOffsetStruct, false);
Eval(2970, v is ExplicitFieldOffsetStruct[], false);
Eval(2971, v is ExplicitFieldOffsetStruct?, false);
@@ -2938,18 +2938,18 @@ internal class Program
Eval(2990, v is ImplementTwoInterface[], false);
Eval(2991, v is ImplementTwoInterface?, false);
Eval(2992, v is ImplementTwoInterface?[], false);
- Eval(2993, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2994, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2995, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2996, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2997, v is ImplementTwoInterfaceGen<int>, false);
- Eval(2998, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(2999, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3000, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3001, v is ImplementAllInterface<int>, false);
- Eval(3002, v is ImplementAllInterface<int>[], false);
- Eval(3003, v is ImplementAllInterface<int>?, false);
- Eval(3004, v is ImplementAllInterface<int>?[], false);
+// Eval(2993, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2994, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2995, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2996, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2997, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(2998, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2999, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3000, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3001, v is ImplementAllInterface<int>, false);
+// Eval(3002, v is ImplementAllInterface<int>[], false);
+// Eval(3003, v is ImplementAllInterface<int>?, false);
+// Eval(3004, v is ImplementAllInterface<int>?[], false);
Eval(3005, v is IntE, false);
Eval(3006, v is IntE[], false);
Eval(3007, v is IntE?, false);
@@ -3048,38 +3048,38 @@ internal class Program
Eval(3100, v is IEmpty[], false);
Eval(3101, v is INotEmpty, false);
Eval(3102, v is INotEmpty[], false);
- Eval(3103, v is IEmptyGen<int>, false);
- Eval(3104, v is IEmptyGen<int>[], false);
- Eval(3105, v is INotEmptyGen<int>, false);
- Eval(3106, v is INotEmptyGen<int>[], false);
+// Eval(3103, v is IEmptyGen<int>, false);
+// Eval(3104, v is IEmptyGen<int>[], false);
+// Eval(3105, v is INotEmptyGen<int>, false);
+// Eval(3106, v is INotEmptyGen<int>[], false);
Eval(3107, v is SimpleDelegate, false);
Eval(3108, v is SimpleDelegate[], false);
- Eval(3109, v is GenericDelegate<int>, false);
- Eval(3110, v is GenericDelegate<int>[], false);
+// Eval(3109, v is GenericDelegate<int>, false);
+// Eval(3110, v is GenericDelegate<int>[], false);
Eval(3111, v is EmptyClass, false);
Eval(3112, v is EmptyClass[], false);
Eval(3113, v is NotEmptyClass, false);
Eval(3114, v is NotEmptyClass[], false);
- Eval(3115, v is EmptyClassGen<int>, false);
- Eval(3116, v is EmptyClassGen<int>[], false);
- Eval(3117, v is NotEmptyClassGen<Guid>, false);
- Eval(3118, v is NotEmptyClassGen<Guid>[], false);
- Eval(3119, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3120, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3115, v is EmptyClassGen<int>, false);
+// Eval(3116, v is EmptyClassGen<int>[], false);
+// Eval(3117, v is NotEmptyClassGen<Guid>, false);
+// Eval(3118, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3119, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3120, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3121, v is NestedClass, false);
Eval(3122, v is NestedClass[], false);
- Eval(3123, v is NestedClassGen<Decimal>, false);
- Eval(3124, v is NestedClassGen<Decimal>[], false);
+// Eval(3123, v is NestedClassGen<Decimal>, false);
+// Eval(3124, v is NestedClassGen<Decimal>[], false);
Eval(3125, v is ImplementOneInterfaceC, false);
Eval(3126, v is ImplementOneInterfaceC[], false);
Eval(3127, v is ImplementTwoInterfaceC, false);
Eval(3128, v is ImplementTwoInterfaceC[], false);
- Eval(3129, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3130, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3131, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3132, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3133, v is ImplementAllInterfaceC<int>, false);
- Eval(3134, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3129, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3130, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3131, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3132, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3133, v is ImplementAllInterfaceC<int>, false);
+// Eval(3134, v is ImplementAllInterfaceC<int>[], false);
Eval(3135, v is SealedClass, false);
Eval(3136, v is SealedClass[], false);
}
@@ -3093,26 +3093,26 @@ internal class Program
Eval(3142, v is NotEmptyStruct[], false);
Eval(3143, v is NotEmptyStruct?, false);
Eval(3144, v is NotEmptyStruct?[], false);
- Eval(3145, v is EmptyStructGen<int>, false);
- Eval(3146, v is EmptyStructGen<int>[], false);
- Eval(3147, v is EmptyStructGen<int>?, false);
- Eval(3148, v is EmptyStructGen<int>?[], false);
- Eval(3149, v is NotEmptyStructGen<Guid>, true);
- Eval(3150, v is NotEmptyStructGen<Guid>[], false);
- Eval(3151, v is NotEmptyStructGen<Guid>?, true);
- Eval(3152, v is NotEmptyStructGen<Guid>?[], false);
- Eval(3153, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3154, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3155, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3156, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3145, v is EmptyStructGen<int>, false);
+// Eval(3146, v is EmptyStructGen<int>[], false);
+// Eval(3147, v is EmptyStructGen<int>?, false);
+// Eval(3148, v is EmptyStructGen<int>?[], false);
+// Eval(3149, v is NotEmptyStructGen<Guid>, true);
+// Eval(3150, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3151, v is NotEmptyStructGen<Guid>?, true);
+// Eval(3152, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(3153, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3154, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3155, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3156, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3157, v is NestedStruct, false);
Eval(3158, v is NestedStruct[], false);
Eval(3159, v is NestedStruct?, false);
Eval(3160, v is NestedStruct?[], false);
- Eval(3161, v is NestedStructGen<Decimal>, false);
- Eval(3162, v is NestedStructGen<Decimal>[], false);
- Eval(3163, v is NestedStructGen<Decimal>?, false);
- Eval(3164, v is NestedStructGen<Decimal>?[], false);
+// Eval(3161, v is NestedStructGen<Decimal>, false);
+// Eval(3162, v is NestedStructGen<Decimal>[], false);
+// Eval(3163, v is NestedStructGen<Decimal>?, false);
+// Eval(3164, v is NestedStructGen<Decimal>?[], false);
Eval(3165, v is ExplicitFieldOffsetStruct, false);
Eval(3166, v is ExplicitFieldOffsetStruct[], false);
Eval(3167, v is ExplicitFieldOffsetStruct?, false);
@@ -3129,18 +3129,18 @@ internal class Program
Eval(3186, v is ImplementTwoInterface[], false);
Eval(3187, v is ImplementTwoInterface?, false);
Eval(3188, v is ImplementTwoInterface?[], false);
- Eval(3189, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3190, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3191, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3192, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3193, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3194, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3195, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3196, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3197, v is ImplementAllInterface<int>, false);
- Eval(3198, v is ImplementAllInterface<int>[], false);
- Eval(3199, v is ImplementAllInterface<int>?, false);
- Eval(3200, v is ImplementAllInterface<int>?[], false);
+// Eval(3189, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3190, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3191, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3192, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3193, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3194, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3195, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3196, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3197, v is ImplementAllInterface<int>, false);
+// Eval(3198, v is ImplementAllInterface<int>[], false);
+// Eval(3199, v is ImplementAllInterface<int>?, false);
+// Eval(3200, v is ImplementAllInterface<int>?[], false);
Eval(3201, v is IntE, false);
Eval(3202, v is IntE[], false);
Eval(3203, v is IntE?, false);
@@ -3239,38 +3239,38 @@ internal class Program
Eval(3296, v is IEmpty[], false);
Eval(3297, v is INotEmpty, false);
Eval(3298, v is INotEmpty[], false);
- Eval(3299, v is IEmptyGen<int>, false);
- Eval(3300, v is IEmptyGen<int>[], false);
- Eval(3301, v is INotEmptyGen<int>, false);
- Eval(3302, v is INotEmptyGen<int>[], false);
+// Eval(3299, v is IEmptyGen<int>, false);
+// Eval(3300, v is IEmptyGen<int>[], false);
+// Eval(3301, v is INotEmptyGen<int>, false);
+// Eval(3302, v is INotEmptyGen<int>[], false);
Eval(3303, v is SimpleDelegate, false);
Eval(3304, v is SimpleDelegate[], false);
- Eval(3305, v is GenericDelegate<int>, false);
- Eval(3306, v is GenericDelegate<int>[], false);
+// Eval(3305, v is GenericDelegate<int>, false);
+// Eval(3306, v is GenericDelegate<int>[], false);
Eval(3307, v is EmptyClass, false);
Eval(3308, v is EmptyClass[], false);
Eval(3309, v is NotEmptyClass, false);
Eval(3310, v is NotEmptyClass[], false);
- Eval(3311, v is EmptyClassGen<int>, false);
- Eval(3312, v is EmptyClassGen<int>[], false);
- Eval(3313, v is NotEmptyClassGen<Guid>, false);
- Eval(3314, v is NotEmptyClassGen<Guid>[], false);
- Eval(3315, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3316, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3311, v is EmptyClassGen<int>, false);
+// Eval(3312, v is EmptyClassGen<int>[], false);
+// Eval(3313, v is NotEmptyClassGen<Guid>, false);
+// Eval(3314, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3315, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3316, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3317, v is NestedClass, false);
Eval(3318, v is NestedClass[], false);
- Eval(3319, v is NestedClassGen<Decimal>, false);
- Eval(3320, v is NestedClassGen<Decimal>[], false);
+// Eval(3319, v is NestedClassGen<Decimal>, false);
+// Eval(3320, v is NestedClassGen<Decimal>[], false);
Eval(3321, v is ImplementOneInterfaceC, false);
Eval(3322, v is ImplementOneInterfaceC[], false);
Eval(3323, v is ImplementTwoInterfaceC, false);
Eval(3324, v is ImplementTwoInterfaceC[], false);
- Eval(3325, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3326, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3327, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3328, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3329, v is ImplementAllInterfaceC<int>, false);
- Eval(3330, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3325, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3326, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3327, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3328, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3329, v is ImplementAllInterfaceC<int>, false);
+// Eval(3330, v is ImplementAllInterfaceC<int>[], false);
Eval(3331, v is SealedClass, false);
Eval(3332, v is SealedClass[], false);
}
@@ -3284,26 +3284,26 @@ internal class Program
Eval(3338, v is NotEmptyStruct[], false);
Eval(3339, v is NotEmptyStruct?, false);
Eval(3340, v is NotEmptyStruct?[], false);
- Eval(3341, v is EmptyStructGen<int>, false);
- Eval(3342, v is EmptyStructGen<int>[], false);
- Eval(3343, v is EmptyStructGen<int>?, false);
- Eval(3344, v is EmptyStructGen<int>?[], false);
- Eval(3345, v is NotEmptyStructGen<Guid>, false);
- Eval(3346, v is NotEmptyStructGen<Guid>[], false);
- Eval(3347, v is NotEmptyStructGen<Guid>?, false);
- Eval(3348, v is NotEmptyStructGen<Guid>?[], false);
- Eval(3349, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3350, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3351, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3352, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3341, v is EmptyStructGen<int>, false);
+// Eval(3342, v is EmptyStructGen<int>[], false);
+// Eval(3343, v is EmptyStructGen<int>?, false);
+// Eval(3344, v is EmptyStructGen<int>?[], false);
+// Eval(3345, v is NotEmptyStructGen<Guid>, false);
+// Eval(3346, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3347, v is NotEmptyStructGen<Guid>?, false);
+// Eval(3348, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(3349, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3350, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3351, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3352, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3353, v is NestedStruct, false);
Eval(3354, v is NestedStruct[], false);
Eval(3355, v is NestedStruct?, false);
Eval(3356, v is NestedStruct?[], false);
- Eval(3357, v is NestedStructGen<Decimal>, false);
- Eval(3358, v is NestedStructGen<Decimal>[], false);
- Eval(3359, v is NestedStructGen<Decimal>?, false);
- Eval(3360, v is NestedStructGen<Decimal>?[], false);
+// Eval(3357, v is NestedStructGen<Decimal>, false);
+// Eval(3358, v is NestedStructGen<Decimal>[], false);
+// Eval(3359, v is NestedStructGen<Decimal>?, false);
+// Eval(3360, v is NestedStructGen<Decimal>?[], false);
Eval(3361, v is ExplicitFieldOffsetStruct, false);
Eval(3362, v is ExplicitFieldOffsetStruct[], false);
Eval(3363, v is ExplicitFieldOffsetStruct?, false);
@@ -3320,18 +3320,18 @@ internal class Program
Eval(3382, v is ImplementTwoInterface[], false);
Eval(3383, v is ImplementTwoInterface?, false);
Eval(3384, v is ImplementTwoInterface?[], false);
- Eval(3385, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3386, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3387, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3388, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3389, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3390, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3391, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3392, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3393, v is ImplementAllInterface<int>, false);
- Eval(3394, v is ImplementAllInterface<int>[], false);
- Eval(3395, v is ImplementAllInterface<int>?, false);
- Eval(3396, v is ImplementAllInterface<int>?[], false);
+// Eval(3385, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3386, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3387, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3388, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3389, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3390, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3391, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3392, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3393, v is ImplementAllInterface<int>, false);
+// Eval(3394, v is ImplementAllInterface<int>[], false);
+// Eval(3395, v is ImplementAllInterface<int>?, false);
+// Eval(3396, v is ImplementAllInterface<int>?[], false);
Eval(3397, v is IntE, false);
Eval(3398, v is IntE[], false);
Eval(3399, v is IntE?, false);
@@ -3430,38 +3430,38 @@ internal class Program
Eval(3492, v is IEmpty[], false);
Eval(3493, v is INotEmpty, false);
Eval(3494, v is INotEmpty[], false);
- Eval(3495, v is IEmptyGen<int>, false);
- Eval(3496, v is IEmptyGen<int>[], false);
- Eval(3497, v is INotEmptyGen<int>, false);
- Eval(3498, v is INotEmptyGen<int>[], false);
+// Eval(3495, v is IEmptyGen<int>, false);
+// Eval(3496, v is IEmptyGen<int>[], false);
+// Eval(3497, v is INotEmptyGen<int>, false);
+// Eval(3498, v is INotEmptyGen<int>[], false);
Eval(3499, v is SimpleDelegate, false);
Eval(3500, v is SimpleDelegate[], false);
- Eval(3501, v is GenericDelegate<int>, false);
- Eval(3502, v is GenericDelegate<int>[], false);
+// Eval(3501, v is GenericDelegate<int>, false);
+// Eval(3502, v is GenericDelegate<int>[], false);
Eval(3503, v is EmptyClass, false);
Eval(3504, v is EmptyClass[], false);
Eval(3505, v is NotEmptyClass, false);
Eval(3506, v is NotEmptyClass[], false);
- Eval(3507, v is EmptyClassGen<int>, false);
- Eval(3508, v is EmptyClassGen<int>[], false);
- Eval(3509, v is NotEmptyClassGen<Guid>, false);
- Eval(3510, v is NotEmptyClassGen<Guid>[], false);
- Eval(3511, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3512, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3507, v is EmptyClassGen<int>, false);
+// Eval(3508, v is EmptyClassGen<int>[], false);
+// Eval(3509, v is NotEmptyClassGen<Guid>, false);
+// Eval(3510, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3511, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3512, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3513, v is NestedClass, false);
Eval(3514, v is NestedClass[], false);
- Eval(3515, v is NestedClassGen<Decimal>, false);
- Eval(3516, v is NestedClassGen<Decimal>[], false);
+// Eval(3515, v is NestedClassGen<Decimal>, false);
+// Eval(3516, v is NestedClassGen<Decimal>[], false);
Eval(3517, v is ImplementOneInterfaceC, false);
Eval(3518, v is ImplementOneInterfaceC[], false);
Eval(3519, v is ImplementTwoInterfaceC, false);
Eval(3520, v is ImplementTwoInterfaceC[], false);
- Eval(3521, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3522, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3523, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3524, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3525, v is ImplementAllInterfaceC<int>, false);
- Eval(3526, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3521, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3522, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3523, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3524, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3525, v is ImplementAllInterfaceC<int>, false);
+// Eval(3526, v is ImplementAllInterfaceC<int>[], false);
Eval(3527, v is SealedClass, false);
Eval(3528, v is SealedClass[], false);
}
@@ -3475,26 +3475,26 @@ internal class Program
Eval(3534, v is NotEmptyStruct[], false);
Eval(3535, v is NotEmptyStruct?, false);
Eval(3536, v is NotEmptyStruct?[], false);
- Eval(3537, v is EmptyStructGen<int>, false);
- Eval(3538, v is EmptyStructGen<int>[], false);
- Eval(3539, v is EmptyStructGen<int>?, false);
- Eval(3540, v is EmptyStructGen<int>?[], false);
- Eval(3541, v is NotEmptyStructGen<Guid>, false);
- Eval(3542, v is NotEmptyStructGen<Guid>[], false);
- Eval(3543, v is NotEmptyStructGen<Guid>?, false);
- Eval(3544, v is NotEmptyStructGen<Guid>?[], false);
- Eval(3545, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3546, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3547, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3548, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3537, v is EmptyStructGen<int>, false);
+// Eval(3538, v is EmptyStructGen<int>[], false);
+// Eval(3539, v is EmptyStructGen<int>?, false);
+// Eval(3540, v is EmptyStructGen<int>?[], false);
+// Eval(3541, v is NotEmptyStructGen<Guid>, false);
+// Eval(3542, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3543, v is NotEmptyStructGen<Guid>?, false);
+// Eval(3544, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(3545, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3546, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3547, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3548, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3549, v is NestedStruct, false);
Eval(3550, v is NestedStruct[], false);
Eval(3551, v is NestedStruct?, false);
Eval(3552, v is NestedStruct?[], false);
- Eval(3553, v is NestedStructGen<Decimal>, false);
- Eval(3554, v is NestedStructGen<Decimal>[], false);
- Eval(3555, v is NestedStructGen<Decimal>?, false);
- Eval(3556, v is NestedStructGen<Decimal>?[], false);
+// Eval(3553, v is NestedStructGen<Decimal>, false);
+// Eval(3554, v is NestedStructGen<Decimal>[], false);
+// Eval(3555, v is NestedStructGen<Decimal>?, false);
+// Eval(3556, v is NestedStructGen<Decimal>?[], false);
Eval(3557, v is ExplicitFieldOffsetStruct, false);
Eval(3558, v is ExplicitFieldOffsetStruct[], false);
Eval(3559, v is ExplicitFieldOffsetStruct?, false);
@@ -3511,18 +3511,18 @@ internal class Program
Eval(3578, v is ImplementTwoInterface[], false);
Eval(3579, v is ImplementTwoInterface?, false);
Eval(3580, v is ImplementTwoInterface?[], false);
- Eval(3581, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3582, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3583, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3584, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3585, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3586, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3587, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3588, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3589, v is ImplementAllInterface<int>, false);
- Eval(3590, v is ImplementAllInterface<int>[], false);
- Eval(3591, v is ImplementAllInterface<int>?, false);
- Eval(3592, v is ImplementAllInterface<int>?[], false);
+// Eval(3581, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3582, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3583, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3584, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3585, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3586, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3587, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3588, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3589, v is ImplementAllInterface<int>, false);
+// Eval(3590, v is ImplementAllInterface<int>[], false);
+// Eval(3591, v is ImplementAllInterface<int>?, false);
+// Eval(3592, v is ImplementAllInterface<int>?[], false);
Eval(3593, v is IntE, false);
Eval(3594, v is IntE[], false);
Eval(3595, v is IntE?, false);
@@ -3621,38 +3621,38 @@ internal class Program
Eval(3688, v is IEmpty[], false);
Eval(3689, v is INotEmpty, false);
Eval(3690, v is INotEmpty[], false);
- Eval(3691, v is IEmptyGen<int>, false);
- Eval(3692, v is IEmptyGen<int>[], false);
- Eval(3693, v is INotEmptyGen<int>, false);
- Eval(3694, v is INotEmptyGen<int>[], false);
+// Eval(3691, v is IEmptyGen<int>, false);
+// Eval(3692, v is IEmptyGen<int>[], false);
+// Eval(3693, v is INotEmptyGen<int>, false);
+// Eval(3694, v is INotEmptyGen<int>[], false);
Eval(3695, v is SimpleDelegate, false);
Eval(3696, v is SimpleDelegate[], false);
- Eval(3697, v is GenericDelegate<int>, false);
- Eval(3698, v is GenericDelegate<int>[], false);
+// Eval(3697, v is GenericDelegate<int>, false);
+// Eval(3698, v is GenericDelegate<int>[], false);
Eval(3699, v is EmptyClass, false);
Eval(3700, v is EmptyClass[], false);
Eval(3701, v is NotEmptyClass, false);
Eval(3702, v is NotEmptyClass[], false);
- Eval(3703, v is EmptyClassGen<int>, false);
- Eval(3704, v is EmptyClassGen<int>[], false);
- Eval(3705, v is NotEmptyClassGen<Guid>, false);
- Eval(3706, v is NotEmptyClassGen<Guid>[], false);
- Eval(3707, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3708, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3703, v is EmptyClassGen<int>, false);
+// Eval(3704, v is EmptyClassGen<int>[], false);
+// Eval(3705, v is NotEmptyClassGen<Guid>, false);
+// Eval(3706, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3707, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3708, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3709, v is NestedClass, false);
Eval(3710, v is NestedClass[], false);
- Eval(3711, v is NestedClassGen<Decimal>, false);
- Eval(3712, v is NestedClassGen<Decimal>[], false);
+// Eval(3711, v is NestedClassGen<Decimal>, false);
+// Eval(3712, v is NestedClassGen<Decimal>[], false);
Eval(3713, v is ImplementOneInterfaceC, false);
Eval(3714, v is ImplementOneInterfaceC[], false);
Eval(3715, v is ImplementTwoInterfaceC, false);
Eval(3716, v is ImplementTwoInterfaceC[], false);
- Eval(3717, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3718, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3719, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3720, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3721, v is ImplementAllInterfaceC<int>, false);
- Eval(3722, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3717, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3718, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3719, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3720, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3721, v is ImplementAllInterfaceC<int>, false);
+// Eval(3722, v is ImplementAllInterfaceC<int>[], false);
Eval(3723, v is SealedClass, false);
Eval(3724, v is SealedClass[], false);
}
@@ -3666,26 +3666,26 @@ internal class Program
Eval(3730, v is NotEmptyStruct[], false);
Eval(3731, v is NotEmptyStruct?, false);
Eval(3732, v is NotEmptyStruct?[], false);
- Eval(3733, v is EmptyStructGen<int>, false);
- Eval(3734, v is EmptyStructGen<int>[], false);
- Eval(3735, v is EmptyStructGen<int>?, false);
- Eval(3736, v is EmptyStructGen<int>?[], false);
- Eval(3737, v is NotEmptyStructGen<Guid>, false);
- Eval(3738, v is NotEmptyStructGen<Guid>[], false);
- Eval(3739, v is NotEmptyStructGen<Guid>?, false);
- Eval(3740, v is NotEmptyStructGen<Guid>?[], true);
- Eval(3741, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3742, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3743, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3744, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3733, v is EmptyStructGen<int>, false);
+// Eval(3734, v is EmptyStructGen<int>[], false);
+// Eval(3735, v is EmptyStructGen<int>?, false);
+// Eval(3736, v is EmptyStructGen<int>?[], false);
+// Eval(3737, v is NotEmptyStructGen<Guid>, false);
+// Eval(3738, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3739, v is NotEmptyStructGen<Guid>?, false);
+// Eval(3740, v is NotEmptyStructGen<Guid>?[], true);
+// Eval(3741, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3742, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3743, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3744, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3745, v is NestedStruct, false);
Eval(3746, v is NestedStruct[], false);
Eval(3747, v is NestedStruct?, false);
Eval(3748, v is NestedStruct?[], false);
- Eval(3749, v is NestedStructGen<Decimal>, false);
- Eval(3750, v is NestedStructGen<Decimal>[], false);
- Eval(3751, v is NestedStructGen<Decimal>?, false);
- Eval(3752, v is NestedStructGen<Decimal>?[], false);
+// Eval(3749, v is NestedStructGen<Decimal>, false);
+// Eval(3750, v is NestedStructGen<Decimal>[], false);
+// Eval(3751, v is NestedStructGen<Decimal>?, false);
+// Eval(3752, v is NestedStructGen<Decimal>?[], false);
Eval(3753, v is ExplicitFieldOffsetStruct, false);
Eval(3754, v is ExplicitFieldOffsetStruct[], false);
Eval(3755, v is ExplicitFieldOffsetStruct?, false);
@@ -3702,18 +3702,18 @@ internal class Program
Eval(3774, v is ImplementTwoInterface[], false);
Eval(3775, v is ImplementTwoInterface?, false);
Eval(3776, v is ImplementTwoInterface?[], false);
- Eval(3777, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3778, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3779, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3780, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3781, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3782, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3783, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3784, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3785, v is ImplementAllInterface<int>, false);
- Eval(3786, v is ImplementAllInterface<int>[], false);
- Eval(3787, v is ImplementAllInterface<int>?, false);
- Eval(3788, v is ImplementAllInterface<int>?[], false);
+// Eval(3777, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3778, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3779, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3780, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3781, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3782, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3783, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3784, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3785, v is ImplementAllInterface<int>, false);
+// Eval(3786, v is ImplementAllInterface<int>[], false);
+// Eval(3787, v is ImplementAllInterface<int>?, false);
+// Eval(3788, v is ImplementAllInterface<int>?[], false);
Eval(3789, v is IntE, false);
Eval(3790, v is IntE[], false);
Eval(3791, v is IntE?, false);
@@ -3812,38 +3812,38 @@ internal class Program
Eval(3884, v is IEmpty[], false);
Eval(3885, v is INotEmpty, false);
Eval(3886, v is INotEmpty[], false);
- Eval(3887, v is IEmptyGen<int>, false);
- Eval(3888, v is IEmptyGen<int>[], false);
- Eval(3889, v is INotEmptyGen<int>, false);
- Eval(3890, v is INotEmptyGen<int>[], false);
+// Eval(3887, v is IEmptyGen<int>, false);
+// Eval(3888, v is IEmptyGen<int>[], false);
+// Eval(3889, v is INotEmptyGen<int>, false);
+// Eval(3890, v is INotEmptyGen<int>[], false);
Eval(3891, v is SimpleDelegate, false);
Eval(3892, v is SimpleDelegate[], false);
- Eval(3893, v is GenericDelegate<int>, false);
- Eval(3894, v is GenericDelegate<int>[], false);
+// Eval(3893, v is GenericDelegate<int>, false);
+// Eval(3894, v is GenericDelegate<int>[], false);
Eval(3895, v is EmptyClass, false);
Eval(3896, v is EmptyClass[], false);
Eval(3897, v is NotEmptyClass, false);
Eval(3898, v is NotEmptyClass[], false);
- Eval(3899, v is EmptyClassGen<int>, false);
- Eval(3900, v is EmptyClassGen<int>[], false);
- Eval(3901, v is NotEmptyClassGen<Guid>, false);
- Eval(3902, v is NotEmptyClassGen<Guid>[], false);
- Eval(3903, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(3904, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3899, v is EmptyClassGen<int>, false);
+// Eval(3900, v is EmptyClassGen<int>[], false);
+// Eval(3901, v is NotEmptyClassGen<Guid>, false);
+// Eval(3902, v is NotEmptyClassGen<Guid>[], false);
+// Eval(3903, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3904, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(3905, v is NestedClass, false);
Eval(3906, v is NestedClass[], false);
- Eval(3907, v is NestedClassGen<Decimal>, false);
- Eval(3908, v is NestedClassGen<Decimal>[], false);
+// Eval(3907, v is NestedClassGen<Decimal>, false);
+// Eval(3908, v is NestedClassGen<Decimal>[], false);
Eval(3909, v is ImplementOneInterfaceC, false);
Eval(3910, v is ImplementOneInterfaceC[], false);
Eval(3911, v is ImplementTwoInterfaceC, false);
Eval(3912, v is ImplementTwoInterfaceC[], false);
- Eval(3913, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3914, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3915, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(3916, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3917, v is ImplementAllInterfaceC<int>, false);
- Eval(3918, v is ImplementAllInterfaceC<int>[], false);
+// Eval(3913, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3914, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3915, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3916, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3917, v is ImplementAllInterfaceC<int>, false);
+// Eval(3918, v is ImplementAllInterfaceC<int>[], false);
Eval(3919, v is SealedClass, false);
Eval(3920, v is SealedClass[], false);
}
@@ -3860,26 +3860,26 @@ internal class Program
Eval(3926, v is NotEmptyStruct[], false);
Eval(3927, v is NotEmptyStruct?, false);
Eval(3928, v is NotEmptyStruct?[], false);
- Eval(3929, v is EmptyStructGen<int>, false);
- Eval(3930, v is EmptyStructGen<int>[], false);
- Eval(3931, v is EmptyStructGen<int>?, false);
- Eval(3932, v is EmptyStructGen<int>?[], false);
- Eval(3933, v is NotEmptyStructGen<Guid>, false);
- Eval(3934, v is NotEmptyStructGen<Guid>[], false);
- Eval(3935, v is NotEmptyStructGen<Guid>?, false);
- Eval(3936, v is NotEmptyStructGen<Guid>?[], false);
- Eval(3937, v is NotEmptyStructConstrainedGen<IntPtr>, true);
- Eval(3938, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3939, v is NotEmptyStructConstrainedGen<IntPtr>?, true);
- Eval(3940, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3929, v is EmptyStructGen<int>, false);
+// Eval(3930, v is EmptyStructGen<int>[], false);
+// Eval(3931, v is EmptyStructGen<int>?, false);
+// Eval(3932, v is EmptyStructGen<int>?[], false);
+// Eval(3933, v is NotEmptyStructGen<Guid>, false);
+// Eval(3934, v is NotEmptyStructGen<Guid>[], false);
+// Eval(3935, v is NotEmptyStructGen<Guid>?, false);
+// Eval(3936, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(3937, v is NotEmptyStructConstrainedGen<IntPtr>, true);
+// Eval(3938, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3939, v is NotEmptyStructConstrainedGen<IntPtr>?, true);
+// Eval(3940, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3941, v is NestedStruct, false);
Eval(3942, v is NestedStruct[], false);
Eval(3943, v is NestedStruct?, false);
Eval(3944, v is NestedStruct?[], false);
- Eval(3945, v is NestedStructGen<Decimal>, false);
- Eval(3946, v is NestedStructGen<Decimal>[], false);
- Eval(3947, v is NestedStructGen<Decimal>?, false);
- Eval(3948, v is NestedStructGen<Decimal>?[], false);
+// Eval(3945, v is NestedStructGen<Decimal>, false);
+// Eval(3946, v is NestedStructGen<Decimal>[], false);
+// Eval(3947, v is NestedStructGen<Decimal>?, false);
+// Eval(3948, v is NestedStructGen<Decimal>?[], false);
Eval(3949, v is ExplicitFieldOffsetStruct, false);
Eval(3950, v is ExplicitFieldOffsetStruct[], false);
Eval(3951, v is ExplicitFieldOffsetStruct?, false);
@@ -3896,18 +3896,18 @@ internal class Program
Eval(3970, v is ImplementTwoInterface[], false);
Eval(3971, v is ImplementTwoInterface?, false);
Eval(3972, v is ImplementTwoInterface?[], false);
- Eval(3973, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3974, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3975, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3976, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3977, v is ImplementTwoInterfaceGen<int>, false);
- Eval(3978, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(3979, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(3980, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3981, v is ImplementAllInterface<int>, false);
- Eval(3982, v is ImplementAllInterface<int>[], false);
- Eval(3983, v is ImplementAllInterface<int>?, false);
- Eval(3984, v is ImplementAllInterface<int>?[], false);
+// Eval(3973, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3974, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3975, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3976, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3977, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(3978, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3979, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3980, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3981, v is ImplementAllInterface<int>, false);
+// Eval(3982, v is ImplementAllInterface<int>[], false);
+// Eval(3983, v is ImplementAllInterface<int>?, false);
+// Eval(3984, v is ImplementAllInterface<int>?[], false);
Eval(3985, v is IntE, false);
Eval(3986, v is IntE[], false);
Eval(3987, v is IntE?, false);
@@ -4006,38 +4006,38 @@ internal class Program
Eval(4080, v is IEmpty[], false);
Eval(4081, v is INotEmpty, false);
Eval(4082, v is INotEmpty[], false);
- Eval(4083, v is IEmptyGen<int>, false);
- Eval(4084, v is IEmptyGen<int>[], false);
- Eval(4085, v is INotEmptyGen<int>, false);
- Eval(4086, v is INotEmptyGen<int>[], false);
+// Eval(4083, v is IEmptyGen<int>, false);
+// Eval(4084, v is IEmptyGen<int>[], false);
+// Eval(4085, v is INotEmptyGen<int>, false);
+// Eval(4086, v is INotEmptyGen<int>[], false);
Eval(4087, v is SimpleDelegate, false);
Eval(4088, v is SimpleDelegate[], false);
- Eval(4089, v is GenericDelegate<int>, false);
- Eval(4090, v is GenericDelegate<int>[], false);
+// Eval(4089, v is GenericDelegate<int>, false);
+// Eval(4090, v is GenericDelegate<int>[], false);
Eval(4091, v is EmptyClass, false);
Eval(4092, v is EmptyClass[], false);
Eval(4093, v is NotEmptyClass, false);
Eval(4094, v is NotEmptyClass[], false);
- Eval(4095, v is EmptyClassGen<int>, false);
- Eval(4096, v is EmptyClassGen<int>[], false);
- Eval(4097, v is NotEmptyClassGen<Guid>, false);
- Eval(4098, v is NotEmptyClassGen<Guid>[], false);
- Eval(4099, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4100, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4095, v is EmptyClassGen<int>, false);
+// Eval(4096, v is EmptyClassGen<int>[], false);
+// Eval(4097, v is NotEmptyClassGen<Guid>, false);
+// Eval(4098, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4099, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4100, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4101, v is NestedClass, false);
Eval(4102, v is NestedClass[], false);
- Eval(4103, v is NestedClassGen<Decimal>, false);
- Eval(4104, v is NestedClassGen<Decimal>[], false);
+// Eval(4103, v is NestedClassGen<Decimal>, false);
+// Eval(4104, v is NestedClassGen<Decimal>[], false);
Eval(4105, v is ImplementOneInterfaceC, false);
Eval(4106, v is ImplementOneInterfaceC[], false);
Eval(4107, v is ImplementTwoInterfaceC, false);
Eval(4108, v is ImplementTwoInterfaceC[], false);
- Eval(4109, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4110, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4111, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4112, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4113, v is ImplementAllInterfaceC<int>, false);
- Eval(4114, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4109, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4110, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4111, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4112, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4113, v is ImplementAllInterfaceC<int>, false);
+// Eval(4114, v is ImplementAllInterfaceC<int>[], false);
Eval(4115, v is SealedClass, false);
Eval(4116, v is SealedClass[], false);
}
@@ -4051,26 +4051,26 @@ internal class Program
Eval(4122, v is NotEmptyStruct[], false);
Eval(4123, v is NotEmptyStruct?, false);
Eval(4124, v is NotEmptyStruct?[], false);
- Eval(4125, v is EmptyStructGen<int>, false);
- Eval(4126, v is EmptyStructGen<int>[], false);
- Eval(4127, v is EmptyStructGen<int>?, false);
- Eval(4128, v is EmptyStructGen<int>?[], false);
- Eval(4129, v is NotEmptyStructGen<Guid>, false);
- Eval(4130, v is NotEmptyStructGen<Guid>[], false);
- Eval(4131, v is NotEmptyStructGen<Guid>?, false);
- Eval(4132, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4133, v is NotEmptyStructConstrainedGen<IntPtr>, true);
- Eval(4134, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4135, v is NotEmptyStructConstrainedGen<IntPtr>?, true);
- Eval(4136, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4125, v is EmptyStructGen<int>, false);
+// Eval(4126, v is EmptyStructGen<int>[], false);
+// Eval(4127, v is EmptyStructGen<int>?, false);
+// Eval(4128, v is EmptyStructGen<int>?[], false);
+// Eval(4129, v is NotEmptyStructGen<Guid>, false);
+// Eval(4130, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4131, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4132, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4133, v is NotEmptyStructConstrainedGen<IntPtr>, true);
+// Eval(4134, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4135, v is NotEmptyStructConstrainedGen<IntPtr>?, true);
+// Eval(4136, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4137, v is NestedStruct, false);
Eval(4138, v is NestedStruct[], false);
Eval(4139, v is NestedStruct?, false);
Eval(4140, v is NestedStruct?[], false);
- Eval(4141, v is NestedStructGen<Decimal>, false);
- Eval(4142, v is NestedStructGen<Decimal>[], false);
- Eval(4143, v is NestedStructGen<Decimal>?, false);
- Eval(4144, v is NestedStructGen<Decimal>?[], false);
+// Eval(4141, v is NestedStructGen<Decimal>, false);
+// Eval(4142, v is NestedStructGen<Decimal>[], false);
+// Eval(4143, v is NestedStructGen<Decimal>?, false);
+// Eval(4144, v is NestedStructGen<Decimal>?[], false);
Eval(4145, v is ExplicitFieldOffsetStruct, false);
Eval(4146, v is ExplicitFieldOffsetStruct[], false);
Eval(4147, v is ExplicitFieldOffsetStruct?, false);
@@ -4087,18 +4087,18 @@ internal class Program
Eval(4166, v is ImplementTwoInterface[], false);
Eval(4167, v is ImplementTwoInterface?, false);
Eval(4168, v is ImplementTwoInterface?[], false);
- Eval(4169, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4170, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4171, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4172, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4173, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4174, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4175, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4176, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4177, v is ImplementAllInterface<int>, false);
- Eval(4178, v is ImplementAllInterface<int>[], false);
- Eval(4179, v is ImplementAllInterface<int>?, false);
- Eval(4180, v is ImplementAllInterface<int>?[], false);
+// Eval(4169, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4170, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4171, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4172, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4173, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4174, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4175, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4176, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4177, v is ImplementAllInterface<int>, false);
+// Eval(4178, v is ImplementAllInterface<int>[], false);
+// Eval(4179, v is ImplementAllInterface<int>?, false);
+// Eval(4180, v is ImplementAllInterface<int>?[], false);
Eval(4181, v is IntE, false);
Eval(4182, v is IntE[], false);
Eval(4183, v is IntE?, false);
@@ -4197,38 +4197,38 @@ internal class Program
Eval(4276, v is IEmpty[], false);
Eval(4277, v is INotEmpty, false);
Eval(4278, v is INotEmpty[], false);
- Eval(4279, v is IEmptyGen<int>, false);
- Eval(4280, v is IEmptyGen<int>[], false);
- Eval(4281, v is INotEmptyGen<int>, false);
- Eval(4282, v is INotEmptyGen<int>[], false);
+// Eval(4279, v is IEmptyGen<int>, false);
+// Eval(4280, v is IEmptyGen<int>[], false);
+// Eval(4281, v is INotEmptyGen<int>, false);
+// Eval(4282, v is INotEmptyGen<int>[], false);
Eval(4283, v is SimpleDelegate, false);
Eval(4284, v is SimpleDelegate[], false);
- Eval(4285, v is GenericDelegate<int>, false);
- Eval(4286, v is GenericDelegate<int>[], false);
+// Eval(4285, v is GenericDelegate<int>, false);
+// Eval(4286, v is GenericDelegate<int>[], false);
Eval(4287, v is EmptyClass, false);
Eval(4288, v is EmptyClass[], false);
Eval(4289, v is NotEmptyClass, false);
Eval(4290, v is NotEmptyClass[], false);
- Eval(4291, v is EmptyClassGen<int>, false);
- Eval(4292, v is EmptyClassGen<int>[], false);
- Eval(4293, v is NotEmptyClassGen<Guid>, false);
- Eval(4294, v is NotEmptyClassGen<Guid>[], false);
- Eval(4295, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4296, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4291, v is EmptyClassGen<int>, false);
+// Eval(4292, v is EmptyClassGen<int>[], false);
+// Eval(4293, v is NotEmptyClassGen<Guid>, false);
+// Eval(4294, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4295, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4296, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4297, v is NestedClass, false);
Eval(4298, v is NestedClass[], false);
- Eval(4299, v is NestedClassGen<Decimal>, false);
- Eval(4300, v is NestedClassGen<Decimal>[], false);
+// Eval(4299, v is NestedClassGen<Decimal>, false);
+// Eval(4300, v is NestedClassGen<Decimal>[], false);
Eval(4301, v is ImplementOneInterfaceC, false);
Eval(4302, v is ImplementOneInterfaceC[], false);
Eval(4303, v is ImplementTwoInterfaceC, false);
Eval(4304, v is ImplementTwoInterfaceC[], false);
- Eval(4305, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4306, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4307, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4308, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4309, v is ImplementAllInterfaceC<int>, false);
- Eval(4310, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4305, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4306, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4307, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4308, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4309, v is ImplementAllInterfaceC<int>, false);
+// Eval(4310, v is ImplementAllInterfaceC<int>[], false);
Eval(4311, v is SealedClass, false);
Eval(4312, v is SealedClass[], false);
}
@@ -4242,26 +4242,26 @@ internal class Program
Eval(4318, v is NotEmptyStruct[], false);
Eval(4319, v is NotEmptyStruct?, false);
Eval(4320, v is NotEmptyStruct?[], false);
- Eval(4321, v is EmptyStructGen<int>, false);
- Eval(4322, v is EmptyStructGen<int>[], false);
- Eval(4323, v is EmptyStructGen<int>?, false);
- Eval(4324, v is EmptyStructGen<int>?[], false);
- Eval(4325, v is NotEmptyStructGen<Guid>, false);
- Eval(4326, v is NotEmptyStructGen<Guid>[], false);
- Eval(4327, v is NotEmptyStructGen<Guid>?, false);
- Eval(4328, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4329, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4330, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4331, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4332, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4321, v is EmptyStructGen<int>, false);
+// Eval(4322, v is EmptyStructGen<int>[], false);
+// Eval(4323, v is EmptyStructGen<int>?, false);
+// Eval(4324, v is EmptyStructGen<int>?[], false);
+// Eval(4325, v is NotEmptyStructGen<Guid>, false);
+// Eval(4326, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4327, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4328, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4329, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4330, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4331, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4332, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4333, v is NestedStruct, false);
Eval(4334, v is NestedStruct[], false);
Eval(4335, v is NestedStruct?, false);
Eval(4336, v is NestedStruct?[], false);
- Eval(4337, v is NestedStructGen<Decimal>, false);
- Eval(4338, v is NestedStructGen<Decimal>[], false);
- Eval(4339, v is NestedStructGen<Decimal>?, false);
- Eval(4340, v is NestedStructGen<Decimal>?[], false);
+// Eval(4337, v is NestedStructGen<Decimal>, false);
+// Eval(4338, v is NestedStructGen<Decimal>[], false);
+// Eval(4339, v is NestedStructGen<Decimal>?, false);
+// Eval(4340, v is NestedStructGen<Decimal>?[], false);
Eval(4341, v is ExplicitFieldOffsetStruct, false);
Eval(4342, v is ExplicitFieldOffsetStruct[], false);
Eval(4343, v is ExplicitFieldOffsetStruct?, false);
@@ -4278,18 +4278,18 @@ internal class Program
Eval(4362, v is ImplementTwoInterface[], false);
Eval(4363, v is ImplementTwoInterface?, false);
Eval(4364, v is ImplementTwoInterface?[], false);
- Eval(4365, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4366, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4367, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4368, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4369, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4370, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4371, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4372, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4373, v is ImplementAllInterface<int>, false);
- Eval(4374, v is ImplementAllInterface<int>[], false);
- Eval(4375, v is ImplementAllInterface<int>?, false);
- Eval(4376, v is ImplementAllInterface<int>?[], false);
+// Eval(4365, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4366, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4367, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4368, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4369, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4370, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4371, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4372, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4373, v is ImplementAllInterface<int>, false);
+// Eval(4374, v is ImplementAllInterface<int>[], false);
+// Eval(4375, v is ImplementAllInterface<int>?, false);
+// Eval(4376, v is ImplementAllInterface<int>?[], false);
Eval(4377, v is IntE, false);
Eval(4378, v is IntE[], false);
Eval(4379, v is IntE?, false);
@@ -4388,38 +4388,38 @@ internal class Program
Eval(4472, v is IEmpty[], false);
Eval(4473, v is INotEmpty, false);
Eval(4474, v is INotEmpty[], false);
- Eval(4475, v is IEmptyGen<int>, false);
- Eval(4476, v is IEmptyGen<int>[], false);
- Eval(4477, v is INotEmptyGen<int>, false);
- Eval(4478, v is INotEmptyGen<int>[], false);
+// Eval(4475, v is IEmptyGen<int>, false);
+// Eval(4476, v is IEmptyGen<int>[], false);
+// Eval(4477, v is INotEmptyGen<int>, false);
+// Eval(4478, v is INotEmptyGen<int>[], false);
Eval(4479, v is SimpleDelegate, false);
Eval(4480, v is SimpleDelegate[], false);
- Eval(4481, v is GenericDelegate<int>, false);
- Eval(4482, v is GenericDelegate<int>[], false);
+// Eval(4481, v is GenericDelegate<int>, false);
+// Eval(4482, v is GenericDelegate<int>[], false);
Eval(4483, v is EmptyClass, false);
Eval(4484, v is EmptyClass[], false);
Eval(4485, v is NotEmptyClass, false);
Eval(4486, v is NotEmptyClass[], false);
- Eval(4487, v is EmptyClassGen<int>, false);
- Eval(4488, v is EmptyClassGen<int>[], false);
- Eval(4489, v is NotEmptyClassGen<Guid>, false);
- Eval(4490, v is NotEmptyClassGen<Guid>[], false);
- Eval(4491, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4492, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4487, v is EmptyClassGen<int>, false);
+// Eval(4488, v is EmptyClassGen<int>[], false);
+// Eval(4489, v is NotEmptyClassGen<Guid>, false);
+// Eval(4490, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4491, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4492, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4493, v is NestedClass, false);
Eval(4494, v is NestedClass[], false);
- Eval(4495, v is NestedClassGen<Decimal>, false);
- Eval(4496, v is NestedClassGen<Decimal>[], false);
+// Eval(4495, v is NestedClassGen<Decimal>, false);
+// Eval(4496, v is NestedClassGen<Decimal>[], false);
Eval(4497, v is ImplementOneInterfaceC, false);
Eval(4498, v is ImplementOneInterfaceC[], false);
Eval(4499, v is ImplementTwoInterfaceC, false);
Eval(4500, v is ImplementTwoInterfaceC[], false);
- Eval(4501, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4502, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4503, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4504, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4505, v is ImplementAllInterfaceC<int>, false);
- Eval(4506, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4501, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4502, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4503, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4504, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4505, v is ImplementAllInterfaceC<int>, false);
+// Eval(4506, v is ImplementAllInterfaceC<int>[], false);
Eval(4507, v is SealedClass, false);
Eval(4508, v is SealedClass[], false);
}
@@ -4433,26 +4433,26 @@ internal class Program
Eval(4514, v is NotEmptyStruct[], false);
Eval(4515, v is NotEmptyStruct?, false);
Eval(4516, v is NotEmptyStruct?[], false);
- Eval(4517, v is EmptyStructGen<int>, false);
- Eval(4518, v is EmptyStructGen<int>[], false);
- Eval(4519, v is EmptyStructGen<int>?, false);
- Eval(4520, v is EmptyStructGen<int>?[], false);
- Eval(4521, v is NotEmptyStructGen<Guid>, false);
- Eval(4522, v is NotEmptyStructGen<Guid>[], false);
- Eval(4523, v is NotEmptyStructGen<Guid>?, false);
- Eval(4524, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4525, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4526, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4527, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4528, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4517, v is EmptyStructGen<int>, false);
+// Eval(4518, v is EmptyStructGen<int>[], false);
+// Eval(4519, v is EmptyStructGen<int>?, false);
+// Eval(4520, v is EmptyStructGen<int>?[], false);
+// Eval(4521, v is NotEmptyStructGen<Guid>, false);
+// Eval(4522, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4523, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4524, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4525, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4526, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4527, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4528, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4529, v is NestedStruct, false);
Eval(4530, v is NestedStruct[], false);
Eval(4531, v is NestedStruct?, false);
Eval(4532, v is NestedStruct?[], false);
- Eval(4533, v is NestedStructGen<Decimal>, false);
- Eval(4534, v is NestedStructGen<Decimal>[], false);
- Eval(4535, v is NestedStructGen<Decimal>?, false);
- Eval(4536, v is NestedStructGen<Decimal>?[], false);
+// Eval(4533, v is NestedStructGen<Decimal>, false);
+// Eval(4534, v is NestedStructGen<Decimal>[], false);
+// Eval(4535, v is NestedStructGen<Decimal>?, false);
+// Eval(4536, v is NestedStructGen<Decimal>?[], false);
Eval(4537, v is ExplicitFieldOffsetStruct, false);
Eval(4538, v is ExplicitFieldOffsetStruct[], false);
Eval(4539, v is ExplicitFieldOffsetStruct?, false);
@@ -4469,18 +4469,18 @@ internal class Program
Eval(4558, v is ImplementTwoInterface[], false);
Eval(4559, v is ImplementTwoInterface?, false);
Eval(4560, v is ImplementTwoInterface?[], false);
- Eval(4561, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4562, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4563, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4564, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4565, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4566, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4567, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4568, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4569, v is ImplementAllInterface<int>, false);
- Eval(4570, v is ImplementAllInterface<int>[], false);
- Eval(4571, v is ImplementAllInterface<int>?, false);
- Eval(4572, v is ImplementAllInterface<int>?[], false);
+// Eval(4561, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4562, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4563, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4564, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4565, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4566, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4567, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4568, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4569, v is ImplementAllInterface<int>, false);
+// Eval(4570, v is ImplementAllInterface<int>[], false);
+// Eval(4571, v is ImplementAllInterface<int>?, false);
+// Eval(4572, v is ImplementAllInterface<int>?[], false);
Eval(4573, v is IntE, false);
Eval(4574, v is IntE[], false);
Eval(4575, v is IntE?, false);
@@ -4579,38 +4579,38 @@ internal class Program
Eval(4668, v is IEmpty[], false);
Eval(4669, v is INotEmpty, false);
Eval(4670, v is INotEmpty[], false);
- Eval(4671, v is IEmptyGen<int>, false);
- Eval(4672, v is IEmptyGen<int>[], false);
- Eval(4673, v is INotEmptyGen<int>, false);
- Eval(4674, v is INotEmptyGen<int>[], false);
+// Eval(4671, v is IEmptyGen<int>, false);
+// Eval(4672, v is IEmptyGen<int>[], false);
+// Eval(4673, v is INotEmptyGen<int>, false);
+// Eval(4674, v is INotEmptyGen<int>[], false);
Eval(4675, v is SimpleDelegate, false);
Eval(4676, v is SimpleDelegate[], false);
- Eval(4677, v is GenericDelegate<int>, false);
- Eval(4678, v is GenericDelegate<int>[], false);
+// Eval(4677, v is GenericDelegate<int>, false);
+// Eval(4678, v is GenericDelegate<int>[], false);
Eval(4679, v is EmptyClass, false);
Eval(4680, v is EmptyClass[], false);
Eval(4681, v is NotEmptyClass, false);
Eval(4682, v is NotEmptyClass[], false);
- Eval(4683, v is EmptyClassGen<int>, false);
- Eval(4684, v is EmptyClassGen<int>[], false);
- Eval(4685, v is NotEmptyClassGen<Guid>, false);
- Eval(4686, v is NotEmptyClassGen<Guid>[], false);
- Eval(4687, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4688, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4683, v is EmptyClassGen<int>, false);
+// Eval(4684, v is EmptyClassGen<int>[], false);
+// Eval(4685, v is NotEmptyClassGen<Guid>, false);
+// Eval(4686, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4687, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4688, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4689, v is NestedClass, false);
Eval(4690, v is NestedClass[], false);
- Eval(4691, v is NestedClassGen<Decimal>, false);
- Eval(4692, v is NestedClassGen<Decimal>[], false);
+// Eval(4691, v is NestedClassGen<Decimal>, false);
+// Eval(4692, v is NestedClassGen<Decimal>[], false);
Eval(4693, v is ImplementOneInterfaceC, false);
Eval(4694, v is ImplementOneInterfaceC[], false);
Eval(4695, v is ImplementTwoInterfaceC, false);
Eval(4696, v is ImplementTwoInterfaceC[], false);
- Eval(4697, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4698, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4699, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4700, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4701, v is ImplementAllInterfaceC<int>, false);
- Eval(4702, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4697, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4698, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4699, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4700, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4701, v is ImplementAllInterfaceC<int>, false);
+// Eval(4702, v is ImplementAllInterfaceC<int>[], false);
Eval(4703, v is SealedClass, false);
Eval(4704, v is SealedClass[], false);
}
@@ -4624,26 +4624,26 @@ internal class Program
Eval(4710, v is NotEmptyStruct[], false);
Eval(4711, v is NotEmptyStruct?, false);
Eval(4712, v is NotEmptyStruct?[], false);
- Eval(4713, v is EmptyStructGen<int>, false);
- Eval(4714, v is EmptyStructGen<int>[], false);
- Eval(4715, v is EmptyStructGen<int>?, false);
- Eval(4716, v is EmptyStructGen<int>?[], false);
- Eval(4717, v is NotEmptyStructGen<Guid>, false);
- Eval(4718, v is NotEmptyStructGen<Guid>[], false);
- Eval(4719, v is NotEmptyStructGen<Guid>?, false);
- Eval(4720, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4721, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4722, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4723, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4724, v is NotEmptyStructConstrainedGen<IntPtr>?[], true);
+// Eval(4713, v is EmptyStructGen<int>, false);
+// Eval(4714, v is EmptyStructGen<int>[], false);
+// Eval(4715, v is EmptyStructGen<int>?, false);
+// Eval(4716, v is EmptyStructGen<int>?[], false);
+// Eval(4717, v is NotEmptyStructGen<Guid>, false);
+// Eval(4718, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4719, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4720, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4721, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4722, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4723, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4724, v is NotEmptyStructConstrainedGen<IntPtr>?[], true);
Eval(4725, v is NestedStruct, false);
Eval(4726, v is NestedStruct[], false);
Eval(4727, v is NestedStruct?, false);
Eval(4728, v is NestedStruct?[], false);
- Eval(4729, v is NestedStructGen<Decimal>, false);
- Eval(4730, v is NestedStructGen<Decimal>[], false);
- Eval(4731, v is NestedStructGen<Decimal>?, false);
- Eval(4732, v is NestedStructGen<Decimal>?[], false);
+// Eval(4729, v is NestedStructGen<Decimal>, false);
+// Eval(4730, v is NestedStructGen<Decimal>[], false);
+// Eval(4731, v is NestedStructGen<Decimal>?, false);
+// Eval(4732, v is NestedStructGen<Decimal>?[], false);
Eval(4733, v is ExplicitFieldOffsetStruct, false);
Eval(4734, v is ExplicitFieldOffsetStruct[], false);
Eval(4735, v is ExplicitFieldOffsetStruct?, false);
@@ -4660,18 +4660,18 @@ internal class Program
Eval(4754, v is ImplementTwoInterface[], false);
Eval(4755, v is ImplementTwoInterface?, false);
Eval(4756, v is ImplementTwoInterface?[], false);
- Eval(4757, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4758, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4759, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4760, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4761, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4762, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4763, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4764, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4765, v is ImplementAllInterface<int>, false);
- Eval(4766, v is ImplementAllInterface<int>[], false);
- Eval(4767, v is ImplementAllInterface<int>?, false);
- Eval(4768, v is ImplementAllInterface<int>?[], false);
+// Eval(4757, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4758, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4759, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4760, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4761, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4762, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4763, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4764, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4765, v is ImplementAllInterface<int>, false);
+// Eval(4766, v is ImplementAllInterface<int>[], false);
+// Eval(4767, v is ImplementAllInterface<int>?, false);
+// Eval(4768, v is ImplementAllInterface<int>?[], false);
Eval(4769, v is IntE, false);
Eval(4770, v is IntE[], false);
Eval(4771, v is IntE?, false);
@@ -4770,38 +4770,38 @@ internal class Program
Eval(4864, v is IEmpty[], false);
Eval(4865, v is INotEmpty, false);
Eval(4866, v is INotEmpty[], false);
- Eval(4867, v is IEmptyGen<int>, false);
- Eval(4868, v is IEmptyGen<int>[], false);
- Eval(4869, v is INotEmptyGen<int>, false);
- Eval(4870, v is INotEmptyGen<int>[], false);
+// Eval(4867, v is IEmptyGen<int>, false);
+// Eval(4868, v is IEmptyGen<int>[], false);
+// Eval(4869, v is INotEmptyGen<int>, false);
+// Eval(4870, v is INotEmptyGen<int>[], false);
Eval(4871, v is SimpleDelegate, false);
Eval(4872, v is SimpleDelegate[], false);
- Eval(4873, v is GenericDelegate<int>, false);
- Eval(4874, v is GenericDelegate<int>[], false);
+// Eval(4873, v is GenericDelegate<int>, false);
+// Eval(4874, v is GenericDelegate<int>[], false);
Eval(4875, v is EmptyClass, false);
Eval(4876, v is EmptyClass[], false);
Eval(4877, v is NotEmptyClass, false);
Eval(4878, v is NotEmptyClass[], false);
- Eval(4879, v is EmptyClassGen<int>, false);
- Eval(4880, v is EmptyClassGen<int>[], false);
- Eval(4881, v is NotEmptyClassGen<Guid>, false);
- Eval(4882, v is NotEmptyClassGen<Guid>[], false);
- Eval(4883, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(4884, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4879, v is EmptyClassGen<int>, false);
+// Eval(4880, v is EmptyClassGen<int>[], false);
+// Eval(4881, v is NotEmptyClassGen<Guid>, false);
+// Eval(4882, v is NotEmptyClassGen<Guid>[], false);
+// Eval(4883, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4884, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(4885, v is NestedClass, false);
Eval(4886, v is NestedClass[], false);
- Eval(4887, v is NestedClassGen<Decimal>, false);
- Eval(4888, v is NestedClassGen<Decimal>[], false);
+// Eval(4887, v is NestedClassGen<Decimal>, false);
+// Eval(4888, v is NestedClassGen<Decimal>[], false);
Eval(4889, v is ImplementOneInterfaceC, false);
Eval(4890, v is ImplementOneInterfaceC[], false);
Eval(4891, v is ImplementTwoInterfaceC, false);
Eval(4892, v is ImplementTwoInterfaceC[], false);
- Eval(4893, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4894, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4895, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(4896, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4897, v is ImplementAllInterfaceC<int>, false);
- Eval(4898, v is ImplementAllInterfaceC<int>[], false);
+// Eval(4893, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4894, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4895, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4896, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4897, v is ImplementAllInterfaceC<int>, false);
+// Eval(4898, v is ImplementAllInterfaceC<int>[], false);
Eval(4899, v is SealedClass, false);
Eval(4900, v is SealedClass[], false);
}
@@ -4818,26 +4818,26 @@ internal class Program
Eval(4906, v is NotEmptyStruct[], false);
Eval(4907, v is NotEmptyStruct?, false);
Eval(4908, v is NotEmptyStruct?[], false);
- Eval(4909, v is EmptyStructGen<int>, false);
- Eval(4910, v is EmptyStructGen<int>[], false);
- Eval(4911, v is EmptyStructGen<int>?, false);
- Eval(4912, v is EmptyStructGen<int>?[], false);
- Eval(4913, v is NotEmptyStructGen<Guid>, false);
- Eval(4914, v is NotEmptyStructGen<Guid>[], false);
- Eval(4915, v is NotEmptyStructGen<Guid>?, false);
- Eval(4916, v is NotEmptyStructGen<Guid>?[], false);
- Eval(4917, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4918, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4919, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4920, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4909, v is EmptyStructGen<int>, false);
+// Eval(4910, v is EmptyStructGen<int>[], false);
+// Eval(4911, v is EmptyStructGen<int>?, false);
+// Eval(4912, v is EmptyStructGen<int>?[], false);
+// Eval(4913, v is NotEmptyStructGen<Guid>, false);
+// Eval(4914, v is NotEmptyStructGen<Guid>[], false);
+// Eval(4915, v is NotEmptyStructGen<Guid>?, false);
+// Eval(4916, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(4917, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4918, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4919, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4920, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4921, v is NestedStruct, true);
Eval(4922, v is NestedStruct[], false);
Eval(4923, v is NestedStruct?, true);
Eval(4924, v is NestedStruct?[], false);
- Eval(4925, v is NestedStructGen<Decimal>, false);
- Eval(4926, v is NestedStructGen<Decimal>[], false);
- Eval(4927, v is NestedStructGen<Decimal>?, false);
- Eval(4928, v is NestedStructGen<Decimal>?[], false);
+// Eval(4925, v is NestedStructGen<Decimal>, false);
+// Eval(4926, v is NestedStructGen<Decimal>[], false);
+// Eval(4927, v is NestedStructGen<Decimal>?, false);
+// Eval(4928, v is NestedStructGen<Decimal>?[], false);
Eval(4929, v is ExplicitFieldOffsetStruct, false);
Eval(4930, v is ExplicitFieldOffsetStruct[], false);
Eval(4931, v is ExplicitFieldOffsetStruct?, false);
@@ -4854,18 +4854,18 @@ internal class Program
Eval(4950, v is ImplementTwoInterface[], false);
Eval(4951, v is ImplementTwoInterface?, false);
Eval(4952, v is ImplementTwoInterface?[], false);
- Eval(4953, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4954, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4955, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4956, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4957, v is ImplementTwoInterfaceGen<int>, false);
- Eval(4958, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(4959, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(4960, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4961, v is ImplementAllInterface<int>, false);
- Eval(4962, v is ImplementAllInterface<int>[], false);
- Eval(4963, v is ImplementAllInterface<int>?, false);
- Eval(4964, v is ImplementAllInterface<int>?[], false);
+// Eval(4953, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4954, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4955, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4956, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4957, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(4958, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4959, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4960, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4961, v is ImplementAllInterface<int>, false);
+// Eval(4962, v is ImplementAllInterface<int>[], false);
+// Eval(4963, v is ImplementAllInterface<int>?, false);
+// Eval(4964, v is ImplementAllInterface<int>?[], false);
Eval(4965, v is IntE, false);
Eval(4966, v is IntE[], false);
Eval(4967, v is IntE?, false);
@@ -4964,38 +4964,38 @@ internal class Program
Eval(5060, v is IEmpty[], false);
Eval(5061, v is INotEmpty, false);
Eval(5062, v is INotEmpty[], false);
- Eval(5063, v is IEmptyGen<int>, false);
- Eval(5064, v is IEmptyGen<int>[], false);
- Eval(5065, v is INotEmptyGen<int>, false);
- Eval(5066, v is INotEmptyGen<int>[], false);
+// Eval(5063, v is IEmptyGen<int>, false);
+// Eval(5064, v is IEmptyGen<int>[], false);
+// Eval(5065, v is INotEmptyGen<int>, false);
+// Eval(5066, v is INotEmptyGen<int>[], false);
Eval(5067, v is SimpleDelegate, false);
Eval(5068, v is SimpleDelegate[], false);
- Eval(5069, v is GenericDelegate<int>, false);
- Eval(5070, v is GenericDelegate<int>[], false);
+// Eval(5069, v is GenericDelegate<int>, false);
+// Eval(5070, v is GenericDelegate<int>[], false);
Eval(5071, v is EmptyClass, false);
Eval(5072, v is EmptyClass[], false);
Eval(5073, v is NotEmptyClass, false);
Eval(5074, v is NotEmptyClass[], false);
- Eval(5075, v is EmptyClassGen<int>, false);
- Eval(5076, v is EmptyClassGen<int>[], false);
- Eval(5077, v is NotEmptyClassGen<Guid>, false);
- Eval(5078, v is NotEmptyClassGen<Guid>[], false);
- Eval(5079, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5080, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5075, v is EmptyClassGen<int>, false);
+// Eval(5076, v is EmptyClassGen<int>[], false);
+// Eval(5077, v is NotEmptyClassGen<Guid>, false);
+// Eval(5078, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5079, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5080, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5081, v is NestedClass, false);
Eval(5082, v is NestedClass[], false);
- Eval(5083, v is NestedClassGen<Decimal>, false);
- Eval(5084, v is NestedClassGen<Decimal>[], false);
+// Eval(5083, v is NestedClassGen<Decimal>, false);
+// Eval(5084, v is NestedClassGen<Decimal>[], false);
Eval(5085, v is ImplementOneInterfaceC, false);
Eval(5086, v is ImplementOneInterfaceC[], false);
Eval(5087, v is ImplementTwoInterfaceC, false);
Eval(5088, v is ImplementTwoInterfaceC[], false);
- Eval(5089, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5090, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5091, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5092, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5093, v is ImplementAllInterfaceC<int>, false);
- Eval(5094, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5089, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5090, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5091, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5092, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5093, v is ImplementAllInterfaceC<int>, false);
+// Eval(5094, v is ImplementAllInterfaceC<int>[], false);
Eval(5095, v is SealedClass, false);
Eval(5096, v is SealedClass[], false);
}
@@ -5009,26 +5009,26 @@ internal class Program
Eval(5102, v is NotEmptyStruct[], false);
Eval(5103, v is NotEmptyStruct?, false);
Eval(5104, v is NotEmptyStruct?[], false);
- Eval(5105, v is EmptyStructGen<int>, false);
- Eval(5106, v is EmptyStructGen<int>[], false);
- Eval(5107, v is EmptyStructGen<int>?, false);
- Eval(5108, v is EmptyStructGen<int>?[], false);
- Eval(5109, v is NotEmptyStructGen<Guid>, false);
- Eval(5110, v is NotEmptyStructGen<Guid>[], false);
- Eval(5111, v is NotEmptyStructGen<Guid>?, false);
- Eval(5112, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5113, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5114, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5115, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5116, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5105, v is EmptyStructGen<int>, false);
+// Eval(5106, v is EmptyStructGen<int>[], false);
+// Eval(5107, v is EmptyStructGen<int>?, false);
+// Eval(5108, v is EmptyStructGen<int>?[], false);
+// Eval(5109, v is NotEmptyStructGen<Guid>, false);
+// Eval(5110, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5111, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5112, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5113, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5114, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5115, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5116, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5117, v is NestedStruct, true);
Eval(5118, v is NestedStruct[], false);
Eval(5119, v is NestedStruct?, true);
Eval(5120, v is NestedStruct?[], false);
- Eval(5121, v is NestedStructGen<Decimal>, false);
- Eval(5122, v is NestedStructGen<Decimal>[], false);
- Eval(5123, v is NestedStructGen<Decimal>?, false);
- Eval(5124, v is NestedStructGen<Decimal>?[], false);
+// Eval(5121, v is NestedStructGen<Decimal>, false);
+// Eval(5122, v is NestedStructGen<Decimal>[], false);
+// Eval(5123, v is NestedStructGen<Decimal>?, false);
+// Eval(5124, v is NestedStructGen<Decimal>?[], false);
Eval(5125, v is ExplicitFieldOffsetStruct, false);
Eval(5126, v is ExplicitFieldOffsetStruct[], false);
Eval(5127, v is ExplicitFieldOffsetStruct?, false);
@@ -5045,18 +5045,18 @@ internal class Program
Eval(5146, v is ImplementTwoInterface[], false);
Eval(5147, v is ImplementTwoInterface?, false);
Eval(5148, v is ImplementTwoInterface?[], false);
- Eval(5149, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5150, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5151, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5152, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5153, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5154, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5155, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5156, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5157, v is ImplementAllInterface<int>, false);
- Eval(5158, v is ImplementAllInterface<int>[], false);
- Eval(5159, v is ImplementAllInterface<int>?, false);
- Eval(5160, v is ImplementAllInterface<int>?[], false);
+// Eval(5149, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5150, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5151, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5152, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5153, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5154, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5155, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5156, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5157, v is ImplementAllInterface<int>, false);
+// Eval(5158, v is ImplementAllInterface<int>[], false);
+// Eval(5159, v is ImplementAllInterface<int>?, false);
+// Eval(5160, v is ImplementAllInterface<int>?[], false);
Eval(5161, v is IntE, false);
Eval(5162, v is IntE[], false);
Eval(5163, v is IntE?, false);
@@ -5155,38 +5155,38 @@ internal class Program
Eval(5256, v is IEmpty[], false);
Eval(5257, v is INotEmpty, false);
Eval(5258, v is INotEmpty[], false);
- Eval(5259, v is IEmptyGen<int>, false);
- Eval(5260, v is IEmptyGen<int>[], false);
- Eval(5261, v is INotEmptyGen<int>, false);
- Eval(5262, v is INotEmptyGen<int>[], false);
+// Eval(5259, v is IEmptyGen<int>, false);
+// Eval(5260, v is IEmptyGen<int>[], false);
+// Eval(5261, v is INotEmptyGen<int>, false);
+// Eval(5262, v is INotEmptyGen<int>[], false);
Eval(5263, v is SimpleDelegate, false);
Eval(5264, v is SimpleDelegate[], false);
- Eval(5265, v is GenericDelegate<int>, false);
- Eval(5266, v is GenericDelegate<int>[], false);
+// Eval(5265, v is GenericDelegate<int>, false);
+// Eval(5266, v is GenericDelegate<int>[], false);
Eval(5267, v is EmptyClass, false);
Eval(5268, v is EmptyClass[], false);
Eval(5269, v is NotEmptyClass, false);
Eval(5270, v is NotEmptyClass[], false);
- Eval(5271, v is EmptyClassGen<int>, false);
- Eval(5272, v is EmptyClassGen<int>[], false);
- Eval(5273, v is NotEmptyClassGen<Guid>, false);
- Eval(5274, v is NotEmptyClassGen<Guid>[], false);
- Eval(5275, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5276, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5271, v is EmptyClassGen<int>, false);
+// Eval(5272, v is EmptyClassGen<int>[], false);
+// Eval(5273, v is NotEmptyClassGen<Guid>, false);
+// Eval(5274, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5275, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5276, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5277, v is NestedClass, false);
Eval(5278, v is NestedClass[], false);
- Eval(5279, v is NestedClassGen<Decimal>, false);
- Eval(5280, v is NestedClassGen<Decimal>[], false);
+// Eval(5279, v is NestedClassGen<Decimal>, false);
+// Eval(5280, v is NestedClassGen<Decimal>[], false);
Eval(5281, v is ImplementOneInterfaceC, false);
Eval(5282, v is ImplementOneInterfaceC[], false);
Eval(5283, v is ImplementTwoInterfaceC, false);
Eval(5284, v is ImplementTwoInterfaceC[], false);
- Eval(5285, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5286, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5287, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5288, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5289, v is ImplementAllInterfaceC<int>, false);
- Eval(5290, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5285, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5286, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5287, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5288, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5289, v is ImplementAllInterfaceC<int>, false);
+// Eval(5290, v is ImplementAllInterfaceC<int>[], false);
Eval(5291, v is SealedClass, false);
Eval(5292, v is SealedClass[], false);
}
@@ -5200,26 +5200,26 @@ internal class Program
Eval(5298, v is NotEmptyStruct[], false);
Eval(5299, v is NotEmptyStruct?, false);
Eval(5300, v is NotEmptyStruct?[], false);
- Eval(5301, v is EmptyStructGen<int>, false);
- Eval(5302, v is EmptyStructGen<int>[], false);
- Eval(5303, v is EmptyStructGen<int>?, false);
- Eval(5304, v is EmptyStructGen<int>?[], false);
- Eval(5305, v is NotEmptyStructGen<Guid>, false);
- Eval(5306, v is NotEmptyStructGen<Guid>[], false);
- Eval(5307, v is NotEmptyStructGen<Guid>?, false);
- Eval(5308, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5309, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5310, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5311, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5312, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5301, v is EmptyStructGen<int>, false);
+// Eval(5302, v is EmptyStructGen<int>[], false);
+// Eval(5303, v is EmptyStructGen<int>?, false);
+// Eval(5304, v is EmptyStructGen<int>?[], false);
+// Eval(5305, v is NotEmptyStructGen<Guid>, false);
+// Eval(5306, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5307, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5308, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5309, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5310, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5311, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5312, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5313, v is NestedStruct, false);
Eval(5314, v is NestedStruct[], false);
Eval(5315, v is NestedStruct?, false);
Eval(5316, v is NestedStruct?[], false);
- Eval(5317, v is NestedStructGen<Decimal>, false);
- Eval(5318, v is NestedStructGen<Decimal>[], false);
- Eval(5319, v is NestedStructGen<Decimal>?, false);
- Eval(5320, v is NestedStructGen<Decimal>?[], false);
+// Eval(5317, v is NestedStructGen<Decimal>, false);
+// Eval(5318, v is NestedStructGen<Decimal>[], false);
+// Eval(5319, v is NestedStructGen<Decimal>?, false);
+// Eval(5320, v is NestedStructGen<Decimal>?[], false);
Eval(5321, v is ExplicitFieldOffsetStruct, false);
Eval(5322, v is ExplicitFieldOffsetStruct[], false);
Eval(5323, v is ExplicitFieldOffsetStruct?, false);
@@ -5236,18 +5236,18 @@ internal class Program
Eval(5342, v is ImplementTwoInterface[], false);
Eval(5343, v is ImplementTwoInterface?, false);
Eval(5344, v is ImplementTwoInterface?[], false);
- Eval(5345, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5346, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5347, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5348, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5349, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5350, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5351, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5352, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5353, v is ImplementAllInterface<int>, false);
- Eval(5354, v is ImplementAllInterface<int>[], false);
- Eval(5355, v is ImplementAllInterface<int>?, false);
- Eval(5356, v is ImplementAllInterface<int>?[], false);
+// Eval(5345, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5346, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5347, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5348, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5349, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5350, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5351, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5352, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5353, v is ImplementAllInterface<int>, false);
+// Eval(5354, v is ImplementAllInterface<int>[], false);
+// Eval(5355, v is ImplementAllInterface<int>?, false);
+// Eval(5356, v is ImplementAllInterface<int>?[], false);
Eval(5357, v is IntE, false);
Eval(5358, v is IntE[], false);
Eval(5359, v is IntE?, false);
@@ -5346,38 +5346,38 @@ internal class Program
Eval(5452, v is IEmpty[], false);
Eval(5453, v is INotEmpty, false);
Eval(5454, v is INotEmpty[], false);
- Eval(5455, v is IEmptyGen<int>, false);
- Eval(5456, v is IEmptyGen<int>[], false);
- Eval(5457, v is INotEmptyGen<int>, false);
- Eval(5458, v is INotEmptyGen<int>[], false);
+// Eval(5455, v is IEmptyGen<int>, false);
+// Eval(5456, v is IEmptyGen<int>[], false);
+// Eval(5457, v is INotEmptyGen<int>, false);
+// Eval(5458, v is INotEmptyGen<int>[], false);
Eval(5459, v is SimpleDelegate, false);
Eval(5460, v is SimpleDelegate[], false);
- Eval(5461, v is GenericDelegate<int>, false);
- Eval(5462, v is GenericDelegate<int>[], false);
+// Eval(5461, v is GenericDelegate<int>, false);
+// Eval(5462, v is GenericDelegate<int>[], false);
Eval(5463, v is EmptyClass, false);
Eval(5464, v is EmptyClass[], false);
Eval(5465, v is NotEmptyClass, false);
Eval(5466, v is NotEmptyClass[], false);
- Eval(5467, v is EmptyClassGen<int>, false);
- Eval(5468, v is EmptyClassGen<int>[], false);
- Eval(5469, v is NotEmptyClassGen<Guid>, false);
- Eval(5470, v is NotEmptyClassGen<Guid>[], false);
- Eval(5471, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5472, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5467, v is EmptyClassGen<int>, false);
+// Eval(5468, v is EmptyClassGen<int>[], false);
+// Eval(5469, v is NotEmptyClassGen<Guid>, false);
+// Eval(5470, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5471, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5472, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5473, v is NestedClass, false);
Eval(5474, v is NestedClass[], false);
- Eval(5475, v is NestedClassGen<Decimal>, false);
- Eval(5476, v is NestedClassGen<Decimal>[], false);
+// Eval(5475, v is NestedClassGen<Decimal>, false);
+// Eval(5476, v is NestedClassGen<Decimal>[], false);
Eval(5477, v is ImplementOneInterfaceC, false);
Eval(5478, v is ImplementOneInterfaceC[], false);
Eval(5479, v is ImplementTwoInterfaceC, false);
Eval(5480, v is ImplementTwoInterfaceC[], false);
- Eval(5481, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5482, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5483, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5484, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5485, v is ImplementAllInterfaceC<int>, false);
- Eval(5486, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5481, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5482, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5483, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5484, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5485, v is ImplementAllInterfaceC<int>, false);
+// Eval(5486, v is ImplementAllInterfaceC<int>[], false);
Eval(5487, v is SealedClass, false);
Eval(5488, v is SealedClass[], false);
}
@@ -5391,26 +5391,26 @@ internal class Program
Eval(5494, v is NotEmptyStruct[], false);
Eval(5495, v is NotEmptyStruct?, false);
Eval(5496, v is NotEmptyStruct?[], false);
- Eval(5497, v is EmptyStructGen<int>, false);
- Eval(5498, v is EmptyStructGen<int>[], false);
- Eval(5499, v is EmptyStructGen<int>?, false);
- Eval(5500, v is EmptyStructGen<int>?[], false);
- Eval(5501, v is NotEmptyStructGen<Guid>, false);
- Eval(5502, v is NotEmptyStructGen<Guid>[], false);
- Eval(5503, v is NotEmptyStructGen<Guid>?, false);
- Eval(5504, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5505, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5506, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5507, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5508, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5497, v is EmptyStructGen<int>, false);
+// Eval(5498, v is EmptyStructGen<int>[], false);
+// Eval(5499, v is EmptyStructGen<int>?, false);
+// Eval(5500, v is EmptyStructGen<int>?[], false);
+// Eval(5501, v is NotEmptyStructGen<Guid>, false);
+// Eval(5502, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5503, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5504, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5505, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5506, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5507, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5508, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5509, v is NestedStruct, false);
Eval(5510, v is NestedStruct[], false);
Eval(5511, v is NestedStruct?, false);
Eval(5512, v is NestedStruct?[], false);
- Eval(5513, v is NestedStructGen<Decimal>, false);
- Eval(5514, v is NestedStructGen<Decimal>[], false);
- Eval(5515, v is NestedStructGen<Decimal>?, false);
- Eval(5516, v is NestedStructGen<Decimal>?[], false);
+// Eval(5513, v is NestedStructGen<Decimal>, false);
+// Eval(5514, v is NestedStructGen<Decimal>[], false);
+// Eval(5515, v is NestedStructGen<Decimal>?, false);
+// Eval(5516, v is NestedStructGen<Decimal>?[], false);
Eval(5517, v is ExplicitFieldOffsetStruct, false);
Eval(5518, v is ExplicitFieldOffsetStruct[], false);
Eval(5519, v is ExplicitFieldOffsetStruct?, false);
@@ -5427,18 +5427,18 @@ internal class Program
Eval(5538, v is ImplementTwoInterface[], false);
Eval(5539, v is ImplementTwoInterface?, false);
Eval(5540, v is ImplementTwoInterface?[], false);
- Eval(5541, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5542, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5543, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5544, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5545, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5546, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5547, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5548, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5549, v is ImplementAllInterface<int>, false);
- Eval(5550, v is ImplementAllInterface<int>[], false);
- Eval(5551, v is ImplementAllInterface<int>?, false);
- Eval(5552, v is ImplementAllInterface<int>?[], false);
+// Eval(5541, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5542, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5543, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5544, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5545, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5546, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5547, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5548, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5549, v is ImplementAllInterface<int>, false);
+// Eval(5550, v is ImplementAllInterface<int>[], false);
+// Eval(5551, v is ImplementAllInterface<int>?, false);
+// Eval(5552, v is ImplementAllInterface<int>?[], false);
Eval(5553, v is IntE, false);
Eval(5554, v is IntE[], false);
Eval(5555, v is IntE?, false);
@@ -5537,38 +5537,38 @@ internal class Program
Eval(5648, v is IEmpty[], false);
Eval(5649, v is INotEmpty, false);
Eval(5650, v is INotEmpty[], false);
- Eval(5651, v is IEmptyGen<int>, false);
- Eval(5652, v is IEmptyGen<int>[], false);
- Eval(5653, v is INotEmptyGen<int>, false);
- Eval(5654, v is INotEmptyGen<int>[], false);
+// Eval(5651, v is IEmptyGen<int>, false);
+// Eval(5652, v is IEmptyGen<int>[], false);
+// Eval(5653, v is INotEmptyGen<int>, false);
+// Eval(5654, v is INotEmptyGen<int>[], false);
Eval(5655, v is SimpleDelegate, false);
Eval(5656, v is SimpleDelegate[], false);
- Eval(5657, v is GenericDelegate<int>, false);
- Eval(5658, v is GenericDelegate<int>[], false);
+// Eval(5657, v is GenericDelegate<int>, false);
+// Eval(5658, v is GenericDelegate<int>[], false);
Eval(5659, v is EmptyClass, false);
Eval(5660, v is EmptyClass[], false);
Eval(5661, v is NotEmptyClass, false);
Eval(5662, v is NotEmptyClass[], false);
- Eval(5663, v is EmptyClassGen<int>, false);
- Eval(5664, v is EmptyClassGen<int>[], false);
- Eval(5665, v is NotEmptyClassGen<Guid>, false);
- Eval(5666, v is NotEmptyClassGen<Guid>[], false);
- Eval(5667, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5668, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5663, v is EmptyClassGen<int>, false);
+// Eval(5664, v is EmptyClassGen<int>[], false);
+// Eval(5665, v is NotEmptyClassGen<Guid>, false);
+// Eval(5666, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5667, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5668, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5669, v is NestedClass, false);
Eval(5670, v is NestedClass[], false);
- Eval(5671, v is NestedClassGen<Decimal>, false);
- Eval(5672, v is NestedClassGen<Decimal>[], false);
+// Eval(5671, v is NestedClassGen<Decimal>, false);
+// Eval(5672, v is NestedClassGen<Decimal>[], false);
Eval(5673, v is ImplementOneInterfaceC, false);
Eval(5674, v is ImplementOneInterfaceC[], false);
Eval(5675, v is ImplementTwoInterfaceC, false);
Eval(5676, v is ImplementTwoInterfaceC[], false);
- Eval(5677, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5678, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5679, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5680, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5681, v is ImplementAllInterfaceC<int>, false);
- Eval(5682, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5677, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5678, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5679, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5680, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5681, v is ImplementAllInterfaceC<int>, false);
+// Eval(5682, v is ImplementAllInterfaceC<int>[], false);
Eval(5683, v is SealedClass, false);
Eval(5684, v is SealedClass[], false);
}
@@ -5582,26 +5582,26 @@ internal class Program
Eval(5690, v is NotEmptyStruct[], false);
Eval(5691, v is NotEmptyStruct?, false);
Eval(5692, v is NotEmptyStruct?[], false);
- Eval(5693, v is EmptyStructGen<int>, false);
- Eval(5694, v is EmptyStructGen<int>[], false);
- Eval(5695, v is EmptyStructGen<int>?, false);
- Eval(5696, v is EmptyStructGen<int>?[], false);
- Eval(5697, v is NotEmptyStructGen<Guid>, false);
- Eval(5698, v is NotEmptyStructGen<Guid>[], false);
- Eval(5699, v is NotEmptyStructGen<Guid>?, false);
- Eval(5700, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5701, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5702, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5703, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5704, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5693, v is EmptyStructGen<int>, false);
+// Eval(5694, v is EmptyStructGen<int>[], false);
+// Eval(5695, v is EmptyStructGen<int>?, false);
+// Eval(5696, v is EmptyStructGen<int>?[], false);
+// Eval(5697, v is NotEmptyStructGen<Guid>, false);
+// Eval(5698, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5699, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5700, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5701, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5702, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5703, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5704, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5705, v is NestedStruct, false);
Eval(5706, v is NestedStruct[], false);
Eval(5707, v is NestedStruct?, false);
Eval(5708, v is NestedStruct?[], true);
- Eval(5709, v is NestedStructGen<Decimal>, false);
- Eval(5710, v is NestedStructGen<Decimal>[], false);
- Eval(5711, v is NestedStructGen<Decimal>?, false);
- Eval(5712, v is NestedStructGen<Decimal>?[], false);
+// Eval(5709, v is NestedStructGen<Decimal>, false);
+// Eval(5710, v is NestedStructGen<Decimal>[], false);
+// Eval(5711, v is NestedStructGen<Decimal>?, false);
+// Eval(5712, v is NestedStructGen<Decimal>?[], false);
Eval(5713, v is ExplicitFieldOffsetStruct, false);
Eval(5714, v is ExplicitFieldOffsetStruct[], false);
Eval(5715, v is ExplicitFieldOffsetStruct?, false);
@@ -5618,18 +5618,18 @@ internal class Program
Eval(5734, v is ImplementTwoInterface[], false);
Eval(5735, v is ImplementTwoInterface?, false);
Eval(5736, v is ImplementTwoInterface?[], false);
- Eval(5737, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5738, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5739, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5740, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5741, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5742, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5743, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5744, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5745, v is ImplementAllInterface<int>, false);
- Eval(5746, v is ImplementAllInterface<int>[], false);
- Eval(5747, v is ImplementAllInterface<int>?, false);
- Eval(5748, v is ImplementAllInterface<int>?[], false);
+// Eval(5737, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5738, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5739, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5740, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5741, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5742, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5743, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5744, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5745, v is ImplementAllInterface<int>, false);
+// Eval(5746, v is ImplementAllInterface<int>[], false);
+// Eval(5747, v is ImplementAllInterface<int>?, false);
+// Eval(5748, v is ImplementAllInterface<int>?[], false);
Eval(5749, v is IntE, false);
Eval(5750, v is IntE[], false);
Eval(5751, v is IntE?, false);
@@ -5728,38 +5728,38 @@ internal class Program
Eval(5844, v is IEmpty[], false);
Eval(5845, v is INotEmpty, false);
Eval(5846, v is INotEmpty[], false);
- Eval(5847, v is IEmptyGen<int>, false);
- Eval(5848, v is IEmptyGen<int>[], false);
- Eval(5849, v is INotEmptyGen<int>, false);
- Eval(5850, v is INotEmptyGen<int>[], false);
+// Eval(5847, v is IEmptyGen<int>, false);
+// Eval(5848, v is IEmptyGen<int>[], false);
+// Eval(5849, v is INotEmptyGen<int>, false);
+// Eval(5850, v is INotEmptyGen<int>[], false);
Eval(5851, v is SimpleDelegate, false);
Eval(5852, v is SimpleDelegate[], false);
- Eval(5853, v is GenericDelegate<int>, false);
- Eval(5854, v is GenericDelegate<int>[], false);
+// Eval(5853, v is GenericDelegate<int>, false);
+// Eval(5854, v is GenericDelegate<int>[], false);
Eval(5855, v is EmptyClass, false);
Eval(5856, v is EmptyClass[], false);
Eval(5857, v is NotEmptyClass, false);
Eval(5858, v is NotEmptyClass[], false);
- Eval(5859, v is EmptyClassGen<int>, false);
- Eval(5860, v is EmptyClassGen<int>[], false);
- Eval(5861, v is NotEmptyClassGen<Guid>, false);
- Eval(5862, v is NotEmptyClassGen<Guid>[], false);
- Eval(5863, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(5864, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5859, v is EmptyClassGen<int>, false);
+// Eval(5860, v is EmptyClassGen<int>[], false);
+// Eval(5861, v is NotEmptyClassGen<Guid>, false);
+// Eval(5862, v is NotEmptyClassGen<Guid>[], false);
+// Eval(5863, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5864, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(5865, v is NestedClass, false);
Eval(5866, v is NestedClass[], false);
- Eval(5867, v is NestedClassGen<Decimal>, false);
- Eval(5868, v is NestedClassGen<Decimal>[], false);
+// Eval(5867, v is NestedClassGen<Decimal>, false);
+// Eval(5868, v is NestedClassGen<Decimal>[], false);
Eval(5869, v is ImplementOneInterfaceC, false);
Eval(5870, v is ImplementOneInterfaceC[], false);
Eval(5871, v is ImplementTwoInterfaceC, false);
Eval(5872, v is ImplementTwoInterfaceC[], false);
- Eval(5873, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5874, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5875, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(5876, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5877, v is ImplementAllInterfaceC<int>, false);
- Eval(5878, v is ImplementAllInterfaceC<int>[], false);
+// Eval(5873, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5874, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5875, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5876, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5877, v is ImplementAllInterfaceC<int>, false);
+// Eval(5878, v is ImplementAllInterfaceC<int>[], false);
Eval(5879, v is SealedClass, false);
Eval(5880, v is SealedClass[], false);
}
@@ -5776,26 +5776,26 @@ internal class Program
Eval(5886, v is NotEmptyStruct[], false);
Eval(5887, v is NotEmptyStruct?, false);
Eval(5888, v is NotEmptyStruct?[], false);
- Eval(5889, v is EmptyStructGen<int>, false);
- Eval(5890, v is EmptyStructGen<int>[], false);
- Eval(5891, v is EmptyStructGen<int>?, false);
- Eval(5892, v is EmptyStructGen<int>?[], false);
- Eval(5893, v is NotEmptyStructGen<Guid>, false);
- Eval(5894, v is NotEmptyStructGen<Guid>[], false);
- Eval(5895, v is NotEmptyStructGen<Guid>?, false);
- Eval(5896, v is NotEmptyStructGen<Guid>?[], false);
- Eval(5897, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5898, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5899, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5900, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5889, v is EmptyStructGen<int>, false);
+// Eval(5890, v is EmptyStructGen<int>[], false);
+// Eval(5891, v is EmptyStructGen<int>?, false);
+// Eval(5892, v is EmptyStructGen<int>?[], false);
+// Eval(5893, v is NotEmptyStructGen<Guid>, false);
+// Eval(5894, v is NotEmptyStructGen<Guid>[], false);
+// Eval(5895, v is NotEmptyStructGen<Guid>?, false);
+// Eval(5896, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(5897, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5898, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5899, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5900, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5901, v is NestedStruct, false);
Eval(5902, v is NestedStruct[], false);
Eval(5903, v is NestedStruct?, false);
Eval(5904, v is NestedStruct?[], false);
- Eval(5905, v is NestedStructGen<Decimal>, true);
- Eval(5906, v is NestedStructGen<Decimal>[], false);
- Eval(5907, v is NestedStructGen<Decimal>?, true);
- Eval(5908, v is NestedStructGen<Decimal>?[], false);
+// Eval(5905, v is NestedStructGen<Decimal>, true);
+// Eval(5906, v is NestedStructGen<Decimal>[], false);
+// Eval(5907, v is NestedStructGen<Decimal>?, true);
+// Eval(5908, v is NestedStructGen<Decimal>?[], false);
Eval(5909, v is ExplicitFieldOffsetStruct, false);
Eval(5910, v is ExplicitFieldOffsetStruct[], false);
Eval(5911, v is ExplicitFieldOffsetStruct?, false);
@@ -5812,18 +5812,18 @@ internal class Program
Eval(5930, v is ImplementTwoInterface[], false);
Eval(5931, v is ImplementTwoInterface?, false);
Eval(5932, v is ImplementTwoInterface?[], false);
- Eval(5933, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5934, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5935, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5936, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5937, v is ImplementTwoInterfaceGen<int>, false);
- Eval(5938, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(5939, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(5940, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5941, v is ImplementAllInterface<int>, false);
- Eval(5942, v is ImplementAllInterface<int>[], false);
- Eval(5943, v is ImplementAllInterface<int>?, false);
- Eval(5944, v is ImplementAllInterface<int>?[], false);
+// Eval(5933, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5934, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5935, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5936, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5937, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(5938, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5939, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5940, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5941, v is ImplementAllInterface<int>, false);
+// Eval(5942, v is ImplementAllInterface<int>[], false);
+// Eval(5943, v is ImplementAllInterface<int>?, false);
+// Eval(5944, v is ImplementAllInterface<int>?[], false);
Eval(5945, v is IntE, false);
Eval(5946, v is IntE[], false);
Eval(5947, v is IntE?, false);
@@ -5922,38 +5922,38 @@ internal class Program
Eval(6040, v is IEmpty[], false);
Eval(6041, v is INotEmpty, false);
Eval(6042, v is INotEmpty[], false);
- Eval(6043, v is IEmptyGen<int>, false);
- Eval(6044, v is IEmptyGen<int>[], false);
- Eval(6045, v is INotEmptyGen<int>, false);
- Eval(6046, v is INotEmptyGen<int>[], false);
+// Eval(6043, v is IEmptyGen<int>, false);
+// Eval(6044, v is IEmptyGen<int>[], false);
+// Eval(6045, v is INotEmptyGen<int>, false);
+// Eval(6046, v is INotEmptyGen<int>[], false);
Eval(6047, v is SimpleDelegate, false);
Eval(6048, v is SimpleDelegate[], false);
- Eval(6049, v is GenericDelegate<int>, false);
- Eval(6050, v is GenericDelegate<int>[], false);
+// Eval(6049, v is GenericDelegate<int>, false);
+// Eval(6050, v is GenericDelegate<int>[], false);
Eval(6051, v is EmptyClass, false);
Eval(6052, v is EmptyClass[], false);
Eval(6053, v is NotEmptyClass, false);
Eval(6054, v is NotEmptyClass[], false);
- Eval(6055, v is EmptyClassGen<int>, false);
- Eval(6056, v is EmptyClassGen<int>[], false);
- Eval(6057, v is NotEmptyClassGen<Guid>, false);
- Eval(6058, v is NotEmptyClassGen<Guid>[], false);
- Eval(6059, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6060, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6055, v is EmptyClassGen<int>, false);
+// Eval(6056, v is EmptyClassGen<int>[], false);
+// Eval(6057, v is NotEmptyClassGen<Guid>, false);
+// Eval(6058, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6059, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6060, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6061, v is NestedClass, false);
Eval(6062, v is NestedClass[], false);
- Eval(6063, v is NestedClassGen<Decimal>, false);
- Eval(6064, v is NestedClassGen<Decimal>[], false);
+// Eval(6063, v is NestedClassGen<Decimal>, false);
+// Eval(6064, v is NestedClassGen<Decimal>[], false);
Eval(6065, v is ImplementOneInterfaceC, false);
Eval(6066, v is ImplementOneInterfaceC[], false);
Eval(6067, v is ImplementTwoInterfaceC, false);
Eval(6068, v is ImplementTwoInterfaceC[], false);
- Eval(6069, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6070, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6071, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6072, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6073, v is ImplementAllInterfaceC<int>, false);
- Eval(6074, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6069, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6070, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6071, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6072, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6073, v is ImplementAllInterfaceC<int>, false);
+// Eval(6074, v is ImplementAllInterfaceC<int>[], false);
Eval(6075, v is SealedClass, false);
Eval(6076, v is SealedClass[], false);
}
@@ -5967,26 +5967,26 @@ internal class Program
Eval(6082, v is NotEmptyStruct[], false);
Eval(6083, v is NotEmptyStruct?, false);
Eval(6084, v is NotEmptyStruct?[], false);
- Eval(6085, v is EmptyStructGen<int>, false);
- Eval(6086, v is EmptyStructGen<int>[], false);
- Eval(6087, v is EmptyStructGen<int>?, false);
- Eval(6088, v is EmptyStructGen<int>?[], false);
- Eval(6089, v is NotEmptyStructGen<Guid>, false);
- Eval(6090, v is NotEmptyStructGen<Guid>[], false);
- Eval(6091, v is NotEmptyStructGen<Guid>?, false);
- Eval(6092, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6093, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6094, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6095, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6096, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6085, v is EmptyStructGen<int>, false);
+// Eval(6086, v is EmptyStructGen<int>[], false);
+// Eval(6087, v is EmptyStructGen<int>?, false);
+// Eval(6088, v is EmptyStructGen<int>?[], false);
+// Eval(6089, v is NotEmptyStructGen<Guid>, false);
+// Eval(6090, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6091, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6092, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6093, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6094, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6095, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6096, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6097, v is NestedStruct, false);
Eval(6098, v is NestedStruct[], false);
Eval(6099, v is NestedStruct?, false);
Eval(6100, v is NestedStruct?[], false);
- Eval(6101, v is NestedStructGen<Decimal>, true);
- Eval(6102, v is NestedStructGen<Decimal>[], false);
- Eval(6103, v is NestedStructGen<Decimal>?, true);
- Eval(6104, v is NestedStructGen<Decimal>?[], false);
+// Eval(6101, v is NestedStructGen<Decimal>, true);
+// Eval(6102, v is NestedStructGen<Decimal>[], false);
+// Eval(6103, v is NestedStructGen<Decimal>?, true);
+// Eval(6104, v is NestedStructGen<Decimal>?[], false);
Eval(6105, v is ExplicitFieldOffsetStruct, false);
Eval(6106, v is ExplicitFieldOffsetStruct[], false);
Eval(6107, v is ExplicitFieldOffsetStruct?, false);
@@ -6003,18 +6003,18 @@ internal class Program
Eval(6126, v is ImplementTwoInterface[], false);
Eval(6127, v is ImplementTwoInterface?, false);
Eval(6128, v is ImplementTwoInterface?[], false);
- Eval(6129, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6130, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6131, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6132, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6133, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6134, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6135, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6136, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6137, v is ImplementAllInterface<int>, false);
- Eval(6138, v is ImplementAllInterface<int>[], false);
- Eval(6139, v is ImplementAllInterface<int>?, false);
- Eval(6140, v is ImplementAllInterface<int>?[], false);
+// Eval(6129, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6130, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6131, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6132, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6133, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6134, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6135, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6136, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6137, v is ImplementAllInterface<int>, false);
+// Eval(6138, v is ImplementAllInterface<int>[], false);
+// Eval(6139, v is ImplementAllInterface<int>?, false);
+// Eval(6140, v is ImplementAllInterface<int>?[], false);
Eval(6141, v is IntE, false);
Eval(6142, v is IntE[], false);
Eval(6143, v is IntE?, false);
@@ -6113,38 +6113,38 @@ internal class Program
Eval(6236, v is IEmpty[], false);
Eval(6237, v is INotEmpty, false);
Eval(6238, v is INotEmpty[], false);
- Eval(6239, v is IEmptyGen<int>, false);
- Eval(6240, v is IEmptyGen<int>[], false);
- Eval(6241, v is INotEmptyGen<int>, false);
- Eval(6242, v is INotEmptyGen<int>[], false);
+// Eval(6239, v is IEmptyGen<int>, false);
+// Eval(6240, v is IEmptyGen<int>[], false);
+// Eval(6241, v is INotEmptyGen<int>, false);
+// Eval(6242, v is INotEmptyGen<int>[], false);
Eval(6243, v is SimpleDelegate, false);
Eval(6244, v is SimpleDelegate[], false);
- Eval(6245, v is GenericDelegate<int>, false);
- Eval(6246, v is GenericDelegate<int>[], false);
+// Eval(6245, v is GenericDelegate<int>, false);
+// Eval(6246, v is GenericDelegate<int>[], false);
Eval(6247, v is EmptyClass, false);
Eval(6248, v is EmptyClass[], false);
Eval(6249, v is NotEmptyClass, false);
Eval(6250, v is NotEmptyClass[], false);
- Eval(6251, v is EmptyClassGen<int>, false);
- Eval(6252, v is EmptyClassGen<int>[], false);
- Eval(6253, v is NotEmptyClassGen<Guid>, false);
- Eval(6254, v is NotEmptyClassGen<Guid>[], false);
- Eval(6255, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6256, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6251, v is EmptyClassGen<int>, false);
+// Eval(6252, v is EmptyClassGen<int>[], false);
+// Eval(6253, v is NotEmptyClassGen<Guid>, false);
+// Eval(6254, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6255, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6256, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6257, v is NestedClass, false);
Eval(6258, v is NestedClass[], false);
- Eval(6259, v is NestedClassGen<Decimal>, false);
- Eval(6260, v is NestedClassGen<Decimal>[], false);
+// Eval(6259, v is NestedClassGen<Decimal>, false);
+// Eval(6260, v is NestedClassGen<Decimal>[], false);
Eval(6261, v is ImplementOneInterfaceC, false);
Eval(6262, v is ImplementOneInterfaceC[], false);
Eval(6263, v is ImplementTwoInterfaceC, false);
Eval(6264, v is ImplementTwoInterfaceC[], false);
- Eval(6265, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6266, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6267, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6268, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6269, v is ImplementAllInterfaceC<int>, false);
- Eval(6270, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6265, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6266, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6267, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6268, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6269, v is ImplementAllInterfaceC<int>, false);
+// Eval(6270, v is ImplementAllInterfaceC<int>[], false);
Eval(6271, v is SealedClass, false);
Eval(6272, v is SealedClass[], false);
}
@@ -6158,26 +6158,26 @@ internal class Program
Eval(6278, v is NotEmptyStruct[], false);
Eval(6279, v is NotEmptyStruct?, false);
Eval(6280, v is NotEmptyStruct?[], false);
- Eval(6281, v is EmptyStructGen<int>, false);
- Eval(6282, v is EmptyStructGen<int>[], false);
- Eval(6283, v is EmptyStructGen<int>?, false);
- Eval(6284, v is EmptyStructGen<int>?[], false);
- Eval(6285, v is NotEmptyStructGen<Guid>, false);
- Eval(6286, v is NotEmptyStructGen<Guid>[], false);
- Eval(6287, v is NotEmptyStructGen<Guid>?, false);
- Eval(6288, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6289, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6290, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6291, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6292, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6281, v is EmptyStructGen<int>, false);
+// Eval(6282, v is EmptyStructGen<int>[], false);
+// Eval(6283, v is EmptyStructGen<int>?, false);
+// Eval(6284, v is EmptyStructGen<int>?[], false);
+// Eval(6285, v is NotEmptyStructGen<Guid>, false);
+// Eval(6286, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6287, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6288, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6289, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6290, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6291, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6292, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6293, v is NestedStruct, false);
Eval(6294, v is NestedStruct[], false);
Eval(6295, v is NestedStruct?, false);
Eval(6296, v is NestedStruct?[], false);
- Eval(6297, v is NestedStructGen<Decimal>, false);
- Eval(6298, v is NestedStructGen<Decimal>[], false);
- Eval(6299, v is NestedStructGen<Decimal>?, false);
- Eval(6300, v is NestedStructGen<Decimal>?[], false);
+// Eval(6297, v is NestedStructGen<Decimal>, false);
+// Eval(6298, v is NestedStructGen<Decimal>[], false);
+// Eval(6299, v is NestedStructGen<Decimal>?, false);
+// Eval(6300, v is NestedStructGen<Decimal>?[], false);
Eval(6301, v is ExplicitFieldOffsetStruct, false);
Eval(6302, v is ExplicitFieldOffsetStruct[], false);
Eval(6303, v is ExplicitFieldOffsetStruct?, false);
@@ -6194,18 +6194,18 @@ internal class Program
Eval(6322, v is ImplementTwoInterface[], false);
Eval(6323, v is ImplementTwoInterface?, false);
Eval(6324, v is ImplementTwoInterface?[], false);
- Eval(6325, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6326, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6327, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6328, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6329, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6330, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6331, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6332, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6333, v is ImplementAllInterface<int>, false);
- Eval(6334, v is ImplementAllInterface<int>[], false);
- Eval(6335, v is ImplementAllInterface<int>?, false);
- Eval(6336, v is ImplementAllInterface<int>?[], false);
+// Eval(6325, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6326, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6327, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6328, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6329, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6330, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6331, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6332, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6333, v is ImplementAllInterface<int>, false);
+// Eval(6334, v is ImplementAllInterface<int>[], false);
+// Eval(6335, v is ImplementAllInterface<int>?, false);
+// Eval(6336, v is ImplementAllInterface<int>?[], false);
Eval(6337, v is IntE, false);
Eval(6338, v is IntE[], false);
Eval(6339, v is IntE?, false);
@@ -6304,38 +6304,38 @@ internal class Program
Eval(6432, v is IEmpty[], false);
Eval(6433, v is INotEmpty, false);
Eval(6434, v is INotEmpty[], false);
- Eval(6435, v is IEmptyGen<int>, false);
- Eval(6436, v is IEmptyGen<int>[], false);
- Eval(6437, v is INotEmptyGen<int>, false);
- Eval(6438, v is INotEmptyGen<int>[], false);
+// Eval(6435, v is IEmptyGen<int>, false);
+// Eval(6436, v is IEmptyGen<int>[], false);
+// Eval(6437, v is INotEmptyGen<int>, false);
+// Eval(6438, v is INotEmptyGen<int>[], false);
Eval(6439, v is SimpleDelegate, false);
Eval(6440, v is SimpleDelegate[], false);
- Eval(6441, v is GenericDelegate<int>, false);
- Eval(6442, v is GenericDelegate<int>[], false);
+// Eval(6441, v is GenericDelegate<int>, false);
+// Eval(6442, v is GenericDelegate<int>[], false);
Eval(6443, v is EmptyClass, false);
Eval(6444, v is EmptyClass[], false);
Eval(6445, v is NotEmptyClass, false);
Eval(6446, v is NotEmptyClass[], false);
- Eval(6447, v is EmptyClassGen<int>, false);
- Eval(6448, v is EmptyClassGen<int>[], false);
- Eval(6449, v is NotEmptyClassGen<Guid>, false);
- Eval(6450, v is NotEmptyClassGen<Guid>[], false);
- Eval(6451, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6452, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6447, v is EmptyClassGen<int>, false);
+// Eval(6448, v is EmptyClassGen<int>[], false);
+// Eval(6449, v is NotEmptyClassGen<Guid>, false);
+// Eval(6450, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6451, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6452, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6453, v is NestedClass, false);
Eval(6454, v is NestedClass[], false);
- Eval(6455, v is NestedClassGen<Decimal>, false);
- Eval(6456, v is NestedClassGen<Decimal>[], false);
+// Eval(6455, v is NestedClassGen<Decimal>, false);
+// Eval(6456, v is NestedClassGen<Decimal>[], false);
Eval(6457, v is ImplementOneInterfaceC, false);
Eval(6458, v is ImplementOneInterfaceC[], false);
Eval(6459, v is ImplementTwoInterfaceC, false);
Eval(6460, v is ImplementTwoInterfaceC[], false);
- Eval(6461, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6462, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6463, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6464, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6465, v is ImplementAllInterfaceC<int>, false);
- Eval(6466, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6461, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6462, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6463, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6464, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6465, v is ImplementAllInterfaceC<int>, false);
+// Eval(6466, v is ImplementAllInterfaceC<int>[], false);
Eval(6467, v is SealedClass, false);
Eval(6468, v is SealedClass[], false);
}
@@ -6349,26 +6349,26 @@ internal class Program
Eval(6474, v is NotEmptyStruct[], false);
Eval(6475, v is NotEmptyStruct?, false);
Eval(6476, v is NotEmptyStruct?[], false);
- Eval(6477, v is EmptyStructGen<int>, false);
- Eval(6478, v is EmptyStructGen<int>[], false);
- Eval(6479, v is EmptyStructGen<int>?, false);
- Eval(6480, v is EmptyStructGen<int>?[], false);
- Eval(6481, v is NotEmptyStructGen<Guid>, false);
- Eval(6482, v is NotEmptyStructGen<Guid>[], false);
- Eval(6483, v is NotEmptyStructGen<Guid>?, false);
- Eval(6484, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6485, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6486, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6487, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6488, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6477, v is EmptyStructGen<int>, false);
+// Eval(6478, v is EmptyStructGen<int>[], false);
+// Eval(6479, v is EmptyStructGen<int>?, false);
+// Eval(6480, v is EmptyStructGen<int>?[], false);
+// Eval(6481, v is NotEmptyStructGen<Guid>, false);
+// Eval(6482, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6483, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6484, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6485, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6486, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6487, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6488, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6489, v is NestedStruct, false);
Eval(6490, v is NestedStruct[], false);
Eval(6491, v is NestedStruct?, false);
Eval(6492, v is NestedStruct?[], false);
- Eval(6493, v is NestedStructGen<Decimal>, false);
- Eval(6494, v is NestedStructGen<Decimal>[], false);
- Eval(6495, v is NestedStructGen<Decimal>?, false);
- Eval(6496, v is NestedStructGen<Decimal>?[], false);
+// Eval(6493, v is NestedStructGen<Decimal>, false);
+// Eval(6494, v is NestedStructGen<Decimal>[], false);
+// Eval(6495, v is NestedStructGen<Decimal>?, false);
+// Eval(6496, v is NestedStructGen<Decimal>?[], false);
Eval(6497, v is ExplicitFieldOffsetStruct, false);
Eval(6498, v is ExplicitFieldOffsetStruct[], false);
Eval(6499, v is ExplicitFieldOffsetStruct?, false);
@@ -6385,18 +6385,18 @@ internal class Program
Eval(6518, v is ImplementTwoInterface[], false);
Eval(6519, v is ImplementTwoInterface?, false);
Eval(6520, v is ImplementTwoInterface?[], false);
- Eval(6521, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6522, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6523, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6524, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6525, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6526, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6527, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6528, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6529, v is ImplementAllInterface<int>, false);
- Eval(6530, v is ImplementAllInterface<int>[], false);
- Eval(6531, v is ImplementAllInterface<int>?, false);
- Eval(6532, v is ImplementAllInterface<int>?[], false);
+// Eval(6521, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6522, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6523, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6524, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6525, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6526, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6527, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6528, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6529, v is ImplementAllInterface<int>, false);
+// Eval(6530, v is ImplementAllInterface<int>[], false);
+// Eval(6531, v is ImplementAllInterface<int>?, false);
+// Eval(6532, v is ImplementAllInterface<int>?[], false);
Eval(6533, v is IntE, false);
Eval(6534, v is IntE[], false);
Eval(6535, v is IntE?, false);
@@ -6495,38 +6495,38 @@ internal class Program
Eval(6628, v is IEmpty[], false);
Eval(6629, v is INotEmpty, false);
Eval(6630, v is INotEmpty[], false);
- Eval(6631, v is IEmptyGen<int>, false);
- Eval(6632, v is IEmptyGen<int>[], false);
- Eval(6633, v is INotEmptyGen<int>, false);
- Eval(6634, v is INotEmptyGen<int>[], false);
+// Eval(6631, v is IEmptyGen<int>, false);
+// Eval(6632, v is IEmptyGen<int>[], false);
+// Eval(6633, v is INotEmptyGen<int>, false);
+// Eval(6634, v is INotEmptyGen<int>[], false);
Eval(6635, v is SimpleDelegate, false);
Eval(6636, v is SimpleDelegate[], false);
- Eval(6637, v is GenericDelegate<int>, false);
- Eval(6638, v is GenericDelegate<int>[], false);
+// Eval(6637, v is GenericDelegate<int>, false);
+// Eval(6638, v is GenericDelegate<int>[], false);
Eval(6639, v is EmptyClass, false);
Eval(6640, v is EmptyClass[], false);
Eval(6641, v is NotEmptyClass, false);
Eval(6642, v is NotEmptyClass[], false);
- Eval(6643, v is EmptyClassGen<int>, false);
- Eval(6644, v is EmptyClassGen<int>[], false);
- Eval(6645, v is NotEmptyClassGen<Guid>, false);
- Eval(6646, v is NotEmptyClassGen<Guid>[], false);
- Eval(6647, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6648, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6643, v is EmptyClassGen<int>, false);
+// Eval(6644, v is EmptyClassGen<int>[], false);
+// Eval(6645, v is NotEmptyClassGen<Guid>, false);
+// Eval(6646, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6647, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6648, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6649, v is NestedClass, false);
Eval(6650, v is NestedClass[], false);
- Eval(6651, v is NestedClassGen<Decimal>, false);
- Eval(6652, v is NestedClassGen<Decimal>[], false);
+// Eval(6651, v is NestedClassGen<Decimal>, false);
+// Eval(6652, v is NestedClassGen<Decimal>[], false);
Eval(6653, v is ImplementOneInterfaceC, false);
Eval(6654, v is ImplementOneInterfaceC[], false);
Eval(6655, v is ImplementTwoInterfaceC, false);
Eval(6656, v is ImplementTwoInterfaceC[], false);
- Eval(6657, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6658, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6659, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6660, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6661, v is ImplementAllInterfaceC<int>, false);
- Eval(6662, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6657, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6658, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6659, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6660, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6661, v is ImplementAllInterfaceC<int>, false);
+// Eval(6662, v is ImplementAllInterfaceC<int>[], false);
Eval(6663, v is SealedClass, false);
Eval(6664, v is SealedClass[], false);
}
@@ -6540,26 +6540,26 @@ internal class Program
Eval(6670, v is NotEmptyStruct[], false);
Eval(6671, v is NotEmptyStruct?, false);
Eval(6672, v is NotEmptyStruct?[], false);
- Eval(6673, v is EmptyStructGen<int>, false);
- Eval(6674, v is EmptyStructGen<int>[], false);
- Eval(6675, v is EmptyStructGen<int>?, false);
- Eval(6676, v is EmptyStructGen<int>?[], false);
- Eval(6677, v is NotEmptyStructGen<Guid>, false);
- Eval(6678, v is NotEmptyStructGen<Guid>[], false);
- Eval(6679, v is NotEmptyStructGen<Guid>?, false);
- Eval(6680, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6681, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6682, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6683, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6684, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6673, v is EmptyStructGen<int>, false);
+// Eval(6674, v is EmptyStructGen<int>[], false);
+// Eval(6675, v is EmptyStructGen<int>?, false);
+// Eval(6676, v is EmptyStructGen<int>?[], false);
+// Eval(6677, v is NotEmptyStructGen<Guid>, false);
+// Eval(6678, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6679, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6680, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6681, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6682, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6683, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6684, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6685, v is NestedStruct, false);
Eval(6686, v is NestedStruct[], false);
Eval(6687, v is NestedStruct?, false);
Eval(6688, v is NestedStruct?[], false);
- Eval(6689, v is NestedStructGen<Decimal>, false);
- Eval(6690, v is NestedStructGen<Decimal>[], false);
- Eval(6691, v is NestedStructGen<Decimal>?, false);
- Eval(6692, v is NestedStructGen<Decimal>?[], true);
+// Eval(6689, v is NestedStructGen<Decimal>, false);
+// Eval(6690, v is NestedStructGen<Decimal>[], false);
+// Eval(6691, v is NestedStructGen<Decimal>?, false);
+// Eval(6692, v is NestedStructGen<Decimal>?[], true);
Eval(6693, v is ExplicitFieldOffsetStruct, false);
Eval(6694, v is ExplicitFieldOffsetStruct[], false);
Eval(6695, v is ExplicitFieldOffsetStruct?, false);
@@ -6576,18 +6576,18 @@ internal class Program
Eval(6714, v is ImplementTwoInterface[], false);
Eval(6715, v is ImplementTwoInterface?, false);
Eval(6716, v is ImplementTwoInterface?[], false);
- Eval(6717, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6718, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6719, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6720, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6721, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6722, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6723, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6724, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6725, v is ImplementAllInterface<int>, false);
- Eval(6726, v is ImplementAllInterface<int>[], false);
- Eval(6727, v is ImplementAllInterface<int>?, false);
- Eval(6728, v is ImplementAllInterface<int>?[], false);
+// Eval(6717, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6718, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6719, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6720, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6721, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6722, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6723, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6724, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6725, v is ImplementAllInterface<int>, false);
+// Eval(6726, v is ImplementAllInterface<int>[], false);
+// Eval(6727, v is ImplementAllInterface<int>?, false);
+// Eval(6728, v is ImplementAllInterface<int>?[], false);
Eval(6729, v is IntE, false);
Eval(6730, v is IntE[], false);
Eval(6731, v is IntE?, false);
@@ -6686,38 +6686,38 @@ internal class Program
Eval(6824, v is IEmpty[], false);
Eval(6825, v is INotEmpty, false);
Eval(6826, v is INotEmpty[], false);
- Eval(6827, v is IEmptyGen<int>, false);
- Eval(6828, v is IEmptyGen<int>[], false);
- Eval(6829, v is INotEmptyGen<int>, false);
- Eval(6830, v is INotEmptyGen<int>[], false);
+// Eval(6827, v is IEmptyGen<int>, false);
+// Eval(6828, v is IEmptyGen<int>[], false);
+// Eval(6829, v is INotEmptyGen<int>, false);
+// Eval(6830, v is INotEmptyGen<int>[], false);
Eval(6831, v is SimpleDelegate, false);
Eval(6832, v is SimpleDelegate[], false);
- Eval(6833, v is GenericDelegate<int>, false);
- Eval(6834, v is GenericDelegate<int>[], false);
+// Eval(6833, v is GenericDelegate<int>, false);
+// Eval(6834, v is GenericDelegate<int>[], false);
Eval(6835, v is EmptyClass, false);
Eval(6836, v is EmptyClass[], false);
Eval(6837, v is NotEmptyClass, false);
Eval(6838, v is NotEmptyClass[], false);
- Eval(6839, v is EmptyClassGen<int>, false);
- Eval(6840, v is EmptyClassGen<int>[], false);
- Eval(6841, v is NotEmptyClassGen<Guid>, false);
- Eval(6842, v is NotEmptyClassGen<Guid>[], false);
- Eval(6843, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(6844, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6839, v is EmptyClassGen<int>, false);
+// Eval(6840, v is EmptyClassGen<int>[], false);
+// Eval(6841, v is NotEmptyClassGen<Guid>, false);
+// Eval(6842, v is NotEmptyClassGen<Guid>[], false);
+// Eval(6843, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6844, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(6845, v is NestedClass, false);
Eval(6846, v is NestedClass[], false);
- Eval(6847, v is NestedClassGen<Decimal>, false);
- Eval(6848, v is NestedClassGen<Decimal>[], false);
+// Eval(6847, v is NestedClassGen<Decimal>, false);
+// Eval(6848, v is NestedClassGen<Decimal>[], false);
Eval(6849, v is ImplementOneInterfaceC, false);
Eval(6850, v is ImplementOneInterfaceC[], false);
Eval(6851, v is ImplementTwoInterfaceC, false);
Eval(6852, v is ImplementTwoInterfaceC[], false);
- Eval(6853, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6854, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6855, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(6856, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6857, v is ImplementAllInterfaceC<int>, false);
- Eval(6858, v is ImplementAllInterfaceC<int>[], false);
+// Eval(6853, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6854, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6855, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6856, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6857, v is ImplementAllInterfaceC<int>, false);
+// Eval(6858, v is ImplementAllInterfaceC<int>[], false);
Eval(6859, v is SealedClass, false);
Eval(6860, v is SealedClass[], false);
}
@@ -6734,26 +6734,26 @@ internal class Program
Eval(6866, v is NotEmptyStruct[], false);
Eval(6867, v is NotEmptyStruct?, false);
Eval(6868, v is NotEmptyStruct?[], false);
- Eval(6869, v is EmptyStructGen<int>, false);
- Eval(6870, v is EmptyStructGen<int>[], false);
- Eval(6871, v is EmptyStructGen<int>?, false);
- Eval(6872, v is EmptyStructGen<int>?[], false);
- Eval(6873, v is NotEmptyStructGen<Guid>, false);
- Eval(6874, v is NotEmptyStructGen<Guid>[], false);
- Eval(6875, v is NotEmptyStructGen<Guid>?, false);
- Eval(6876, v is NotEmptyStructGen<Guid>?[], false);
- Eval(6877, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6878, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6879, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6880, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6869, v is EmptyStructGen<int>, false);
+// Eval(6870, v is EmptyStructGen<int>[], false);
+// Eval(6871, v is EmptyStructGen<int>?, false);
+// Eval(6872, v is EmptyStructGen<int>?[], false);
+// Eval(6873, v is NotEmptyStructGen<Guid>, false);
+// Eval(6874, v is NotEmptyStructGen<Guid>[], false);
+// Eval(6875, v is NotEmptyStructGen<Guid>?, false);
+// Eval(6876, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(6877, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6878, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6879, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6880, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6881, v is NestedStruct, false);
Eval(6882, v is NestedStruct[], false);
Eval(6883, v is NestedStruct?, false);
Eval(6884, v is NestedStruct?[], false);
- Eval(6885, v is NestedStructGen<Decimal>, false);
- Eval(6886, v is NestedStructGen<Decimal>[], false);
- Eval(6887, v is NestedStructGen<Decimal>?, false);
- Eval(6888, v is NestedStructGen<Decimal>?[], false);
+// Eval(6885, v is NestedStructGen<Decimal>, false);
+// Eval(6886, v is NestedStructGen<Decimal>[], false);
+// Eval(6887, v is NestedStructGen<Decimal>?, false);
+// Eval(6888, v is NestedStructGen<Decimal>?[], false);
Eval(6889, v is ExplicitFieldOffsetStruct, true);
Eval(6890, v is ExplicitFieldOffsetStruct[], false);
Eval(6891, v is ExplicitFieldOffsetStruct?, true);
@@ -6770,18 +6770,18 @@ internal class Program
Eval(6910, v is ImplementTwoInterface[], false);
Eval(6911, v is ImplementTwoInterface?, false);
Eval(6912, v is ImplementTwoInterface?[], false);
- Eval(6913, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6914, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6915, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6916, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6917, v is ImplementTwoInterfaceGen<int>, false);
- Eval(6918, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(6919, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(6920, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6921, v is ImplementAllInterface<int>, false);
- Eval(6922, v is ImplementAllInterface<int>[], false);
- Eval(6923, v is ImplementAllInterface<int>?, false);
- Eval(6924, v is ImplementAllInterface<int>?[], false);
+// Eval(6913, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6914, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6915, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6916, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6917, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(6918, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6919, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6920, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6921, v is ImplementAllInterface<int>, false);
+// Eval(6922, v is ImplementAllInterface<int>[], false);
+// Eval(6923, v is ImplementAllInterface<int>?, false);
+// Eval(6924, v is ImplementAllInterface<int>?[], false);
Eval(6925, v is IntE, false);
Eval(6926, v is IntE[], false);
Eval(6927, v is IntE?, false);
@@ -6880,38 +6880,38 @@ internal class Program
Eval(7020, v is IEmpty[], false);
Eval(7021, v is INotEmpty, false);
Eval(7022, v is INotEmpty[], false);
- Eval(7023, v is IEmptyGen<int>, false);
- Eval(7024, v is IEmptyGen<int>[], false);
- Eval(7025, v is INotEmptyGen<int>, false);
- Eval(7026, v is INotEmptyGen<int>[], false);
+// Eval(7023, v is IEmptyGen<int>, false);
+// Eval(7024, v is IEmptyGen<int>[], false);
+// Eval(7025, v is INotEmptyGen<int>, false);
+// Eval(7026, v is INotEmptyGen<int>[], false);
Eval(7027, v is SimpleDelegate, false);
Eval(7028, v is SimpleDelegate[], false);
- Eval(7029, v is GenericDelegate<int>, false);
- Eval(7030, v is GenericDelegate<int>[], false);
+// Eval(7029, v is GenericDelegate<int>, false);
+// Eval(7030, v is GenericDelegate<int>[], false);
Eval(7031, v is EmptyClass, false);
Eval(7032, v is EmptyClass[], false);
Eval(7033, v is NotEmptyClass, false);
Eval(7034, v is NotEmptyClass[], false);
- Eval(7035, v is EmptyClassGen<int>, false);
- Eval(7036, v is EmptyClassGen<int>[], false);
- Eval(7037, v is NotEmptyClassGen<Guid>, false);
- Eval(7038, v is NotEmptyClassGen<Guid>[], false);
- Eval(7039, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7040, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7035, v is EmptyClassGen<int>, false);
+// Eval(7036, v is EmptyClassGen<int>[], false);
+// Eval(7037, v is NotEmptyClassGen<Guid>, false);
+// Eval(7038, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7039, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7040, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7041, v is NestedClass, false);
Eval(7042, v is NestedClass[], false);
- Eval(7043, v is NestedClassGen<Decimal>, false);
- Eval(7044, v is NestedClassGen<Decimal>[], false);
+// Eval(7043, v is NestedClassGen<Decimal>, false);
+// Eval(7044, v is NestedClassGen<Decimal>[], false);
Eval(7045, v is ImplementOneInterfaceC, false);
Eval(7046, v is ImplementOneInterfaceC[], false);
Eval(7047, v is ImplementTwoInterfaceC, false);
Eval(7048, v is ImplementTwoInterfaceC[], false);
- Eval(7049, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7050, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7051, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7052, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7053, v is ImplementAllInterfaceC<int>, false);
- Eval(7054, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7049, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7050, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7051, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7052, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7053, v is ImplementAllInterfaceC<int>, false);
+// Eval(7054, v is ImplementAllInterfaceC<int>[], false);
Eval(7055, v is SealedClass, false);
Eval(7056, v is SealedClass[], false);
}
@@ -6925,26 +6925,26 @@ internal class Program
Eval(7062, v is NotEmptyStruct[], false);
Eval(7063, v is NotEmptyStruct?, false);
Eval(7064, v is NotEmptyStruct?[], false);
- Eval(7065, v is EmptyStructGen<int>, false);
- Eval(7066, v is EmptyStructGen<int>[], false);
- Eval(7067, v is EmptyStructGen<int>?, false);
- Eval(7068, v is EmptyStructGen<int>?[], false);
- Eval(7069, v is NotEmptyStructGen<Guid>, false);
- Eval(7070, v is NotEmptyStructGen<Guid>[], false);
- Eval(7071, v is NotEmptyStructGen<Guid>?, false);
- Eval(7072, v is NotEmptyStructGen<Guid>?[], false);
- Eval(7073, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7074, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7075, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7076, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7065, v is EmptyStructGen<int>, false);
+// Eval(7066, v is EmptyStructGen<int>[], false);
+// Eval(7067, v is EmptyStructGen<int>?, false);
+// Eval(7068, v is EmptyStructGen<int>?[], false);
+// Eval(7069, v is NotEmptyStructGen<Guid>, false);
+// Eval(7070, v is NotEmptyStructGen<Guid>[], false);
+// Eval(7071, v is NotEmptyStructGen<Guid>?, false);
+// Eval(7072, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(7073, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7074, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7075, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7076, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7077, v is NestedStruct, false);
Eval(7078, v is NestedStruct[], false);
Eval(7079, v is NestedStruct?, false);
Eval(7080, v is NestedStruct?[], false);
- Eval(7081, v is NestedStructGen<Decimal>, false);
- Eval(7082, v is NestedStructGen<Decimal>[], false);
- Eval(7083, v is NestedStructGen<Decimal>?, false);
- Eval(7084, v is NestedStructGen<Decimal>?[], false);
+// Eval(7081, v is NestedStructGen<Decimal>, false);
+// Eval(7082, v is NestedStructGen<Decimal>[], false);
+// Eval(7083, v is NestedStructGen<Decimal>?, false);
+// Eval(7084, v is NestedStructGen<Decimal>?[], false);
Eval(7085, v is ExplicitFieldOffsetStruct, true);
Eval(7086, v is ExplicitFieldOffsetStruct[], false);
Eval(7087, v is ExplicitFieldOffsetStruct?, true);
@@ -6961,18 +6961,18 @@ internal class Program
Eval(7106, v is ImplementTwoInterface[], false);
Eval(7107, v is ImplementTwoInterface?, false);
Eval(7108, v is ImplementTwoInterface?[], false);
- Eval(7109, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7110, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7111, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7112, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7113, v is ImplementTwoInterfaceGen<int>, false);
- Eval(7114, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(7115, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(7116, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7117, v is ImplementAllInterface<int>, false);
- Eval(7118, v is ImplementAllInterface<int>[], false);
- Eval(7119, v is ImplementAllInterface<int>?, false);
- Eval(7120, v is ImplementAllInterface<int>?[], false);
+// Eval(7109, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7110, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7111, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7112, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7113, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(7114, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7115, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7116, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7117, v is ImplementAllInterface<int>, false);
+// Eval(7118, v is ImplementAllInterface<int>[], false);
+// Eval(7119, v is ImplementAllInterface<int>?, false);
+// Eval(7120, v is ImplementAllInterface<int>?[], false);
Eval(7121, v is IntE, false);
Eval(7122, v is IntE[], false);
Eval(7123, v is IntE?, false);
@@ -7071,38 +7071,38 @@ internal class Program
Eval(7216, v is IEmpty[], false);
Eval(7217, v is INotEmpty, false);
Eval(7218, v is INotEmpty[], false);
- Eval(7219, v is IEmptyGen<int>, false);
- Eval(7220, v is IEmptyGen<int>[], false);
- Eval(7221, v is INotEmptyGen<int>, false);
- Eval(7222, v is INotEmptyGen<int>[], false);
+// Eval(7219, v is IEmptyGen<int>, false);
+// Eval(7220, v is IEmptyGen<int>[], false);
+// Eval(7221, v is INotEmptyGen<int>, false);
+// Eval(7222, v is INotEmptyGen<int>[], false);
Eval(7223, v is SimpleDelegate, false);
Eval(7224, v is SimpleDelegate[], false);
- Eval(7225, v is GenericDelegate<int>, false);
- Eval(7226, v is GenericDelegate<int>[], false);
+// Eval(7225, v is GenericDelegate<int>, false);
+// Eval(7226, v is GenericDelegate<int>[], false);
Eval(7227, v is EmptyClass, false);
Eval(7228, v is EmptyClass[], false);
Eval(7229, v is NotEmptyClass, false);
Eval(7230, v is NotEmptyClass[], false);
- Eval(7231, v is EmptyClassGen<int>, false);
- Eval(7232, v is EmptyClassGen<int>[], false);
- Eval(7233, v is NotEmptyClassGen<Guid>, false);
- Eval(7234, v is NotEmptyClassGen<Guid>[], false);
- Eval(7235, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7236, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7231, v is EmptyClassGen<int>, false);
+// Eval(7232, v is EmptyClassGen<int>[], false);
+// Eval(7233, v is NotEmptyClassGen<Guid>, false);
+// Eval(7234, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7235, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7236, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7237, v is NestedClass, false);
Eval(7238, v is NestedClass[], false);
- Eval(7239, v is NestedClassGen<Decimal>, false);
- Eval(7240, v is NestedClassGen<Decimal>[], false);
+// Eval(7239, v is NestedClassGen<Decimal>, false);
+// Eval(7240, v is NestedClassGen<Decimal>[], false);
Eval(7241, v is ImplementOneInterfaceC, false);
Eval(7242, v is ImplementOneInterfaceC[], false);
Eval(7243, v is ImplementTwoInterfaceC, false);
Eval(7244, v is ImplementTwoInterfaceC[], false);
- Eval(7245, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7246, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7247, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7248, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7249, v is ImplementAllInterfaceC<int>, false);
- Eval(7250, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7245, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7246, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7247, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7248, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7249, v is ImplementAllInterfaceC<int>, false);
+// Eval(7250, v is ImplementAllInterfaceC<int>[], false);
Eval(7251, v is SealedClass, false);
Eval(7252, v is SealedClass[], false);
}
@@ -7116,26 +7116,26 @@ internal class Program
Eval(7258, v is NotEmptyStruct[], false);
Eval(7259, v is NotEmptyStruct?, false);
Eval(7260, v is NotEmptyStruct?[], false);
- Eval(7261, v is EmptyStructGen<int>, false);
- Eval(7262, v is EmptyStructGen<int>[], false);
- Eval(7263, v is EmptyStructGen<int>?, false);
- Eval(7264, v is EmptyStructGen<int>?[], false);
- Eval(7265, v is NotEmptyStructGen<Guid>, false);
- Eval(7266, v is NotEmptyStructGen<Guid>[], false);
- Eval(7267, v is NotEmptyStructGen<Guid>?, false);
- Eval(7268, v is NotEmptyStructGen<Guid>?[], false);
- Eval(7269, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7270, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7271, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7272, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7261, v is EmptyStructGen<int>, false);
+// Eval(7262, v is EmptyStructGen<int>[], false);
+// Eval(7263, v is EmptyStructGen<int>?, false);
+// Eval(7264, v is EmptyStructGen<int>?[], false);
+// Eval(7265, v is NotEmptyStructGen<Guid>, false);
+// Eval(7266, v is NotEmptyStructGen<Guid>[], false);
+// Eval(7267, v is NotEmptyStructGen<Guid>?, false);
+// Eval(7268, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(7269, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7270, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7271, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7272, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7273, v is NestedStruct, false);
Eval(7274, v is NestedStruct[], false);
Eval(7275, v is NestedStruct?, false);
Eval(7276, v is NestedStruct?[], false);
- Eval(7277, v is NestedStructGen<Decimal>, false);
- Eval(7278, v is NestedStructGen<Decimal>[], false);
- Eval(7279, v is NestedStructGen<Decimal>?, false);
- Eval(7280, v is NestedStructGen<Decimal>?[], false);
+// Eval(7277, v is NestedStructGen<Decimal>, false);
+// Eval(7278, v is NestedStructGen<Decimal>[], false);
+// Eval(7279, v is NestedStructGen<Decimal>?, false);
+// Eval(7280, v is NestedStructGen<Decimal>?[], false);
Eval(7281, v is ExplicitFieldOffsetStruct, false);
Eval(7282, v is ExplicitFieldOffsetStruct[], false);
Eval(7283, v is ExplicitFieldOffsetStruct?, false);
@@ -7152,18 +7152,18 @@ internal class Program
Eval(7302, v is ImplementTwoInterface[], false);
Eval(7303, v is ImplementTwoInterface?, false);
Eval(7304, v is ImplementTwoInterface?[], false);
- Eval(7305, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7306, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7307, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7308, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7309, v is ImplementTwoInterfaceGen<int>, false);
- Eval(7310, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(7311, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(7312, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7313, v is ImplementAllInterface<int>, false);
- Eval(7314, v is ImplementAllInterface<int>[], false);
- Eval(7315, v is ImplementAllInterface<int>?, false);
- Eval(7316, v is ImplementAllInterface<int>?[], false);
+// Eval(7305, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7306, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7307, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7308, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7309, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(7310, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7311, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7312, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7313, v is ImplementAllInterface<int>, false);
+// Eval(7314, v is ImplementAllInterface<int>[], false);
+// Eval(7315, v is ImplementAllInterface<int>?, false);
+// Eval(7316, v is ImplementAllInterface<int>?[], false);
Eval(7317, v is IntE, false);
Eval(7318, v is IntE[], false);
Eval(7319, v is IntE?, false);
@@ -7262,38 +7262,38 @@ internal class Program
Eval(7412, v is IEmpty[], false);
Eval(7413, v is INotEmpty, false);
Eval(7414, v is INotEmpty[], false);
- Eval(7415, v is IEmptyGen<int>, false);
- Eval(7416, v is IEmptyGen<int>[], false);
- Eval(7417, v is INotEmptyGen<int>, false);
- Eval(7418, v is INotEmptyGen<int>[], false);
+// Eval(7415, v is IEmptyGen<int>, false);
+// Eval(7416, v is IEmptyGen<int>[], false);
+// Eval(7417, v is INotEmptyGen<int>, false);
+// Eval(7418, v is INotEmptyGen<int>[], false);
Eval(7419, v is SimpleDelegate, false);
Eval(7420, v is SimpleDelegate[], false);
- Eval(7421, v is GenericDelegate<int>, false);
- Eval(7422, v is GenericDelegate<int>[], false);
+// Eval(7421, v is GenericDelegate<int>, false);
+// Eval(7422, v is GenericDelegate<int>[], false);
Eval(7423, v is EmptyClass, false);
Eval(7424, v is EmptyClass[], false);
Eval(7425, v is NotEmptyClass, false);
Eval(7426, v is NotEmptyClass[], false);
- Eval(7427, v is EmptyClassGen<int>, false);
- Eval(7428, v is EmptyClassGen<int>[], false);
- Eval(7429, v is NotEmptyClassGen<Guid>, false);
- Eval(7430, v is NotEmptyClassGen<Guid>[], false);
- Eval(7431, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7432, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7427, v is EmptyClassGen<int>, false);
+// Eval(7428, v is EmptyClassGen<int>[], false);
+// Eval(7429, v is NotEmptyClassGen<Guid>, false);
+// Eval(7430, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7431, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7432, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7433, v is NestedClass, false);
Eval(7434, v is NestedClass[], false);
- Eval(7435, v is NestedClassGen<Decimal>, false);
- Eval(7436, v is NestedClassGen<Decimal>[], false);
+// Eval(7435, v is NestedClassGen<Decimal>, false);
+// Eval(7436, v is NestedClassGen<Decimal>[], false);
Eval(7437, v is ImplementOneInterfaceC, false);
Eval(7438, v is ImplementOneInterfaceC[], false);
Eval(7439, v is ImplementTwoInterfaceC, false);
Eval(7440, v is ImplementTwoInterfaceC[], false);
- Eval(7441, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7442, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7443, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7444, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7445, v is ImplementAllInterfaceC<int>, false);
- Eval(7446, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7441, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7442, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7443, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7444, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7445, v is ImplementAllInterfaceC<int>, false);
+// Eval(7446, v is ImplementAllInterfaceC<int>[], false);
Eval(7447, v is SealedClass, false);
Eval(7448, v is SealedClass[], false);
}
@@ -7307,26 +7307,26 @@ internal class Program
Eval(7454, v is NotEmptyStruct[], false);
Eval(7455, v is NotEmptyStruct?, false);
Eval(7456, v is NotEmptyStruct?[], false);
- Eval(7457, v is EmptyStructGen<int>, false);
- Eval(7458, v is EmptyStructGen<int>[], false);
- Eval(7459, v is EmptyStructGen<int>?, false);
- Eval(7460, v is EmptyStructGen<int>?[], false);
- Eval(7461, v is NotEmptyStructGen<Guid>, false);
- Eval(7462, v is NotEmptyStructGen<Guid>[], false);
- Eval(7463, v is NotEmptyStructGen<Guid>?, false);
- Eval(7464, v is NotEmptyStructGen<Guid>?[], false);
- Eval(7465, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7466, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7467, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7468, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7457, v is EmptyStructGen<int>, false);
+// Eval(7458, v is EmptyStructGen<int>[], false);
+// Eval(7459, v is EmptyStructGen<int>?, false);
+// Eval(7460, v is EmptyStructGen<int>?[], false);
+// Eval(7461, v is NotEmptyStructGen<Guid>, false);
+// Eval(7462, v is NotEmptyStructGen<Guid>[], false);
+// Eval(7463, v is NotEmptyStructGen<Guid>?, false);
+// Eval(7464, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(7465, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7466, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7467, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7468, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7469, v is NestedStruct, false);
Eval(7470, v is NestedStruct[], false);
Eval(7471, v is NestedStruct?, false);
Eval(7472, v is NestedStruct?[], false);
- Eval(7473, v is NestedStructGen<Decimal>, false);
- Eval(7474, v is NestedStructGen<Decimal>[], false);
- Eval(7475, v is NestedStructGen<Decimal>?, false);
- Eval(7476, v is NestedStructGen<Decimal>?[], false);
+// Eval(7473, v is NestedStructGen<Decimal>, false);
+// Eval(7474, v is NestedStructGen<Decimal>[], false);
+// Eval(7475, v is NestedStructGen<Decimal>?, false);
+// Eval(7476, v is NestedStructGen<Decimal>?[], false);
Eval(7477, v is ExplicitFieldOffsetStruct, false);
Eval(7478, v is ExplicitFieldOffsetStruct[], false);
Eval(7479, v is ExplicitFieldOffsetStruct?, false);
@@ -7343,18 +7343,18 @@ internal class Program
Eval(7498, v is ImplementTwoInterface[], false);
Eval(7499, v is ImplementTwoInterface?, false);
Eval(7500, v is ImplementTwoInterface?[], false);
- Eval(7501, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7502, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7503, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7504, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7505, v is ImplementTwoInterfaceGen<int>, false);
- Eval(7506, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(7507, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(7508, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7509, v is ImplementAllInterface<int>, false);
- Eval(7510, v is ImplementAllInterface<int>[], false);
- Eval(7511, v is ImplementAllInterface<int>?, false);
- Eval(7512, v is ImplementAllInterface<int>?[], false);
+// Eval(7501, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7502, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7503, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7504, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7505, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(7506, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7507, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7508, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7509, v is ImplementAllInterface<int>, false);
+// Eval(7510, v is ImplementAllInterface<int>[], false);
+// Eval(7511, v is ImplementAllInterface<int>?, false);
+// Eval(7512, v is ImplementAllInterface<int>?[], false);
Eval(7513, v is IntE, false);
Eval(7514, v is IntE[], false);
Eval(7515, v is IntE?, false);
@@ -7453,38 +7453,38 @@ internal class Program
Eval(7608, v is IEmpty[], false);
Eval(7609, v is INotEmpty, false);
Eval(7610, v is INotEmpty[], false);
- Eval(7611, v is IEmptyGen<int>, false);
- Eval(7612, v is IEmptyGen<int>[], false);
- Eval(7613, v is INotEmptyGen<int>, false);
- Eval(7614, v is INotEmptyGen<int>[], false);
+// Eval(7611, v is IEmptyGen<int>, false);
+// Eval(7612, v is IEmptyGen<int>[], false);
+// Eval(7613, v is INotEmptyGen<int>, false);
+// Eval(7614, v is INotEmptyGen<int>[], false);
Eval(7615, v is SimpleDelegate, false);
Eval(7616, v is SimpleDelegate[], false);
- Eval(7617, v is GenericDelegate<int>, false);
- Eval(7618, v is GenericDelegate<int>[], false);
+// Eval(7617, v is GenericDelegate<int>, false);
+// Eval(7618, v is GenericDelegate<int>[], false);
Eval(7619, v is EmptyClass, false);
Eval(7620, v is EmptyClass[], false);
Eval(7621, v is NotEmptyClass, false);
Eval(7622, v is NotEmptyClass[], false);
- Eval(7623, v is EmptyClassGen<int>, false);
- Eval(7624, v is EmptyClassGen<int>[], false);
- Eval(7625, v is NotEmptyClassGen<Guid>, false);
- Eval(7626, v is NotEmptyClassGen<Guid>[], false);
- Eval(7627, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7628, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7623, v is EmptyClassGen<int>, false);
+// Eval(7624, v is EmptyClassGen<int>[], false);
+// Eval(7625, v is NotEmptyClassGen<Guid>, false);
+// Eval(7626, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7627, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7628, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7629, v is NestedClass, false);
Eval(7630, v is NestedClass[], false);
- Eval(7631, v is NestedClassGen<Decimal>, false);
- Eval(7632, v is NestedClassGen<Decimal>[], false);
+// Eval(7631, v is NestedClassGen<Decimal>, false);
+// Eval(7632, v is NestedClassGen<Decimal>[], false);
Eval(7633, v is ImplementOneInterfaceC, false);
Eval(7634, v is ImplementOneInterfaceC[], false);
Eval(7635, v is ImplementTwoInterfaceC, false);
Eval(7636, v is ImplementTwoInterfaceC[], false);
- Eval(7637, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7638, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7639, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7640, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7641, v is ImplementAllInterfaceC<int>, false);
- Eval(7642, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7637, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7638, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7639, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7640, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7641, v is ImplementAllInterfaceC<int>, false);
+// Eval(7642, v is ImplementAllInterfaceC<int>[], false);
Eval(7643, v is SealedClass, false);
Eval(7644, v is SealedClass[], false);
}
@@ -7498,26 +7498,26 @@ internal class Program
Eval(7650, v is NotEmptyStruct[], false);
Eval(7651, v is NotEmptyStruct?, false);
Eval(7652, v is NotEmptyStruct?[], false);
- Eval(7653, v is EmptyStructGen<int>, false);
- Eval(7654, v is EmptyStructGen<int>[], false);
- Eval(7655, v is EmptyStructGen<int>?, false);
- Eval(7656, v is EmptyStructGen<int>?[], false);
- Eval(7657, v is NotEmptyStructGen<Guid>, false);
- Eval(7658, v is NotEmptyStructGen<Guid>[], false);
- Eval(7659, v is NotEmptyStructGen<Guid>?, false);
- Eval(7660, v is NotEmptyStructGen<Guid>?[], false);
- Eval(7661, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7662, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7663, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7664, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7653, v is EmptyStructGen<int>, false);
+// Eval(7654, v is EmptyStructGen<int>[], false);
+// Eval(7655, v is EmptyStructGen<int>?, false);
+// Eval(7656, v is EmptyStructGen<int>?[], false);
+// Eval(7657, v is NotEmptyStructGen<Guid>, false);
+// Eval(7658, v is NotEmptyStructGen<Guid>[], false);
+// Eval(7659, v is NotEmptyStructGen<Guid>?, false);
+// Eval(7660, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(7661, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7662, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7663, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7664, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7665, v is NestedStruct, false);
Eval(7666, v is NestedStruct[], false);
Eval(7667, v is NestedStruct?, false);
Eval(7668, v is NestedStruct?[], false);
- Eval(7669, v is NestedStructGen<Decimal>, false);
- Eval(7670, v is NestedStructGen<Decimal>[], false);
- Eval(7671, v is NestedStructGen<Decimal>?, false);
- Eval(7672, v is NestedStructGen<Decimal>?[], false);
+// Eval(7669, v is NestedStructGen<Decimal>, false);
+// Eval(7670, v is NestedStructGen<Decimal>[], false);
+// Eval(7671, v is NestedStructGen<Decimal>?, false);
+// Eval(7672, v is NestedStructGen<Decimal>?[], false);
Eval(7673, v is ExplicitFieldOffsetStruct, false);
Eval(7674, v is ExplicitFieldOffsetStruct[], false);
Eval(7675, v is ExplicitFieldOffsetStruct?, false);
@@ -7534,18 +7534,18 @@ internal class Program
Eval(7694, v is ImplementTwoInterface[], false);
Eval(7695, v is ImplementTwoInterface?, false);
Eval(7696, v is ImplementTwoInterface?[], false);
- Eval(7697, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7698, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7699, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7700, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7701, v is ImplementTwoInterfaceGen<int>, false);
- Eval(7702, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(7703, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(7704, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7705, v is ImplementAllInterface<int>, false);
- Eval(7706, v is ImplementAllInterface<int>[], false);
- Eval(7707, v is ImplementAllInterface<int>?, false);
- Eval(7708, v is ImplementAllInterface<int>?[], false);
+// Eval(7697, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7698, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7699, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7700, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7701, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(7702, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7703, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7704, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7705, v is ImplementAllInterface<int>, false);
+// Eval(7706, v is ImplementAllInterface<int>[], false);
+// Eval(7707, v is ImplementAllInterface<int>?, false);
+// Eval(7708, v is ImplementAllInterface<int>?[], false);
Eval(7709, v is IntE, false);
Eval(7710, v is IntE[], false);
Eval(7711, v is IntE?, false);
@@ -7644,38 +7644,38 @@ internal class Program
Eval(7804, v is IEmpty[], false);
Eval(7805, v is INotEmpty, false);
Eval(7806, v is INotEmpty[], false);
- Eval(7807, v is IEmptyGen<int>, false);
- Eval(7808, v is IEmptyGen<int>[], false);
- Eval(7809, v is INotEmptyGen<int>, false);
- Eval(7810, v is INotEmptyGen<int>[], false);
+// Eval(7807, v is IEmptyGen<int>, false);
+// Eval(7808, v is IEmptyGen<int>[], false);
+// Eval(7809, v is INotEmptyGen<int>, false);
+// Eval(7810, v is INotEmptyGen<int>[], false);
Eval(7811, v is SimpleDelegate, false);
Eval(7812, v is SimpleDelegate[], false);
- Eval(7813, v is GenericDelegate<int>, false);
- Eval(7814, v is GenericDelegate<int>[], false);
+// Eval(7813, v is GenericDelegate<int>, false);
+// Eval(7814, v is GenericDelegate<int>[], false);
Eval(7815, v is EmptyClass, false);
Eval(7816, v is EmptyClass[], false);
Eval(7817, v is NotEmptyClass, false);
Eval(7818, v is NotEmptyClass[], false);
- Eval(7819, v is EmptyClassGen<int>, false);
- Eval(7820, v is EmptyClassGen<int>[], false);
- Eval(7821, v is NotEmptyClassGen<Guid>, false);
- Eval(7822, v is NotEmptyClassGen<Guid>[], false);
- Eval(7823, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(7824, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7819, v is EmptyClassGen<int>, false);
+// Eval(7820, v is EmptyClassGen<int>[], false);
+// Eval(7821, v is NotEmptyClassGen<Guid>, false);
+// Eval(7822, v is NotEmptyClassGen<Guid>[], false);
+// Eval(7823, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7824, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(7825, v is NestedClass, false);
Eval(7826, v is NestedClass[], false);
- Eval(7827, v is NestedClassGen<Decimal>, false);
- Eval(7828, v is NestedClassGen<Decimal>[], false);
+// Eval(7827, v is NestedClassGen<Decimal>, false);
+// Eval(7828, v is NestedClassGen<Decimal>[], false);
Eval(7829, v is ImplementOneInterfaceC, false);
Eval(7830, v is ImplementOneInterfaceC[], false);
Eval(7831, v is ImplementTwoInterfaceC, false);
Eval(7832, v is ImplementTwoInterfaceC[], false);
- Eval(7833, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7834, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7835, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(7836, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7837, v is ImplementAllInterfaceC<int>, false);
- Eval(7838, v is ImplementAllInterfaceC<int>[], false);
+// Eval(7833, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7834, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7835, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7836, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7837, v is ImplementAllInterfaceC<int>, false);
+// Eval(7838, v is ImplementAllInterfaceC<int>[], false);
Eval(7839, v is SealedClass, false);
Eval(7840, v is SealedClass[], false);
}
@@ -7692,26 +7692,26 @@ internal class Program
Eval(7846, v is NotEmptyStruct[], false);
Eval(7847, v is NotEmptyStruct?, false);
Eval(7848, v is NotEmptyStruct?[], false);
- Eval(7849, v is EmptyStructGen<int>, false);
- Eval(7850, v is EmptyStructGen<int>[], false);
- Eval(7851, v is EmptyStructGen<int>?, false);
- Eval(7852, v is EmptyStructGen<int>?[], false);
- Eval(7853, v is NotEmptyStructGen<Guid>, false);
- Eval(7854, v is NotEmptyStructGen<Guid>[], false);
- Eval(7855, v is NotEmptyStructGen<Guid>?, false);
- Eval(7856, v is NotEmptyStructGen<Guid>?[], false);
- Eval(7857, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7858, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7859, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7860, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7849, v is EmptyStructGen<int>, false);
+// Eval(7850, v is EmptyStructGen<int>[], false);
+// Eval(7851, v is EmptyStructGen<int>?, false);
+// Eval(7852, v is EmptyStructGen<int>?[], false);
+// Eval(7853, v is NotEmptyStructGen<Guid>, false);
+// Eval(7854, v is NotEmptyStructGen<Guid>[], false);
+// Eval(7855, v is NotEmptyStructGen<Guid>?, false);
+// Eval(7856, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(7857, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7858, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7859, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7860, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7861, v is NestedStruct, false);
Eval(7862, v is NestedStruct[], false);
Eval(7863, v is NestedStruct?, false);
Eval(7864, v is NestedStruct?[], false);
- Eval(7865, v is NestedStructGen<Decimal>, false);
- Eval(7866, v is NestedStructGen<Decimal>[], false);
- Eval(7867, v is NestedStructGen<Decimal>?, false);
- Eval(7868, v is NestedStructGen<Decimal>?[], false);
+// Eval(7865, v is NestedStructGen<Decimal>, false);
+// Eval(7866, v is NestedStructGen<Decimal>[], false);
+// Eval(7867, v is NestedStructGen<Decimal>?, false);
+// Eval(7868, v is NestedStructGen<Decimal>?[], false);
Eval(7869, v is ExplicitFieldOffsetStruct, false);
Eval(7870, v is ExplicitFieldOffsetStruct[], false);
Eval(7871, v is ExplicitFieldOffsetStruct?, false);
@@ -7728,18 +7728,18 @@ internal class Program
Eval(7890, v is ImplementTwoInterface[], false);
Eval(7891, v is ImplementTwoInterface?, false);
Eval(7892, v is ImplementTwoInterface?[], false);
- Eval(7893, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7894, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7895, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7896, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7897, v is ImplementTwoInterfaceGen<int>, false);
- Eval(7898, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(7899, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(7900, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7901, v is ImplementAllInterface<int>, false);
- Eval(7902, v is ImplementAllInterface<int>[], false);
- Eval(7903, v is ImplementAllInterface<int>?, false);
- Eval(7904, v is ImplementAllInterface<int>?[], false);
+// Eval(7893, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7894, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7895, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7896, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7897, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(7898, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7899, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7900, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7901, v is ImplementAllInterface<int>, false);
+// Eval(7902, v is ImplementAllInterface<int>[], false);
+// Eval(7903, v is ImplementAllInterface<int>?, false);
+// Eval(7904, v is ImplementAllInterface<int>?[], false);
Eval(7905, v is IntE, false);
Eval(7906, v is IntE[], false);
Eval(7907, v is IntE?, false);
@@ -7838,38 +7838,38 @@ internal class Program
Eval(8000, v is IEmpty[], false);
Eval(8001, v is INotEmpty, false);
Eval(8002, v is INotEmpty[], false);
- Eval(8003, v is IEmptyGen<int>, false);
- Eval(8004, v is IEmptyGen<int>[], false);
- Eval(8005, v is INotEmptyGen<int>, false);
- Eval(8006, v is INotEmptyGen<int>[], false);
+// Eval(8003, v is IEmptyGen<int>, false);
+// Eval(8004, v is IEmptyGen<int>[], false);
+// Eval(8005, v is INotEmptyGen<int>, false);
+// Eval(8006, v is INotEmptyGen<int>[], false);
Eval(8007, v is SimpleDelegate, false);
Eval(8008, v is SimpleDelegate[], false);
- Eval(8009, v is GenericDelegate<int>, false);
- Eval(8010, v is GenericDelegate<int>[], false);
+// Eval(8009, v is GenericDelegate<int>, false);
+// Eval(8010, v is GenericDelegate<int>[], false);
Eval(8011, v is EmptyClass, false);
Eval(8012, v is EmptyClass[], false);
Eval(8013, v is NotEmptyClass, false);
Eval(8014, v is NotEmptyClass[], false);
- Eval(8015, v is EmptyClassGen<int>, false);
- Eval(8016, v is EmptyClassGen<int>[], false);
- Eval(8017, v is NotEmptyClassGen<Guid>, false);
- Eval(8018, v is NotEmptyClassGen<Guid>[], false);
- Eval(8019, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(8020, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8015, v is EmptyClassGen<int>, false);
+// Eval(8016, v is EmptyClassGen<int>[], false);
+// Eval(8017, v is NotEmptyClassGen<Guid>, false);
+// Eval(8018, v is NotEmptyClassGen<Guid>[], false);
+// Eval(8019, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8020, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(8021, v is NestedClass, false);
Eval(8022, v is NestedClass[], false);
- Eval(8023, v is NestedClassGen<Decimal>, false);
- Eval(8024, v is NestedClassGen<Decimal>[], false);
+// Eval(8023, v is NestedClassGen<Decimal>, false);
+// Eval(8024, v is NestedClassGen<Decimal>[], false);
Eval(8025, v is ImplementOneInterfaceC, false);
Eval(8026, v is ImplementOneInterfaceC[], false);
Eval(8027, v is ImplementTwoInterfaceC, false);
Eval(8028, v is ImplementTwoInterfaceC[], false);
- Eval(8029, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8030, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8031, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(8032, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8033, v is ImplementAllInterfaceC<int>, false);
- Eval(8034, v is ImplementAllInterfaceC<int>[], false);
+// Eval(8029, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8030, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8031, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8032, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8033, v is ImplementAllInterfaceC<int>, false);
+// Eval(8034, v is ImplementAllInterfaceC<int>[], false);
Eval(8035, v is SealedClass, false);
Eval(8036, v is SealedClass[], false);
}
@@ -7883,26 +7883,26 @@ internal class Program
Eval(8042, v is NotEmptyStruct[], false);
Eval(8043, v is NotEmptyStruct?, false);
Eval(8044, v is NotEmptyStruct?[], false);
- Eval(8045, v is EmptyStructGen<int>, false);
- Eval(8046, v is EmptyStructGen<int>[], false);
- Eval(8047, v is EmptyStructGen<int>?, false);
- Eval(8048, v is EmptyStructGen<int>?[], false);
- Eval(8049, v is NotEmptyStructGen<Guid>, false);
- Eval(8050, v is NotEmptyStructGen<Guid>[], false);
- Eval(8051, v is NotEmptyStructGen<Guid>?, false);
- Eval(8052, v is NotEmptyStructGen<Guid>?[], false);
- Eval(8053, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8054, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8055, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8056, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8045, v is EmptyStructGen<int>, false);
+// Eval(8046, v is EmptyStructGen<int>[], false);
+// Eval(8047, v is EmptyStructGen<int>?, false);
+// Eval(8048, v is EmptyStructGen<int>?[], false);
+// Eval(8049, v is NotEmptyStructGen<Guid>, false);
+// Eval(8050, v is NotEmptyStructGen<Guid>[], false);
+// Eval(8051, v is NotEmptyStructGen<Guid>?, false);
+// Eval(8052, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(8053, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8054, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8055, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8056, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8057, v is NestedStruct, false);
Eval(8058, v is NestedStruct[], false);
Eval(8059, v is NestedStruct?, false);
Eval(8060, v is NestedStruct?[], false);
- Eval(8061, v is NestedStructGen<Decimal>, false);
- Eval(8062, v is NestedStructGen<Decimal>[], false);
- Eval(8063, v is NestedStructGen<Decimal>?, false);
- Eval(8064, v is NestedStructGen<Decimal>?[], false);
+// Eval(8061, v is NestedStructGen<Decimal>, false);
+// Eval(8062, v is NestedStructGen<Decimal>[], false);
+// Eval(8063, v is NestedStructGen<Decimal>?, false);
+// Eval(8064, v is NestedStructGen<Decimal>?[], false);
Eval(8065, v is ExplicitFieldOffsetStruct, false);
Eval(8066, v is ExplicitFieldOffsetStruct[], false);
Eval(8067, v is ExplicitFieldOffsetStruct?, false);
@@ -7919,18 +7919,18 @@ internal class Program
Eval(8086, v is ImplementTwoInterface[], false);
Eval(8087, v is ImplementTwoInterface?, false);
Eval(8088, v is ImplementTwoInterface?[], false);
- Eval(8089, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8090, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8091, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8092, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8093, v is ImplementTwoInterfaceGen<int>, false);
- Eval(8094, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(8095, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(8096, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8097, v is ImplementAllInterface<int>, false);
- Eval(8098, v is ImplementAllInterface<int>[], false);
- Eval(8099, v is ImplementAllInterface<int>?, false);
- Eval(8100, v is ImplementAllInterface<int>?[], false);
+// Eval(8089, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8090, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8091, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8092, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8093, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(8094, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8095, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(8096, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8097, v is ImplementAllInterface<int>, false);
+// Eval(8098, v is ImplementAllInterface<int>[], false);
+// Eval(8099, v is ImplementAllInterface<int>?, false);
+// Eval(8100, v is ImplementAllInterface<int>?[], false);
Eval(8101, v is IntE, false);
Eval(8102, v is IntE[], false);
Eval(8103, v is IntE?, false);
@@ -8029,38 +8029,38 @@ internal class Program
Eval(8196, v is IEmpty[], false);
Eval(8197, v is INotEmpty, false);
Eval(8198, v is INotEmpty[], false);
- Eval(8199, v is IEmptyGen<int>, false);
- Eval(8200, v is IEmptyGen<int>[], false);
- Eval(8201, v is INotEmptyGen<int>, false);
- Eval(8202, v is INotEmptyGen<int>[], false);
+// Eval(8199, v is IEmptyGen<int>, false);
+// Eval(8200, v is IEmptyGen<int>[], false);
+// Eval(8201, v is INotEmptyGen<int>, false);
+// Eval(8202, v is INotEmptyGen<int>[], false);
Eval(8203, v is SimpleDelegate, false);
Eval(8204, v is SimpleDelegate[], false);
- Eval(8205, v is GenericDelegate<int>, false);
- Eval(8206, v is GenericDelegate<int>[], false);
+// Eval(8205, v is GenericDelegate<int>, false);
+// Eval(8206, v is GenericDelegate<int>[], false);
Eval(8207, v is EmptyClass, false);
Eval(8208, v is EmptyClass[], false);
Eval(8209, v is NotEmptyClass, false);
Eval(8210, v is NotEmptyClass[], false);
- Eval(8211, v is EmptyClassGen<int>, false);
- Eval(8212, v is EmptyClassGen<int>[], false);
- Eval(8213, v is NotEmptyClassGen<Guid>, false);
- Eval(8214, v is NotEmptyClassGen<Guid>[], false);
- Eval(8215, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(8216, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8211, v is EmptyClassGen<int>, false);
+// Eval(8212, v is EmptyClassGen<int>[], false);
+// Eval(8213, v is NotEmptyClassGen<Guid>, false);
+// Eval(8214, v is NotEmptyClassGen<Guid>[], false);
+// Eval(8215, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8216, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(8217, v is NestedClass, false);
Eval(8218, v is NestedClass[], false);
- Eval(8219, v is NestedClassGen<Decimal>, false);
- Eval(8220, v is NestedClassGen<Decimal>[], false);
+// Eval(8219, v is NestedClassGen<Decimal>, false);
+// Eval(8220, v is NestedClassGen<Decimal>[], false);
Eval(8221, v is ImplementOneInterfaceC, false);
Eval(8222, v is ImplementOneInterfaceC[], false);
Eval(8223, v is ImplementTwoInterfaceC, false);
Eval(8224, v is ImplementTwoInterfaceC[], false);
- Eval(8225, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8226, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8227, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(8228, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8229, v is ImplementAllInterfaceC<int>, false);
- Eval(8230, v is ImplementAllInterfaceC<int>[], false);
+// Eval(8225, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8226, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8227, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8228, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8229, v is ImplementAllInterfaceC<int>, false);
+// Eval(8230, v is ImplementAllInterfaceC<int>[], false);
Eval(8231, v is SealedClass, false);
Eval(8232, v is SealedClass[], false);
}
@@ -8074,26 +8074,26 @@ internal class Program
Eval(8238, v is NotEmptyStruct[], false);
Eval(8239, v is NotEmptyStruct?, false);
Eval(8240, v is NotEmptyStruct?[], false);
- Eval(8241, v is EmptyStructGen<int>, false);
- Eval(8242, v is EmptyStructGen<int>[], false);
- Eval(8243, v is EmptyStructGen<int>?, false);
- Eval(8244, v is EmptyStructGen<int>?[], false);
- Eval(8245, v is NotEmptyStructGen<Guid>, false);
- Eval(8246, v is NotEmptyStructGen<Guid>[], false);
- Eval(8247, v is NotEmptyStructGen<Guid>?, false);
- Eval(8248, v is NotEmptyStructGen<Guid>?[], false);
- Eval(8249, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8250, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8251, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8252, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8241, v is EmptyStructGen<int>, false);
+// Eval(8242, v is EmptyStructGen<int>[], false);
+// Eval(8243, v is EmptyStructGen<int>?, false);
+// Eval(8244, v is EmptyStructGen<int>?[], false);
+// Eval(8245, v is NotEmptyStructGen<Guid>, false);
+// Eval(8246, v is NotEmptyStructGen<Guid>[], false);
+// Eval(8247, v is NotEmptyStructGen<Guid>?, false);
+// Eval(8248, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(8249, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8250, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8251, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8252, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8253, v is NestedStruct, false);
Eval(8254, v is NestedStruct[], false);
Eval(8255, v is NestedStruct?, false);
Eval(8256, v is NestedStruct?[], false);
- Eval(8257, v is NestedStructGen<Decimal>, false);
- Eval(8258, v is NestedStructGen<Decimal>[], false);
- Eval(8259, v is NestedStructGen<Decimal>?, false);
- Eval(8260, v is NestedStructGen<Decimal>?[], false);
+// Eval(8257, v is NestedStructGen<Decimal>, false);
+// Eval(8258, v is NestedStructGen<Decimal>[], false);
+// Eval(8259, v is NestedStructGen<Decimal>?, false);
+// Eval(8260, v is NestedStructGen<Decimal>?[], false);
Eval(8261, v is ExplicitFieldOffsetStruct, false);
Eval(8262, v is ExplicitFieldOffsetStruct[], false);
Eval(8263, v is ExplicitFieldOffsetStruct?, false);
@@ -8110,18 +8110,18 @@ internal class Program
Eval(8282, v is ImplementTwoInterface[], false);
Eval(8283, v is ImplementTwoInterface?, false);
Eval(8284, v is ImplementTwoInterface?[], false);
- Eval(8285, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8286, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8287, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8288, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8289, v is ImplementTwoInterfaceGen<int>, false);
- Eval(8290, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(8291, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(8292, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8293, v is ImplementAllInterface<int>, false);
- Eval(8294, v is ImplementAllInterface<int>[], false);
- Eval(8295, v is ImplementAllInterface<int>?, false);
- Eval(8296, v is ImplementAllInterface<int>?[], false);
+// Eval(8285, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8286, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8287, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8288, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8289, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(8290, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8291, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(8292, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8293, v is ImplementAllInterface<int>, false);
+// Eval(8294, v is ImplementAllInterface<int>[], false);
+// Eval(8295, v is ImplementAllInterface<int>?, false);
+// Eval(8296, v is ImplementAllInterface<int>?[], false);
Eval(8297, v is IntE, false);
Eval(8298, v is IntE[], false);
Eval(8299, v is IntE?, false);
@@ -8220,38 +8220,38 @@ internal class Program
Eval(8392, v is IEmpty[], false);
Eval(8393, v is INotEmpty, false);
Eval(8394, v is INotEmpty[], false);
- Eval(8395, v is IEmptyGen<int>, false);
- Eval(8396, v is IEmptyGen<int>[], false);
- Eval(8397, v is INotEmptyGen<int>, false);
- Eval(8398, v is INotEmptyGen<int>[], false);
+// Eval(8395, v is IEmptyGen<int>, false);
+// Eval(8396, v is IEmptyGen<int>[], false);
+// Eval(8397, v is INotEmptyGen<int>, false);
+// Eval(8398, v is INotEmptyGen<int>[], false);
Eval(8399, v is SimpleDelegate, false);
Eval(8400, v is SimpleDelegate[], false);
- Eval(8401, v is GenericDelegate<int>, false);
- Eval(8402, v is GenericDelegate<int>[], false);
+// Eval(8401, v is GenericDelegate<int>, false);
+// Eval(8402, v is GenericDelegate<int>[], false);
Eval(8403, v is EmptyClass, false);
Eval(8404, v is EmptyClass[], false);
Eval(8405, v is NotEmptyClass, false);
Eval(8406, v is NotEmptyClass[], false);
- Eval(8407, v is EmptyClassGen<int>, false);
- Eval(8408, v is EmptyClassGen<int>[], false);
- Eval(8409, v is NotEmptyClassGen<Guid>, false);
- Eval(8410, v is NotEmptyClassGen<Guid>[], false);
- Eval(8411, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(8412, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8407, v is EmptyClassGen<int>, false);
+// Eval(8408, v is EmptyClassGen<int>[], false);
+// Eval(8409, v is NotEmptyClassGen<Guid>, false);
+// Eval(8410, v is NotEmptyClassGen<Guid>[], false);
+// Eval(8411, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8412, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(8413, v is NestedClass, false);
Eval(8414, v is NestedClass[], false);
- Eval(8415, v is NestedClassGen<Decimal>, false);
- Eval(8416, v is NestedClassGen<Decimal>[], false);
+// Eval(8415, v is NestedClassGen<Decimal>, false);
+// Eval(8416, v is NestedClassGen<Decimal>[], false);
Eval(8417, v is ImplementOneInterfaceC, false);
Eval(8418, v is ImplementOneInterfaceC[], false);
Eval(8419, v is ImplementTwoInterfaceC, false);
Eval(8420, v is ImplementTwoInterfaceC[], false);
- Eval(8421, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8422, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8423, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(8424, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8425, v is ImplementAllInterfaceC<int>, false);
- Eval(8426, v is ImplementAllInterfaceC<int>[], false);
+// Eval(8421, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8422, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8423, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8424, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8425, v is ImplementAllInterfaceC<int>, false);
+// Eval(8426, v is ImplementAllInterfaceC<int>[], false);
Eval(8427, v is SealedClass, false);
Eval(8428, v is SealedClass[], false);
}
@@ -8265,26 +8265,26 @@ internal class Program
Eval(8434, v is NotEmptyStruct[], false);
Eval(8435, v is NotEmptyStruct?, false);
Eval(8436, v is NotEmptyStruct?[], false);
- Eval(8437, v is EmptyStructGen<int>, false);
- Eval(8438, v is EmptyStructGen<int>[], false);
- Eval(8439, v is EmptyStructGen<int>?, false);
- Eval(8440, v is EmptyStructGen<int>?[], false);
- Eval(8441, v is NotEmptyStructGen<Guid>, false);
- Eval(8442, v is NotEmptyStructGen<Guid>[], false);
- Eval(8443, v is NotEmptyStructGen<Guid>?, false);
- Eval(8444, v is NotEmptyStructGen<Guid>?[], false);
- Eval(8445, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8446, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8447, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8448, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8437, v is EmptyStructGen<int>, false);
+// Eval(8438, v is EmptyStructGen<int>[], false);
+// Eval(8439, v is EmptyStructGen<int>?, false);
+// Eval(8440, v is EmptyStructGen<int>?[], false);
+// Eval(8441, v is NotEmptyStructGen<Guid>, false);
+// Eval(8442, v is NotEmptyStructGen<Guid>[], false);
+// Eval(8443, v is NotEmptyStructGen<Guid>?, false);
+// Eval(8444, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(8445, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8446, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8447, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8448, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8449, v is NestedStruct, false);
Eval(8450, v is NestedStruct[], false);
Eval(8451, v is NestedStruct?, false);
Eval(8452, v is NestedStruct?[], false);
- Eval(8453, v is NestedStructGen<Decimal>, false);
- Eval(8454, v is NestedStructGen<Decimal>[], false);
- Eval(8455, v is NestedStructGen<Decimal>?, false);
- Eval(8456, v is NestedStructGen<Decimal>?[], false);
+// Eval(8453, v is NestedStructGen<Decimal>, false);
+// Eval(8454, v is NestedStructGen<Decimal>[], false);
+// Eval(8455, v is NestedStructGen<Decimal>?, false);
+// Eval(8456, v is NestedStructGen<Decimal>?[], false);
Eval(8457, v is ExplicitFieldOffsetStruct, false);
Eval(8458, v is ExplicitFieldOffsetStruct[], false);
Eval(8459, v is ExplicitFieldOffsetStruct?, false);
@@ -8301,18 +8301,18 @@ internal class Program
Eval(8478, v is ImplementTwoInterface[], false);
Eval(8479, v is ImplementTwoInterface?, false);
Eval(8480, v is ImplementTwoInterface?[], false);
- Eval(8481, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8482, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8483, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8484, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8485, v is ImplementTwoInterfaceGen<int>, false);
- Eval(8486, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(8487, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(8488, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8489, v is ImplementAllInterface<int>, false);
- Eval(8490, v is ImplementAllInterface<int>[], false);
- Eval(8491, v is ImplementAllInterface<int>?, false);
- Eval(8492, v is ImplementAllInterface<int>?[], false);
+// Eval(8481, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8482, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8483, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8484, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8485, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(8486, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8487, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(8488, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8489, v is ImplementAllInterface<int>, false);
+// Eval(8490, v is ImplementAllInterface<int>[], false);
+// Eval(8491, v is ImplementAllInterface<int>?, false);
+// Eval(8492, v is ImplementAllInterface<int>?[], false);
Eval(8493, v is IntE, false);
Eval(8494, v is IntE[], false);
Eval(8495, v is IntE?, false);
@@ -8411,38 +8411,38 @@ internal class Program
Eval(8588, v is IEmpty[], false);
Eval(8589, v is INotEmpty, false);
Eval(8590, v is INotEmpty[], false);
- Eval(8591, v is IEmptyGen<int>, false);
- Eval(8592, v is IEmptyGen<int>[], false);
- Eval(8593, v is INotEmptyGen<int>, false);
- Eval(8594, v is INotEmptyGen<int>[], false);
+// Eval(8591, v is IEmptyGen<int>, false);
+// Eval(8592, v is IEmptyGen<int>[], false);
+// Eval(8593, v is INotEmptyGen<int>, false);
+// Eval(8594, v is INotEmptyGen<int>[], false);
Eval(8595, v is SimpleDelegate, false);
Eval(8596, v is SimpleDelegate[], false);
- Eval(8597, v is GenericDelegate<int>, false);
- Eval(8598, v is GenericDelegate<int>[], false);
+// Eval(8597, v is GenericDelegate<int>, false);
+// Eval(8598, v is GenericDelegate<int>[], false);
Eval(8599, v is EmptyClass, false);
Eval(8600, v is EmptyClass[], false);
Eval(8601, v is NotEmptyClass, false);
Eval(8602, v is NotEmptyClass[], false);
- Eval(8603, v is EmptyClassGen<int>, false);
- Eval(8604, v is EmptyClassGen<int>[], false);
- Eval(8605, v is NotEmptyClassGen<Guid>, false);
- Eval(8606, v is NotEmptyClassGen<Guid>[], false);
- Eval(8607, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(8608, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8603, v is EmptyClassGen<int>, false);
+// Eval(8604, v is EmptyClassGen<int>[], false);
+// Eval(8605, v is NotEmptyClassGen<Guid>, false);
+// Eval(8606, v is NotEmptyClassGen<Guid>[], false);
+// Eval(8607, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8608, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(8609, v is NestedClass, false);
Eval(8610, v is NestedClass[], false);
- Eval(8611, v is NestedClassGen<Decimal>, false);
- Eval(8612, v is NestedClassGen<Decimal>[], false);
+// Eval(8611, v is NestedClassGen<Decimal>, false);
+// Eval(8612, v is NestedClassGen<Decimal>[], false);
Eval(8613, v is ImplementOneInterfaceC, false);
Eval(8614, v is ImplementOneInterfaceC[], false);
Eval(8615, v is ImplementTwoInterfaceC, false);
Eval(8616, v is ImplementTwoInterfaceC[], false);
- Eval(8617, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8618, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8619, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(8620, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8621, v is ImplementAllInterfaceC<int>, false);
- Eval(8622, v is ImplementAllInterfaceC<int>[], false);
+// Eval(8617, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8618, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8619, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8620, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8621, v is ImplementAllInterfaceC<int>, false);
+// Eval(8622, v is ImplementAllInterfaceC<int>[], false);
Eval(8623, v is SealedClass, false);
Eval(8624, v is SealedClass[], false);
}
@@ -8456,26 +8456,26 @@ internal class Program
Eval(8630, v is NotEmptyStruct[], false);
Eval(8631, v is NotEmptyStruct?, false);
Eval(8632, v is NotEmptyStruct?[], false);
- Eval(8633, v is EmptyStructGen<int>, false);
- Eval(8634, v is EmptyStructGen<int>[], false);
- Eval(8635, v is EmptyStructGen<int>?, false);
- Eval(8636, v is EmptyStructGen<int>?[], false);
- Eval(8637, v is NotEmptyStructGen<Guid>, false);
- Eval(8638, v is NotEmptyStructGen<Guid>[], false);
- Eval(8639, v is NotEmptyStructGen<Guid>?, false);
- Eval(8640, v is NotEmptyStructGen<Guid>?[], false);
- Eval(8641, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8642, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8643, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8644, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8633, v is EmptyStructGen<int>, false);
+// Eval(8634, v is EmptyStructGen<int>[], false);
+// Eval(8635, v is EmptyStructGen<int>?, false);
+// Eval(8636, v is EmptyStructGen<int>?[], false);
+// Eval(8637, v is NotEmptyStructGen<Guid>, false);
+// Eval(8638, v is NotEmptyStructGen<Guid>[], false);
+// Eval(8639, v is NotEmptyStructGen<Guid>?, false);
+// Eval(8640, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(8641, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8642, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8643, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8644, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8645, v is NestedStruct, false);
Eval(8646, v is NestedStruct[], false);
Eval(8647, v is NestedStruct?, false);
Eval(8648, v is NestedStruct?[], false);
- Eval(8649, v is NestedStructGen<Decimal>, false);
- Eval(8650, v is NestedStructGen<Decimal>[], false);
- Eval(8651, v is NestedStructGen<Decimal>?, false);
- Eval(8652, v is NestedStructGen<Decimal>?[], false);
+// Eval(8649, v is NestedStructGen<Decimal>, false);
+// Eval(8650, v is NestedStructGen<Decimal>[], false);
+// Eval(8651, v is NestedStructGen<Decimal>?, false);
+// Eval(8652, v is NestedStructGen<Decimal>?[], false);
Eval(8653, v is ExplicitFieldOffsetStruct, false);
Eval(8654, v is ExplicitFieldOffsetStruct[], false);
Eval(8655, v is ExplicitFieldOffsetStruct?, false);
@@ -8492,18 +8492,18 @@ internal class Program
Eval(8674, v is ImplementTwoInterface[], false);
Eval(8675, v is ImplementTwoInterface?, false);
Eval(8676, v is ImplementTwoInterface?[], false);
- Eval(8677, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8678, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8679, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8680, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8681, v is ImplementTwoInterfaceGen<int>, false);
- Eval(8682, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(8683, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(8684, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8685, v is ImplementAllInterface<int>, false);
- Eval(8686, v is ImplementAllInterface<int>[], false);
- Eval(8687, v is ImplementAllInterface<int>?, false);
- Eval(8688, v is ImplementAllInterface<int>?[], false);
+// Eval(8677, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8678, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8679, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8680, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8681, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(8682, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8683, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(8684, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8685, v is ImplementAllInterface<int>, false);
+// Eval(8686, v is ImplementAllInterface<int>[], false);
+// Eval(8687, v is ImplementAllInterface<int>?, false);
+// Eval(8688, v is ImplementAllInterface<int>?[], false);
Eval(8689, v is IntE, false);
Eval(8690, v is IntE[], false);
Eval(8691, v is IntE?, false);
@@ -8602,38 +8602,38 @@ internal class Program
Eval(8784, v is IEmpty[], false);
Eval(8785, v is INotEmpty, false);
Eval(8786, v is INotEmpty[], false);
- Eval(8787, v is IEmptyGen<int>, false);
- Eval(8788, v is IEmptyGen<int>[], false);
- Eval(8789, v is INotEmptyGen<int>, false);
- Eval(8790, v is INotEmptyGen<int>[], false);
+// Eval(8787, v is IEmptyGen<int>, false);
+// Eval(8788, v is IEmptyGen<int>[], false);
+// Eval(8789, v is INotEmptyGen<int>, false);
+// Eval(8790, v is INotEmptyGen<int>[], false);
Eval(8791, v is SimpleDelegate, false);
Eval(8792, v is SimpleDelegate[], false);
- Eval(8793, v is GenericDelegate<int>, false);
- Eval(8794, v is GenericDelegate<int>[], false);
+// Eval(8793, v is GenericDelegate<int>, false);
+// Eval(8794, v is GenericDelegate<int>[], false);
Eval(8795, v is EmptyClass, false);
Eval(8796, v is EmptyClass[], false);
Eval(8797, v is NotEmptyClass, false);
Eval(8798, v is NotEmptyClass[], false);
- Eval(8799, v is EmptyClassGen<int>, false);
- Eval(8800, v is EmptyClassGen<int>[], false);
- Eval(8801, v is NotEmptyClassGen<Guid>, false);
- Eval(8802, v is NotEmptyClassGen<Guid>[], false);
- Eval(8803, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(8804, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8799, v is EmptyClassGen<int>, false);
+// Eval(8800, v is EmptyClassGen<int>[], false);
+// Eval(8801, v is NotEmptyClassGen<Guid>, false);
+// Eval(8802, v is NotEmptyClassGen<Guid>[], false);
+// Eval(8803, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8804, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(8805, v is NestedClass, false);
Eval(8806, v is NestedClass[], false);
- Eval(8807, v is NestedClassGen<Decimal>, false);
- Eval(8808, v is NestedClassGen<Decimal>[], false);
+// Eval(8807, v is NestedClassGen<Decimal>, false);
+// Eval(8808, v is NestedClassGen<Decimal>[], false);
Eval(8809, v is ImplementOneInterfaceC, false);
Eval(8810, v is ImplementOneInterfaceC[], false);
Eval(8811, v is ImplementTwoInterfaceC, false);
Eval(8812, v is ImplementTwoInterfaceC[], false);
- Eval(8813, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8814, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8815, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(8816, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8817, v is ImplementAllInterfaceC<int>, false);
- Eval(8818, v is ImplementAllInterfaceC<int>[], false);
+// Eval(8813, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8814, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8815, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8816, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8817, v is ImplementAllInterfaceC<int>, false);
+// Eval(8818, v is ImplementAllInterfaceC<int>[], false);
Eval(8819, v is SealedClass, false);
Eval(8820, v is SealedClass[], false);
}
@@ -8650,26 +8650,26 @@ internal class Program
Eval(8826, v is NotEmptyStruct[], false);
Eval(8827, v is NotEmptyStruct?, false);
Eval(8828, v is NotEmptyStruct?[], false);
- Eval(8829, v is EmptyStructGen<int>, false);
- Eval(8830, v is EmptyStructGen<int>[], false);
- Eval(8831, v is EmptyStructGen<int>?, false);
- Eval(8832, v is EmptyStructGen<int>?[], false);
- Eval(8833, v is NotEmptyStructGen<Guid>, false);
- Eval(8834, v is NotEmptyStructGen<Guid>[], false);
- Eval(8835, v is NotEmptyStructGen<Guid>?, false);
- Eval(8836, v is NotEmptyStructGen<Guid>?[], false);
- Eval(8837, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8838, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8839, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8840, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8829, v is EmptyStructGen<int>, false);
+// Eval(8830, v is EmptyStructGen<int>[], false);
+// Eval(8831, v is EmptyStructGen<int>?, false);
+// Eval(8832, v is EmptyStructGen<int>?[], false);
+// Eval(8833, v is NotEmptyStructGen<Guid>, false);
+// Eval(8834, v is NotEmptyStructGen<Guid>[], false);
+// Eval(8835, v is NotEmptyStructGen<Guid>?, false);
+// Eval(8836, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(8837, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8838, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8839, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8840, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8841, v is NestedStruct, false);
Eval(8842, v is NestedStruct[], false);
Eval(8843, v is NestedStruct?, false);
Eval(8844, v is NestedStruct?[], false);
- Eval(8845, v is NestedStructGen<Decimal>, false);
- Eval(8846, v is NestedStructGen<Decimal>[], false);
- Eval(8847, v is NestedStructGen<Decimal>?, false);
- Eval(8848, v is NestedStructGen<Decimal>?[], false);
+// Eval(8845, v is NestedStructGen<Decimal>, false);
+// Eval(8846, v is NestedStructGen<Decimal>[], false);
+// Eval(8847, v is NestedStructGen<Decimal>?, false);
+// Eval(8848, v is NestedStructGen<Decimal>?[], false);
Eval(8849, v is ExplicitFieldOffsetStruct, false);
Eval(8850, v is ExplicitFieldOffsetStruct[], false);
Eval(8851, v is ExplicitFieldOffsetStruct?, false);
@@ -8686,18 +8686,18 @@ internal class Program
Eval(8870, v is ImplementTwoInterface[], false);
Eval(8871, v is ImplementTwoInterface?, false);
Eval(8872, v is ImplementTwoInterface?[], false);
- Eval(8873, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8874, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8875, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8876, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8877, v is ImplementTwoInterfaceGen<int>, false);
- Eval(8878, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(8879, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(8880, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8881, v is ImplementAllInterface<int>, false);
- Eval(8882, v is ImplementAllInterface<int>[], false);
- Eval(8883, v is ImplementAllInterface<int>?, false);
- Eval(8884, v is ImplementAllInterface<int>?[], false);
+// Eval(8873, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8874, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8875, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8876, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8877, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(8878, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8879, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(8880, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8881, v is ImplementAllInterface<int>, false);
+// Eval(8882, v is ImplementAllInterface<int>[], false);
+// Eval(8883, v is ImplementAllInterface<int>?, false);
+// Eval(8884, v is ImplementAllInterface<int>?[], false);
Eval(8885, v is IntE, false);
Eval(8886, v is IntE[], false);
Eval(8887, v is IntE?, false);
@@ -8796,38 +8796,38 @@ internal class Program
Eval(8980, v is IEmpty[], false);
Eval(8981, v is INotEmpty, false);
Eval(8982, v is INotEmpty[], false);
- Eval(8983, v is IEmptyGen<int>, false);
- Eval(8984, v is IEmptyGen<int>[], false);
- Eval(8985, v is INotEmptyGen<int>, false);
- Eval(8986, v is INotEmptyGen<int>[], false);
+// Eval(8983, v is IEmptyGen<int>, false);
+// Eval(8984, v is IEmptyGen<int>[], false);
+// Eval(8985, v is INotEmptyGen<int>, false);
+// Eval(8986, v is INotEmptyGen<int>[], false);
Eval(8987, v is SimpleDelegate, false);
Eval(8988, v is SimpleDelegate[], false);
- Eval(8989, v is GenericDelegate<int>, false);
- Eval(8990, v is GenericDelegate<int>[], false);
+// Eval(8989, v is GenericDelegate<int>, false);
+// Eval(8990, v is GenericDelegate<int>[], false);
Eval(8991, v is EmptyClass, false);
Eval(8992, v is EmptyClass[], false);
Eval(8993, v is NotEmptyClass, false);
Eval(8994, v is NotEmptyClass[], false);
- Eval(8995, v is EmptyClassGen<int>, false);
- Eval(8996, v is EmptyClassGen<int>[], false);
- Eval(8997, v is NotEmptyClassGen<Guid>, false);
- Eval(8998, v is NotEmptyClassGen<Guid>[], false);
- Eval(8999, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(9000, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8995, v is EmptyClassGen<int>, false);
+// Eval(8996, v is EmptyClassGen<int>[], false);
+// Eval(8997, v is NotEmptyClassGen<Guid>, false);
+// Eval(8998, v is NotEmptyClassGen<Guid>[], false);
+// Eval(8999, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9000, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(9001, v is NestedClass, false);
Eval(9002, v is NestedClass[], false);
- Eval(9003, v is NestedClassGen<Decimal>, false);
- Eval(9004, v is NestedClassGen<Decimal>[], false);
+// Eval(9003, v is NestedClassGen<Decimal>, false);
+// Eval(9004, v is NestedClassGen<Decimal>[], false);
Eval(9005, v is ImplementOneInterfaceC, false);
Eval(9006, v is ImplementOneInterfaceC[], false);
Eval(9007, v is ImplementTwoInterfaceC, false);
Eval(9008, v is ImplementTwoInterfaceC[], false);
- Eval(9009, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9010, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9011, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(9012, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9013, v is ImplementAllInterfaceC<int>, false);
- Eval(9014, v is ImplementAllInterfaceC<int>[], false);
+// Eval(9009, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9010, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9011, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9012, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9013, v is ImplementAllInterfaceC<int>, false);
+// Eval(9014, v is ImplementAllInterfaceC<int>[], false);
Eval(9015, v is SealedClass, false);
Eval(9016, v is SealedClass[], false);
}
@@ -8841,26 +8841,26 @@ internal class Program
Eval(9022, v is NotEmptyStruct[], false);
Eval(9023, v is NotEmptyStruct?, false);
Eval(9024, v is NotEmptyStruct?[], false);
- Eval(9025, v is EmptyStructGen<int>, false);
- Eval(9026, v is EmptyStructGen<int>[], false);
- Eval(9027, v is EmptyStructGen<int>?, false);
- Eval(9028, v is EmptyStructGen<int>?[], false);
- Eval(9029, v is NotEmptyStructGen<Guid>, false);
- Eval(9030, v is NotEmptyStructGen<Guid>[], false);
- Eval(9031, v is NotEmptyStructGen<Guid>?, false);
- Eval(9032, v is NotEmptyStructGen<Guid>?[], false);
- Eval(9033, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9034, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9035, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9036, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9025, v is EmptyStructGen<int>, false);
+// Eval(9026, v is EmptyStructGen<int>[], false);
+// Eval(9027, v is EmptyStructGen<int>?, false);
+// Eval(9028, v is EmptyStructGen<int>?[], false);
+// Eval(9029, v is NotEmptyStructGen<Guid>, false);
+// Eval(9030, v is NotEmptyStructGen<Guid>[], false);
+// Eval(9031, v is NotEmptyStructGen<Guid>?, false);
+// Eval(9032, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(9033, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9034, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9035, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9036, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9037, v is NestedStruct, false);
Eval(9038, v is NestedStruct[], false);
Eval(9039, v is NestedStruct?, false);
Eval(9040, v is NestedStruct?[], false);
- Eval(9041, v is NestedStructGen<Decimal>, false);
- Eval(9042, v is NestedStructGen<Decimal>[], false);
- Eval(9043, v is NestedStructGen<Decimal>?, false);
- Eval(9044, v is NestedStructGen<Decimal>?[], false);
+// Eval(9041, v is NestedStructGen<Decimal>, false);
+// Eval(9042, v is NestedStructGen<Decimal>[], false);
+// Eval(9043, v is NestedStructGen<Decimal>?, false);
+// Eval(9044, v is NestedStructGen<Decimal>?[], false);
Eval(9045, v is ExplicitFieldOffsetStruct, false);
Eval(9046, v is ExplicitFieldOffsetStruct[], false);
Eval(9047, v is ExplicitFieldOffsetStruct?, false);
@@ -8877,18 +8877,18 @@ internal class Program
Eval(9066, v is ImplementTwoInterface[], false);
Eval(9067, v is ImplementTwoInterface?, false);
Eval(9068, v is ImplementTwoInterface?[], false);
- Eval(9069, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9070, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9071, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9072, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9073, v is ImplementTwoInterfaceGen<int>, false);
- Eval(9074, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(9075, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(9076, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9077, v is ImplementAllInterface<int>, false);
- Eval(9078, v is ImplementAllInterface<int>[], false);
- Eval(9079, v is ImplementAllInterface<int>?, false);
- Eval(9080, v is ImplementAllInterface<int>?[], false);
+// Eval(9069, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9070, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9071, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9072, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9073, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(9074, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9075, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9076, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9077, v is ImplementAllInterface<int>, false);
+// Eval(9078, v is ImplementAllInterface<int>[], false);
+// Eval(9079, v is ImplementAllInterface<int>?, false);
+// Eval(9080, v is ImplementAllInterface<int>?[], false);
Eval(9081, v is IntE, false);
Eval(9082, v is IntE[], false);
Eval(9083, v is IntE?, false);
@@ -8987,38 +8987,38 @@ internal class Program
Eval(9176, v is IEmpty[], false);
Eval(9177, v is INotEmpty, false);
Eval(9178, v is INotEmpty[], false);
- Eval(9179, v is IEmptyGen<int>, false);
- Eval(9180, v is IEmptyGen<int>[], false);
- Eval(9181, v is INotEmptyGen<int>, false);
- Eval(9182, v is INotEmptyGen<int>[], false);
+// Eval(9179, v is IEmptyGen<int>, false);
+// Eval(9180, v is IEmptyGen<int>[], false);
+// Eval(9181, v is INotEmptyGen<int>, false);
+// Eval(9182, v is INotEmptyGen<int>[], false);
Eval(9183, v is SimpleDelegate, false);
Eval(9184, v is SimpleDelegate[], false);
- Eval(9185, v is GenericDelegate<int>, false);
- Eval(9186, v is GenericDelegate<int>[], false);
+// Eval(9185, v is GenericDelegate<int>, false);
+// Eval(9186, v is GenericDelegate<int>[], false);
Eval(9187, v is EmptyClass, false);
Eval(9188, v is EmptyClass[], false);
Eval(9189, v is NotEmptyClass, false);
Eval(9190, v is NotEmptyClass[], false);
- Eval(9191, v is EmptyClassGen<int>, false);
- Eval(9192, v is EmptyClassGen<int>[], false);
- Eval(9193, v is NotEmptyClassGen<Guid>, false);
- Eval(9194, v is NotEmptyClassGen<Guid>[], false);
- Eval(9195, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(9196, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9191, v is EmptyClassGen<int>, false);
+// Eval(9192, v is EmptyClassGen<int>[], false);
+// Eval(9193, v is NotEmptyClassGen<Guid>, false);
+// Eval(9194, v is NotEmptyClassGen<Guid>[], false);
+// Eval(9195, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9196, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(9197, v is NestedClass, false);
Eval(9198, v is NestedClass[], false);
- Eval(9199, v is NestedClassGen<Decimal>, false);
- Eval(9200, v is NestedClassGen<Decimal>[], false);
+// Eval(9199, v is NestedClassGen<Decimal>, false);
+// Eval(9200, v is NestedClassGen<Decimal>[], false);
Eval(9201, v is ImplementOneInterfaceC, false);
Eval(9202, v is ImplementOneInterfaceC[], false);
Eval(9203, v is ImplementTwoInterfaceC, false);
Eval(9204, v is ImplementTwoInterfaceC[], false);
- Eval(9205, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9206, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9207, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(9208, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9209, v is ImplementAllInterfaceC<int>, false);
- Eval(9210, v is ImplementAllInterfaceC<int>[], false);
+// Eval(9205, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9206, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9207, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9208, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9209, v is ImplementAllInterfaceC<int>, false);
+// Eval(9210, v is ImplementAllInterfaceC<int>[], false);
Eval(9211, v is SealedClass, false);
Eval(9212, v is SealedClass[], false);
}
@@ -9032,26 +9032,26 @@ internal class Program
Eval(9218, v is NotEmptyStruct[], false);
Eval(9219, v is NotEmptyStruct?, false);
Eval(9220, v is NotEmptyStruct?[], false);
- Eval(9221, v is EmptyStructGen<int>, false);
- Eval(9222, v is EmptyStructGen<int>[], false);
- Eval(9223, v is EmptyStructGen<int>?, false);
- Eval(9224, v is EmptyStructGen<int>?[], false);
- Eval(9225, v is NotEmptyStructGen<Guid>, false);
- Eval(9226, v is NotEmptyStructGen<Guid>[], false);
- Eval(9227, v is NotEmptyStructGen<Guid>?, false);
- Eval(9228, v is NotEmptyStructGen<Guid>?[], false);
- Eval(9229, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9230, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9231, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9232, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9221, v is EmptyStructGen<int>, false);
+// Eval(9222, v is EmptyStructGen<int>[], false);
+// Eval(9223, v is EmptyStructGen<int>?, false);
+// Eval(9224, v is EmptyStructGen<int>?[], false);
+// Eval(9225, v is NotEmptyStructGen<Guid>, false);
+// Eval(9226, v is NotEmptyStructGen<Guid>[], false);
+// Eval(9227, v is NotEmptyStructGen<Guid>?, false);
+// Eval(9228, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(9229, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9230, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9231, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9232, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9233, v is NestedStruct, false);
Eval(9234, v is NestedStruct[], false);
Eval(9235, v is NestedStruct?, false);
Eval(9236, v is NestedStruct?[], false);
- Eval(9237, v is NestedStructGen<Decimal>, false);
- Eval(9238, v is NestedStructGen<Decimal>[], false);
- Eval(9239, v is NestedStructGen<Decimal>?, false);
- Eval(9240, v is NestedStructGen<Decimal>?[], false);
+// Eval(9237, v is NestedStructGen<Decimal>, false);
+// Eval(9238, v is NestedStructGen<Decimal>[], false);
+// Eval(9239, v is NestedStructGen<Decimal>?, false);
+// Eval(9240, v is NestedStructGen<Decimal>?[], false);
Eval(9241, v is ExplicitFieldOffsetStruct, false);
Eval(9242, v is ExplicitFieldOffsetStruct[], false);
Eval(9243, v is ExplicitFieldOffsetStruct?, false);
@@ -9068,18 +9068,18 @@ internal class Program
Eval(9262, v is ImplementTwoInterface[], false);
Eval(9263, v is ImplementTwoInterface?, false);
Eval(9264, v is ImplementTwoInterface?[], false);
- Eval(9265, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9266, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9267, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9268, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9269, v is ImplementTwoInterfaceGen<int>, false);
- Eval(9270, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(9271, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(9272, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9273, v is ImplementAllInterface<int>, false);
- Eval(9274, v is ImplementAllInterface<int>[], false);
- Eval(9275, v is ImplementAllInterface<int>?, false);
- Eval(9276, v is ImplementAllInterface<int>?[], false);
+// Eval(9265, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9266, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9267, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9268, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9269, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(9270, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9271, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9272, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9273, v is ImplementAllInterface<int>, false);
+// Eval(9274, v is ImplementAllInterface<int>[], false);
+// Eval(9275, v is ImplementAllInterface<int>?, false);
+// Eval(9276, v is ImplementAllInterface<int>?[], false);
Eval(9277, v is IntE, false);
Eval(9278, v is IntE[], false);
Eval(9279, v is IntE?, false);
@@ -9178,38 +9178,38 @@ internal class Program
Eval(9372, v is IEmpty[], false);
Eval(9373, v is INotEmpty, false);
Eval(9374, v is INotEmpty[], false);
- Eval(9375, v is IEmptyGen<int>, false);
- Eval(9376, v is IEmptyGen<int>[], false);
- Eval(9377, v is INotEmptyGen<int>, false);
- Eval(9378, v is INotEmptyGen<int>[], false);
+// Eval(9375, v is IEmptyGen<int>, false);
+// Eval(9376, v is IEmptyGen<int>[], false);
+// Eval(9377, v is INotEmptyGen<int>, false);
+// Eval(9378, v is INotEmptyGen<int>[], false);
Eval(9379, v is SimpleDelegate, false);
Eval(9380, v is SimpleDelegate[], false);
- Eval(9381, v is GenericDelegate<int>, false);
- Eval(9382, v is GenericDelegate<int>[], false);
+// Eval(9381, v is GenericDelegate<int>, false);
+// Eval(9382, v is GenericDelegate<int>[], false);
Eval(9383, v is EmptyClass, false);
Eval(9384, v is EmptyClass[], false);
Eval(9385, v is NotEmptyClass, false);
Eval(9386, v is NotEmptyClass[], false);
- Eval(9387, v is EmptyClassGen<int>, false);
- Eval(9388, v is EmptyClassGen<int>[], false);
- Eval(9389, v is NotEmptyClassGen<Guid>, false);
- Eval(9390, v is NotEmptyClassGen<Guid>[], false);
- Eval(9391, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(9392, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9387, v is EmptyClassGen<int>, false);
+// Eval(9388, v is EmptyClassGen<int>[], false);
+// Eval(9389, v is NotEmptyClassGen<Guid>, false);
+// Eval(9390, v is NotEmptyClassGen<Guid>[], false);
+// Eval(9391, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9392, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(9393, v is NestedClass, false);
Eval(9394, v is NestedClass[], false);
- Eval(9395, v is NestedClassGen<Decimal>, false);
- Eval(9396, v is NestedClassGen<Decimal>[], false);
+// Eval(9395, v is NestedClassGen<Decimal>, false);
+// Eval(9396, v is NestedClassGen<Decimal>[], false);
Eval(9397, v is ImplementOneInterfaceC, false);
Eval(9398, v is ImplementOneInterfaceC[], false);
Eval(9399, v is ImplementTwoInterfaceC, false);
Eval(9400, v is ImplementTwoInterfaceC[], false);
- Eval(9401, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9402, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9403, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(9404, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9405, v is ImplementAllInterfaceC<int>, false);
- Eval(9406, v is ImplementAllInterfaceC<int>[], false);
+// Eval(9401, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9402, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9403, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9404, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9405, v is ImplementAllInterfaceC<int>, false);
+// Eval(9406, v is ImplementAllInterfaceC<int>[], false);
Eval(9407, v is SealedClass, false);
Eval(9408, v is SealedClass[], false);
}
@@ -9223,26 +9223,26 @@ internal class Program
Eval(9414, v is NotEmptyStruct[], false);
Eval(9415, v is NotEmptyStruct?, false);
Eval(9416, v is NotEmptyStruct?[], false);
- Eval(9417, v is EmptyStructGen<int>, false);
- Eval(9418, v is EmptyStructGen<int>[], false);
- Eval(9419, v is EmptyStructGen<int>?, false);
- Eval(9420, v is EmptyStructGen<int>?[], false);
- Eval(9421, v is NotEmptyStructGen<Guid>, false);
- Eval(9422, v is NotEmptyStructGen<Guid>[], false);
- Eval(9423, v is NotEmptyStructGen<Guid>?, false);
- Eval(9424, v is NotEmptyStructGen<Guid>?[], false);
- Eval(9425, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9426, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9427, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9428, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9417, v is EmptyStructGen<int>, false);
+// Eval(9418, v is EmptyStructGen<int>[], false);
+// Eval(9419, v is EmptyStructGen<int>?, false);
+// Eval(9420, v is EmptyStructGen<int>?[], false);
+// Eval(9421, v is NotEmptyStructGen<Guid>, false);
+// Eval(9422, v is NotEmptyStructGen<Guid>[], false);
+// Eval(9423, v is NotEmptyStructGen<Guid>?, false);
+// Eval(9424, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(9425, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9426, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9427, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9428, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9429, v is NestedStruct, false);
Eval(9430, v is NestedStruct[], false);
Eval(9431, v is NestedStruct?, false);
Eval(9432, v is NestedStruct?[], false);
- Eval(9433, v is NestedStructGen<Decimal>, false);
- Eval(9434, v is NestedStructGen<Decimal>[], false);
- Eval(9435, v is NestedStructGen<Decimal>?, false);
- Eval(9436, v is NestedStructGen<Decimal>?[], false);
+// Eval(9433, v is NestedStructGen<Decimal>, false);
+// Eval(9434, v is NestedStructGen<Decimal>[], false);
+// Eval(9435, v is NestedStructGen<Decimal>?, false);
+// Eval(9436, v is NestedStructGen<Decimal>?[], false);
Eval(9437, v is ExplicitFieldOffsetStruct, false);
Eval(9438, v is ExplicitFieldOffsetStruct[], false);
Eval(9439, v is ExplicitFieldOffsetStruct?, false);
@@ -9259,18 +9259,18 @@ internal class Program
Eval(9458, v is ImplementTwoInterface[], false);
Eval(9459, v is ImplementTwoInterface?, false);
Eval(9460, v is ImplementTwoInterface?[], false);
- Eval(9461, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9462, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9463, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9464, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9465, v is ImplementTwoInterfaceGen<int>, false);
- Eval(9466, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(9467, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(9468, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9469, v is ImplementAllInterface<int>, false);
- Eval(9470, v is ImplementAllInterface<int>[], false);
- Eval(9471, v is ImplementAllInterface<int>?, false);
- Eval(9472, v is ImplementAllInterface<int>?[], false);
+// Eval(9461, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9462, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9463, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9464, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9465, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(9466, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9467, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9468, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9469, v is ImplementAllInterface<int>, false);
+// Eval(9470, v is ImplementAllInterface<int>[], false);
+// Eval(9471, v is ImplementAllInterface<int>?, false);
+// Eval(9472, v is ImplementAllInterface<int>?[], false);
Eval(9473, v is IntE, false);
Eval(9474, v is IntE[], false);
Eval(9475, v is IntE?, false);
@@ -9369,38 +9369,38 @@ internal class Program
Eval(9568, v is IEmpty[], false);
Eval(9569, v is INotEmpty, false);
Eval(9570, v is INotEmpty[], false);
- Eval(9571, v is IEmptyGen<int>, false);
- Eval(9572, v is IEmptyGen<int>[], false);
- Eval(9573, v is INotEmptyGen<int>, false);
- Eval(9574, v is INotEmptyGen<int>[], false);
+// Eval(9571, v is IEmptyGen<int>, false);
+// Eval(9572, v is IEmptyGen<int>[], false);
+// Eval(9573, v is INotEmptyGen<int>, false);
+// Eval(9574, v is INotEmptyGen<int>[], false);
Eval(9575, v is SimpleDelegate, false);
Eval(9576, v is SimpleDelegate[], false);
- Eval(9577, v is GenericDelegate<int>, false);
- Eval(9578, v is GenericDelegate<int>[], false);
+// Eval(9577, v is GenericDelegate<int>, false);
+// Eval(9578, v is GenericDelegate<int>[], false);
Eval(9579, v is EmptyClass, false);
Eval(9580, v is EmptyClass[], false);
Eval(9581, v is NotEmptyClass, false);
Eval(9582, v is NotEmptyClass[], false);
- Eval(9583, v is EmptyClassGen<int>, false);
- Eval(9584, v is EmptyClassGen<int>[], false);
- Eval(9585, v is NotEmptyClassGen<Guid>, false);
- Eval(9586, v is NotEmptyClassGen<Guid>[], false);
- Eval(9587, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(9588, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9583, v is EmptyClassGen<int>, false);
+// Eval(9584, v is EmptyClassGen<int>[], false);
+// Eval(9585, v is NotEmptyClassGen<Guid>, false);
+// Eval(9586, v is NotEmptyClassGen<Guid>[], false);
+// Eval(9587, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9588, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(9589, v is NestedClass, false);
Eval(9590, v is NestedClass[], false);
- Eval(9591, v is NestedClassGen<Decimal>, false);
- Eval(9592, v is NestedClassGen<Decimal>[], false);
+// Eval(9591, v is NestedClassGen<Decimal>, false);
+// Eval(9592, v is NestedClassGen<Decimal>[], false);
Eval(9593, v is ImplementOneInterfaceC, false);
Eval(9594, v is ImplementOneInterfaceC[], false);
Eval(9595, v is ImplementTwoInterfaceC, false);
Eval(9596, v is ImplementTwoInterfaceC[], false);
- Eval(9597, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9598, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9599, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(9600, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9601, v is ImplementAllInterfaceC<int>, false);
- Eval(9602, v is ImplementAllInterfaceC<int>[], false);
+// Eval(9597, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9598, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9599, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9600, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9601, v is ImplementAllInterfaceC<int>, false);
+// Eval(9602, v is ImplementAllInterfaceC<int>[], false);
Eval(9603, v is SealedClass, false);
Eval(9604, v is SealedClass[], false);
}
@@ -9414,26 +9414,26 @@ internal class Program
Eval(9610, v is NotEmptyStruct[], false);
Eval(9611, v is NotEmptyStruct?, false);
Eval(9612, v is NotEmptyStruct?[], false);
- Eval(9613, v is EmptyStructGen<int>, false);
- Eval(9614, v is EmptyStructGen<int>[], false);
- Eval(9615, v is EmptyStructGen<int>?, false);
- Eval(9616, v is EmptyStructGen<int>?[], false);
- Eval(9617, v is NotEmptyStructGen<Guid>, false);
- Eval(9618, v is NotEmptyStructGen<Guid>[], false);
- Eval(9619, v is NotEmptyStructGen<Guid>?, false);
- Eval(9620, v is NotEmptyStructGen<Guid>?[], false);
- Eval(9621, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9622, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9623, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9624, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9613, v is EmptyStructGen<int>, false);
+// Eval(9614, v is EmptyStructGen<int>[], false);
+// Eval(9615, v is EmptyStructGen<int>?, false);
+// Eval(9616, v is EmptyStructGen<int>?[], false);
+// Eval(9617, v is NotEmptyStructGen<Guid>, false);
+// Eval(9618, v is NotEmptyStructGen<Guid>[], false);
+// Eval(9619, v is NotEmptyStructGen<Guid>?, false);
+// Eval(9620, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(9621, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9622, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9623, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9624, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9625, v is NestedStruct, false);
Eval(9626, v is NestedStruct[], false);
Eval(9627, v is NestedStruct?, false);
Eval(9628, v is NestedStruct?[], false);
- Eval(9629, v is NestedStructGen<Decimal>, false);
- Eval(9630, v is NestedStructGen<Decimal>[], false);
- Eval(9631, v is NestedStructGen<Decimal>?, false);
- Eval(9632, v is NestedStructGen<Decimal>?[], false);
+// Eval(9629, v is NestedStructGen<Decimal>, false);
+// Eval(9630, v is NestedStructGen<Decimal>[], false);
+// Eval(9631, v is NestedStructGen<Decimal>?, false);
+// Eval(9632, v is NestedStructGen<Decimal>?[], false);
Eval(9633, v is ExplicitFieldOffsetStruct, false);
Eval(9634, v is ExplicitFieldOffsetStruct[], false);
Eval(9635, v is ExplicitFieldOffsetStruct?, false);
@@ -9450,18 +9450,18 @@ internal class Program
Eval(9654, v is ImplementTwoInterface[], false);
Eval(9655, v is ImplementTwoInterface?, false);
Eval(9656, v is ImplementTwoInterface?[], false);
- Eval(9657, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9658, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9659, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9660, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9661, v is ImplementTwoInterfaceGen<int>, false);
- Eval(9662, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(9663, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(9664, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9665, v is ImplementAllInterface<int>, false);
- Eval(9666, v is ImplementAllInterface<int>[], false);
- Eval(9667, v is ImplementAllInterface<int>?, false);
- Eval(9668, v is ImplementAllInterface<int>?[], false);
+// Eval(9657, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9658, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9659, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9660, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9661, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(9662, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9663, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9664, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9665, v is ImplementAllInterface<int>, false);
+// Eval(9666, v is ImplementAllInterface<int>[], false);
+// Eval(9667, v is ImplementAllInterface<int>?, false);
+// Eval(9668, v is ImplementAllInterface<int>?[], false);
Eval(9669, v is IntE, false);
Eval(9670, v is IntE[], false);
Eval(9671, v is IntE?, false);
@@ -9560,38 +9560,38 @@ internal class Program
Eval(9764, v is IEmpty[], false);
Eval(9765, v is INotEmpty, false);
Eval(9766, v is INotEmpty[], false);
- Eval(9767, v is IEmptyGen<int>, false);
- Eval(9768, v is IEmptyGen<int>[], false);
- Eval(9769, v is INotEmptyGen<int>, false);
- Eval(9770, v is INotEmptyGen<int>[], false);
+// Eval(9767, v is IEmptyGen<int>, false);
+// Eval(9768, v is IEmptyGen<int>[], false);
+// Eval(9769, v is INotEmptyGen<int>, false);
+// Eval(9770, v is INotEmptyGen<int>[], false);
Eval(9771, v is SimpleDelegate, false);
Eval(9772, v is SimpleDelegate[], false);
- Eval(9773, v is GenericDelegate<int>, false);
- Eval(9774, v is GenericDelegate<int>[], false);
+// Eval(9773, v is GenericDelegate<int>, false);
+// Eval(9774, v is GenericDelegate<int>[], false);
Eval(9775, v is EmptyClass, false);
Eval(9776, v is EmptyClass[], false);
Eval(9777, v is NotEmptyClass, false);
Eval(9778, v is NotEmptyClass[], false);
- Eval(9779, v is EmptyClassGen<int>, false);
- Eval(9780, v is EmptyClassGen<int>[], false);
- Eval(9781, v is NotEmptyClassGen<Guid>, false);
- Eval(9782, v is NotEmptyClassGen<Guid>[], false);
- Eval(9783, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(9784, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9779, v is EmptyClassGen<int>, false);
+// Eval(9780, v is EmptyClassGen<int>[], false);
+// Eval(9781, v is NotEmptyClassGen<Guid>, false);
+// Eval(9782, v is NotEmptyClassGen<Guid>[], false);
+// Eval(9783, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9784, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(9785, v is NestedClass, false);
Eval(9786, v is NestedClass[], false);
- Eval(9787, v is NestedClassGen<Decimal>, false);
- Eval(9788, v is NestedClassGen<Decimal>[], false);
+// Eval(9787, v is NestedClassGen<Decimal>, false);
+// Eval(9788, v is NestedClassGen<Decimal>[], false);
Eval(9789, v is ImplementOneInterfaceC, false);
Eval(9790, v is ImplementOneInterfaceC[], false);
Eval(9791, v is ImplementTwoInterfaceC, false);
Eval(9792, v is ImplementTwoInterfaceC[], false);
- Eval(9793, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9794, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9795, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(9796, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9797, v is ImplementAllInterfaceC<int>, false);
- Eval(9798, v is ImplementAllInterfaceC<int>[], false);
+// Eval(9793, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9794, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9795, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9796, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9797, v is ImplementAllInterfaceC<int>, false);
+// Eval(9798, v is ImplementAllInterfaceC<int>[], false);
Eval(9799, v is SealedClass, false);
Eval(9800, v is SealedClass[], false);
}
@@ -9608,26 +9608,26 @@ internal class Program
Eval(9806, v is NotEmptyStruct[], false);
Eval(9807, v is NotEmptyStruct?, false);
Eval(9808, v is NotEmptyStruct?[], false);
- Eval(9809, v is EmptyStructGen<int>, false);
- Eval(9810, v is EmptyStructGen<int>[], false);
- Eval(9811, v is EmptyStructGen<int>?, false);
- Eval(9812, v is EmptyStructGen<int>?[], false);
- Eval(9813, v is NotEmptyStructGen<Guid>, false);
- Eval(9814, v is NotEmptyStructGen<Guid>[], false);
- Eval(9815, v is NotEmptyStructGen<Guid>?, false);
- Eval(9816, v is NotEmptyStructGen<Guid>?[], false);
- Eval(9817, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9818, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9819, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9820, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9809, v is EmptyStructGen<int>, false);
+// Eval(9810, v is EmptyStructGen<int>[], false);
+// Eval(9811, v is EmptyStructGen<int>?, false);
+// Eval(9812, v is EmptyStructGen<int>?[], false);
+// Eval(9813, v is NotEmptyStructGen<Guid>, false);
+// Eval(9814, v is NotEmptyStructGen<Guid>[], false);
+// Eval(9815, v is NotEmptyStructGen<Guid>?, false);
+// Eval(9816, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(9817, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9818, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9819, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9820, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9821, v is NestedStruct, false);
Eval(9822, v is NestedStruct[], false);
Eval(9823, v is NestedStruct?, false);
Eval(9824, v is NestedStruct?[], false);
- Eval(9825, v is NestedStructGen<Decimal>, false);
- Eval(9826, v is NestedStructGen<Decimal>[], false);
- Eval(9827, v is NestedStructGen<Decimal>?, false);
- Eval(9828, v is NestedStructGen<Decimal>?[], false);
+// Eval(9825, v is NestedStructGen<Decimal>, false);
+// Eval(9826, v is NestedStructGen<Decimal>[], false);
+// Eval(9827, v is NestedStructGen<Decimal>?, false);
+// Eval(9828, v is NestedStructGen<Decimal>?[], false);
Eval(9829, v is ExplicitFieldOffsetStruct, false);
Eval(9830, v is ExplicitFieldOffsetStruct[], false);
Eval(9831, v is ExplicitFieldOffsetStruct?, false);
@@ -9644,18 +9644,18 @@ internal class Program
Eval(9850, v is ImplementTwoInterface[], false);
Eval(9851, v is ImplementTwoInterface?, false);
Eval(9852, v is ImplementTwoInterface?[], false);
- Eval(9853, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9854, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9855, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9856, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9857, v is ImplementTwoInterfaceGen<int>, false);
- Eval(9858, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(9859, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(9860, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9861, v is ImplementAllInterface<int>, false);
- Eval(9862, v is ImplementAllInterface<int>[], false);
- Eval(9863, v is ImplementAllInterface<int>?, false);
- Eval(9864, v is ImplementAllInterface<int>?[], false);
+// Eval(9853, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9854, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9855, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9856, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9857, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(9858, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9859, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9860, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9861, v is ImplementAllInterface<int>, false);
+// Eval(9862, v is ImplementAllInterface<int>[], false);
+// Eval(9863, v is ImplementAllInterface<int>?, false);
+// Eval(9864, v is ImplementAllInterface<int>?[], false);
Eval(9865, v is IntE, false);
Eval(9866, v is IntE[], false);
Eval(9867, v is IntE?, false);
@@ -9754,38 +9754,38 @@ internal class Program
Eval(9960, v is IEmpty[], false);
Eval(9961, v is INotEmpty, false);
Eval(9962, v is INotEmpty[], false);
- Eval(9963, v is IEmptyGen<int>, false);
- Eval(9964, v is IEmptyGen<int>[], false);
- Eval(9965, v is INotEmptyGen<int>, false);
- Eval(9966, v is INotEmptyGen<int>[], false);
+// Eval(9963, v is IEmptyGen<int>, false);
+// Eval(9964, v is IEmptyGen<int>[], false);
+// Eval(9965, v is INotEmptyGen<int>, false);
+// Eval(9966, v is INotEmptyGen<int>[], false);
Eval(9967, v is SimpleDelegate, false);
Eval(9968, v is SimpleDelegate[], false);
- Eval(9969, v is GenericDelegate<int>, false);
- Eval(9970, v is GenericDelegate<int>[], false);
+// Eval(9969, v is GenericDelegate<int>, false);
+// Eval(9970, v is GenericDelegate<int>[], false);
Eval(9971, v is EmptyClass, false);
Eval(9972, v is EmptyClass[], false);
Eval(9973, v is NotEmptyClass, false);
Eval(9974, v is NotEmptyClass[], false);
- Eval(9975, v is EmptyClassGen<int>, false);
- Eval(9976, v is EmptyClassGen<int>[], false);
- Eval(9977, v is NotEmptyClassGen<Guid>, false);
- Eval(9978, v is NotEmptyClassGen<Guid>[], false);
- Eval(9979, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(9980, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9975, v is EmptyClassGen<int>, false);
+// Eval(9976, v is EmptyClassGen<int>[], false);
+// Eval(9977, v is NotEmptyClassGen<Guid>, false);
+// Eval(9978, v is NotEmptyClassGen<Guid>[], false);
+// Eval(9979, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9980, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(9981, v is NestedClass, false);
Eval(9982, v is NestedClass[], false);
- Eval(9983, v is NestedClassGen<Decimal>, false);
- Eval(9984, v is NestedClassGen<Decimal>[], false);
+// Eval(9983, v is NestedClassGen<Decimal>, false);
+// Eval(9984, v is NestedClassGen<Decimal>[], false);
Eval(9985, v is ImplementOneInterfaceC, false);
Eval(9986, v is ImplementOneInterfaceC[], false);
Eval(9987, v is ImplementTwoInterfaceC, false);
Eval(9988, v is ImplementTwoInterfaceC[], false);
- Eval(9989, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9990, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9991, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(9992, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9993, v is ImplementAllInterfaceC<int>, false);
- Eval(9994, v is ImplementAllInterfaceC<int>[], false);
+// Eval(9989, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9990, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9991, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9992, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9993, v is ImplementAllInterfaceC<int>, false);
+// Eval(9994, v is ImplementAllInterfaceC<int>[], false);
Eval(9995, v is SealedClass, false);
Eval(9996, v is SealedClass[], false);
}
@@ -9799,26 +9799,26 @@ internal class Program
Eval(10002, v is NotEmptyStruct[], false);
Eval(10003, v is NotEmptyStruct?, false);
Eval(10004, v is NotEmptyStruct?[], false);
- Eval(10005, v is EmptyStructGen<int>, false);
- Eval(10006, v is EmptyStructGen<int>[], false);
- Eval(10007, v is EmptyStructGen<int>?, false);
- Eval(10008, v is EmptyStructGen<int>?[], false);
- Eval(10009, v is NotEmptyStructGen<Guid>, false);
- Eval(10010, v is NotEmptyStructGen<Guid>[], false);
- Eval(10011, v is NotEmptyStructGen<Guid>?, false);
- Eval(10012, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10013, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10014, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10015, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10016, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10005, v is EmptyStructGen<int>, false);
+// Eval(10006, v is EmptyStructGen<int>[], false);
+// Eval(10007, v is EmptyStructGen<int>?, false);
+// Eval(10008, v is EmptyStructGen<int>?[], false);
+// Eval(10009, v is NotEmptyStructGen<Guid>, false);
+// Eval(10010, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10011, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10012, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10013, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10014, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10015, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10016, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10017, v is NestedStruct, false);
Eval(10018, v is NestedStruct[], false);
Eval(10019, v is NestedStruct?, false);
Eval(10020, v is NestedStruct?[], false);
- Eval(10021, v is NestedStructGen<Decimal>, false);
- Eval(10022, v is NestedStructGen<Decimal>[], false);
- Eval(10023, v is NestedStructGen<Decimal>?, false);
- Eval(10024, v is NestedStructGen<Decimal>?[], false);
+// Eval(10021, v is NestedStructGen<Decimal>, false);
+// Eval(10022, v is NestedStructGen<Decimal>[], false);
+// Eval(10023, v is NestedStructGen<Decimal>?, false);
+// Eval(10024, v is NestedStructGen<Decimal>?[], false);
Eval(10025, v is ExplicitFieldOffsetStruct, false);
Eval(10026, v is ExplicitFieldOffsetStruct[], false);
Eval(10027, v is ExplicitFieldOffsetStruct?, false);
@@ -9835,18 +9835,18 @@ internal class Program
Eval(10046, v is ImplementTwoInterface[], false);
Eval(10047, v is ImplementTwoInterface?, false);
Eval(10048, v is ImplementTwoInterface?[], false);
- Eval(10049, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10050, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10051, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10052, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10053, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10054, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10055, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10056, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10057, v is ImplementAllInterface<int>, false);
- Eval(10058, v is ImplementAllInterface<int>[], false);
- Eval(10059, v is ImplementAllInterface<int>?, false);
- Eval(10060, v is ImplementAllInterface<int>?[], false);
+// Eval(10049, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10050, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10051, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10052, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10053, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10054, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10055, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10056, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10057, v is ImplementAllInterface<int>, false);
+// Eval(10058, v is ImplementAllInterface<int>[], false);
+// Eval(10059, v is ImplementAllInterface<int>?, false);
+// Eval(10060, v is ImplementAllInterface<int>?[], false);
Eval(10061, v is IntE, false);
Eval(10062, v is IntE[], false);
Eval(10063, v is IntE?, false);
@@ -9945,38 +9945,38 @@ internal class Program
Eval(10156, v is IEmpty[], false);
Eval(10157, v is INotEmpty, false);
Eval(10158, v is INotEmpty[], false);
- Eval(10159, v is IEmptyGen<int>, false);
- Eval(10160, v is IEmptyGen<int>[], false);
- Eval(10161, v is INotEmptyGen<int>, false);
- Eval(10162, v is INotEmptyGen<int>[], false);
+// Eval(10159, v is IEmptyGen<int>, false);
+// Eval(10160, v is IEmptyGen<int>[], false);
+// Eval(10161, v is INotEmptyGen<int>, false);
+// Eval(10162, v is INotEmptyGen<int>[], false);
Eval(10163, v is SimpleDelegate, false);
Eval(10164, v is SimpleDelegate[], false);
- Eval(10165, v is GenericDelegate<int>, false);
- Eval(10166, v is GenericDelegate<int>[], false);
+// Eval(10165, v is GenericDelegate<int>, false);
+// Eval(10166, v is GenericDelegate<int>[], false);
Eval(10167, v is EmptyClass, false);
Eval(10168, v is EmptyClass[], false);
Eval(10169, v is NotEmptyClass, false);
Eval(10170, v is NotEmptyClass[], false);
- Eval(10171, v is EmptyClassGen<int>, false);
- Eval(10172, v is EmptyClassGen<int>[], false);
- Eval(10173, v is NotEmptyClassGen<Guid>, false);
- Eval(10174, v is NotEmptyClassGen<Guid>[], false);
- Eval(10175, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10176, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10171, v is EmptyClassGen<int>, false);
+// Eval(10172, v is EmptyClassGen<int>[], false);
+// Eval(10173, v is NotEmptyClassGen<Guid>, false);
+// Eval(10174, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10175, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10176, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10177, v is NestedClass, false);
Eval(10178, v is NestedClass[], false);
- Eval(10179, v is NestedClassGen<Decimal>, false);
- Eval(10180, v is NestedClassGen<Decimal>[], false);
+// Eval(10179, v is NestedClassGen<Decimal>, false);
+// Eval(10180, v is NestedClassGen<Decimal>[], false);
Eval(10181, v is ImplementOneInterfaceC, false);
Eval(10182, v is ImplementOneInterfaceC[], false);
Eval(10183, v is ImplementTwoInterfaceC, false);
Eval(10184, v is ImplementTwoInterfaceC[], false);
- Eval(10185, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10186, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10187, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10188, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10189, v is ImplementAllInterfaceC<int>, false);
- Eval(10190, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10185, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10186, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10187, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10188, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10189, v is ImplementAllInterfaceC<int>, false);
+// Eval(10190, v is ImplementAllInterfaceC<int>[], false);
Eval(10191, v is SealedClass, false);
Eval(10192, v is SealedClass[], false);
}
@@ -9990,26 +9990,26 @@ internal class Program
Eval(10198, v is NotEmptyStruct[], false);
Eval(10199, v is NotEmptyStruct?, false);
Eval(10200, v is NotEmptyStruct?[], false);
- Eval(10201, v is EmptyStructGen<int>, false);
- Eval(10202, v is EmptyStructGen<int>[], false);
- Eval(10203, v is EmptyStructGen<int>?, false);
- Eval(10204, v is EmptyStructGen<int>?[], false);
- Eval(10205, v is NotEmptyStructGen<Guid>, false);
- Eval(10206, v is NotEmptyStructGen<Guid>[], false);
- Eval(10207, v is NotEmptyStructGen<Guid>?, false);
- Eval(10208, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10209, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10210, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10211, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10212, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10201, v is EmptyStructGen<int>, false);
+// Eval(10202, v is EmptyStructGen<int>[], false);
+// Eval(10203, v is EmptyStructGen<int>?, false);
+// Eval(10204, v is EmptyStructGen<int>?[], false);
+// Eval(10205, v is NotEmptyStructGen<Guid>, false);
+// Eval(10206, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10207, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10208, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10209, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10210, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10211, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10212, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10213, v is NestedStruct, false);
Eval(10214, v is NestedStruct[], false);
Eval(10215, v is NestedStruct?, false);
Eval(10216, v is NestedStruct?[], false);
- Eval(10217, v is NestedStructGen<Decimal>, false);
- Eval(10218, v is NestedStructGen<Decimal>[], false);
- Eval(10219, v is NestedStructGen<Decimal>?, false);
- Eval(10220, v is NestedStructGen<Decimal>?[], false);
+// Eval(10217, v is NestedStructGen<Decimal>, false);
+// Eval(10218, v is NestedStructGen<Decimal>[], false);
+// Eval(10219, v is NestedStructGen<Decimal>?, false);
+// Eval(10220, v is NestedStructGen<Decimal>?[], false);
Eval(10221, v is ExplicitFieldOffsetStruct, false);
Eval(10222, v is ExplicitFieldOffsetStruct[], false);
Eval(10223, v is ExplicitFieldOffsetStruct?, false);
@@ -10026,18 +10026,18 @@ internal class Program
Eval(10242, v is ImplementTwoInterface[], false);
Eval(10243, v is ImplementTwoInterface?, false);
Eval(10244, v is ImplementTwoInterface?[], false);
- Eval(10245, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10246, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10247, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10248, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10249, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10250, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10251, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10252, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10253, v is ImplementAllInterface<int>, false);
- Eval(10254, v is ImplementAllInterface<int>[], false);
- Eval(10255, v is ImplementAllInterface<int>?, false);
- Eval(10256, v is ImplementAllInterface<int>?[], false);
+// Eval(10245, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10246, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10247, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10248, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10249, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10250, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10251, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10252, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10253, v is ImplementAllInterface<int>, false);
+// Eval(10254, v is ImplementAllInterface<int>[], false);
+// Eval(10255, v is ImplementAllInterface<int>?, false);
+// Eval(10256, v is ImplementAllInterface<int>?[], false);
Eval(10257, v is IntE, false);
Eval(10258, v is IntE[], false);
Eval(10259, v is IntE?, false);
@@ -10136,38 +10136,38 @@ internal class Program
Eval(10352, v is IEmpty[], false);
Eval(10353, v is INotEmpty, false);
Eval(10354, v is INotEmpty[], false);
- Eval(10355, v is IEmptyGen<int>, false);
- Eval(10356, v is IEmptyGen<int>[], false);
- Eval(10357, v is INotEmptyGen<int>, false);
- Eval(10358, v is INotEmptyGen<int>[], false);
+// Eval(10355, v is IEmptyGen<int>, false);
+// Eval(10356, v is IEmptyGen<int>[], false);
+// Eval(10357, v is INotEmptyGen<int>, false);
+// Eval(10358, v is INotEmptyGen<int>[], false);
Eval(10359, v is SimpleDelegate, false);
Eval(10360, v is SimpleDelegate[], false);
- Eval(10361, v is GenericDelegate<int>, false);
- Eval(10362, v is GenericDelegate<int>[], false);
+// Eval(10361, v is GenericDelegate<int>, false);
+// Eval(10362, v is GenericDelegate<int>[], false);
Eval(10363, v is EmptyClass, false);
Eval(10364, v is EmptyClass[], false);
Eval(10365, v is NotEmptyClass, false);
Eval(10366, v is NotEmptyClass[], false);
- Eval(10367, v is EmptyClassGen<int>, false);
- Eval(10368, v is EmptyClassGen<int>[], false);
- Eval(10369, v is NotEmptyClassGen<Guid>, false);
- Eval(10370, v is NotEmptyClassGen<Guid>[], false);
- Eval(10371, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10372, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10367, v is EmptyClassGen<int>, false);
+// Eval(10368, v is EmptyClassGen<int>[], false);
+// Eval(10369, v is NotEmptyClassGen<Guid>, false);
+// Eval(10370, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10371, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10372, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10373, v is NestedClass, false);
Eval(10374, v is NestedClass[], false);
- Eval(10375, v is NestedClassGen<Decimal>, false);
- Eval(10376, v is NestedClassGen<Decimal>[], false);
+// Eval(10375, v is NestedClassGen<Decimal>, false);
+// Eval(10376, v is NestedClassGen<Decimal>[], false);
Eval(10377, v is ImplementOneInterfaceC, false);
Eval(10378, v is ImplementOneInterfaceC[], false);
Eval(10379, v is ImplementTwoInterfaceC, false);
Eval(10380, v is ImplementTwoInterfaceC[], false);
- Eval(10381, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10382, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10383, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10384, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10385, v is ImplementAllInterfaceC<int>, false);
- Eval(10386, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10381, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10382, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10383, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10384, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10385, v is ImplementAllInterfaceC<int>, false);
+// Eval(10386, v is ImplementAllInterfaceC<int>[], false);
Eval(10387, v is SealedClass, false);
Eval(10388, v is SealedClass[], false);
}
@@ -10181,26 +10181,26 @@ internal class Program
Eval(10394, v is NotEmptyStruct[], false);
Eval(10395, v is NotEmptyStruct?, false);
Eval(10396, v is NotEmptyStruct?[], false);
- Eval(10397, v is EmptyStructGen<int>, false);
- Eval(10398, v is EmptyStructGen<int>[], false);
- Eval(10399, v is EmptyStructGen<int>?, false);
- Eval(10400, v is EmptyStructGen<int>?[], false);
- Eval(10401, v is NotEmptyStructGen<Guid>, false);
- Eval(10402, v is NotEmptyStructGen<Guid>[], false);
- Eval(10403, v is NotEmptyStructGen<Guid>?, false);
- Eval(10404, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10405, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10406, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10407, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10408, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10397, v is EmptyStructGen<int>, false);
+// Eval(10398, v is EmptyStructGen<int>[], false);
+// Eval(10399, v is EmptyStructGen<int>?, false);
+// Eval(10400, v is EmptyStructGen<int>?[], false);
+// Eval(10401, v is NotEmptyStructGen<Guid>, false);
+// Eval(10402, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10403, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10404, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10405, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10406, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10407, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10408, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10409, v is NestedStruct, false);
Eval(10410, v is NestedStruct[], false);
Eval(10411, v is NestedStruct?, false);
Eval(10412, v is NestedStruct?[], false);
- Eval(10413, v is NestedStructGen<Decimal>, false);
- Eval(10414, v is NestedStructGen<Decimal>[], false);
- Eval(10415, v is NestedStructGen<Decimal>?, false);
- Eval(10416, v is NestedStructGen<Decimal>?[], false);
+// Eval(10413, v is NestedStructGen<Decimal>, false);
+// Eval(10414, v is NestedStructGen<Decimal>[], false);
+// Eval(10415, v is NestedStructGen<Decimal>?, false);
+// Eval(10416, v is NestedStructGen<Decimal>?[], false);
Eval(10417, v is ExplicitFieldOffsetStruct, false);
Eval(10418, v is ExplicitFieldOffsetStruct[], false);
Eval(10419, v is ExplicitFieldOffsetStruct?, false);
@@ -10217,18 +10217,18 @@ internal class Program
Eval(10438, v is ImplementTwoInterface[], false);
Eval(10439, v is ImplementTwoInterface?, false);
Eval(10440, v is ImplementTwoInterface?[], false);
- Eval(10441, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10442, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10443, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10444, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10445, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10446, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10447, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10448, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10449, v is ImplementAllInterface<int>, false);
- Eval(10450, v is ImplementAllInterface<int>[], false);
- Eval(10451, v is ImplementAllInterface<int>?, false);
- Eval(10452, v is ImplementAllInterface<int>?[], false);
+// Eval(10441, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10442, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10443, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10444, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10445, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10446, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10447, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10448, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10449, v is ImplementAllInterface<int>, false);
+// Eval(10450, v is ImplementAllInterface<int>[], false);
+// Eval(10451, v is ImplementAllInterface<int>?, false);
+// Eval(10452, v is ImplementAllInterface<int>?[], false);
Eval(10453, v is IntE, false);
Eval(10454, v is IntE[], false);
Eval(10455, v is IntE?, false);
@@ -10327,38 +10327,38 @@ internal class Program
Eval(10548, v is IEmpty[], false);
Eval(10549, v is INotEmpty, false);
Eval(10550, v is INotEmpty[], false);
- Eval(10551, v is IEmptyGen<int>, false);
- Eval(10552, v is IEmptyGen<int>[], false);
- Eval(10553, v is INotEmptyGen<int>, false);
- Eval(10554, v is INotEmptyGen<int>[], false);
+// Eval(10551, v is IEmptyGen<int>, false);
+// Eval(10552, v is IEmptyGen<int>[], false);
+// Eval(10553, v is INotEmptyGen<int>, false);
+// Eval(10554, v is INotEmptyGen<int>[], false);
Eval(10555, v is SimpleDelegate, false);
Eval(10556, v is SimpleDelegate[], false);
- Eval(10557, v is GenericDelegate<int>, false);
- Eval(10558, v is GenericDelegate<int>[], false);
+// Eval(10557, v is GenericDelegate<int>, false);
+// Eval(10558, v is GenericDelegate<int>[], false);
Eval(10559, v is EmptyClass, false);
Eval(10560, v is EmptyClass[], false);
Eval(10561, v is NotEmptyClass, false);
Eval(10562, v is NotEmptyClass[], false);
- Eval(10563, v is EmptyClassGen<int>, false);
- Eval(10564, v is EmptyClassGen<int>[], false);
- Eval(10565, v is NotEmptyClassGen<Guid>, false);
- Eval(10566, v is NotEmptyClassGen<Guid>[], false);
- Eval(10567, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10568, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10563, v is EmptyClassGen<int>, false);
+// Eval(10564, v is EmptyClassGen<int>[], false);
+// Eval(10565, v is NotEmptyClassGen<Guid>, false);
+// Eval(10566, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10567, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10568, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10569, v is NestedClass, false);
Eval(10570, v is NestedClass[], false);
- Eval(10571, v is NestedClassGen<Decimal>, false);
- Eval(10572, v is NestedClassGen<Decimal>[], false);
+// Eval(10571, v is NestedClassGen<Decimal>, false);
+// Eval(10572, v is NestedClassGen<Decimal>[], false);
Eval(10573, v is ImplementOneInterfaceC, false);
Eval(10574, v is ImplementOneInterfaceC[], false);
Eval(10575, v is ImplementTwoInterfaceC, false);
Eval(10576, v is ImplementTwoInterfaceC[], false);
- Eval(10577, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10578, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10579, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10580, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10581, v is ImplementAllInterfaceC<int>, false);
- Eval(10582, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10577, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10578, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10579, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10580, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10581, v is ImplementAllInterfaceC<int>, false);
+// Eval(10582, v is ImplementAllInterfaceC<int>[], false);
Eval(10583, v is SealedClass, false);
Eval(10584, v is SealedClass[], false);
}
@@ -10372,26 +10372,26 @@ internal class Program
Eval(10590, v is NotEmptyStruct[], false);
Eval(10591, v is NotEmptyStruct?, false);
Eval(10592, v is NotEmptyStruct?[], false);
- Eval(10593, v is EmptyStructGen<int>, false);
- Eval(10594, v is EmptyStructGen<int>[], false);
- Eval(10595, v is EmptyStructGen<int>?, false);
- Eval(10596, v is EmptyStructGen<int>?[], false);
- Eval(10597, v is NotEmptyStructGen<Guid>, false);
- Eval(10598, v is NotEmptyStructGen<Guid>[], false);
- Eval(10599, v is NotEmptyStructGen<Guid>?, false);
- Eval(10600, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10601, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10602, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10603, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10604, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10593, v is EmptyStructGen<int>, false);
+// Eval(10594, v is EmptyStructGen<int>[], false);
+// Eval(10595, v is EmptyStructGen<int>?, false);
+// Eval(10596, v is EmptyStructGen<int>?[], false);
+// Eval(10597, v is NotEmptyStructGen<Guid>, false);
+// Eval(10598, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10599, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10600, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10601, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10602, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10603, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10604, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10605, v is NestedStruct, false);
Eval(10606, v is NestedStruct[], false);
Eval(10607, v is NestedStruct?, false);
Eval(10608, v is NestedStruct?[], false);
- Eval(10609, v is NestedStructGen<Decimal>, false);
- Eval(10610, v is NestedStructGen<Decimal>[], false);
- Eval(10611, v is NestedStructGen<Decimal>?, false);
- Eval(10612, v is NestedStructGen<Decimal>?[], false);
+// Eval(10609, v is NestedStructGen<Decimal>, false);
+// Eval(10610, v is NestedStructGen<Decimal>[], false);
+// Eval(10611, v is NestedStructGen<Decimal>?, false);
+// Eval(10612, v is NestedStructGen<Decimal>?[], false);
Eval(10613, v is ExplicitFieldOffsetStruct, false);
Eval(10614, v is ExplicitFieldOffsetStruct[], false);
Eval(10615, v is ExplicitFieldOffsetStruct?, false);
@@ -10408,18 +10408,18 @@ internal class Program
Eval(10634, v is ImplementTwoInterface[], false);
Eval(10635, v is ImplementTwoInterface?, false);
Eval(10636, v is ImplementTwoInterface?[], false);
- Eval(10637, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10638, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10639, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10640, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10641, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10642, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10643, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10644, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10645, v is ImplementAllInterface<int>, false);
- Eval(10646, v is ImplementAllInterface<int>[], false);
- Eval(10647, v is ImplementAllInterface<int>?, false);
- Eval(10648, v is ImplementAllInterface<int>?[], false);
+// Eval(10637, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10638, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10639, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10640, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10641, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10642, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10643, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10644, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10645, v is ImplementAllInterface<int>, false);
+// Eval(10646, v is ImplementAllInterface<int>[], false);
+// Eval(10647, v is ImplementAllInterface<int>?, false);
+// Eval(10648, v is ImplementAllInterface<int>?[], false);
Eval(10649, v is IntE, false);
Eval(10650, v is IntE[], false);
Eval(10651, v is IntE?, false);
@@ -10518,38 +10518,38 @@ internal class Program
Eval(10744, v is IEmpty[], false);
Eval(10745, v is INotEmpty, false);
Eval(10746, v is INotEmpty[], false);
- Eval(10747, v is IEmptyGen<int>, false);
- Eval(10748, v is IEmptyGen<int>[], false);
- Eval(10749, v is INotEmptyGen<int>, false);
- Eval(10750, v is INotEmptyGen<int>[], false);
+// Eval(10747, v is IEmptyGen<int>, false);
+// Eval(10748, v is IEmptyGen<int>[], false);
+// Eval(10749, v is INotEmptyGen<int>, false);
+// Eval(10750, v is INotEmptyGen<int>[], false);
Eval(10751, v is SimpleDelegate, false);
Eval(10752, v is SimpleDelegate[], false);
- Eval(10753, v is GenericDelegate<int>, false);
- Eval(10754, v is GenericDelegate<int>[], false);
+// Eval(10753, v is GenericDelegate<int>, false);
+// Eval(10754, v is GenericDelegate<int>[], false);
Eval(10755, v is EmptyClass, false);
Eval(10756, v is EmptyClass[], false);
Eval(10757, v is NotEmptyClass, false);
Eval(10758, v is NotEmptyClass[], false);
- Eval(10759, v is EmptyClassGen<int>, false);
- Eval(10760, v is EmptyClassGen<int>[], false);
- Eval(10761, v is NotEmptyClassGen<Guid>, false);
- Eval(10762, v is NotEmptyClassGen<Guid>[], false);
- Eval(10763, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10764, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10759, v is EmptyClassGen<int>, false);
+// Eval(10760, v is EmptyClassGen<int>[], false);
+// Eval(10761, v is NotEmptyClassGen<Guid>, false);
+// Eval(10762, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10763, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10764, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10765, v is NestedClass, false);
Eval(10766, v is NestedClass[], false);
- Eval(10767, v is NestedClassGen<Decimal>, false);
- Eval(10768, v is NestedClassGen<Decimal>[], false);
+// Eval(10767, v is NestedClassGen<Decimal>, false);
+// Eval(10768, v is NestedClassGen<Decimal>[], false);
Eval(10769, v is ImplementOneInterfaceC, false);
Eval(10770, v is ImplementOneInterfaceC[], false);
Eval(10771, v is ImplementTwoInterfaceC, false);
Eval(10772, v is ImplementTwoInterfaceC[], false);
- Eval(10773, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10774, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10775, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10776, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10777, v is ImplementAllInterfaceC<int>, false);
- Eval(10778, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10773, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10774, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10775, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10776, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10777, v is ImplementAllInterfaceC<int>, false);
+// Eval(10778, v is ImplementAllInterfaceC<int>[], false);
Eval(10779, v is SealedClass, false);
Eval(10780, v is SealedClass[], false);
}
@@ -10566,26 +10566,26 @@ internal class Program
Eval(10786, v is NotEmptyStruct[], false);
Eval(10787, v is NotEmptyStruct?, false);
Eval(10788, v is NotEmptyStruct?[], false);
- Eval(10789, v is EmptyStructGen<int>, false);
- Eval(10790, v is EmptyStructGen<int>[], false);
- Eval(10791, v is EmptyStructGen<int>?, false);
- Eval(10792, v is EmptyStructGen<int>?[], false);
- Eval(10793, v is NotEmptyStructGen<Guid>, false);
- Eval(10794, v is NotEmptyStructGen<Guid>[], false);
- Eval(10795, v is NotEmptyStructGen<Guid>?, false);
- Eval(10796, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10797, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10798, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10799, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10800, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10789, v is EmptyStructGen<int>, false);
+// Eval(10790, v is EmptyStructGen<int>[], false);
+// Eval(10791, v is EmptyStructGen<int>?, false);
+// Eval(10792, v is EmptyStructGen<int>?[], false);
+// Eval(10793, v is NotEmptyStructGen<Guid>, false);
+// Eval(10794, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10795, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10796, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10797, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10798, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10799, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10800, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10801, v is NestedStruct, false);
Eval(10802, v is NestedStruct[], false);
Eval(10803, v is NestedStruct?, false);
Eval(10804, v is NestedStruct?[], false);
- Eval(10805, v is NestedStructGen<Decimal>, false);
- Eval(10806, v is NestedStructGen<Decimal>[], false);
- Eval(10807, v is NestedStructGen<Decimal>?, false);
- Eval(10808, v is NestedStructGen<Decimal>?[], false);
+// Eval(10805, v is NestedStructGen<Decimal>, false);
+// Eval(10806, v is NestedStructGen<Decimal>[], false);
+// Eval(10807, v is NestedStructGen<Decimal>?, false);
+// Eval(10808, v is NestedStructGen<Decimal>?[], false);
Eval(10809, v is ExplicitFieldOffsetStruct, false);
Eval(10810, v is ExplicitFieldOffsetStruct[], false);
Eval(10811, v is ExplicitFieldOffsetStruct?, false);
@@ -10602,18 +10602,18 @@ internal class Program
Eval(10830, v is ImplementTwoInterface[], false);
Eval(10831, v is ImplementTwoInterface?, false);
Eval(10832, v is ImplementTwoInterface?[], false);
- Eval(10833, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10834, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10835, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10836, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10837, v is ImplementTwoInterfaceGen<int>, false);
- Eval(10838, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(10839, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(10840, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10841, v is ImplementAllInterface<int>, false);
- Eval(10842, v is ImplementAllInterface<int>[], false);
- Eval(10843, v is ImplementAllInterface<int>?, false);
- Eval(10844, v is ImplementAllInterface<int>?[], false);
+// Eval(10833, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10834, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10835, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10836, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10837, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(10838, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10839, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10840, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10841, v is ImplementAllInterface<int>, false);
+// Eval(10842, v is ImplementAllInterface<int>[], false);
+// Eval(10843, v is ImplementAllInterface<int>?, false);
+// Eval(10844, v is ImplementAllInterface<int>?[], false);
Eval(10845, v is IntE, false);
Eval(10846, v is IntE[], false);
Eval(10847, v is IntE?, false);
@@ -10712,38 +10712,38 @@ internal class Program
Eval(10940, v is IEmpty[], false);
Eval(10941, v is INotEmpty, false);
Eval(10942, v is INotEmpty[], false);
- Eval(10943, v is IEmptyGen<int>, false);
- Eval(10944, v is IEmptyGen<int>[], false);
- Eval(10945, v is INotEmptyGen<int>, false);
- Eval(10946, v is INotEmptyGen<int>[], false);
+// Eval(10943, v is IEmptyGen<int>, false);
+// Eval(10944, v is IEmptyGen<int>[], false);
+// Eval(10945, v is INotEmptyGen<int>, false);
+// Eval(10946, v is INotEmptyGen<int>[], false);
Eval(10947, v is SimpleDelegate, false);
Eval(10948, v is SimpleDelegate[], false);
- Eval(10949, v is GenericDelegate<int>, false);
- Eval(10950, v is GenericDelegate<int>[], false);
+// Eval(10949, v is GenericDelegate<int>, false);
+// Eval(10950, v is GenericDelegate<int>[], false);
Eval(10951, v is EmptyClass, false);
Eval(10952, v is EmptyClass[], false);
Eval(10953, v is NotEmptyClass, false);
Eval(10954, v is NotEmptyClass[], false);
- Eval(10955, v is EmptyClassGen<int>, false);
- Eval(10956, v is EmptyClassGen<int>[], false);
- Eval(10957, v is NotEmptyClassGen<Guid>, false);
- Eval(10958, v is NotEmptyClassGen<Guid>[], false);
- Eval(10959, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(10960, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10955, v is EmptyClassGen<int>, false);
+// Eval(10956, v is EmptyClassGen<int>[], false);
+// Eval(10957, v is NotEmptyClassGen<Guid>, false);
+// Eval(10958, v is NotEmptyClassGen<Guid>[], false);
+// Eval(10959, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10960, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(10961, v is NestedClass, false);
Eval(10962, v is NestedClass[], false);
- Eval(10963, v is NestedClassGen<Decimal>, false);
- Eval(10964, v is NestedClassGen<Decimal>[], false);
+// Eval(10963, v is NestedClassGen<Decimal>, false);
+// Eval(10964, v is NestedClassGen<Decimal>[], false);
Eval(10965, v is ImplementOneInterfaceC, false);
Eval(10966, v is ImplementOneInterfaceC[], false);
Eval(10967, v is ImplementTwoInterfaceC, false);
Eval(10968, v is ImplementTwoInterfaceC[], false);
- Eval(10969, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10970, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10971, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(10972, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10973, v is ImplementAllInterfaceC<int>, false);
- Eval(10974, v is ImplementAllInterfaceC<int>[], false);
+// Eval(10969, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10970, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10971, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10972, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10973, v is ImplementAllInterfaceC<int>, false);
+// Eval(10974, v is ImplementAllInterfaceC<int>[], false);
Eval(10975, v is SealedClass, false);
Eval(10976, v is SealedClass[], false);
}
@@ -10757,26 +10757,26 @@ internal class Program
Eval(10982, v is NotEmptyStruct[], false);
Eval(10983, v is NotEmptyStruct?, false);
Eval(10984, v is NotEmptyStruct?[], false);
- Eval(10985, v is EmptyStructGen<int>, false);
- Eval(10986, v is EmptyStructGen<int>[], false);
- Eval(10987, v is EmptyStructGen<int>?, false);
- Eval(10988, v is EmptyStructGen<int>?[], false);
- Eval(10989, v is NotEmptyStructGen<Guid>, false);
- Eval(10990, v is NotEmptyStructGen<Guid>[], false);
- Eval(10991, v is NotEmptyStructGen<Guid>?, false);
- Eval(10992, v is NotEmptyStructGen<Guid>?[], false);
- Eval(10993, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10994, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10995, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10996, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10985, v is EmptyStructGen<int>, false);
+// Eval(10986, v is EmptyStructGen<int>[], false);
+// Eval(10987, v is EmptyStructGen<int>?, false);
+// Eval(10988, v is EmptyStructGen<int>?[], false);
+// Eval(10989, v is NotEmptyStructGen<Guid>, false);
+// Eval(10990, v is NotEmptyStructGen<Guid>[], false);
+// Eval(10991, v is NotEmptyStructGen<Guid>?, false);
+// Eval(10992, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(10993, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10994, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10995, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10996, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10997, v is NestedStruct, false);
Eval(10998, v is NestedStruct[], false);
Eval(10999, v is NestedStruct?, false);
Eval(11000, v is NestedStruct?[], false);
- Eval(11001, v is NestedStructGen<Decimal>, false);
- Eval(11002, v is NestedStructGen<Decimal>[], false);
- Eval(11003, v is NestedStructGen<Decimal>?, false);
- Eval(11004, v is NestedStructGen<Decimal>?[], false);
+// Eval(11001, v is NestedStructGen<Decimal>, false);
+// Eval(11002, v is NestedStructGen<Decimal>[], false);
+// Eval(11003, v is NestedStructGen<Decimal>?, false);
+// Eval(11004, v is NestedStructGen<Decimal>?[], false);
Eval(11005, v is ExplicitFieldOffsetStruct, false);
Eval(11006, v is ExplicitFieldOffsetStruct[], false);
Eval(11007, v is ExplicitFieldOffsetStruct?, false);
@@ -10793,18 +10793,18 @@ internal class Program
Eval(11026, v is ImplementTwoInterface[], false);
Eval(11027, v is ImplementTwoInterface?, false);
Eval(11028, v is ImplementTwoInterface?[], false);
- Eval(11029, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11030, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11031, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11032, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11033, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11034, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11035, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11036, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11037, v is ImplementAllInterface<int>, false);
- Eval(11038, v is ImplementAllInterface<int>[], false);
- Eval(11039, v is ImplementAllInterface<int>?, false);
- Eval(11040, v is ImplementAllInterface<int>?[], false);
+// Eval(11029, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11030, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11031, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11032, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11033, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11034, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11035, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11036, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11037, v is ImplementAllInterface<int>, false);
+// Eval(11038, v is ImplementAllInterface<int>[], false);
+// Eval(11039, v is ImplementAllInterface<int>?, false);
+// Eval(11040, v is ImplementAllInterface<int>?[], false);
Eval(11041, v is IntE, false);
Eval(11042, v is IntE[], false);
Eval(11043, v is IntE?, false);
@@ -10903,38 +10903,38 @@ internal class Program
Eval(11136, v is IEmpty[], false);
Eval(11137, v is INotEmpty, false);
Eval(11138, v is INotEmpty[], false);
- Eval(11139, v is IEmptyGen<int>, false);
- Eval(11140, v is IEmptyGen<int>[], false);
- Eval(11141, v is INotEmptyGen<int>, false);
- Eval(11142, v is INotEmptyGen<int>[], false);
+// Eval(11139, v is IEmptyGen<int>, false);
+// Eval(11140, v is IEmptyGen<int>[], false);
+// Eval(11141, v is INotEmptyGen<int>, false);
+// Eval(11142, v is INotEmptyGen<int>[], false);
Eval(11143, v is SimpleDelegate, false);
Eval(11144, v is SimpleDelegate[], false);
- Eval(11145, v is GenericDelegate<int>, false);
- Eval(11146, v is GenericDelegate<int>[], false);
+// Eval(11145, v is GenericDelegate<int>, false);
+// Eval(11146, v is GenericDelegate<int>[], false);
Eval(11147, v is EmptyClass, false);
Eval(11148, v is EmptyClass[], false);
Eval(11149, v is NotEmptyClass, false);
Eval(11150, v is NotEmptyClass[], false);
- Eval(11151, v is EmptyClassGen<int>, false);
- Eval(11152, v is EmptyClassGen<int>[], false);
- Eval(11153, v is NotEmptyClassGen<Guid>, false);
- Eval(11154, v is NotEmptyClassGen<Guid>[], false);
- Eval(11155, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11156, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11151, v is EmptyClassGen<int>, false);
+// Eval(11152, v is EmptyClassGen<int>[], false);
+// Eval(11153, v is NotEmptyClassGen<Guid>, false);
+// Eval(11154, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11155, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11156, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11157, v is NestedClass, false);
Eval(11158, v is NestedClass[], false);
- Eval(11159, v is NestedClassGen<Decimal>, false);
- Eval(11160, v is NestedClassGen<Decimal>[], false);
+// Eval(11159, v is NestedClassGen<Decimal>, false);
+// Eval(11160, v is NestedClassGen<Decimal>[], false);
Eval(11161, v is ImplementOneInterfaceC, false);
Eval(11162, v is ImplementOneInterfaceC[], false);
Eval(11163, v is ImplementTwoInterfaceC, false);
Eval(11164, v is ImplementTwoInterfaceC[], false);
- Eval(11165, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11166, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11167, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11168, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11169, v is ImplementAllInterfaceC<int>, false);
- Eval(11170, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11165, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11166, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11167, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11168, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11169, v is ImplementAllInterfaceC<int>, false);
+// Eval(11170, v is ImplementAllInterfaceC<int>[], false);
Eval(11171, v is SealedClass, false);
Eval(11172, v is SealedClass[], false);
}
@@ -10948,26 +10948,26 @@ internal class Program
Eval(11178, v is NotEmptyStruct[], false);
Eval(11179, v is NotEmptyStruct?, false);
Eval(11180, v is NotEmptyStruct?[], false);
- Eval(11181, v is EmptyStructGen<int>, false);
- Eval(11182, v is EmptyStructGen<int>[], false);
- Eval(11183, v is EmptyStructGen<int>?, false);
- Eval(11184, v is EmptyStructGen<int>?[], false);
- Eval(11185, v is NotEmptyStructGen<Guid>, false);
- Eval(11186, v is NotEmptyStructGen<Guid>[], false);
- Eval(11187, v is NotEmptyStructGen<Guid>?, false);
- Eval(11188, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11189, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11190, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11191, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11192, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11181, v is EmptyStructGen<int>, false);
+// Eval(11182, v is EmptyStructGen<int>[], false);
+// Eval(11183, v is EmptyStructGen<int>?, false);
+// Eval(11184, v is EmptyStructGen<int>?[], false);
+// Eval(11185, v is NotEmptyStructGen<Guid>, false);
+// Eval(11186, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11187, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11188, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11189, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11190, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11191, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11192, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11193, v is NestedStruct, false);
Eval(11194, v is NestedStruct[], false);
Eval(11195, v is NestedStruct?, false);
Eval(11196, v is NestedStruct?[], false);
- Eval(11197, v is NestedStructGen<Decimal>, false);
- Eval(11198, v is NestedStructGen<Decimal>[], false);
- Eval(11199, v is NestedStructGen<Decimal>?, false);
- Eval(11200, v is NestedStructGen<Decimal>?[], false);
+// Eval(11197, v is NestedStructGen<Decimal>, false);
+// Eval(11198, v is NestedStructGen<Decimal>[], false);
+// Eval(11199, v is NestedStructGen<Decimal>?, false);
+// Eval(11200, v is NestedStructGen<Decimal>?[], false);
Eval(11201, v is ExplicitFieldOffsetStruct, false);
Eval(11202, v is ExplicitFieldOffsetStruct[], false);
Eval(11203, v is ExplicitFieldOffsetStruct?, false);
@@ -10984,18 +10984,18 @@ internal class Program
Eval(11222, v is ImplementTwoInterface[], false);
Eval(11223, v is ImplementTwoInterface?, false);
Eval(11224, v is ImplementTwoInterface?[], false);
- Eval(11225, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11226, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11227, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11228, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11229, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11230, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11231, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11232, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11233, v is ImplementAllInterface<int>, false);
- Eval(11234, v is ImplementAllInterface<int>[], false);
- Eval(11235, v is ImplementAllInterface<int>?, false);
- Eval(11236, v is ImplementAllInterface<int>?[], false);
+// Eval(11225, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11226, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11227, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11228, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11229, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11230, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11231, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11232, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11233, v is ImplementAllInterface<int>, false);
+// Eval(11234, v is ImplementAllInterface<int>[], false);
+// Eval(11235, v is ImplementAllInterface<int>?, false);
+// Eval(11236, v is ImplementAllInterface<int>?[], false);
Eval(11237, v is IntE, false);
Eval(11238, v is IntE[], false);
Eval(11239, v is IntE?, false);
@@ -11094,38 +11094,38 @@ internal class Program
Eval(11332, v is IEmpty[], false);
Eval(11333, v is INotEmpty, false);
Eval(11334, v is INotEmpty[], false);
- Eval(11335, v is IEmptyGen<int>, false);
- Eval(11336, v is IEmptyGen<int>[], false);
- Eval(11337, v is INotEmptyGen<int>, false);
- Eval(11338, v is INotEmptyGen<int>[], false);
+// Eval(11335, v is IEmptyGen<int>, false);
+// Eval(11336, v is IEmptyGen<int>[], false);
+// Eval(11337, v is INotEmptyGen<int>, false);
+// Eval(11338, v is INotEmptyGen<int>[], false);
Eval(11339, v is SimpleDelegate, false);
Eval(11340, v is SimpleDelegate[], false);
- Eval(11341, v is GenericDelegate<int>, false);
- Eval(11342, v is GenericDelegate<int>[], false);
+// Eval(11341, v is GenericDelegate<int>, false);
+// Eval(11342, v is GenericDelegate<int>[], false);
Eval(11343, v is EmptyClass, false);
Eval(11344, v is EmptyClass[], false);
Eval(11345, v is NotEmptyClass, false);
Eval(11346, v is NotEmptyClass[], false);
- Eval(11347, v is EmptyClassGen<int>, false);
- Eval(11348, v is EmptyClassGen<int>[], false);
- Eval(11349, v is NotEmptyClassGen<Guid>, false);
- Eval(11350, v is NotEmptyClassGen<Guid>[], false);
- Eval(11351, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11352, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11347, v is EmptyClassGen<int>, false);
+// Eval(11348, v is EmptyClassGen<int>[], false);
+// Eval(11349, v is NotEmptyClassGen<Guid>, false);
+// Eval(11350, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11351, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11352, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11353, v is NestedClass, false);
Eval(11354, v is NestedClass[], false);
- Eval(11355, v is NestedClassGen<Decimal>, false);
- Eval(11356, v is NestedClassGen<Decimal>[], false);
+// Eval(11355, v is NestedClassGen<Decimal>, false);
+// Eval(11356, v is NestedClassGen<Decimal>[], false);
Eval(11357, v is ImplementOneInterfaceC, false);
Eval(11358, v is ImplementOneInterfaceC[], false);
Eval(11359, v is ImplementTwoInterfaceC, false);
Eval(11360, v is ImplementTwoInterfaceC[], false);
- Eval(11361, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11362, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11363, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11364, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11365, v is ImplementAllInterfaceC<int>, false);
- Eval(11366, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11361, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11362, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11363, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11364, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11365, v is ImplementAllInterfaceC<int>, false);
+// Eval(11366, v is ImplementAllInterfaceC<int>[], false);
Eval(11367, v is SealedClass, false);
Eval(11368, v is SealedClass[], false);
}
@@ -11139,26 +11139,26 @@ internal class Program
Eval(11374, v is NotEmptyStruct[], false);
Eval(11375, v is NotEmptyStruct?, false);
Eval(11376, v is NotEmptyStruct?[], false);
- Eval(11377, v is EmptyStructGen<int>, false);
- Eval(11378, v is EmptyStructGen<int>[], false);
- Eval(11379, v is EmptyStructGen<int>?, false);
- Eval(11380, v is EmptyStructGen<int>?[], false);
- Eval(11381, v is NotEmptyStructGen<Guid>, false);
- Eval(11382, v is NotEmptyStructGen<Guid>[], false);
- Eval(11383, v is NotEmptyStructGen<Guid>?, false);
- Eval(11384, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11385, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11386, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11387, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11388, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11377, v is EmptyStructGen<int>, false);
+// Eval(11378, v is EmptyStructGen<int>[], false);
+// Eval(11379, v is EmptyStructGen<int>?, false);
+// Eval(11380, v is EmptyStructGen<int>?[], false);
+// Eval(11381, v is NotEmptyStructGen<Guid>, false);
+// Eval(11382, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11383, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11384, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11385, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11386, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11387, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11388, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11389, v is NestedStruct, false);
Eval(11390, v is NestedStruct[], false);
Eval(11391, v is NestedStruct?, false);
Eval(11392, v is NestedStruct?[], false);
- Eval(11393, v is NestedStructGen<Decimal>, false);
- Eval(11394, v is NestedStructGen<Decimal>[], false);
- Eval(11395, v is NestedStructGen<Decimal>?, false);
- Eval(11396, v is NestedStructGen<Decimal>?[], false);
+// Eval(11393, v is NestedStructGen<Decimal>, false);
+// Eval(11394, v is NestedStructGen<Decimal>[], false);
+// Eval(11395, v is NestedStructGen<Decimal>?, false);
+// Eval(11396, v is NestedStructGen<Decimal>?[], false);
Eval(11397, v is ExplicitFieldOffsetStruct, false);
Eval(11398, v is ExplicitFieldOffsetStruct[], false);
Eval(11399, v is ExplicitFieldOffsetStruct?, false);
@@ -11175,18 +11175,18 @@ internal class Program
Eval(11418, v is ImplementTwoInterface[], false);
Eval(11419, v is ImplementTwoInterface?, false);
Eval(11420, v is ImplementTwoInterface?[], false);
- Eval(11421, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11422, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11423, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11424, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11425, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11426, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11427, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11428, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11429, v is ImplementAllInterface<int>, false);
- Eval(11430, v is ImplementAllInterface<int>[], false);
- Eval(11431, v is ImplementAllInterface<int>?, false);
- Eval(11432, v is ImplementAllInterface<int>?[], false);
+// Eval(11421, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11422, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11423, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11424, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11425, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11426, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11427, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11428, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11429, v is ImplementAllInterface<int>, false);
+// Eval(11430, v is ImplementAllInterface<int>[], false);
+// Eval(11431, v is ImplementAllInterface<int>?, false);
+// Eval(11432, v is ImplementAllInterface<int>?[], false);
Eval(11433, v is IntE, false);
Eval(11434, v is IntE[], false);
Eval(11435, v is IntE?, false);
@@ -11285,38 +11285,38 @@ internal class Program
Eval(11528, v is IEmpty[], false);
Eval(11529, v is INotEmpty, false);
Eval(11530, v is INotEmpty[], false);
- Eval(11531, v is IEmptyGen<int>, false);
- Eval(11532, v is IEmptyGen<int>[], false);
- Eval(11533, v is INotEmptyGen<int>, false);
- Eval(11534, v is INotEmptyGen<int>[], false);
+// Eval(11531, v is IEmptyGen<int>, false);
+// Eval(11532, v is IEmptyGen<int>[], false);
+// Eval(11533, v is INotEmptyGen<int>, false);
+// Eval(11534, v is INotEmptyGen<int>[], false);
Eval(11535, v is SimpleDelegate, false);
Eval(11536, v is SimpleDelegate[], false);
- Eval(11537, v is GenericDelegate<int>, false);
- Eval(11538, v is GenericDelegate<int>[], false);
+// Eval(11537, v is GenericDelegate<int>, false);
+// Eval(11538, v is GenericDelegate<int>[], false);
Eval(11539, v is EmptyClass, false);
Eval(11540, v is EmptyClass[], false);
Eval(11541, v is NotEmptyClass, false);
Eval(11542, v is NotEmptyClass[], false);
- Eval(11543, v is EmptyClassGen<int>, false);
- Eval(11544, v is EmptyClassGen<int>[], false);
- Eval(11545, v is NotEmptyClassGen<Guid>, false);
- Eval(11546, v is NotEmptyClassGen<Guid>[], false);
- Eval(11547, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11548, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11543, v is EmptyClassGen<int>, false);
+// Eval(11544, v is EmptyClassGen<int>[], false);
+// Eval(11545, v is NotEmptyClassGen<Guid>, false);
+// Eval(11546, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11547, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11548, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11549, v is NestedClass, false);
Eval(11550, v is NestedClass[], false);
- Eval(11551, v is NestedClassGen<Decimal>, false);
- Eval(11552, v is NestedClassGen<Decimal>[], false);
+// Eval(11551, v is NestedClassGen<Decimal>, false);
+// Eval(11552, v is NestedClassGen<Decimal>[], false);
Eval(11553, v is ImplementOneInterfaceC, false);
Eval(11554, v is ImplementOneInterfaceC[], false);
Eval(11555, v is ImplementTwoInterfaceC, false);
Eval(11556, v is ImplementTwoInterfaceC[], false);
- Eval(11557, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11558, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11559, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11560, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11561, v is ImplementAllInterfaceC<int>, false);
- Eval(11562, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11557, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11558, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11559, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11560, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11561, v is ImplementAllInterfaceC<int>, false);
+// Eval(11562, v is ImplementAllInterfaceC<int>[], false);
Eval(11563, v is SealedClass, false);
Eval(11564, v is SealedClass[], false);
}
@@ -11330,26 +11330,26 @@ internal class Program
Eval(11570, v is NotEmptyStruct[], false);
Eval(11571, v is NotEmptyStruct?, false);
Eval(11572, v is NotEmptyStruct?[], false);
- Eval(11573, v is EmptyStructGen<int>, false);
- Eval(11574, v is EmptyStructGen<int>[], false);
- Eval(11575, v is EmptyStructGen<int>?, false);
- Eval(11576, v is EmptyStructGen<int>?[], false);
- Eval(11577, v is NotEmptyStructGen<Guid>, false);
- Eval(11578, v is NotEmptyStructGen<Guid>[], false);
- Eval(11579, v is NotEmptyStructGen<Guid>?, false);
- Eval(11580, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11581, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11582, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11583, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11584, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11573, v is EmptyStructGen<int>, false);
+// Eval(11574, v is EmptyStructGen<int>[], false);
+// Eval(11575, v is EmptyStructGen<int>?, false);
+// Eval(11576, v is EmptyStructGen<int>?[], false);
+// Eval(11577, v is NotEmptyStructGen<Guid>, false);
+// Eval(11578, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11579, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11580, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11581, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11582, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11583, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11584, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11585, v is NestedStruct, false);
Eval(11586, v is NestedStruct[], false);
Eval(11587, v is NestedStruct?, false);
Eval(11588, v is NestedStruct?[], false);
- Eval(11589, v is NestedStructGen<Decimal>, false);
- Eval(11590, v is NestedStructGen<Decimal>[], false);
- Eval(11591, v is NestedStructGen<Decimal>?, false);
- Eval(11592, v is NestedStructGen<Decimal>?[], false);
+// Eval(11589, v is NestedStructGen<Decimal>, false);
+// Eval(11590, v is NestedStructGen<Decimal>[], false);
+// Eval(11591, v is NestedStructGen<Decimal>?, false);
+// Eval(11592, v is NestedStructGen<Decimal>?[], false);
Eval(11593, v is ExplicitFieldOffsetStruct, false);
Eval(11594, v is ExplicitFieldOffsetStruct[], false);
Eval(11595, v is ExplicitFieldOffsetStruct?, false);
@@ -11366,18 +11366,18 @@ internal class Program
Eval(11614, v is ImplementTwoInterface[], false);
Eval(11615, v is ImplementTwoInterface?, false);
Eval(11616, v is ImplementTwoInterface?[], false);
- Eval(11617, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11618, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11619, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11620, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11621, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11622, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11623, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11624, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11625, v is ImplementAllInterface<int>, false);
- Eval(11626, v is ImplementAllInterface<int>[], false);
- Eval(11627, v is ImplementAllInterface<int>?, false);
- Eval(11628, v is ImplementAllInterface<int>?[], false);
+// Eval(11617, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11618, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11619, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11620, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11621, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11622, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11623, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11624, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11625, v is ImplementAllInterface<int>, false);
+// Eval(11626, v is ImplementAllInterface<int>[], false);
+// Eval(11627, v is ImplementAllInterface<int>?, false);
+// Eval(11628, v is ImplementAllInterface<int>?[], false);
Eval(11629, v is IntE, false);
Eval(11630, v is IntE[], false);
Eval(11631, v is IntE?, false);
@@ -11476,38 +11476,38 @@ internal class Program
Eval(11724, v is IEmpty[], false);
Eval(11725, v is INotEmpty, false);
Eval(11726, v is INotEmpty[], false);
- Eval(11727, v is IEmptyGen<int>, false);
- Eval(11728, v is IEmptyGen<int>[], false);
- Eval(11729, v is INotEmptyGen<int>, false);
- Eval(11730, v is INotEmptyGen<int>[], false);
+// Eval(11727, v is IEmptyGen<int>, false);
+// Eval(11728, v is IEmptyGen<int>[], false);
+// Eval(11729, v is INotEmptyGen<int>, false);
+// Eval(11730, v is INotEmptyGen<int>[], false);
Eval(11731, v is SimpleDelegate, false);
Eval(11732, v is SimpleDelegate[], false);
- Eval(11733, v is GenericDelegate<int>, false);
- Eval(11734, v is GenericDelegate<int>[], false);
+// Eval(11733, v is GenericDelegate<int>, false);
+// Eval(11734, v is GenericDelegate<int>[], false);
Eval(11735, v is EmptyClass, false);
Eval(11736, v is EmptyClass[], false);
Eval(11737, v is NotEmptyClass, false);
Eval(11738, v is NotEmptyClass[], false);
- Eval(11739, v is EmptyClassGen<int>, false);
- Eval(11740, v is EmptyClassGen<int>[], false);
- Eval(11741, v is NotEmptyClassGen<Guid>, false);
- Eval(11742, v is NotEmptyClassGen<Guid>[], false);
- Eval(11743, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11744, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11739, v is EmptyClassGen<int>, false);
+// Eval(11740, v is EmptyClassGen<int>[], false);
+// Eval(11741, v is NotEmptyClassGen<Guid>, false);
+// Eval(11742, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11743, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11744, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11745, v is NestedClass, false);
Eval(11746, v is NestedClass[], false);
- Eval(11747, v is NestedClassGen<Decimal>, false);
- Eval(11748, v is NestedClassGen<Decimal>[], false);
+// Eval(11747, v is NestedClassGen<Decimal>, false);
+// Eval(11748, v is NestedClassGen<Decimal>[], false);
Eval(11749, v is ImplementOneInterfaceC, false);
Eval(11750, v is ImplementOneInterfaceC[], false);
Eval(11751, v is ImplementTwoInterfaceC, false);
Eval(11752, v is ImplementTwoInterfaceC[], false);
- Eval(11753, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11754, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11755, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11756, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11757, v is ImplementAllInterfaceC<int>, false);
- Eval(11758, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11753, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11754, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11755, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11756, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11757, v is ImplementAllInterfaceC<int>, false);
+// Eval(11758, v is ImplementAllInterfaceC<int>[], false);
Eval(11759, v is SealedClass, false);
Eval(11760, v is SealedClass[], false);
}
@@ -11524,26 +11524,26 @@ internal class Program
Eval(11766, v is NotEmptyStruct[], false);
Eval(11767, v is NotEmptyStruct?, false);
Eval(11768, v is NotEmptyStruct?[], false);
- Eval(11769, v is EmptyStructGen<int>, false);
- Eval(11770, v is EmptyStructGen<int>[], false);
- Eval(11771, v is EmptyStructGen<int>?, false);
- Eval(11772, v is EmptyStructGen<int>?[], false);
- Eval(11773, v is NotEmptyStructGen<Guid>, false);
- Eval(11774, v is NotEmptyStructGen<Guid>[], false);
- Eval(11775, v is NotEmptyStructGen<Guid>?, false);
- Eval(11776, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11777, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11778, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11779, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11780, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11769, v is EmptyStructGen<int>, false);
+// Eval(11770, v is EmptyStructGen<int>[], false);
+// Eval(11771, v is EmptyStructGen<int>?, false);
+// Eval(11772, v is EmptyStructGen<int>?[], false);
+// Eval(11773, v is NotEmptyStructGen<Guid>, false);
+// Eval(11774, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11775, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11776, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11777, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11778, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11779, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11780, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11781, v is NestedStruct, false);
Eval(11782, v is NestedStruct[], false);
Eval(11783, v is NestedStruct?, false);
Eval(11784, v is NestedStruct?[], false);
- Eval(11785, v is NestedStructGen<Decimal>, false);
- Eval(11786, v is NestedStructGen<Decimal>[], false);
- Eval(11787, v is NestedStructGen<Decimal>?, false);
- Eval(11788, v is NestedStructGen<Decimal>?[], false);
+// Eval(11785, v is NestedStructGen<Decimal>, false);
+// Eval(11786, v is NestedStructGen<Decimal>[], false);
+// Eval(11787, v is NestedStructGen<Decimal>?, false);
+// Eval(11788, v is NestedStructGen<Decimal>?[], false);
Eval(11789, v is ExplicitFieldOffsetStruct, false);
Eval(11790, v is ExplicitFieldOffsetStruct[], false);
Eval(11791, v is ExplicitFieldOffsetStruct?, false);
@@ -11560,18 +11560,18 @@ internal class Program
Eval(11810, v is ImplementTwoInterface[], false);
Eval(11811, v is ImplementTwoInterface?, true);
Eval(11812, v is ImplementTwoInterface?[], false);
- Eval(11813, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11814, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11815, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11816, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11817, v is ImplementTwoInterfaceGen<int>, false);
- Eval(11818, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(11819, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(11820, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11821, v is ImplementAllInterface<int>, false);
- Eval(11822, v is ImplementAllInterface<int>[], false);
- Eval(11823, v is ImplementAllInterface<int>?, false);
- Eval(11824, v is ImplementAllInterface<int>?[], false);
+// Eval(11813, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11814, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11815, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11816, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11817, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(11818, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11819, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11820, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11821, v is ImplementAllInterface<int>, false);
+// Eval(11822, v is ImplementAllInterface<int>[], false);
+// Eval(11823, v is ImplementAllInterface<int>?, false);
+// Eval(11824, v is ImplementAllInterface<int>?[], false);
Eval(11825, v is IntE, false);
Eval(11826, v is IntE[], false);
Eval(11827, v is IntE?, false);
@@ -11670,38 +11670,38 @@ internal class Program
Eval(11920, v is IEmpty[], false);
Eval(11921, v is INotEmpty, true);
Eval(11922, v is INotEmpty[], false);
- Eval(11923, v is IEmptyGen<int>, false);
- Eval(11924, v is IEmptyGen<int>[], false);
- Eval(11925, v is INotEmptyGen<int>, false);
- Eval(11926, v is INotEmptyGen<int>[], false);
+// Eval(11923, v is IEmptyGen<int>, false);
+// Eval(11924, v is IEmptyGen<int>[], false);
+// Eval(11925, v is INotEmptyGen<int>, false);
+// Eval(11926, v is INotEmptyGen<int>[], false);
Eval(11927, v is SimpleDelegate, false);
Eval(11928, v is SimpleDelegate[], false);
- Eval(11929, v is GenericDelegate<int>, false);
- Eval(11930, v is GenericDelegate<int>[], false);
+// Eval(11929, v is GenericDelegate<int>, false);
+// Eval(11930, v is GenericDelegate<int>[], false);
Eval(11931, v is EmptyClass, false);
Eval(11932, v is EmptyClass[], false);
Eval(11933, v is NotEmptyClass, false);
Eval(11934, v is NotEmptyClass[], false);
- Eval(11935, v is EmptyClassGen<int>, false);
- Eval(11936, v is EmptyClassGen<int>[], false);
- Eval(11937, v is NotEmptyClassGen<Guid>, false);
- Eval(11938, v is NotEmptyClassGen<Guid>[], false);
- Eval(11939, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(11940, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11935, v is EmptyClassGen<int>, false);
+// Eval(11936, v is EmptyClassGen<int>[], false);
+// Eval(11937, v is NotEmptyClassGen<Guid>, false);
+// Eval(11938, v is NotEmptyClassGen<Guid>[], false);
+// Eval(11939, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11940, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(11941, v is NestedClass, false);
Eval(11942, v is NestedClass[], false);
- Eval(11943, v is NestedClassGen<Decimal>, false);
- Eval(11944, v is NestedClassGen<Decimal>[], false);
+// Eval(11943, v is NestedClassGen<Decimal>, false);
+// Eval(11944, v is NestedClassGen<Decimal>[], false);
Eval(11945, v is ImplementOneInterfaceC, false);
Eval(11946, v is ImplementOneInterfaceC[], false);
Eval(11947, v is ImplementTwoInterfaceC, false);
Eval(11948, v is ImplementTwoInterfaceC[], false);
- Eval(11949, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11950, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11951, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(11952, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11953, v is ImplementAllInterfaceC<int>, false);
- Eval(11954, v is ImplementAllInterfaceC<int>[], false);
+// Eval(11949, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11950, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11951, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11952, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11953, v is ImplementAllInterfaceC<int>, false);
+// Eval(11954, v is ImplementAllInterfaceC<int>[], false);
Eval(11955, v is SealedClass, false);
Eval(11956, v is SealedClass[], false);
}
@@ -11715,26 +11715,26 @@ internal class Program
Eval(11962, v is NotEmptyStruct[], false);
Eval(11963, v is NotEmptyStruct?, false);
Eval(11964, v is NotEmptyStruct?[], false);
- Eval(11965, v is EmptyStructGen<int>, false);
- Eval(11966, v is EmptyStructGen<int>[], false);
- Eval(11967, v is EmptyStructGen<int>?, false);
- Eval(11968, v is EmptyStructGen<int>?[], false);
- Eval(11969, v is NotEmptyStructGen<Guid>, false);
- Eval(11970, v is NotEmptyStructGen<Guid>[], false);
- Eval(11971, v is NotEmptyStructGen<Guid>?, false);
- Eval(11972, v is NotEmptyStructGen<Guid>?[], false);
- Eval(11973, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11974, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11975, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11976, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11965, v is EmptyStructGen<int>, false);
+// Eval(11966, v is EmptyStructGen<int>[], false);
+// Eval(11967, v is EmptyStructGen<int>?, false);
+// Eval(11968, v is EmptyStructGen<int>?[], false);
+// Eval(11969, v is NotEmptyStructGen<Guid>, false);
+// Eval(11970, v is NotEmptyStructGen<Guid>[], false);
+// Eval(11971, v is NotEmptyStructGen<Guid>?, false);
+// Eval(11972, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(11973, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11974, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11975, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11976, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11977, v is NestedStruct, false);
Eval(11978, v is NestedStruct[], false);
Eval(11979, v is NestedStruct?, false);
Eval(11980, v is NestedStruct?[], false);
- Eval(11981, v is NestedStructGen<Decimal>, false);
- Eval(11982, v is NestedStructGen<Decimal>[], false);
- Eval(11983, v is NestedStructGen<Decimal>?, false);
- Eval(11984, v is NestedStructGen<Decimal>?[], false);
+// Eval(11981, v is NestedStructGen<Decimal>, false);
+// Eval(11982, v is NestedStructGen<Decimal>[], false);
+// Eval(11983, v is NestedStructGen<Decimal>?, false);
+// Eval(11984, v is NestedStructGen<Decimal>?[], false);
Eval(11985, v is ExplicitFieldOffsetStruct, false);
Eval(11986, v is ExplicitFieldOffsetStruct[], false);
Eval(11987, v is ExplicitFieldOffsetStruct?, false);
@@ -11751,18 +11751,18 @@ internal class Program
Eval(12006, v is ImplementTwoInterface[], false);
Eval(12007, v is ImplementTwoInterface?, true);
Eval(12008, v is ImplementTwoInterface?[], false);
- Eval(12009, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12010, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12011, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12012, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12013, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12014, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12015, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12016, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12017, v is ImplementAllInterface<int>, false);
- Eval(12018, v is ImplementAllInterface<int>[], false);
- Eval(12019, v is ImplementAllInterface<int>?, false);
- Eval(12020, v is ImplementAllInterface<int>?[], false);
+// Eval(12009, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12010, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12011, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12012, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12013, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12014, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12015, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12016, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12017, v is ImplementAllInterface<int>, false);
+// Eval(12018, v is ImplementAllInterface<int>[], false);
+// Eval(12019, v is ImplementAllInterface<int>?, false);
+// Eval(12020, v is ImplementAllInterface<int>?[], false);
Eval(12021, v is IntE, false);
Eval(12022, v is IntE[], false);
Eval(12023, v is IntE?, false);
@@ -11861,38 +11861,38 @@ internal class Program
Eval(12116, v is IEmpty[], false);
Eval(12117, v is INotEmpty, true);
Eval(12118, v is INotEmpty[], false);
- Eval(12119, v is IEmptyGen<int>, false);
- Eval(12120, v is IEmptyGen<int>[], false);
- Eval(12121, v is INotEmptyGen<int>, false);
- Eval(12122, v is INotEmptyGen<int>[], false);
+// Eval(12119, v is IEmptyGen<int>, false);
+// Eval(12120, v is IEmptyGen<int>[], false);
+// Eval(12121, v is INotEmptyGen<int>, false);
+// Eval(12122, v is INotEmptyGen<int>[], false);
Eval(12123, v is SimpleDelegate, false);
Eval(12124, v is SimpleDelegate[], false);
- Eval(12125, v is GenericDelegate<int>, false);
- Eval(12126, v is GenericDelegate<int>[], false);
+// Eval(12125, v is GenericDelegate<int>, false);
+// Eval(12126, v is GenericDelegate<int>[], false);
Eval(12127, v is EmptyClass, false);
Eval(12128, v is EmptyClass[], false);
Eval(12129, v is NotEmptyClass, false);
Eval(12130, v is NotEmptyClass[], false);
- Eval(12131, v is EmptyClassGen<int>, false);
- Eval(12132, v is EmptyClassGen<int>[], false);
- Eval(12133, v is NotEmptyClassGen<Guid>, false);
- Eval(12134, v is NotEmptyClassGen<Guid>[], false);
- Eval(12135, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12136, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12131, v is EmptyClassGen<int>, false);
+// Eval(12132, v is EmptyClassGen<int>[], false);
+// Eval(12133, v is NotEmptyClassGen<Guid>, false);
+// Eval(12134, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12135, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12136, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12137, v is NestedClass, false);
Eval(12138, v is NestedClass[], false);
- Eval(12139, v is NestedClassGen<Decimal>, false);
- Eval(12140, v is NestedClassGen<Decimal>[], false);
+// Eval(12139, v is NestedClassGen<Decimal>, false);
+// Eval(12140, v is NestedClassGen<Decimal>[], false);
Eval(12141, v is ImplementOneInterfaceC, false);
Eval(12142, v is ImplementOneInterfaceC[], false);
Eval(12143, v is ImplementTwoInterfaceC, false);
Eval(12144, v is ImplementTwoInterfaceC[], false);
- Eval(12145, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12146, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12147, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12148, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12149, v is ImplementAllInterfaceC<int>, false);
- Eval(12150, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12145, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12146, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12147, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12148, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12149, v is ImplementAllInterfaceC<int>, false);
+// Eval(12150, v is ImplementAllInterfaceC<int>[], false);
Eval(12151, v is SealedClass, false);
Eval(12152, v is SealedClass[], false);
}
@@ -11906,26 +11906,26 @@ internal class Program
Eval(12158, v is NotEmptyStruct[], false);
Eval(12159, v is NotEmptyStruct?, false);
Eval(12160, v is NotEmptyStruct?[], false);
- Eval(12161, v is EmptyStructGen<int>, false);
- Eval(12162, v is EmptyStructGen<int>[], false);
- Eval(12163, v is EmptyStructGen<int>?, false);
- Eval(12164, v is EmptyStructGen<int>?[], false);
- Eval(12165, v is NotEmptyStructGen<Guid>, false);
- Eval(12166, v is NotEmptyStructGen<Guid>[], false);
- Eval(12167, v is NotEmptyStructGen<Guid>?, false);
- Eval(12168, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12169, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12170, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12171, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12172, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12161, v is EmptyStructGen<int>, false);
+// Eval(12162, v is EmptyStructGen<int>[], false);
+// Eval(12163, v is EmptyStructGen<int>?, false);
+// Eval(12164, v is EmptyStructGen<int>?[], false);
+// Eval(12165, v is NotEmptyStructGen<Guid>, false);
+// Eval(12166, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12167, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12168, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12169, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12170, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12171, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12172, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12173, v is NestedStruct, false);
Eval(12174, v is NestedStruct[], false);
Eval(12175, v is NestedStruct?, false);
Eval(12176, v is NestedStruct?[], false);
- Eval(12177, v is NestedStructGen<Decimal>, false);
- Eval(12178, v is NestedStructGen<Decimal>[], false);
- Eval(12179, v is NestedStructGen<Decimal>?, false);
- Eval(12180, v is NestedStructGen<Decimal>?[], false);
+// Eval(12177, v is NestedStructGen<Decimal>, false);
+// Eval(12178, v is NestedStructGen<Decimal>[], false);
+// Eval(12179, v is NestedStructGen<Decimal>?, false);
+// Eval(12180, v is NestedStructGen<Decimal>?[], false);
Eval(12181, v is ExplicitFieldOffsetStruct, false);
Eval(12182, v is ExplicitFieldOffsetStruct[], false);
Eval(12183, v is ExplicitFieldOffsetStruct?, false);
@@ -11942,18 +11942,18 @@ internal class Program
Eval(12202, v is ImplementTwoInterface[], false);
Eval(12203, v is ImplementTwoInterface?, false);
Eval(12204, v is ImplementTwoInterface?[], false);
- Eval(12205, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12206, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12207, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12208, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12209, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12210, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12211, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12212, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12213, v is ImplementAllInterface<int>, false);
- Eval(12214, v is ImplementAllInterface<int>[], false);
- Eval(12215, v is ImplementAllInterface<int>?, false);
- Eval(12216, v is ImplementAllInterface<int>?[], false);
+// Eval(12205, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12206, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12207, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12208, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12209, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12210, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12211, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12212, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12213, v is ImplementAllInterface<int>, false);
+// Eval(12214, v is ImplementAllInterface<int>[], false);
+// Eval(12215, v is ImplementAllInterface<int>?, false);
+// Eval(12216, v is ImplementAllInterface<int>?[], false);
Eval(12217, v is IntE, false);
Eval(12218, v is IntE[], false);
Eval(12219, v is IntE?, false);
@@ -12052,38 +12052,38 @@ internal class Program
Eval(12312, v is IEmpty[], false);
Eval(12313, v is INotEmpty, false);
Eval(12314, v is INotEmpty[], false);
- Eval(12315, v is IEmptyGen<int>, false);
- Eval(12316, v is IEmptyGen<int>[], false);
- Eval(12317, v is INotEmptyGen<int>, false);
- Eval(12318, v is INotEmptyGen<int>[], false);
+// Eval(12315, v is IEmptyGen<int>, false);
+// Eval(12316, v is IEmptyGen<int>[], false);
+// Eval(12317, v is INotEmptyGen<int>, false);
+// Eval(12318, v is INotEmptyGen<int>[], false);
Eval(12319, v is SimpleDelegate, false);
Eval(12320, v is SimpleDelegate[], false);
- Eval(12321, v is GenericDelegate<int>, false);
- Eval(12322, v is GenericDelegate<int>[], false);
+// Eval(12321, v is GenericDelegate<int>, false);
+// Eval(12322, v is GenericDelegate<int>[], false);
Eval(12323, v is EmptyClass, false);
Eval(12324, v is EmptyClass[], false);
Eval(12325, v is NotEmptyClass, false);
Eval(12326, v is NotEmptyClass[], false);
- Eval(12327, v is EmptyClassGen<int>, false);
- Eval(12328, v is EmptyClassGen<int>[], false);
- Eval(12329, v is NotEmptyClassGen<Guid>, false);
- Eval(12330, v is NotEmptyClassGen<Guid>[], false);
- Eval(12331, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12332, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12327, v is EmptyClassGen<int>, false);
+// Eval(12328, v is EmptyClassGen<int>[], false);
+// Eval(12329, v is NotEmptyClassGen<Guid>, false);
+// Eval(12330, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12331, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12332, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12333, v is NestedClass, false);
Eval(12334, v is NestedClass[], false);
- Eval(12335, v is NestedClassGen<Decimal>, false);
- Eval(12336, v is NestedClassGen<Decimal>[], false);
+// Eval(12335, v is NestedClassGen<Decimal>, false);
+// Eval(12336, v is NestedClassGen<Decimal>[], false);
Eval(12337, v is ImplementOneInterfaceC, false);
Eval(12338, v is ImplementOneInterfaceC[], false);
Eval(12339, v is ImplementTwoInterfaceC, false);
Eval(12340, v is ImplementTwoInterfaceC[], false);
- Eval(12341, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12342, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12343, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12344, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12345, v is ImplementAllInterfaceC<int>, false);
- Eval(12346, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12341, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12342, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12343, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12344, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12345, v is ImplementAllInterfaceC<int>, false);
+// Eval(12346, v is ImplementAllInterfaceC<int>[], false);
Eval(12347, v is SealedClass, false);
Eval(12348, v is SealedClass[], false);
}
@@ -12097,26 +12097,26 @@ internal class Program
Eval(12354, v is NotEmptyStruct[], false);
Eval(12355, v is NotEmptyStruct?, false);
Eval(12356, v is NotEmptyStruct?[], false);
- Eval(12357, v is EmptyStructGen<int>, false);
- Eval(12358, v is EmptyStructGen<int>[], false);
- Eval(12359, v is EmptyStructGen<int>?, false);
- Eval(12360, v is EmptyStructGen<int>?[], false);
- Eval(12361, v is NotEmptyStructGen<Guid>, false);
- Eval(12362, v is NotEmptyStructGen<Guid>[], false);
- Eval(12363, v is NotEmptyStructGen<Guid>?, false);
- Eval(12364, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12365, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12366, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12367, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12368, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12357, v is EmptyStructGen<int>, false);
+// Eval(12358, v is EmptyStructGen<int>[], false);
+// Eval(12359, v is EmptyStructGen<int>?, false);
+// Eval(12360, v is EmptyStructGen<int>?[], false);
+// Eval(12361, v is NotEmptyStructGen<Guid>, false);
+// Eval(12362, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12363, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12364, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12365, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12366, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12367, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12368, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12369, v is NestedStruct, false);
Eval(12370, v is NestedStruct[], false);
Eval(12371, v is NestedStruct?, false);
Eval(12372, v is NestedStruct?[], false);
- Eval(12373, v is NestedStructGen<Decimal>, false);
- Eval(12374, v is NestedStructGen<Decimal>[], false);
- Eval(12375, v is NestedStructGen<Decimal>?, false);
- Eval(12376, v is NestedStructGen<Decimal>?[], false);
+// Eval(12373, v is NestedStructGen<Decimal>, false);
+// Eval(12374, v is NestedStructGen<Decimal>[], false);
+// Eval(12375, v is NestedStructGen<Decimal>?, false);
+// Eval(12376, v is NestedStructGen<Decimal>?[], false);
Eval(12377, v is ExplicitFieldOffsetStruct, false);
Eval(12378, v is ExplicitFieldOffsetStruct[], false);
Eval(12379, v is ExplicitFieldOffsetStruct?, false);
@@ -12133,18 +12133,18 @@ internal class Program
Eval(12398, v is ImplementTwoInterface[], false);
Eval(12399, v is ImplementTwoInterface?, false);
Eval(12400, v is ImplementTwoInterface?[], false);
- Eval(12401, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12402, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12403, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12404, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12405, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12406, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12407, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12408, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12409, v is ImplementAllInterface<int>, false);
- Eval(12410, v is ImplementAllInterface<int>[], false);
- Eval(12411, v is ImplementAllInterface<int>?, false);
- Eval(12412, v is ImplementAllInterface<int>?[], false);
+// Eval(12401, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12402, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12403, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12404, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12405, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12406, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12407, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12408, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12409, v is ImplementAllInterface<int>, false);
+// Eval(12410, v is ImplementAllInterface<int>[], false);
+// Eval(12411, v is ImplementAllInterface<int>?, false);
+// Eval(12412, v is ImplementAllInterface<int>?[], false);
Eval(12413, v is IntE, false);
Eval(12414, v is IntE[], false);
Eval(12415, v is IntE?, false);
@@ -12243,38 +12243,38 @@ internal class Program
Eval(12508, v is IEmpty[], false);
Eval(12509, v is INotEmpty, false);
Eval(12510, v is INotEmpty[], false);
- Eval(12511, v is IEmptyGen<int>, false);
- Eval(12512, v is IEmptyGen<int>[], false);
- Eval(12513, v is INotEmptyGen<int>, false);
- Eval(12514, v is INotEmptyGen<int>[], false);
+// Eval(12511, v is IEmptyGen<int>, false);
+// Eval(12512, v is IEmptyGen<int>[], false);
+// Eval(12513, v is INotEmptyGen<int>, false);
+// Eval(12514, v is INotEmptyGen<int>[], false);
Eval(12515, v is SimpleDelegate, false);
Eval(12516, v is SimpleDelegate[], false);
- Eval(12517, v is GenericDelegate<int>, false);
- Eval(12518, v is GenericDelegate<int>[], false);
+// Eval(12517, v is GenericDelegate<int>, false);
+// Eval(12518, v is GenericDelegate<int>[], false);
Eval(12519, v is EmptyClass, false);
Eval(12520, v is EmptyClass[], false);
Eval(12521, v is NotEmptyClass, false);
Eval(12522, v is NotEmptyClass[], false);
- Eval(12523, v is EmptyClassGen<int>, false);
- Eval(12524, v is EmptyClassGen<int>[], false);
- Eval(12525, v is NotEmptyClassGen<Guid>, false);
- Eval(12526, v is NotEmptyClassGen<Guid>[], false);
- Eval(12527, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12528, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12523, v is EmptyClassGen<int>, false);
+// Eval(12524, v is EmptyClassGen<int>[], false);
+// Eval(12525, v is NotEmptyClassGen<Guid>, false);
+// Eval(12526, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12527, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12528, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12529, v is NestedClass, false);
Eval(12530, v is NestedClass[], false);
- Eval(12531, v is NestedClassGen<Decimal>, false);
- Eval(12532, v is NestedClassGen<Decimal>[], false);
+// Eval(12531, v is NestedClassGen<Decimal>, false);
+// Eval(12532, v is NestedClassGen<Decimal>[], false);
Eval(12533, v is ImplementOneInterfaceC, false);
Eval(12534, v is ImplementOneInterfaceC[], false);
Eval(12535, v is ImplementTwoInterfaceC, false);
Eval(12536, v is ImplementTwoInterfaceC[], false);
- Eval(12537, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12538, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12539, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12540, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12541, v is ImplementAllInterfaceC<int>, false);
- Eval(12542, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12537, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12538, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12539, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12540, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12541, v is ImplementAllInterfaceC<int>, false);
+// Eval(12542, v is ImplementAllInterfaceC<int>[], false);
Eval(12543, v is SealedClass, false);
Eval(12544, v is SealedClass[], false);
}
@@ -12288,26 +12288,26 @@ internal class Program
Eval(12550, v is NotEmptyStruct[], false);
Eval(12551, v is NotEmptyStruct?, false);
Eval(12552, v is NotEmptyStruct?[], false);
- Eval(12553, v is EmptyStructGen<int>, false);
- Eval(12554, v is EmptyStructGen<int>[], false);
- Eval(12555, v is EmptyStructGen<int>?, false);
- Eval(12556, v is EmptyStructGen<int>?[], false);
- Eval(12557, v is NotEmptyStructGen<Guid>, false);
- Eval(12558, v is NotEmptyStructGen<Guid>[], false);
- Eval(12559, v is NotEmptyStructGen<Guid>?, false);
- Eval(12560, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12561, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12562, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12563, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12564, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12553, v is EmptyStructGen<int>, false);
+// Eval(12554, v is EmptyStructGen<int>[], false);
+// Eval(12555, v is EmptyStructGen<int>?, false);
+// Eval(12556, v is EmptyStructGen<int>?[], false);
+// Eval(12557, v is NotEmptyStructGen<Guid>, false);
+// Eval(12558, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12559, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12560, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12561, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12562, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12563, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12564, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12565, v is NestedStruct, false);
Eval(12566, v is NestedStruct[], false);
Eval(12567, v is NestedStruct?, false);
Eval(12568, v is NestedStruct?[], false);
- Eval(12569, v is NestedStructGen<Decimal>, false);
- Eval(12570, v is NestedStructGen<Decimal>[], false);
- Eval(12571, v is NestedStructGen<Decimal>?, false);
- Eval(12572, v is NestedStructGen<Decimal>?[], false);
+// Eval(12569, v is NestedStructGen<Decimal>, false);
+// Eval(12570, v is NestedStructGen<Decimal>[], false);
+// Eval(12571, v is NestedStructGen<Decimal>?, false);
+// Eval(12572, v is NestedStructGen<Decimal>?[], false);
Eval(12573, v is ExplicitFieldOffsetStruct, false);
Eval(12574, v is ExplicitFieldOffsetStruct[], false);
Eval(12575, v is ExplicitFieldOffsetStruct?, false);
@@ -12324,18 +12324,18 @@ internal class Program
Eval(12594, v is ImplementTwoInterface[], false);
Eval(12595, v is ImplementTwoInterface?, false);
Eval(12596, v is ImplementTwoInterface?[], true);
- Eval(12597, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12598, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12599, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12600, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12601, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12602, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12603, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12604, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12605, v is ImplementAllInterface<int>, false);
- Eval(12606, v is ImplementAllInterface<int>[], false);
- Eval(12607, v is ImplementAllInterface<int>?, false);
- Eval(12608, v is ImplementAllInterface<int>?[], false);
+// Eval(12597, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12598, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12599, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12600, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12601, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12602, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12603, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12604, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12605, v is ImplementAllInterface<int>, false);
+// Eval(12606, v is ImplementAllInterface<int>[], false);
+// Eval(12607, v is ImplementAllInterface<int>?, false);
+// Eval(12608, v is ImplementAllInterface<int>?[], false);
Eval(12609, v is IntE, false);
Eval(12610, v is IntE[], false);
Eval(12611, v is IntE?, false);
@@ -12434,38 +12434,38 @@ internal class Program
Eval(12704, v is IEmpty[], false);
Eval(12705, v is INotEmpty, false);
Eval(12706, v is INotEmpty[], false);
- Eval(12707, v is IEmptyGen<int>, false);
- Eval(12708, v is IEmptyGen<int>[], false);
- Eval(12709, v is INotEmptyGen<int>, false);
- Eval(12710, v is INotEmptyGen<int>[], false);
+// Eval(12707, v is IEmptyGen<int>, false);
+// Eval(12708, v is IEmptyGen<int>[], false);
+// Eval(12709, v is INotEmptyGen<int>, false);
+// Eval(12710, v is INotEmptyGen<int>[], false);
Eval(12711, v is SimpleDelegate, false);
Eval(12712, v is SimpleDelegate[], false);
- Eval(12713, v is GenericDelegate<int>, false);
- Eval(12714, v is GenericDelegate<int>[], false);
+// Eval(12713, v is GenericDelegate<int>, false);
+// Eval(12714, v is GenericDelegate<int>[], false);
Eval(12715, v is EmptyClass, false);
Eval(12716, v is EmptyClass[], false);
Eval(12717, v is NotEmptyClass, false);
Eval(12718, v is NotEmptyClass[], false);
- Eval(12719, v is EmptyClassGen<int>, false);
- Eval(12720, v is EmptyClassGen<int>[], false);
- Eval(12721, v is NotEmptyClassGen<Guid>, false);
- Eval(12722, v is NotEmptyClassGen<Guid>[], false);
- Eval(12723, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12724, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12719, v is EmptyClassGen<int>, false);
+// Eval(12720, v is EmptyClassGen<int>[], false);
+// Eval(12721, v is NotEmptyClassGen<Guid>, false);
+// Eval(12722, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12723, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12724, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12725, v is NestedClass, false);
Eval(12726, v is NestedClass[], false);
- Eval(12727, v is NestedClassGen<Decimal>, false);
- Eval(12728, v is NestedClassGen<Decimal>[], false);
+// Eval(12727, v is NestedClassGen<Decimal>, false);
+// Eval(12728, v is NestedClassGen<Decimal>[], false);
Eval(12729, v is ImplementOneInterfaceC, false);
Eval(12730, v is ImplementOneInterfaceC[], false);
Eval(12731, v is ImplementTwoInterfaceC, false);
Eval(12732, v is ImplementTwoInterfaceC[], false);
- Eval(12733, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12734, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12735, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12736, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12737, v is ImplementAllInterfaceC<int>, false);
- Eval(12738, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12733, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12734, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12735, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12736, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12737, v is ImplementAllInterfaceC<int>, false);
+// Eval(12738, v is ImplementAllInterfaceC<int>[], false);
Eval(12739, v is SealedClass, false);
Eval(12740, v is SealedClass[], false);
}
@@ -12482,26 +12482,26 @@ internal class Program
Eval(12746, v is NotEmptyStruct[], false);
Eval(12747, v is NotEmptyStruct?, false);
Eval(12748, v is NotEmptyStruct?[], false);
- Eval(12749, v is EmptyStructGen<int>, false);
- Eval(12750, v is EmptyStructGen<int>[], false);
- Eval(12751, v is EmptyStructGen<int>?, false);
- Eval(12752, v is EmptyStructGen<int>?[], false);
- Eval(12753, v is NotEmptyStructGen<Guid>, false);
- Eval(12754, v is NotEmptyStructGen<Guid>[], false);
- Eval(12755, v is NotEmptyStructGen<Guid>?, false);
- Eval(12756, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12757, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12758, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12759, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12760, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12749, v is EmptyStructGen<int>, false);
+// Eval(12750, v is EmptyStructGen<int>[], false);
+// Eval(12751, v is EmptyStructGen<int>?, false);
+// Eval(12752, v is EmptyStructGen<int>?[], false);
+// Eval(12753, v is NotEmptyStructGen<Guid>, false);
+// Eval(12754, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12755, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12756, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12757, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12758, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12759, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12760, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12761, v is NestedStruct, false);
Eval(12762, v is NestedStruct[], false);
Eval(12763, v is NestedStruct?, false);
Eval(12764, v is NestedStruct?[], false);
- Eval(12765, v is NestedStructGen<Decimal>, false);
- Eval(12766, v is NestedStructGen<Decimal>[], false);
- Eval(12767, v is NestedStructGen<Decimal>?, false);
- Eval(12768, v is NestedStructGen<Decimal>?[], false);
+// Eval(12765, v is NestedStructGen<Decimal>, false);
+// Eval(12766, v is NestedStructGen<Decimal>[], false);
+// Eval(12767, v is NestedStructGen<Decimal>?, false);
+// Eval(12768, v is NestedStructGen<Decimal>?[], false);
Eval(12769, v is ExplicitFieldOffsetStruct, false);
Eval(12770, v is ExplicitFieldOffsetStruct[], false);
Eval(12771, v is ExplicitFieldOffsetStruct?, false);
@@ -12518,18 +12518,18 @@ internal class Program
Eval(12790, v is ImplementTwoInterface[], false);
Eval(12791, v is ImplementTwoInterface?, false);
Eval(12792, v is ImplementTwoInterface?[], false);
- Eval(12793, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(12794, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12795, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(12796, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12797, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12798, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12799, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12800, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12801, v is ImplementAllInterface<int>, false);
- Eval(12802, v is ImplementAllInterface<int>[], false);
- Eval(12803, v is ImplementAllInterface<int>?, false);
- Eval(12804, v is ImplementAllInterface<int>?[], false);
+// Eval(12793, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(12794, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12795, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(12796, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12797, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12798, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12799, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12800, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12801, v is ImplementAllInterface<int>, false);
+// Eval(12802, v is ImplementAllInterface<int>[], false);
+// Eval(12803, v is ImplementAllInterface<int>?, false);
+// Eval(12804, v is ImplementAllInterface<int>?[], false);
Eval(12805, v is IntE, false);
Eval(12806, v is IntE[], false);
Eval(12807, v is IntE?, false);
@@ -12628,38 +12628,38 @@ internal class Program
Eval(12900, v is IEmpty[], false);
Eval(12901, v is INotEmpty, false);
Eval(12902, v is INotEmpty[], false);
- Eval(12903, v is IEmptyGen<int>, false);
- Eval(12904, v is IEmptyGen<int>[], false);
- Eval(12905, v is INotEmptyGen<int>, false);
- Eval(12906, v is INotEmptyGen<int>[], false);
+// Eval(12903, v is IEmptyGen<int>, false);
+// Eval(12904, v is IEmptyGen<int>[], false);
+// Eval(12905, v is INotEmptyGen<int>, false);
+// Eval(12906, v is INotEmptyGen<int>[], false);
Eval(12907, v is SimpleDelegate, false);
Eval(12908, v is SimpleDelegate[], false);
- Eval(12909, v is GenericDelegate<int>, false);
- Eval(12910, v is GenericDelegate<int>[], false);
+// Eval(12909, v is GenericDelegate<int>, false);
+// Eval(12910, v is GenericDelegate<int>[], false);
Eval(12911, v is EmptyClass, false);
Eval(12912, v is EmptyClass[], false);
Eval(12913, v is NotEmptyClass, false);
Eval(12914, v is NotEmptyClass[], false);
- Eval(12915, v is EmptyClassGen<int>, false);
- Eval(12916, v is EmptyClassGen<int>[], false);
- Eval(12917, v is NotEmptyClassGen<Guid>, false);
- Eval(12918, v is NotEmptyClassGen<Guid>[], false);
- Eval(12919, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(12920, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12915, v is EmptyClassGen<int>, false);
+// Eval(12916, v is EmptyClassGen<int>[], false);
+// Eval(12917, v is NotEmptyClassGen<Guid>, false);
+// Eval(12918, v is NotEmptyClassGen<Guid>[], false);
+// Eval(12919, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12920, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(12921, v is NestedClass, false);
Eval(12922, v is NestedClass[], false);
- Eval(12923, v is NestedClassGen<Decimal>, false);
- Eval(12924, v is NestedClassGen<Decimal>[], false);
+// Eval(12923, v is NestedClassGen<Decimal>, false);
+// Eval(12924, v is NestedClassGen<Decimal>[], false);
Eval(12925, v is ImplementOneInterfaceC, false);
Eval(12926, v is ImplementOneInterfaceC[], false);
Eval(12927, v is ImplementTwoInterfaceC, false);
Eval(12928, v is ImplementTwoInterfaceC[], false);
- Eval(12929, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12930, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12931, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(12932, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12933, v is ImplementAllInterfaceC<int>, false);
- Eval(12934, v is ImplementAllInterfaceC<int>[], false);
+// Eval(12929, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12930, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12931, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12932, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12933, v is ImplementAllInterfaceC<int>, false);
+// Eval(12934, v is ImplementAllInterfaceC<int>[], false);
Eval(12935, v is SealedClass, false);
Eval(12936, v is SealedClass[], false);
}
@@ -12673,26 +12673,26 @@ internal class Program
Eval(12942, v is NotEmptyStruct[], false);
Eval(12943, v is NotEmptyStruct?, false);
Eval(12944, v is NotEmptyStruct?[], false);
- Eval(12945, v is EmptyStructGen<int>, false);
- Eval(12946, v is EmptyStructGen<int>[], false);
- Eval(12947, v is EmptyStructGen<int>?, false);
- Eval(12948, v is EmptyStructGen<int>?[], false);
- Eval(12949, v is NotEmptyStructGen<Guid>, false);
- Eval(12950, v is NotEmptyStructGen<Guid>[], false);
- Eval(12951, v is NotEmptyStructGen<Guid>?, false);
- Eval(12952, v is NotEmptyStructGen<Guid>?[], false);
- Eval(12953, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12954, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12955, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12956, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12945, v is EmptyStructGen<int>, false);
+// Eval(12946, v is EmptyStructGen<int>[], false);
+// Eval(12947, v is EmptyStructGen<int>?, false);
+// Eval(12948, v is EmptyStructGen<int>?[], false);
+// Eval(12949, v is NotEmptyStructGen<Guid>, false);
+// Eval(12950, v is NotEmptyStructGen<Guid>[], false);
+// Eval(12951, v is NotEmptyStructGen<Guid>?, false);
+// Eval(12952, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(12953, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12954, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12955, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12956, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12957, v is NestedStruct, false);
Eval(12958, v is NestedStruct[], false);
Eval(12959, v is NestedStruct?, false);
Eval(12960, v is NestedStruct?[], false);
- Eval(12961, v is NestedStructGen<Decimal>, false);
- Eval(12962, v is NestedStructGen<Decimal>[], false);
- Eval(12963, v is NestedStructGen<Decimal>?, false);
- Eval(12964, v is NestedStructGen<Decimal>?[], false);
+// Eval(12961, v is NestedStructGen<Decimal>, false);
+// Eval(12962, v is NestedStructGen<Decimal>[], false);
+// Eval(12963, v is NestedStructGen<Decimal>?, false);
+// Eval(12964, v is NestedStructGen<Decimal>?[], false);
Eval(12965, v is ExplicitFieldOffsetStruct, false);
Eval(12966, v is ExplicitFieldOffsetStruct[], false);
Eval(12967, v is ExplicitFieldOffsetStruct?, false);
@@ -12709,18 +12709,18 @@ internal class Program
Eval(12986, v is ImplementTwoInterface[], false);
Eval(12987, v is ImplementTwoInterface?, false);
Eval(12988, v is ImplementTwoInterface?[], false);
- Eval(12989, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(12990, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12991, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(12992, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12993, v is ImplementTwoInterfaceGen<int>, false);
- Eval(12994, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(12995, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(12996, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12997, v is ImplementAllInterface<int>, false);
- Eval(12998, v is ImplementAllInterface<int>[], false);
- Eval(12999, v is ImplementAllInterface<int>?, false);
- Eval(13000, v is ImplementAllInterface<int>?[], false);
+// Eval(12989, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(12990, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12991, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(12992, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12993, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(12994, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12995, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12996, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12997, v is ImplementAllInterface<int>, false);
+// Eval(12998, v is ImplementAllInterface<int>[], false);
+// Eval(12999, v is ImplementAllInterface<int>?, false);
+// Eval(13000, v is ImplementAllInterface<int>?[], false);
Eval(13001, v is IntE, false);
Eval(13002, v is IntE[], false);
Eval(13003, v is IntE?, false);
@@ -12819,38 +12819,38 @@ internal class Program
Eval(13096, v is IEmpty[], false);
Eval(13097, v is INotEmpty, false);
Eval(13098, v is INotEmpty[], false);
- Eval(13099, v is IEmptyGen<int>, false);
- Eval(13100, v is IEmptyGen<int>[], false);
- Eval(13101, v is INotEmptyGen<int>, false);
- Eval(13102, v is INotEmptyGen<int>[], false);
+// Eval(13099, v is IEmptyGen<int>, false);
+// Eval(13100, v is IEmptyGen<int>[], false);
+// Eval(13101, v is INotEmptyGen<int>, false);
+// Eval(13102, v is INotEmptyGen<int>[], false);
Eval(13103, v is SimpleDelegate, false);
Eval(13104, v is SimpleDelegate[], false);
- Eval(13105, v is GenericDelegate<int>, false);
- Eval(13106, v is GenericDelegate<int>[], false);
+// Eval(13105, v is GenericDelegate<int>, false);
+// Eval(13106, v is GenericDelegate<int>[], false);
Eval(13107, v is EmptyClass, false);
Eval(13108, v is EmptyClass[], false);
Eval(13109, v is NotEmptyClass, false);
Eval(13110, v is NotEmptyClass[], false);
- Eval(13111, v is EmptyClassGen<int>, false);
- Eval(13112, v is EmptyClassGen<int>[], false);
- Eval(13113, v is NotEmptyClassGen<Guid>, false);
- Eval(13114, v is NotEmptyClassGen<Guid>[], false);
- Eval(13115, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13116, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13111, v is EmptyClassGen<int>, false);
+// Eval(13112, v is EmptyClassGen<int>[], false);
+// Eval(13113, v is NotEmptyClassGen<Guid>, false);
+// Eval(13114, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13115, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13116, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13117, v is NestedClass, false);
Eval(13118, v is NestedClass[], false);
- Eval(13119, v is NestedClassGen<Decimal>, false);
- Eval(13120, v is NestedClassGen<Decimal>[], false);
+// Eval(13119, v is NestedClassGen<Decimal>, false);
+// Eval(13120, v is NestedClassGen<Decimal>[], false);
Eval(13121, v is ImplementOneInterfaceC, false);
Eval(13122, v is ImplementOneInterfaceC[], false);
Eval(13123, v is ImplementTwoInterfaceC, false);
Eval(13124, v is ImplementTwoInterfaceC[], false);
- Eval(13125, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13126, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13127, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13128, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13129, v is ImplementAllInterfaceC<int>, false);
- Eval(13130, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13125, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13126, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13127, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13128, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13129, v is ImplementAllInterfaceC<int>, false);
+// Eval(13130, v is ImplementAllInterfaceC<int>[], false);
Eval(13131, v is SealedClass, false);
Eval(13132, v is SealedClass[], false);
}
@@ -12864,26 +12864,26 @@ internal class Program
Eval(13138, v is NotEmptyStruct[], false);
Eval(13139, v is NotEmptyStruct?, false);
Eval(13140, v is NotEmptyStruct?[], false);
- Eval(13141, v is EmptyStructGen<int>, false);
- Eval(13142, v is EmptyStructGen<int>[], false);
- Eval(13143, v is EmptyStructGen<int>?, false);
- Eval(13144, v is EmptyStructGen<int>?[], false);
- Eval(13145, v is NotEmptyStructGen<Guid>, false);
- Eval(13146, v is NotEmptyStructGen<Guid>[], false);
- Eval(13147, v is NotEmptyStructGen<Guid>?, false);
- Eval(13148, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13149, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13150, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13151, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13152, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13141, v is EmptyStructGen<int>, false);
+// Eval(13142, v is EmptyStructGen<int>[], false);
+// Eval(13143, v is EmptyStructGen<int>?, false);
+// Eval(13144, v is EmptyStructGen<int>?[], false);
+// Eval(13145, v is NotEmptyStructGen<Guid>, false);
+// Eval(13146, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13147, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13148, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13149, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13150, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13151, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13152, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13153, v is NestedStruct, false);
Eval(13154, v is NestedStruct[], false);
Eval(13155, v is NestedStruct?, false);
Eval(13156, v is NestedStruct?[], false);
- Eval(13157, v is NestedStructGen<Decimal>, false);
- Eval(13158, v is NestedStructGen<Decimal>[], false);
- Eval(13159, v is NestedStructGen<Decimal>?, false);
- Eval(13160, v is NestedStructGen<Decimal>?[], false);
+// Eval(13157, v is NestedStructGen<Decimal>, false);
+// Eval(13158, v is NestedStructGen<Decimal>[], false);
+// Eval(13159, v is NestedStructGen<Decimal>?, false);
+// Eval(13160, v is NestedStructGen<Decimal>?[], false);
Eval(13161, v is ExplicitFieldOffsetStruct, false);
Eval(13162, v is ExplicitFieldOffsetStruct[], false);
Eval(13163, v is ExplicitFieldOffsetStruct?, false);
@@ -12900,18 +12900,18 @@ internal class Program
Eval(13182, v is ImplementTwoInterface[], false);
Eval(13183, v is ImplementTwoInterface?, false);
Eval(13184, v is ImplementTwoInterface?[], false);
- Eval(13185, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13186, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13187, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13188, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13189, v is ImplementTwoInterfaceGen<int>, false);
- Eval(13190, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13191, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(13192, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13193, v is ImplementAllInterface<int>, false);
- Eval(13194, v is ImplementAllInterface<int>[], false);
- Eval(13195, v is ImplementAllInterface<int>?, false);
- Eval(13196, v is ImplementAllInterface<int>?[], false);
+// Eval(13185, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13186, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13187, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13188, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13189, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(13190, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13191, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13192, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13193, v is ImplementAllInterface<int>, false);
+// Eval(13194, v is ImplementAllInterface<int>[], false);
+// Eval(13195, v is ImplementAllInterface<int>?, false);
+// Eval(13196, v is ImplementAllInterface<int>?[], false);
Eval(13197, v is IntE, false);
Eval(13198, v is IntE[], false);
Eval(13199, v is IntE?, false);
@@ -13010,38 +13010,38 @@ internal class Program
Eval(13292, v is IEmpty[], false);
Eval(13293, v is INotEmpty, false);
Eval(13294, v is INotEmpty[], false);
- Eval(13295, v is IEmptyGen<int>, false);
- Eval(13296, v is IEmptyGen<int>[], false);
- Eval(13297, v is INotEmptyGen<int>, false);
- Eval(13298, v is INotEmptyGen<int>[], false);
+// Eval(13295, v is IEmptyGen<int>, false);
+// Eval(13296, v is IEmptyGen<int>[], false);
+// Eval(13297, v is INotEmptyGen<int>, false);
+// Eval(13298, v is INotEmptyGen<int>[], false);
Eval(13299, v is SimpleDelegate, false);
Eval(13300, v is SimpleDelegate[], false);
- Eval(13301, v is GenericDelegate<int>, false);
- Eval(13302, v is GenericDelegate<int>[], false);
+// Eval(13301, v is GenericDelegate<int>, false);
+// Eval(13302, v is GenericDelegate<int>[], false);
Eval(13303, v is EmptyClass, false);
Eval(13304, v is EmptyClass[], false);
Eval(13305, v is NotEmptyClass, false);
Eval(13306, v is NotEmptyClass[], false);
- Eval(13307, v is EmptyClassGen<int>, false);
- Eval(13308, v is EmptyClassGen<int>[], false);
- Eval(13309, v is NotEmptyClassGen<Guid>, false);
- Eval(13310, v is NotEmptyClassGen<Guid>[], false);
- Eval(13311, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13312, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13307, v is EmptyClassGen<int>, false);
+// Eval(13308, v is EmptyClassGen<int>[], false);
+// Eval(13309, v is NotEmptyClassGen<Guid>, false);
+// Eval(13310, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13311, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13312, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13313, v is NestedClass, false);
Eval(13314, v is NestedClass[], false);
- Eval(13315, v is NestedClassGen<Decimal>, false);
- Eval(13316, v is NestedClassGen<Decimal>[], false);
+// Eval(13315, v is NestedClassGen<Decimal>, false);
+// Eval(13316, v is NestedClassGen<Decimal>[], false);
Eval(13317, v is ImplementOneInterfaceC, false);
Eval(13318, v is ImplementOneInterfaceC[], false);
Eval(13319, v is ImplementTwoInterfaceC, false);
Eval(13320, v is ImplementTwoInterfaceC[], false);
- Eval(13321, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13322, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13323, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13324, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13325, v is ImplementAllInterfaceC<int>, false);
- Eval(13326, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13321, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13322, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13323, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13324, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13325, v is ImplementAllInterfaceC<int>, false);
+// Eval(13326, v is ImplementAllInterfaceC<int>[], false);
Eval(13327, v is SealedClass, false);
Eval(13328, v is SealedClass[], false);
}
@@ -13055,26 +13055,26 @@ internal class Program
Eval(13334, v is NotEmptyStruct[], false);
Eval(13335, v is NotEmptyStruct?, false);
Eval(13336, v is NotEmptyStruct?[], false);
- Eval(13337, v is EmptyStructGen<int>, false);
- Eval(13338, v is EmptyStructGen<int>[], false);
- Eval(13339, v is EmptyStructGen<int>?, false);
- Eval(13340, v is EmptyStructGen<int>?[], false);
- Eval(13341, v is NotEmptyStructGen<Guid>, false);
- Eval(13342, v is NotEmptyStructGen<Guid>[], false);
- Eval(13343, v is NotEmptyStructGen<Guid>?, false);
- Eval(13344, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13345, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13346, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13347, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13348, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13337, v is EmptyStructGen<int>, false);
+// Eval(13338, v is EmptyStructGen<int>[], false);
+// Eval(13339, v is EmptyStructGen<int>?, false);
+// Eval(13340, v is EmptyStructGen<int>?[], false);
+// Eval(13341, v is NotEmptyStructGen<Guid>, false);
+// Eval(13342, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13343, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13344, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13345, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13346, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13347, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13348, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13349, v is NestedStruct, false);
Eval(13350, v is NestedStruct[], false);
Eval(13351, v is NestedStruct?, false);
Eval(13352, v is NestedStruct?[], false);
- Eval(13353, v is NestedStructGen<Decimal>, false);
- Eval(13354, v is NestedStructGen<Decimal>[], false);
- Eval(13355, v is NestedStructGen<Decimal>?, false);
- Eval(13356, v is NestedStructGen<Decimal>?[], false);
+// Eval(13353, v is NestedStructGen<Decimal>, false);
+// Eval(13354, v is NestedStructGen<Decimal>[], false);
+// Eval(13355, v is NestedStructGen<Decimal>?, false);
+// Eval(13356, v is NestedStructGen<Decimal>?[], false);
Eval(13357, v is ExplicitFieldOffsetStruct, false);
Eval(13358, v is ExplicitFieldOffsetStruct[], false);
Eval(13359, v is ExplicitFieldOffsetStruct?, false);
@@ -13091,18 +13091,18 @@ internal class Program
Eval(13378, v is ImplementTwoInterface[], false);
Eval(13379, v is ImplementTwoInterface?, false);
Eval(13380, v is ImplementTwoInterface?[], false);
- Eval(13381, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13382, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13383, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13384, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13385, v is ImplementTwoInterfaceGen<int>, false);
- Eval(13386, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13387, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(13388, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13389, v is ImplementAllInterface<int>, false);
- Eval(13390, v is ImplementAllInterface<int>[], false);
- Eval(13391, v is ImplementAllInterface<int>?, false);
- Eval(13392, v is ImplementAllInterface<int>?[], false);
+// Eval(13381, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13382, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13383, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13384, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13385, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(13386, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13387, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13388, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13389, v is ImplementAllInterface<int>, false);
+// Eval(13390, v is ImplementAllInterface<int>[], false);
+// Eval(13391, v is ImplementAllInterface<int>?, false);
+// Eval(13392, v is ImplementAllInterface<int>?[], false);
Eval(13393, v is IntE, false);
Eval(13394, v is IntE[], false);
Eval(13395, v is IntE?, false);
@@ -13201,38 +13201,38 @@ internal class Program
Eval(13488, v is IEmpty[], false);
Eval(13489, v is INotEmpty, false);
Eval(13490, v is INotEmpty[], false);
- Eval(13491, v is IEmptyGen<int>, false);
- Eval(13492, v is IEmptyGen<int>[], false);
- Eval(13493, v is INotEmptyGen<int>, false);
- Eval(13494, v is INotEmptyGen<int>[], false);
+// Eval(13491, v is IEmptyGen<int>, false);
+// Eval(13492, v is IEmptyGen<int>[], false);
+// Eval(13493, v is INotEmptyGen<int>, false);
+// Eval(13494, v is INotEmptyGen<int>[], false);
Eval(13495, v is SimpleDelegate, false);
Eval(13496, v is SimpleDelegate[], false);
- Eval(13497, v is GenericDelegate<int>, false);
- Eval(13498, v is GenericDelegate<int>[], false);
+// Eval(13497, v is GenericDelegate<int>, false);
+// Eval(13498, v is GenericDelegate<int>[], false);
Eval(13499, v is EmptyClass, false);
Eval(13500, v is EmptyClass[], false);
Eval(13501, v is NotEmptyClass, false);
Eval(13502, v is NotEmptyClass[], false);
- Eval(13503, v is EmptyClassGen<int>, false);
- Eval(13504, v is EmptyClassGen<int>[], false);
- Eval(13505, v is NotEmptyClassGen<Guid>, false);
- Eval(13506, v is NotEmptyClassGen<Guid>[], false);
- Eval(13507, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13508, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13503, v is EmptyClassGen<int>, false);
+// Eval(13504, v is EmptyClassGen<int>[], false);
+// Eval(13505, v is NotEmptyClassGen<Guid>, false);
+// Eval(13506, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13507, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13508, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13509, v is NestedClass, false);
Eval(13510, v is NestedClass[], false);
- Eval(13511, v is NestedClassGen<Decimal>, false);
- Eval(13512, v is NestedClassGen<Decimal>[], false);
+// Eval(13511, v is NestedClassGen<Decimal>, false);
+// Eval(13512, v is NestedClassGen<Decimal>[], false);
Eval(13513, v is ImplementOneInterfaceC, false);
Eval(13514, v is ImplementOneInterfaceC[], false);
Eval(13515, v is ImplementTwoInterfaceC, false);
Eval(13516, v is ImplementTwoInterfaceC[], false);
- Eval(13517, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13518, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13519, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13520, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13521, v is ImplementAllInterfaceC<int>, false);
- Eval(13522, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13517, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13518, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13519, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13520, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13521, v is ImplementAllInterfaceC<int>, false);
+// Eval(13522, v is ImplementAllInterfaceC<int>[], false);
Eval(13523, v is SealedClass, false);
Eval(13524, v is SealedClass[], false);
}
@@ -13246,26 +13246,26 @@ internal class Program
Eval(13530, v is NotEmptyStruct[], false);
Eval(13531, v is NotEmptyStruct?, false);
Eval(13532, v is NotEmptyStruct?[], false);
- Eval(13533, v is EmptyStructGen<int>, false);
- Eval(13534, v is EmptyStructGen<int>[], false);
- Eval(13535, v is EmptyStructGen<int>?, false);
- Eval(13536, v is EmptyStructGen<int>?[], false);
- Eval(13537, v is NotEmptyStructGen<Guid>, false);
- Eval(13538, v is NotEmptyStructGen<Guid>[], false);
- Eval(13539, v is NotEmptyStructGen<Guid>?, false);
- Eval(13540, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13541, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13542, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13543, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13544, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13533, v is EmptyStructGen<int>, false);
+// Eval(13534, v is EmptyStructGen<int>[], false);
+// Eval(13535, v is EmptyStructGen<int>?, false);
+// Eval(13536, v is EmptyStructGen<int>?[], false);
+// Eval(13537, v is NotEmptyStructGen<Guid>, false);
+// Eval(13538, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13539, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13540, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13541, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13542, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13543, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13544, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13545, v is NestedStruct, false);
Eval(13546, v is NestedStruct[], false);
Eval(13547, v is NestedStruct?, false);
Eval(13548, v is NestedStruct?[], false);
- Eval(13549, v is NestedStructGen<Decimal>, false);
- Eval(13550, v is NestedStructGen<Decimal>[], false);
- Eval(13551, v is NestedStructGen<Decimal>?, false);
- Eval(13552, v is NestedStructGen<Decimal>?[], false);
+// Eval(13549, v is NestedStructGen<Decimal>, false);
+// Eval(13550, v is NestedStructGen<Decimal>[], false);
+// Eval(13551, v is NestedStructGen<Decimal>?, false);
+// Eval(13552, v is NestedStructGen<Decimal>?[], false);
Eval(13553, v is ExplicitFieldOffsetStruct, false);
Eval(13554, v is ExplicitFieldOffsetStruct[], false);
Eval(13555, v is ExplicitFieldOffsetStruct?, false);
@@ -13282,18 +13282,18 @@ internal class Program
Eval(13574, v is ImplementTwoInterface[], false);
Eval(13575, v is ImplementTwoInterface?, false);
Eval(13576, v is ImplementTwoInterface?[], false);
- Eval(13577, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13578, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13579, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13580, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], true);
- Eval(13581, v is ImplementTwoInterfaceGen<int>, false);
- Eval(13582, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13583, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(13584, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13585, v is ImplementAllInterface<int>, false);
- Eval(13586, v is ImplementAllInterface<int>[], false);
- Eval(13587, v is ImplementAllInterface<int>?, false);
- Eval(13588, v is ImplementAllInterface<int>?[], false);
+// Eval(13577, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13578, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13579, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13580, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], true);
+// Eval(13581, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(13582, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13583, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13584, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13585, v is ImplementAllInterface<int>, false);
+// Eval(13586, v is ImplementAllInterface<int>[], false);
+// Eval(13587, v is ImplementAllInterface<int>?, false);
+// Eval(13588, v is ImplementAllInterface<int>?[], false);
Eval(13589, v is IntE, false);
Eval(13590, v is IntE[], false);
Eval(13591, v is IntE?, false);
@@ -13392,38 +13392,38 @@ internal class Program
Eval(13684, v is IEmpty[], false);
Eval(13685, v is INotEmpty, false);
Eval(13686, v is INotEmpty[], false);
- Eval(13687, v is IEmptyGen<int>, false);
- Eval(13688, v is IEmptyGen<int>[], false);
- Eval(13689, v is INotEmptyGen<int>, false);
- Eval(13690, v is INotEmptyGen<int>[], false);
+// Eval(13687, v is IEmptyGen<int>, false);
+// Eval(13688, v is IEmptyGen<int>[], false);
+// Eval(13689, v is INotEmptyGen<int>, false);
+// Eval(13690, v is INotEmptyGen<int>[], false);
Eval(13691, v is SimpleDelegate, false);
Eval(13692, v is SimpleDelegate[], false);
- Eval(13693, v is GenericDelegate<int>, false);
- Eval(13694, v is GenericDelegate<int>[], false);
+// Eval(13693, v is GenericDelegate<int>, false);
+// Eval(13694, v is GenericDelegate<int>[], false);
Eval(13695, v is EmptyClass, false);
Eval(13696, v is EmptyClass[], false);
Eval(13697, v is NotEmptyClass, false);
Eval(13698, v is NotEmptyClass[], false);
- Eval(13699, v is EmptyClassGen<int>, false);
- Eval(13700, v is EmptyClassGen<int>[], false);
- Eval(13701, v is NotEmptyClassGen<Guid>, false);
- Eval(13702, v is NotEmptyClassGen<Guid>[], false);
- Eval(13703, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13704, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13699, v is EmptyClassGen<int>, false);
+// Eval(13700, v is EmptyClassGen<int>[], false);
+// Eval(13701, v is NotEmptyClassGen<Guid>, false);
+// Eval(13702, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13703, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13704, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13705, v is NestedClass, false);
Eval(13706, v is NestedClass[], false);
- Eval(13707, v is NestedClassGen<Decimal>, false);
- Eval(13708, v is NestedClassGen<Decimal>[], false);
+// Eval(13707, v is NestedClassGen<Decimal>, false);
+// Eval(13708, v is NestedClassGen<Decimal>[], false);
Eval(13709, v is ImplementOneInterfaceC, false);
Eval(13710, v is ImplementOneInterfaceC[], false);
Eval(13711, v is ImplementTwoInterfaceC, false);
Eval(13712, v is ImplementTwoInterfaceC[], false);
- Eval(13713, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13714, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13715, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13716, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13717, v is ImplementAllInterfaceC<int>, false);
- Eval(13718, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13713, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13714, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13715, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13716, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13717, v is ImplementAllInterfaceC<int>, false);
+// Eval(13718, v is ImplementAllInterfaceC<int>[], false);
Eval(13719, v is SealedClass, false);
Eval(13720, v is SealedClass[], false);
}
@@ -13440,26 +13440,26 @@ internal class Program
Eval(13726, v is NotEmptyStruct[], false);
Eval(13727, v is NotEmptyStruct?, false);
Eval(13728, v is NotEmptyStruct?[], false);
- Eval(13729, v is EmptyStructGen<int>, false);
- Eval(13730, v is EmptyStructGen<int>[], false);
- Eval(13731, v is EmptyStructGen<int>?, false);
- Eval(13732, v is EmptyStructGen<int>?[], false);
- Eval(13733, v is NotEmptyStructGen<Guid>, false);
- Eval(13734, v is NotEmptyStructGen<Guid>[], false);
- Eval(13735, v is NotEmptyStructGen<Guid>?, false);
- Eval(13736, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13737, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13738, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13739, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13740, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13729, v is EmptyStructGen<int>, false);
+// Eval(13730, v is EmptyStructGen<int>[], false);
+// Eval(13731, v is EmptyStructGen<int>?, false);
+// Eval(13732, v is EmptyStructGen<int>?[], false);
+// Eval(13733, v is NotEmptyStructGen<Guid>, false);
+// Eval(13734, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13735, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13736, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13737, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13738, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13739, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13740, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13741, v is NestedStruct, false);
Eval(13742, v is NestedStruct[], false);
Eval(13743, v is NestedStruct?, false);
Eval(13744, v is NestedStruct?[], false);
- Eval(13745, v is NestedStructGen<Decimal>, false);
- Eval(13746, v is NestedStructGen<Decimal>[], false);
- Eval(13747, v is NestedStructGen<Decimal>?, false);
- Eval(13748, v is NestedStructGen<Decimal>?[], false);
+// Eval(13745, v is NestedStructGen<Decimal>, false);
+// Eval(13746, v is NestedStructGen<Decimal>[], false);
+// Eval(13747, v is NestedStructGen<Decimal>?, false);
+// Eval(13748, v is NestedStructGen<Decimal>?[], false);
Eval(13749, v is ExplicitFieldOffsetStruct, false);
Eval(13750, v is ExplicitFieldOffsetStruct[], false);
Eval(13751, v is ExplicitFieldOffsetStruct?, false);
@@ -13476,18 +13476,18 @@ internal class Program
Eval(13770, v is ImplementTwoInterface[], false);
Eval(13771, v is ImplementTwoInterface?, false);
Eval(13772, v is ImplementTwoInterface?[], false);
- Eval(13773, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13774, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13775, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13776, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13777, v is ImplementTwoInterfaceGen<int>, true);
- Eval(13778, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13779, v is ImplementTwoInterfaceGen<int>?, true);
- Eval(13780, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13781, v is ImplementAllInterface<int>, false);
- Eval(13782, v is ImplementAllInterface<int>[], false);
- Eval(13783, v is ImplementAllInterface<int>?, false);
- Eval(13784, v is ImplementAllInterface<int>?[], false);
+// Eval(13773, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13774, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13775, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13776, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13777, v is ImplementTwoInterfaceGen<int>, true);
+// Eval(13778, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13779, v is ImplementTwoInterfaceGen<int>?, true);
+// Eval(13780, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13781, v is ImplementAllInterface<int>, false);
+// Eval(13782, v is ImplementAllInterface<int>[], false);
+// Eval(13783, v is ImplementAllInterface<int>?, false);
+// Eval(13784, v is ImplementAllInterface<int>?[], false);
Eval(13785, v is IntE, false);
Eval(13786, v is IntE[], false);
Eval(13787, v is IntE?, false);
@@ -13586,38 +13586,38 @@ internal class Program
Eval(13880, v is IEmpty[], false);
Eval(13881, v is INotEmpty, false);
Eval(13882, v is INotEmpty[], false);
- Eval(13883, v is IEmptyGen<int>, true);
- Eval(13884, v is IEmptyGen<int>[], false);
- Eval(13885, v is INotEmptyGen<int>, true);
- Eval(13886, v is INotEmptyGen<int>[], false);
+// Eval(13883, v is IEmptyGen<int>, true);
+// Eval(13884, v is IEmptyGen<int>[], false);
+// Eval(13885, v is INotEmptyGen<int>, true);
+// Eval(13886, v is INotEmptyGen<int>[], false);
Eval(13887, v is SimpleDelegate, false);
Eval(13888, v is SimpleDelegate[], false);
- Eval(13889, v is GenericDelegate<int>, false);
- Eval(13890, v is GenericDelegate<int>[], false);
+// Eval(13889, v is GenericDelegate<int>, false);
+// Eval(13890, v is GenericDelegate<int>[], false);
Eval(13891, v is EmptyClass, false);
Eval(13892, v is EmptyClass[], false);
Eval(13893, v is NotEmptyClass, false);
Eval(13894, v is NotEmptyClass[], false);
- Eval(13895, v is EmptyClassGen<int>, false);
- Eval(13896, v is EmptyClassGen<int>[], false);
- Eval(13897, v is NotEmptyClassGen<Guid>, false);
- Eval(13898, v is NotEmptyClassGen<Guid>[], false);
- Eval(13899, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(13900, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13895, v is EmptyClassGen<int>, false);
+// Eval(13896, v is EmptyClassGen<int>[], false);
+// Eval(13897, v is NotEmptyClassGen<Guid>, false);
+// Eval(13898, v is NotEmptyClassGen<Guid>[], false);
+// Eval(13899, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13900, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(13901, v is NestedClass, false);
Eval(13902, v is NestedClass[], false);
- Eval(13903, v is NestedClassGen<Decimal>, false);
- Eval(13904, v is NestedClassGen<Decimal>[], false);
+// Eval(13903, v is NestedClassGen<Decimal>, false);
+// Eval(13904, v is NestedClassGen<Decimal>[], false);
Eval(13905, v is ImplementOneInterfaceC, false);
Eval(13906, v is ImplementOneInterfaceC[], false);
Eval(13907, v is ImplementTwoInterfaceC, false);
Eval(13908, v is ImplementTwoInterfaceC[], false);
- Eval(13909, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13910, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13911, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(13912, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13913, v is ImplementAllInterfaceC<int>, false);
- Eval(13914, v is ImplementAllInterfaceC<int>[], false);
+// Eval(13909, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13910, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13911, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13912, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13913, v is ImplementAllInterfaceC<int>, false);
+// Eval(13914, v is ImplementAllInterfaceC<int>[], false);
Eval(13915, v is SealedClass, false);
Eval(13916, v is SealedClass[], false);
}
@@ -13631,26 +13631,26 @@ internal class Program
Eval(13922, v is NotEmptyStruct[], false);
Eval(13923, v is NotEmptyStruct?, false);
Eval(13924, v is NotEmptyStruct?[], false);
- Eval(13925, v is EmptyStructGen<int>, false);
- Eval(13926, v is EmptyStructGen<int>[], false);
- Eval(13927, v is EmptyStructGen<int>?, false);
- Eval(13928, v is EmptyStructGen<int>?[], false);
- Eval(13929, v is NotEmptyStructGen<Guid>, false);
- Eval(13930, v is NotEmptyStructGen<Guid>[], false);
- Eval(13931, v is NotEmptyStructGen<Guid>?, false);
- Eval(13932, v is NotEmptyStructGen<Guid>?[], false);
- Eval(13933, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13934, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13935, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13936, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13925, v is EmptyStructGen<int>, false);
+// Eval(13926, v is EmptyStructGen<int>[], false);
+// Eval(13927, v is EmptyStructGen<int>?, false);
+// Eval(13928, v is EmptyStructGen<int>?[], false);
+// Eval(13929, v is NotEmptyStructGen<Guid>, false);
+// Eval(13930, v is NotEmptyStructGen<Guid>[], false);
+// Eval(13931, v is NotEmptyStructGen<Guid>?, false);
+// Eval(13932, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(13933, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13934, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13935, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13936, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13937, v is NestedStruct, false);
Eval(13938, v is NestedStruct[], false);
Eval(13939, v is NestedStruct?, false);
Eval(13940, v is NestedStruct?[], false);
- Eval(13941, v is NestedStructGen<Decimal>, false);
- Eval(13942, v is NestedStructGen<Decimal>[], false);
- Eval(13943, v is NestedStructGen<Decimal>?, false);
- Eval(13944, v is NestedStructGen<Decimal>?[], false);
+// Eval(13941, v is NestedStructGen<Decimal>, false);
+// Eval(13942, v is NestedStructGen<Decimal>[], false);
+// Eval(13943, v is NestedStructGen<Decimal>?, false);
+// Eval(13944, v is NestedStructGen<Decimal>?[], false);
Eval(13945, v is ExplicitFieldOffsetStruct, false);
Eval(13946, v is ExplicitFieldOffsetStruct[], false);
Eval(13947, v is ExplicitFieldOffsetStruct?, false);
@@ -13667,18 +13667,18 @@ internal class Program
Eval(13966, v is ImplementTwoInterface[], false);
Eval(13967, v is ImplementTwoInterface?, false);
Eval(13968, v is ImplementTwoInterface?[], false);
- Eval(13969, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13970, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13971, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13972, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13973, v is ImplementTwoInterfaceGen<int>, true);
- Eval(13974, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(13975, v is ImplementTwoInterfaceGen<int>?, true);
- Eval(13976, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13977, v is ImplementAllInterface<int>, false);
- Eval(13978, v is ImplementAllInterface<int>[], false);
- Eval(13979, v is ImplementAllInterface<int>?, false);
- Eval(13980, v is ImplementAllInterface<int>?[], false);
+// Eval(13969, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13970, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13971, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13972, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13973, v is ImplementTwoInterfaceGen<int>, true);
+// Eval(13974, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13975, v is ImplementTwoInterfaceGen<int>?, true);
+// Eval(13976, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13977, v is ImplementAllInterface<int>, false);
+// Eval(13978, v is ImplementAllInterface<int>[], false);
+// Eval(13979, v is ImplementAllInterface<int>?, false);
+// Eval(13980, v is ImplementAllInterface<int>?[], false);
Eval(13981, v is IntE, false);
Eval(13982, v is IntE[], false);
Eval(13983, v is IntE?, false);
@@ -13777,38 +13777,38 @@ internal class Program
Eval(14076, v is IEmpty[], false);
Eval(14077, v is INotEmpty, false);
Eval(14078, v is INotEmpty[], false);
- Eval(14079, v is IEmptyGen<int>, true);
- Eval(14080, v is IEmptyGen<int>[], false);
- Eval(14081, v is INotEmptyGen<int>, true);
- Eval(14082, v is INotEmptyGen<int>[], false);
+// Eval(14079, v is IEmptyGen<int>, true);
+// Eval(14080, v is IEmptyGen<int>[], false);
+// Eval(14081, v is INotEmptyGen<int>, true);
+// Eval(14082, v is INotEmptyGen<int>[], false);
Eval(14083, v is SimpleDelegate, false);
Eval(14084, v is SimpleDelegate[], false);
- Eval(14085, v is GenericDelegate<int>, false);
- Eval(14086, v is GenericDelegate<int>[], false);
+// Eval(14085, v is GenericDelegate<int>, false);
+// Eval(14086, v is GenericDelegate<int>[], false);
Eval(14087, v is EmptyClass, false);
Eval(14088, v is EmptyClass[], false);
Eval(14089, v is NotEmptyClass, false);
Eval(14090, v is NotEmptyClass[], false);
- Eval(14091, v is EmptyClassGen<int>, false);
- Eval(14092, v is EmptyClassGen<int>[], false);
- Eval(14093, v is NotEmptyClassGen<Guid>, false);
- Eval(14094, v is NotEmptyClassGen<Guid>[], false);
- Eval(14095, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14096, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14091, v is EmptyClassGen<int>, false);
+// Eval(14092, v is EmptyClassGen<int>[], false);
+// Eval(14093, v is NotEmptyClassGen<Guid>, false);
+// Eval(14094, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14095, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14096, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14097, v is NestedClass, false);
Eval(14098, v is NestedClass[], false);
- Eval(14099, v is NestedClassGen<Decimal>, false);
- Eval(14100, v is NestedClassGen<Decimal>[], false);
+// Eval(14099, v is NestedClassGen<Decimal>, false);
+// Eval(14100, v is NestedClassGen<Decimal>[], false);
Eval(14101, v is ImplementOneInterfaceC, false);
Eval(14102, v is ImplementOneInterfaceC[], false);
Eval(14103, v is ImplementTwoInterfaceC, false);
Eval(14104, v is ImplementTwoInterfaceC[], false);
- Eval(14105, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14106, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14107, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14108, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14109, v is ImplementAllInterfaceC<int>, false);
- Eval(14110, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14105, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14106, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14107, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14108, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14109, v is ImplementAllInterfaceC<int>, false);
+// Eval(14110, v is ImplementAllInterfaceC<int>[], false);
Eval(14111, v is SealedClass, false);
Eval(14112, v is SealedClass[], false);
}
@@ -13822,26 +13822,26 @@ internal class Program
Eval(14118, v is NotEmptyStruct[], false);
Eval(14119, v is NotEmptyStruct?, false);
Eval(14120, v is NotEmptyStruct?[], false);
- Eval(14121, v is EmptyStructGen<int>, false);
- Eval(14122, v is EmptyStructGen<int>[], false);
- Eval(14123, v is EmptyStructGen<int>?, false);
- Eval(14124, v is EmptyStructGen<int>?[], false);
- Eval(14125, v is NotEmptyStructGen<Guid>, false);
- Eval(14126, v is NotEmptyStructGen<Guid>[], false);
- Eval(14127, v is NotEmptyStructGen<Guid>?, false);
- Eval(14128, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14129, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14130, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14131, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14132, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14121, v is EmptyStructGen<int>, false);
+// Eval(14122, v is EmptyStructGen<int>[], false);
+// Eval(14123, v is EmptyStructGen<int>?, false);
+// Eval(14124, v is EmptyStructGen<int>?[], false);
+// Eval(14125, v is NotEmptyStructGen<Guid>, false);
+// Eval(14126, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14127, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14128, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14129, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14130, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14131, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14132, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14133, v is NestedStruct, false);
Eval(14134, v is NestedStruct[], false);
Eval(14135, v is NestedStruct?, false);
Eval(14136, v is NestedStruct?[], false);
- Eval(14137, v is NestedStructGen<Decimal>, false);
- Eval(14138, v is NestedStructGen<Decimal>[], false);
- Eval(14139, v is NestedStructGen<Decimal>?, false);
- Eval(14140, v is NestedStructGen<Decimal>?[], false);
+// Eval(14137, v is NestedStructGen<Decimal>, false);
+// Eval(14138, v is NestedStructGen<Decimal>[], false);
+// Eval(14139, v is NestedStructGen<Decimal>?, false);
+// Eval(14140, v is NestedStructGen<Decimal>?[], false);
Eval(14141, v is ExplicitFieldOffsetStruct, false);
Eval(14142, v is ExplicitFieldOffsetStruct[], false);
Eval(14143, v is ExplicitFieldOffsetStruct?, false);
@@ -13858,18 +13858,18 @@ internal class Program
Eval(14162, v is ImplementTwoInterface[], false);
Eval(14163, v is ImplementTwoInterface?, false);
Eval(14164, v is ImplementTwoInterface?[], false);
- Eval(14165, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14166, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14167, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14168, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14169, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14170, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14171, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14172, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14173, v is ImplementAllInterface<int>, false);
- Eval(14174, v is ImplementAllInterface<int>[], false);
- Eval(14175, v is ImplementAllInterface<int>?, false);
- Eval(14176, v is ImplementAllInterface<int>?[], false);
+// Eval(14165, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14166, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14167, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14168, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14169, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14170, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14171, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14172, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14173, v is ImplementAllInterface<int>, false);
+// Eval(14174, v is ImplementAllInterface<int>[], false);
+// Eval(14175, v is ImplementAllInterface<int>?, false);
+// Eval(14176, v is ImplementAllInterface<int>?[], false);
Eval(14177, v is IntE, false);
Eval(14178, v is IntE[], false);
Eval(14179, v is IntE?, false);
@@ -13968,38 +13968,38 @@ internal class Program
Eval(14272, v is IEmpty[], false);
Eval(14273, v is INotEmpty, false);
Eval(14274, v is INotEmpty[], false);
- Eval(14275, v is IEmptyGen<int>, false);
- Eval(14276, v is IEmptyGen<int>[], false);
- Eval(14277, v is INotEmptyGen<int>, false);
- Eval(14278, v is INotEmptyGen<int>[], false);
+// Eval(14275, v is IEmptyGen<int>, false);
+// Eval(14276, v is IEmptyGen<int>[], false);
+// Eval(14277, v is INotEmptyGen<int>, false);
+// Eval(14278, v is INotEmptyGen<int>[], false);
Eval(14279, v is SimpleDelegate, false);
Eval(14280, v is SimpleDelegate[], false);
- Eval(14281, v is GenericDelegate<int>, false);
- Eval(14282, v is GenericDelegate<int>[], false);
+// Eval(14281, v is GenericDelegate<int>, false);
+// Eval(14282, v is GenericDelegate<int>[], false);
Eval(14283, v is EmptyClass, false);
Eval(14284, v is EmptyClass[], false);
Eval(14285, v is NotEmptyClass, false);
Eval(14286, v is NotEmptyClass[], false);
- Eval(14287, v is EmptyClassGen<int>, false);
- Eval(14288, v is EmptyClassGen<int>[], false);
- Eval(14289, v is NotEmptyClassGen<Guid>, false);
- Eval(14290, v is NotEmptyClassGen<Guid>[], false);
- Eval(14291, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14292, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14287, v is EmptyClassGen<int>, false);
+// Eval(14288, v is EmptyClassGen<int>[], false);
+// Eval(14289, v is NotEmptyClassGen<Guid>, false);
+// Eval(14290, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14291, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14292, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14293, v is NestedClass, false);
Eval(14294, v is NestedClass[], false);
- Eval(14295, v is NestedClassGen<Decimal>, false);
- Eval(14296, v is NestedClassGen<Decimal>[], false);
+// Eval(14295, v is NestedClassGen<Decimal>, false);
+// Eval(14296, v is NestedClassGen<Decimal>[], false);
Eval(14297, v is ImplementOneInterfaceC, false);
Eval(14298, v is ImplementOneInterfaceC[], false);
Eval(14299, v is ImplementTwoInterfaceC, false);
Eval(14300, v is ImplementTwoInterfaceC[], false);
- Eval(14301, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14302, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14303, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14304, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14305, v is ImplementAllInterfaceC<int>, false);
- Eval(14306, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14301, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14302, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14303, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14304, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14305, v is ImplementAllInterfaceC<int>, false);
+// Eval(14306, v is ImplementAllInterfaceC<int>[], false);
Eval(14307, v is SealedClass, false);
Eval(14308, v is SealedClass[], false);
}
@@ -14013,26 +14013,26 @@ internal class Program
Eval(14314, v is NotEmptyStruct[], false);
Eval(14315, v is NotEmptyStruct?, false);
Eval(14316, v is NotEmptyStruct?[], false);
- Eval(14317, v is EmptyStructGen<int>, false);
- Eval(14318, v is EmptyStructGen<int>[], false);
- Eval(14319, v is EmptyStructGen<int>?, false);
- Eval(14320, v is EmptyStructGen<int>?[], false);
- Eval(14321, v is NotEmptyStructGen<Guid>, false);
- Eval(14322, v is NotEmptyStructGen<Guid>[], false);
- Eval(14323, v is NotEmptyStructGen<Guid>?, false);
- Eval(14324, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14325, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14326, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14327, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14328, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14317, v is EmptyStructGen<int>, false);
+// Eval(14318, v is EmptyStructGen<int>[], false);
+// Eval(14319, v is EmptyStructGen<int>?, false);
+// Eval(14320, v is EmptyStructGen<int>?[], false);
+// Eval(14321, v is NotEmptyStructGen<Guid>, false);
+// Eval(14322, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14323, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14324, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14325, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14326, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14327, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14328, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14329, v is NestedStruct, false);
Eval(14330, v is NestedStruct[], false);
Eval(14331, v is NestedStruct?, false);
Eval(14332, v is NestedStruct?[], false);
- Eval(14333, v is NestedStructGen<Decimal>, false);
- Eval(14334, v is NestedStructGen<Decimal>[], false);
- Eval(14335, v is NestedStructGen<Decimal>?, false);
- Eval(14336, v is NestedStructGen<Decimal>?[], false);
+// Eval(14333, v is NestedStructGen<Decimal>, false);
+// Eval(14334, v is NestedStructGen<Decimal>[], false);
+// Eval(14335, v is NestedStructGen<Decimal>?, false);
+// Eval(14336, v is NestedStructGen<Decimal>?[], false);
Eval(14337, v is ExplicitFieldOffsetStruct, false);
Eval(14338, v is ExplicitFieldOffsetStruct[], false);
Eval(14339, v is ExplicitFieldOffsetStruct?, false);
@@ -14049,18 +14049,18 @@ internal class Program
Eval(14358, v is ImplementTwoInterface[], false);
Eval(14359, v is ImplementTwoInterface?, false);
Eval(14360, v is ImplementTwoInterface?[], false);
- Eval(14361, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14362, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14363, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14364, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14365, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14366, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14367, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14368, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14369, v is ImplementAllInterface<int>, false);
- Eval(14370, v is ImplementAllInterface<int>[], false);
- Eval(14371, v is ImplementAllInterface<int>?, false);
- Eval(14372, v is ImplementAllInterface<int>?[], false);
+// Eval(14361, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14362, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14363, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14364, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14365, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14366, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14367, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14368, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14369, v is ImplementAllInterface<int>, false);
+// Eval(14370, v is ImplementAllInterface<int>[], false);
+// Eval(14371, v is ImplementAllInterface<int>?, false);
+// Eval(14372, v is ImplementAllInterface<int>?[], false);
Eval(14373, v is IntE, false);
Eval(14374, v is IntE[], false);
Eval(14375, v is IntE?, false);
@@ -14159,38 +14159,38 @@ internal class Program
Eval(14468, v is IEmpty[], false);
Eval(14469, v is INotEmpty, false);
Eval(14470, v is INotEmpty[], false);
- Eval(14471, v is IEmptyGen<int>, false);
- Eval(14472, v is IEmptyGen<int>[], false);
- Eval(14473, v is INotEmptyGen<int>, false);
- Eval(14474, v is INotEmptyGen<int>[], false);
+// Eval(14471, v is IEmptyGen<int>, false);
+// Eval(14472, v is IEmptyGen<int>[], false);
+// Eval(14473, v is INotEmptyGen<int>, false);
+// Eval(14474, v is INotEmptyGen<int>[], false);
Eval(14475, v is SimpleDelegate, false);
Eval(14476, v is SimpleDelegate[], false);
- Eval(14477, v is GenericDelegate<int>, false);
- Eval(14478, v is GenericDelegate<int>[], false);
+// Eval(14477, v is GenericDelegate<int>, false);
+// Eval(14478, v is GenericDelegate<int>[], false);
Eval(14479, v is EmptyClass, false);
Eval(14480, v is EmptyClass[], false);
Eval(14481, v is NotEmptyClass, false);
Eval(14482, v is NotEmptyClass[], false);
- Eval(14483, v is EmptyClassGen<int>, false);
- Eval(14484, v is EmptyClassGen<int>[], false);
- Eval(14485, v is NotEmptyClassGen<Guid>, false);
- Eval(14486, v is NotEmptyClassGen<Guid>[], false);
- Eval(14487, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14488, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14483, v is EmptyClassGen<int>, false);
+// Eval(14484, v is EmptyClassGen<int>[], false);
+// Eval(14485, v is NotEmptyClassGen<Guid>, false);
+// Eval(14486, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14487, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14488, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14489, v is NestedClass, false);
Eval(14490, v is NestedClass[], false);
- Eval(14491, v is NestedClassGen<Decimal>, false);
- Eval(14492, v is NestedClassGen<Decimal>[], false);
+// Eval(14491, v is NestedClassGen<Decimal>, false);
+// Eval(14492, v is NestedClassGen<Decimal>[], false);
Eval(14493, v is ImplementOneInterfaceC, false);
Eval(14494, v is ImplementOneInterfaceC[], false);
Eval(14495, v is ImplementTwoInterfaceC, false);
Eval(14496, v is ImplementTwoInterfaceC[], false);
- Eval(14497, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14498, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14499, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14500, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14501, v is ImplementAllInterfaceC<int>, false);
- Eval(14502, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14497, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14498, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14499, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14500, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14501, v is ImplementAllInterfaceC<int>, false);
+// Eval(14502, v is ImplementAllInterfaceC<int>[], false);
Eval(14503, v is SealedClass, false);
Eval(14504, v is SealedClass[], false);
}
@@ -14204,26 +14204,26 @@ internal class Program
Eval(14510, v is NotEmptyStruct[], false);
Eval(14511, v is NotEmptyStruct?, false);
Eval(14512, v is NotEmptyStruct?[], false);
- Eval(14513, v is EmptyStructGen<int>, false);
- Eval(14514, v is EmptyStructGen<int>[], false);
- Eval(14515, v is EmptyStructGen<int>?, false);
- Eval(14516, v is EmptyStructGen<int>?[], false);
- Eval(14517, v is NotEmptyStructGen<Guid>, false);
- Eval(14518, v is NotEmptyStructGen<Guid>[], false);
- Eval(14519, v is NotEmptyStructGen<Guid>?, false);
- Eval(14520, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14521, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14522, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14523, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14524, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14513, v is EmptyStructGen<int>, false);
+// Eval(14514, v is EmptyStructGen<int>[], false);
+// Eval(14515, v is EmptyStructGen<int>?, false);
+// Eval(14516, v is EmptyStructGen<int>?[], false);
+// Eval(14517, v is NotEmptyStructGen<Guid>, false);
+// Eval(14518, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14519, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14520, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14521, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14522, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14523, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14524, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14525, v is NestedStruct, false);
Eval(14526, v is NestedStruct[], false);
Eval(14527, v is NestedStruct?, false);
Eval(14528, v is NestedStruct?[], false);
- Eval(14529, v is NestedStructGen<Decimal>, false);
- Eval(14530, v is NestedStructGen<Decimal>[], false);
- Eval(14531, v is NestedStructGen<Decimal>?, false);
- Eval(14532, v is NestedStructGen<Decimal>?[], false);
+// Eval(14529, v is NestedStructGen<Decimal>, false);
+// Eval(14530, v is NestedStructGen<Decimal>[], false);
+// Eval(14531, v is NestedStructGen<Decimal>?, false);
+// Eval(14532, v is NestedStructGen<Decimal>?[], false);
Eval(14533, v is ExplicitFieldOffsetStruct, false);
Eval(14534, v is ExplicitFieldOffsetStruct[], false);
Eval(14535, v is ExplicitFieldOffsetStruct?, false);
@@ -14240,18 +14240,18 @@ internal class Program
Eval(14554, v is ImplementTwoInterface[], false);
Eval(14555, v is ImplementTwoInterface?, false);
Eval(14556, v is ImplementTwoInterface?[], false);
- Eval(14557, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14558, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14559, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14560, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14561, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14562, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14563, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14564, v is ImplementTwoInterfaceGen<int>?[], true);
- Eval(14565, v is ImplementAllInterface<int>, false);
- Eval(14566, v is ImplementAllInterface<int>[], false);
- Eval(14567, v is ImplementAllInterface<int>?, false);
- Eval(14568, v is ImplementAllInterface<int>?[], false);
+// Eval(14557, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14558, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14559, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14560, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14561, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14562, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14563, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14564, v is ImplementTwoInterfaceGen<int>?[], true);
+// Eval(14565, v is ImplementAllInterface<int>, false);
+// Eval(14566, v is ImplementAllInterface<int>[], false);
+// Eval(14567, v is ImplementAllInterface<int>?, false);
+// Eval(14568, v is ImplementAllInterface<int>?[], false);
Eval(14569, v is IntE, false);
Eval(14570, v is IntE[], false);
Eval(14571, v is IntE?, false);
@@ -14350,38 +14350,38 @@ internal class Program
Eval(14664, v is IEmpty[], false);
Eval(14665, v is INotEmpty, false);
Eval(14666, v is INotEmpty[], false);
- Eval(14667, v is IEmptyGen<int>, false);
- Eval(14668, v is IEmptyGen<int>[], false);
- Eval(14669, v is INotEmptyGen<int>, false);
- Eval(14670, v is INotEmptyGen<int>[], false);
+// Eval(14667, v is IEmptyGen<int>, false);
+// Eval(14668, v is IEmptyGen<int>[], false);
+// Eval(14669, v is INotEmptyGen<int>, false);
+// Eval(14670, v is INotEmptyGen<int>[], false);
Eval(14671, v is SimpleDelegate, false);
Eval(14672, v is SimpleDelegate[], false);
- Eval(14673, v is GenericDelegate<int>, false);
- Eval(14674, v is GenericDelegate<int>[], false);
+// Eval(14673, v is GenericDelegate<int>, false);
+// Eval(14674, v is GenericDelegate<int>[], false);
Eval(14675, v is EmptyClass, false);
Eval(14676, v is EmptyClass[], false);
Eval(14677, v is NotEmptyClass, false);
Eval(14678, v is NotEmptyClass[], false);
- Eval(14679, v is EmptyClassGen<int>, false);
- Eval(14680, v is EmptyClassGen<int>[], false);
- Eval(14681, v is NotEmptyClassGen<Guid>, false);
- Eval(14682, v is NotEmptyClassGen<Guid>[], false);
- Eval(14683, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14684, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14679, v is EmptyClassGen<int>, false);
+// Eval(14680, v is EmptyClassGen<int>[], false);
+// Eval(14681, v is NotEmptyClassGen<Guid>, false);
+// Eval(14682, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14683, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14684, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14685, v is NestedClass, false);
Eval(14686, v is NestedClass[], false);
- Eval(14687, v is NestedClassGen<Decimal>, false);
- Eval(14688, v is NestedClassGen<Decimal>[], false);
+// Eval(14687, v is NestedClassGen<Decimal>, false);
+// Eval(14688, v is NestedClassGen<Decimal>[], false);
Eval(14689, v is ImplementOneInterfaceC, false);
Eval(14690, v is ImplementOneInterfaceC[], false);
Eval(14691, v is ImplementTwoInterfaceC, false);
Eval(14692, v is ImplementTwoInterfaceC[], false);
- Eval(14693, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14694, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14695, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14696, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14697, v is ImplementAllInterfaceC<int>, false);
- Eval(14698, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14693, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14694, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14695, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14696, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14697, v is ImplementAllInterfaceC<int>, false);
+// Eval(14698, v is ImplementAllInterfaceC<int>[], false);
Eval(14699, v is SealedClass, false);
Eval(14700, v is SealedClass[], false);
}
@@ -14398,26 +14398,26 @@ internal class Program
Eval(14706, v is NotEmptyStruct[], false);
Eval(14707, v is NotEmptyStruct?, false);
Eval(14708, v is NotEmptyStruct?[], false);
- Eval(14709, v is EmptyStructGen<int>, false);
- Eval(14710, v is EmptyStructGen<int>[], false);
- Eval(14711, v is EmptyStructGen<int>?, false);
- Eval(14712, v is EmptyStructGen<int>?[], false);
- Eval(14713, v is NotEmptyStructGen<Guid>, false);
- Eval(14714, v is NotEmptyStructGen<Guid>[], false);
- Eval(14715, v is NotEmptyStructGen<Guid>?, false);
- Eval(14716, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14717, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14718, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14719, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14720, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14709, v is EmptyStructGen<int>, false);
+// Eval(14710, v is EmptyStructGen<int>[], false);
+// Eval(14711, v is EmptyStructGen<int>?, false);
+// Eval(14712, v is EmptyStructGen<int>?[], false);
+// Eval(14713, v is NotEmptyStructGen<Guid>, false);
+// Eval(14714, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14715, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14716, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14717, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14718, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14719, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14720, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14721, v is NestedStruct, false);
Eval(14722, v is NestedStruct[], false);
Eval(14723, v is NestedStruct?, false);
Eval(14724, v is NestedStruct?[], false);
- Eval(14725, v is NestedStructGen<Decimal>, false);
- Eval(14726, v is NestedStructGen<Decimal>[], false);
- Eval(14727, v is NestedStructGen<Decimal>?, false);
- Eval(14728, v is NestedStructGen<Decimal>?[], false);
+// Eval(14725, v is NestedStructGen<Decimal>, false);
+// Eval(14726, v is NestedStructGen<Decimal>[], false);
+// Eval(14727, v is NestedStructGen<Decimal>?, false);
+// Eval(14728, v is NestedStructGen<Decimal>?[], false);
Eval(14729, v is ExplicitFieldOffsetStruct, false);
Eval(14730, v is ExplicitFieldOffsetStruct[], false);
Eval(14731, v is ExplicitFieldOffsetStruct?, false);
@@ -14434,18 +14434,18 @@ internal class Program
Eval(14750, v is ImplementTwoInterface[], false);
Eval(14751, v is ImplementTwoInterface?, false);
Eval(14752, v is ImplementTwoInterface?[], false);
- Eval(14753, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14754, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14755, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14756, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14757, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14758, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14759, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14760, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14761, v is ImplementAllInterface<int>, true);
- Eval(14762, v is ImplementAllInterface<int>[], false);
- Eval(14763, v is ImplementAllInterface<int>?, true);
- Eval(14764, v is ImplementAllInterface<int>?[], false);
+// Eval(14753, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14754, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14755, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14756, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14757, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14758, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14759, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14760, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14761, v is ImplementAllInterface<int>, true);
+// Eval(14762, v is ImplementAllInterface<int>[], false);
+// Eval(14763, v is ImplementAllInterface<int>?, true);
+// Eval(14764, v is ImplementAllInterface<int>?[], false);
Eval(14765, v is IntE, false);
Eval(14766, v is IntE[], false);
Eval(14767, v is IntE?, false);
@@ -14544,38 +14544,38 @@ internal class Program
Eval(14860, v is IEmpty[], false);
Eval(14861, v is INotEmpty, true);
Eval(14862, v is INotEmpty[], false);
- Eval(14863, v is IEmptyGen<int>, true);
- Eval(14864, v is IEmptyGen<int>[], false);
- Eval(14865, v is INotEmptyGen<int>, true);
- Eval(14866, v is INotEmptyGen<int>[], false);
+// Eval(14863, v is IEmptyGen<int>, true);
+// Eval(14864, v is IEmptyGen<int>[], false);
+// Eval(14865, v is INotEmptyGen<int>, true);
+// Eval(14866, v is INotEmptyGen<int>[], false);
Eval(14867, v is SimpleDelegate, false);
Eval(14868, v is SimpleDelegate[], false);
- Eval(14869, v is GenericDelegate<int>, false);
- Eval(14870, v is GenericDelegate<int>[], false);
+// Eval(14869, v is GenericDelegate<int>, false);
+// Eval(14870, v is GenericDelegate<int>[], false);
Eval(14871, v is EmptyClass, false);
Eval(14872, v is EmptyClass[], false);
Eval(14873, v is NotEmptyClass, false);
Eval(14874, v is NotEmptyClass[], false);
- Eval(14875, v is EmptyClassGen<int>, false);
- Eval(14876, v is EmptyClassGen<int>[], false);
- Eval(14877, v is NotEmptyClassGen<Guid>, false);
- Eval(14878, v is NotEmptyClassGen<Guid>[], false);
- Eval(14879, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(14880, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14875, v is EmptyClassGen<int>, false);
+// Eval(14876, v is EmptyClassGen<int>[], false);
+// Eval(14877, v is NotEmptyClassGen<Guid>, false);
+// Eval(14878, v is NotEmptyClassGen<Guid>[], false);
+// Eval(14879, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14880, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(14881, v is NestedClass, false);
Eval(14882, v is NestedClass[], false);
- Eval(14883, v is NestedClassGen<Decimal>, false);
- Eval(14884, v is NestedClassGen<Decimal>[], false);
+// Eval(14883, v is NestedClassGen<Decimal>, false);
+// Eval(14884, v is NestedClassGen<Decimal>[], false);
Eval(14885, v is ImplementOneInterfaceC, false);
Eval(14886, v is ImplementOneInterfaceC[], false);
Eval(14887, v is ImplementTwoInterfaceC, false);
Eval(14888, v is ImplementTwoInterfaceC[], false);
- Eval(14889, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14890, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14891, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(14892, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14893, v is ImplementAllInterfaceC<int>, false);
- Eval(14894, v is ImplementAllInterfaceC<int>[], false);
+// Eval(14889, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14890, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14891, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14892, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14893, v is ImplementAllInterfaceC<int>, false);
+// Eval(14894, v is ImplementAllInterfaceC<int>[], false);
Eval(14895, v is SealedClass, false);
Eval(14896, v is SealedClass[], false);
}
@@ -14589,26 +14589,26 @@ internal class Program
Eval(14902, v is NotEmptyStruct[], false);
Eval(14903, v is NotEmptyStruct?, false);
Eval(14904, v is NotEmptyStruct?[], false);
- Eval(14905, v is EmptyStructGen<int>, false);
- Eval(14906, v is EmptyStructGen<int>[], false);
- Eval(14907, v is EmptyStructGen<int>?, false);
- Eval(14908, v is EmptyStructGen<int>?[], false);
- Eval(14909, v is NotEmptyStructGen<Guid>, false);
- Eval(14910, v is NotEmptyStructGen<Guid>[], false);
- Eval(14911, v is NotEmptyStructGen<Guid>?, false);
- Eval(14912, v is NotEmptyStructGen<Guid>?[], false);
- Eval(14913, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14914, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14915, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14916, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14905, v is EmptyStructGen<int>, false);
+// Eval(14906, v is EmptyStructGen<int>[], false);
+// Eval(14907, v is EmptyStructGen<int>?, false);
+// Eval(14908, v is EmptyStructGen<int>?[], false);
+// Eval(14909, v is NotEmptyStructGen<Guid>, false);
+// Eval(14910, v is NotEmptyStructGen<Guid>[], false);
+// Eval(14911, v is NotEmptyStructGen<Guid>?, false);
+// Eval(14912, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(14913, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14914, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14915, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14916, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14917, v is NestedStruct, false);
Eval(14918, v is NestedStruct[], false);
Eval(14919, v is NestedStruct?, false);
Eval(14920, v is NestedStruct?[], false);
- Eval(14921, v is NestedStructGen<Decimal>, false);
- Eval(14922, v is NestedStructGen<Decimal>[], false);
- Eval(14923, v is NestedStructGen<Decimal>?, false);
- Eval(14924, v is NestedStructGen<Decimal>?[], false);
+// Eval(14921, v is NestedStructGen<Decimal>, false);
+// Eval(14922, v is NestedStructGen<Decimal>[], false);
+// Eval(14923, v is NestedStructGen<Decimal>?, false);
+// Eval(14924, v is NestedStructGen<Decimal>?[], false);
Eval(14925, v is ExplicitFieldOffsetStruct, false);
Eval(14926, v is ExplicitFieldOffsetStruct[], false);
Eval(14927, v is ExplicitFieldOffsetStruct?, false);
@@ -14625,18 +14625,18 @@ internal class Program
Eval(14946, v is ImplementTwoInterface[], false);
Eval(14947, v is ImplementTwoInterface?, false);
Eval(14948, v is ImplementTwoInterface?[], false);
- Eval(14949, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14950, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14951, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14952, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14953, v is ImplementTwoInterfaceGen<int>, false);
- Eval(14954, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(14955, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(14956, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14957, v is ImplementAllInterface<int>, true);
- Eval(14958, v is ImplementAllInterface<int>[], false);
- Eval(14959, v is ImplementAllInterface<int>?, true);
- Eval(14960, v is ImplementAllInterface<int>?[], false);
+// Eval(14949, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14950, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14951, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14952, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14953, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(14954, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14955, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14956, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14957, v is ImplementAllInterface<int>, true);
+// Eval(14958, v is ImplementAllInterface<int>[], false);
+// Eval(14959, v is ImplementAllInterface<int>?, true);
+// Eval(14960, v is ImplementAllInterface<int>?[], false);
Eval(14961, v is IntE, false);
Eval(14962, v is IntE[], false);
Eval(14963, v is IntE?, false);
@@ -14735,38 +14735,38 @@ internal class Program
Eval(15056, v is IEmpty[], false);
Eval(15057, v is INotEmpty, true);
Eval(15058, v is INotEmpty[], false);
- Eval(15059, v is IEmptyGen<int>, true);
- Eval(15060, v is IEmptyGen<int>[], false);
- Eval(15061, v is INotEmptyGen<int>, true);
- Eval(15062, v is INotEmptyGen<int>[], false);
+// Eval(15059, v is IEmptyGen<int>, true);
+// Eval(15060, v is IEmptyGen<int>[], false);
+// Eval(15061, v is INotEmptyGen<int>, true);
+// Eval(15062, v is INotEmptyGen<int>[], false);
Eval(15063, v is SimpleDelegate, false);
Eval(15064, v is SimpleDelegate[], false);
- Eval(15065, v is GenericDelegate<int>, false);
- Eval(15066, v is GenericDelegate<int>[], false);
+// Eval(15065, v is GenericDelegate<int>, false);
+// Eval(15066, v is GenericDelegate<int>[], false);
Eval(15067, v is EmptyClass, false);
Eval(15068, v is EmptyClass[], false);
Eval(15069, v is NotEmptyClass, false);
Eval(15070, v is NotEmptyClass[], false);
- Eval(15071, v is EmptyClassGen<int>, false);
- Eval(15072, v is EmptyClassGen<int>[], false);
- Eval(15073, v is NotEmptyClassGen<Guid>, false);
- Eval(15074, v is NotEmptyClassGen<Guid>[], false);
- Eval(15075, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15076, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15071, v is EmptyClassGen<int>, false);
+// Eval(15072, v is EmptyClassGen<int>[], false);
+// Eval(15073, v is NotEmptyClassGen<Guid>, false);
+// Eval(15074, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15075, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15076, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15077, v is NestedClass, false);
Eval(15078, v is NestedClass[], false);
- Eval(15079, v is NestedClassGen<Decimal>, false);
- Eval(15080, v is NestedClassGen<Decimal>[], false);
+// Eval(15079, v is NestedClassGen<Decimal>, false);
+// Eval(15080, v is NestedClassGen<Decimal>[], false);
Eval(15081, v is ImplementOneInterfaceC, false);
Eval(15082, v is ImplementOneInterfaceC[], false);
Eval(15083, v is ImplementTwoInterfaceC, false);
Eval(15084, v is ImplementTwoInterfaceC[], false);
- Eval(15085, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15086, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15087, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15088, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15089, v is ImplementAllInterfaceC<int>, false);
- Eval(15090, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15085, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15086, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15087, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15088, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15089, v is ImplementAllInterfaceC<int>, false);
+// Eval(15090, v is ImplementAllInterfaceC<int>[], false);
Eval(15091, v is SealedClass, false);
Eval(15092, v is SealedClass[], false);
}
@@ -14780,26 +14780,26 @@ internal class Program
Eval(15098, v is NotEmptyStruct[], false);
Eval(15099, v is NotEmptyStruct?, false);
Eval(15100, v is NotEmptyStruct?[], false);
- Eval(15101, v is EmptyStructGen<int>, false);
- Eval(15102, v is EmptyStructGen<int>[], false);
- Eval(15103, v is EmptyStructGen<int>?, false);
- Eval(15104, v is EmptyStructGen<int>?[], false);
- Eval(15105, v is NotEmptyStructGen<Guid>, false);
- Eval(15106, v is NotEmptyStructGen<Guid>[], false);
- Eval(15107, v is NotEmptyStructGen<Guid>?, false);
- Eval(15108, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15109, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15110, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15111, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15112, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15101, v is EmptyStructGen<int>, false);
+// Eval(15102, v is EmptyStructGen<int>[], false);
+// Eval(15103, v is EmptyStructGen<int>?, false);
+// Eval(15104, v is EmptyStructGen<int>?[], false);
+// Eval(15105, v is NotEmptyStructGen<Guid>, false);
+// Eval(15106, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15107, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15108, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15109, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15110, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15111, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15112, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15113, v is NestedStruct, false);
Eval(15114, v is NestedStruct[], false);
Eval(15115, v is NestedStruct?, false);
Eval(15116, v is NestedStruct?[], false);
- Eval(15117, v is NestedStructGen<Decimal>, false);
- Eval(15118, v is NestedStructGen<Decimal>[], false);
- Eval(15119, v is NestedStructGen<Decimal>?, false);
- Eval(15120, v is NestedStructGen<Decimal>?[], false);
+// Eval(15117, v is NestedStructGen<Decimal>, false);
+// Eval(15118, v is NestedStructGen<Decimal>[], false);
+// Eval(15119, v is NestedStructGen<Decimal>?, false);
+// Eval(15120, v is NestedStructGen<Decimal>?[], false);
Eval(15121, v is ExplicitFieldOffsetStruct, false);
Eval(15122, v is ExplicitFieldOffsetStruct[], false);
Eval(15123, v is ExplicitFieldOffsetStruct?, false);
@@ -14816,18 +14816,18 @@ internal class Program
Eval(15142, v is ImplementTwoInterface[], false);
Eval(15143, v is ImplementTwoInterface?, false);
Eval(15144, v is ImplementTwoInterface?[], false);
- Eval(15145, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15146, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15147, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15148, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15149, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15150, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15151, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15152, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15153, v is ImplementAllInterface<int>, false);
- Eval(15154, v is ImplementAllInterface<int>[], false);
- Eval(15155, v is ImplementAllInterface<int>?, false);
- Eval(15156, v is ImplementAllInterface<int>?[], false);
+// Eval(15145, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15146, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15147, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15148, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15149, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15150, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15151, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15152, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15153, v is ImplementAllInterface<int>, false);
+// Eval(15154, v is ImplementAllInterface<int>[], false);
+// Eval(15155, v is ImplementAllInterface<int>?, false);
+// Eval(15156, v is ImplementAllInterface<int>?[], false);
Eval(15157, v is IntE, false);
Eval(15158, v is IntE[], false);
Eval(15159, v is IntE?, false);
@@ -14926,38 +14926,38 @@ internal class Program
Eval(15252, v is IEmpty[], false);
Eval(15253, v is INotEmpty, false);
Eval(15254, v is INotEmpty[], false);
- Eval(15255, v is IEmptyGen<int>, false);
- Eval(15256, v is IEmptyGen<int>[], false);
- Eval(15257, v is INotEmptyGen<int>, false);
- Eval(15258, v is INotEmptyGen<int>[], false);
+// Eval(15255, v is IEmptyGen<int>, false);
+// Eval(15256, v is IEmptyGen<int>[], false);
+// Eval(15257, v is INotEmptyGen<int>, false);
+// Eval(15258, v is INotEmptyGen<int>[], false);
Eval(15259, v is SimpleDelegate, false);
Eval(15260, v is SimpleDelegate[], false);
- Eval(15261, v is GenericDelegate<int>, false);
- Eval(15262, v is GenericDelegate<int>[], false);
+// Eval(15261, v is GenericDelegate<int>, false);
+// Eval(15262, v is GenericDelegate<int>[], false);
Eval(15263, v is EmptyClass, false);
Eval(15264, v is EmptyClass[], false);
Eval(15265, v is NotEmptyClass, false);
Eval(15266, v is NotEmptyClass[], false);
- Eval(15267, v is EmptyClassGen<int>, false);
- Eval(15268, v is EmptyClassGen<int>[], false);
- Eval(15269, v is NotEmptyClassGen<Guid>, false);
- Eval(15270, v is NotEmptyClassGen<Guid>[], false);
- Eval(15271, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15272, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15267, v is EmptyClassGen<int>, false);
+// Eval(15268, v is EmptyClassGen<int>[], false);
+// Eval(15269, v is NotEmptyClassGen<Guid>, false);
+// Eval(15270, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15271, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15272, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15273, v is NestedClass, false);
Eval(15274, v is NestedClass[], false);
- Eval(15275, v is NestedClassGen<Decimal>, false);
- Eval(15276, v is NestedClassGen<Decimal>[], false);
+// Eval(15275, v is NestedClassGen<Decimal>, false);
+// Eval(15276, v is NestedClassGen<Decimal>[], false);
Eval(15277, v is ImplementOneInterfaceC, false);
Eval(15278, v is ImplementOneInterfaceC[], false);
Eval(15279, v is ImplementTwoInterfaceC, false);
Eval(15280, v is ImplementTwoInterfaceC[], false);
- Eval(15281, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15282, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15283, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15284, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15285, v is ImplementAllInterfaceC<int>, false);
- Eval(15286, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15281, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15282, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15283, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15284, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15285, v is ImplementAllInterfaceC<int>, false);
+// Eval(15286, v is ImplementAllInterfaceC<int>[], false);
Eval(15287, v is SealedClass, false);
Eval(15288, v is SealedClass[], false);
}
@@ -14971,26 +14971,26 @@ internal class Program
Eval(15294, v is NotEmptyStruct[], false);
Eval(15295, v is NotEmptyStruct?, false);
Eval(15296, v is NotEmptyStruct?[], false);
- Eval(15297, v is EmptyStructGen<int>, false);
- Eval(15298, v is EmptyStructGen<int>[], false);
- Eval(15299, v is EmptyStructGen<int>?, false);
- Eval(15300, v is EmptyStructGen<int>?[], false);
- Eval(15301, v is NotEmptyStructGen<Guid>, false);
- Eval(15302, v is NotEmptyStructGen<Guid>[], false);
- Eval(15303, v is NotEmptyStructGen<Guid>?, false);
- Eval(15304, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15305, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15306, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15307, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15308, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15297, v is EmptyStructGen<int>, false);
+// Eval(15298, v is EmptyStructGen<int>[], false);
+// Eval(15299, v is EmptyStructGen<int>?, false);
+// Eval(15300, v is EmptyStructGen<int>?[], false);
+// Eval(15301, v is NotEmptyStructGen<Guid>, false);
+// Eval(15302, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15303, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15304, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15305, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15306, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15307, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15308, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15309, v is NestedStruct, false);
Eval(15310, v is NestedStruct[], false);
Eval(15311, v is NestedStruct?, false);
Eval(15312, v is NestedStruct?[], false);
- Eval(15313, v is NestedStructGen<Decimal>, false);
- Eval(15314, v is NestedStructGen<Decimal>[], false);
- Eval(15315, v is NestedStructGen<Decimal>?, false);
- Eval(15316, v is NestedStructGen<Decimal>?[], false);
+// Eval(15313, v is NestedStructGen<Decimal>, false);
+// Eval(15314, v is NestedStructGen<Decimal>[], false);
+// Eval(15315, v is NestedStructGen<Decimal>?, false);
+// Eval(15316, v is NestedStructGen<Decimal>?[], false);
Eval(15317, v is ExplicitFieldOffsetStruct, false);
Eval(15318, v is ExplicitFieldOffsetStruct[], false);
Eval(15319, v is ExplicitFieldOffsetStruct?, false);
@@ -15007,18 +15007,18 @@ internal class Program
Eval(15338, v is ImplementTwoInterface[], false);
Eval(15339, v is ImplementTwoInterface?, false);
Eval(15340, v is ImplementTwoInterface?[], false);
- Eval(15341, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15342, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15343, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15344, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15345, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15346, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15347, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15348, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15349, v is ImplementAllInterface<int>, false);
- Eval(15350, v is ImplementAllInterface<int>[], false);
- Eval(15351, v is ImplementAllInterface<int>?, false);
- Eval(15352, v is ImplementAllInterface<int>?[], false);
+// Eval(15341, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15342, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15343, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15344, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15345, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15346, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15347, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15348, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15349, v is ImplementAllInterface<int>, false);
+// Eval(15350, v is ImplementAllInterface<int>[], false);
+// Eval(15351, v is ImplementAllInterface<int>?, false);
+// Eval(15352, v is ImplementAllInterface<int>?[], false);
Eval(15353, v is IntE, false);
Eval(15354, v is IntE[], false);
Eval(15355, v is IntE?, false);
@@ -15117,38 +15117,38 @@ internal class Program
Eval(15448, v is IEmpty[], false);
Eval(15449, v is INotEmpty, false);
Eval(15450, v is INotEmpty[], false);
- Eval(15451, v is IEmptyGen<int>, false);
- Eval(15452, v is IEmptyGen<int>[], false);
- Eval(15453, v is INotEmptyGen<int>, false);
- Eval(15454, v is INotEmptyGen<int>[], false);
+// Eval(15451, v is IEmptyGen<int>, false);
+// Eval(15452, v is IEmptyGen<int>[], false);
+// Eval(15453, v is INotEmptyGen<int>, false);
+// Eval(15454, v is INotEmptyGen<int>[], false);
Eval(15455, v is SimpleDelegate, false);
Eval(15456, v is SimpleDelegate[], false);
- Eval(15457, v is GenericDelegate<int>, false);
- Eval(15458, v is GenericDelegate<int>[], false);
+// Eval(15457, v is GenericDelegate<int>, false);
+// Eval(15458, v is GenericDelegate<int>[], false);
Eval(15459, v is EmptyClass, false);
Eval(15460, v is EmptyClass[], false);
Eval(15461, v is NotEmptyClass, false);
Eval(15462, v is NotEmptyClass[], false);
- Eval(15463, v is EmptyClassGen<int>, false);
- Eval(15464, v is EmptyClassGen<int>[], false);
- Eval(15465, v is NotEmptyClassGen<Guid>, false);
- Eval(15466, v is NotEmptyClassGen<Guid>[], false);
- Eval(15467, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15468, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15463, v is EmptyClassGen<int>, false);
+// Eval(15464, v is EmptyClassGen<int>[], false);
+// Eval(15465, v is NotEmptyClassGen<Guid>, false);
+// Eval(15466, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15467, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15468, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15469, v is NestedClass, false);
Eval(15470, v is NestedClass[], false);
- Eval(15471, v is NestedClassGen<Decimal>, false);
- Eval(15472, v is NestedClassGen<Decimal>[], false);
+// Eval(15471, v is NestedClassGen<Decimal>, false);
+// Eval(15472, v is NestedClassGen<Decimal>[], false);
Eval(15473, v is ImplementOneInterfaceC, false);
Eval(15474, v is ImplementOneInterfaceC[], false);
Eval(15475, v is ImplementTwoInterfaceC, false);
Eval(15476, v is ImplementTwoInterfaceC[], false);
- Eval(15477, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15478, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15479, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15480, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15481, v is ImplementAllInterfaceC<int>, false);
- Eval(15482, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15477, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15478, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15479, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15480, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15481, v is ImplementAllInterfaceC<int>, false);
+// Eval(15482, v is ImplementAllInterfaceC<int>[], false);
Eval(15483, v is SealedClass, false);
Eval(15484, v is SealedClass[], false);
}
@@ -15162,26 +15162,26 @@ internal class Program
Eval(15490, v is NotEmptyStruct[], false);
Eval(15491, v is NotEmptyStruct?, false);
Eval(15492, v is NotEmptyStruct?[], false);
- Eval(15493, v is EmptyStructGen<int>, false);
- Eval(15494, v is EmptyStructGen<int>[], false);
- Eval(15495, v is EmptyStructGen<int>?, false);
- Eval(15496, v is EmptyStructGen<int>?[], false);
- Eval(15497, v is NotEmptyStructGen<Guid>, false);
- Eval(15498, v is NotEmptyStructGen<Guid>[], false);
- Eval(15499, v is NotEmptyStructGen<Guid>?, false);
- Eval(15500, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15501, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15502, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15503, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15504, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15493, v is EmptyStructGen<int>, false);
+// Eval(15494, v is EmptyStructGen<int>[], false);
+// Eval(15495, v is EmptyStructGen<int>?, false);
+// Eval(15496, v is EmptyStructGen<int>?[], false);
+// Eval(15497, v is NotEmptyStructGen<Guid>, false);
+// Eval(15498, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15499, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15500, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15501, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15502, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15503, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15504, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15505, v is NestedStruct, false);
Eval(15506, v is NestedStruct[], false);
Eval(15507, v is NestedStruct?, false);
Eval(15508, v is NestedStruct?[], false);
- Eval(15509, v is NestedStructGen<Decimal>, false);
- Eval(15510, v is NestedStructGen<Decimal>[], false);
- Eval(15511, v is NestedStructGen<Decimal>?, false);
- Eval(15512, v is NestedStructGen<Decimal>?[], false);
+// Eval(15509, v is NestedStructGen<Decimal>, false);
+// Eval(15510, v is NestedStructGen<Decimal>[], false);
+// Eval(15511, v is NestedStructGen<Decimal>?, false);
+// Eval(15512, v is NestedStructGen<Decimal>?[], false);
Eval(15513, v is ExplicitFieldOffsetStruct, false);
Eval(15514, v is ExplicitFieldOffsetStruct[], false);
Eval(15515, v is ExplicitFieldOffsetStruct?, false);
@@ -15198,18 +15198,18 @@ internal class Program
Eval(15534, v is ImplementTwoInterface[], false);
Eval(15535, v is ImplementTwoInterface?, false);
Eval(15536, v is ImplementTwoInterface?[], false);
- Eval(15537, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15538, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15539, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15540, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15541, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15542, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15543, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15544, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15545, v is ImplementAllInterface<int>, false);
- Eval(15546, v is ImplementAllInterface<int>[], false);
- Eval(15547, v is ImplementAllInterface<int>?, false);
- Eval(15548, v is ImplementAllInterface<int>?[], true);
+// Eval(15537, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15538, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15539, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15540, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15541, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15542, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15543, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15544, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15545, v is ImplementAllInterface<int>, false);
+// Eval(15546, v is ImplementAllInterface<int>[], false);
+// Eval(15547, v is ImplementAllInterface<int>?, false);
+// Eval(15548, v is ImplementAllInterface<int>?[], true);
Eval(15549, v is IntE, false);
Eval(15550, v is IntE[], false);
Eval(15551, v is IntE?, false);
@@ -15308,38 +15308,38 @@ internal class Program
Eval(15644, v is IEmpty[], false);
Eval(15645, v is INotEmpty, false);
Eval(15646, v is INotEmpty[], false);
- Eval(15647, v is IEmptyGen<int>, false);
- Eval(15648, v is IEmptyGen<int>[], false);
- Eval(15649, v is INotEmptyGen<int>, false);
- Eval(15650, v is INotEmptyGen<int>[], false);
+// Eval(15647, v is IEmptyGen<int>, false);
+// Eval(15648, v is IEmptyGen<int>[], false);
+// Eval(15649, v is INotEmptyGen<int>, false);
+// Eval(15650, v is INotEmptyGen<int>[], false);
Eval(15651, v is SimpleDelegate, false);
Eval(15652, v is SimpleDelegate[], false);
- Eval(15653, v is GenericDelegate<int>, false);
- Eval(15654, v is GenericDelegate<int>[], false);
+// Eval(15653, v is GenericDelegate<int>, false);
+// Eval(15654, v is GenericDelegate<int>[], false);
Eval(15655, v is EmptyClass, false);
Eval(15656, v is EmptyClass[], false);
Eval(15657, v is NotEmptyClass, false);
Eval(15658, v is NotEmptyClass[], false);
- Eval(15659, v is EmptyClassGen<int>, false);
- Eval(15660, v is EmptyClassGen<int>[], false);
- Eval(15661, v is NotEmptyClassGen<Guid>, false);
- Eval(15662, v is NotEmptyClassGen<Guid>[], false);
- Eval(15663, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15664, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15659, v is EmptyClassGen<int>, false);
+// Eval(15660, v is EmptyClassGen<int>[], false);
+// Eval(15661, v is NotEmptyClassGen<Guid>, false);
+// Eval(15662, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15663, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15664, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15665, v is NestedClass, false);
Eval(15666, v is NestedClass[], false);
- Eval(15667, v is NestedClassGen<Decimal>, false);
- Eval(15668, v is NestedClassGen<Decimal>[], false);
+// Eval(15667, v is NestedClassGen<Decimal>, false);
+// Eval(15668, v is NestedClassGen<Decimal>[], false);
Eval(15669, v is ImplementOneInterfaceC, false);
Eval(15670, v is ImplementOneInterfaceC[], false);
Eval(15671, v is ImplementTwoInterfaceC, false);
Eval(15672, v is ImplementTwoInterfaceC[], false);
- Eval(15673, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15674, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15675, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15676, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15677, v is ImplementAllInterfaceC<int>, false);
- Eval(15678, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15673, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15674, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15675, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15676, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15677, v is ImplementAllInterfaceC<int>, false);
+// Eval(15678, v is ImplementAllInterfaceC<int>[], false);
Eval(15679, v is SealedClass, false);
Eval(15680, v is SealedClass[], false);
}
@@ -15356,26 +15356,26 @@ internal class Program
Eval(15686, v is NotEmptyStruct[], false);
Eval(15687, v is NotEmptyStruct?, false);
Eval(15688, v is NotEmptyStruct?[], false);
- Eval(15689, v is EmptyStructGen<int>, false);
- Eval(15690, v is EmptyStructGen<int>[], false);
- Eval(15691, v is EmptyStructGen<int>?, false);
- Eval(15692, v is EmptyStructGen<int>?[], false);
- Eval(15693, v is NotEmptyStructGen<Guid>, false);
- Eval(15694, v is NotEmptyStructGen<Guid>[], false);
- Eval(15695, v is NotEmptyStructGen<Guid>?, false);
- Eval(15696, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15697, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15698, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15699, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15700, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15689, v is EmptyStructGen<int>, false);
+// Eval(15690, v is EmptyStructGen<int>[], false);
+// Eval(15691, v is EmptyStructGen<int>?, false);
+// Eval(15692, v is EmptyStructGen<int>?[], false);
+// Eval(15693, v is NotEmptyStructGen<Guid>, false);
+// Eval(15694, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15695, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15696, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15697, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15698, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15699, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15700, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15701, v is NestedStruct, false);
Eval(15702, v is NestedStruct[], false);
Eval(15703, v is NestedStruct?, false);
Eval(15704, v is NestedStruct?[], false);
- Eval(15705, v is NestedStructGen<Decimal>, false);
- Eval(15706, v is NestedStructGen<Decimal>[], false);
- Eval(15707, v is NestedStructGen<Decimal>?, false);
- Eval(15708, v is NestedStructGen<Decimal>?[], false);
+// Eval(15705, v is NestedStructGen<Decimal>, false);
+// Eval(15706, v is NestedStructGen<Decimal>[], false);
+// Eval(15707, v is NestedStructGen<Decimal>?, false);
+// Eval(15708, v is NestedStructGen<Decimal>?[], false);
Eval(15709, v is ExplicitFieldOffsetStruct, false);
Eval(15710, v is ExplicitFieldOffsetStruct[], false);
Eval(15711, v is ExplicitFieldOffsetStruct?, false);
@@ -15392,18 +15392,18 @@ internal class Program
Eval(15730, v is ImplementTwoInterface[], false);
Eval(15731, v is ImplementTwoInterface?, false);
Eval(15732, v is ImplementTwoInterface?[], false);
- Eval(15733, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15734, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15735, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15736, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15737, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15738, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15739, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15740, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15741, v is ImplementAllInterface<int>, false);
- Eval(15742, v is ImplementAllInterface<int>[], false);
- Eval(15743, v is ImplementAllInterface<int>?, false);
- Eval(15744, v is ImplementAllInterface<int>?[], false);
+// Eval(15733, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15734, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15735, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15736, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15737, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15738, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15739, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15740, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15741, v is ImplementAllInterface<int>, false);
+// Eval(15742, v is ImplementAllInterface<int>[], false);
+// Eval(15743, v is ImplementAllInterface<int>?, false);
+// Eval(15744, v is ImplementAllInterface<int>?[], false);
Eval(15745, v is IntE, true);
Eval(15746, v is IntE[], false);
Eval(15747, v is IntE?, true);
@@ -15502,38 +15502,38 @@ internal class Program
Eval(15840, v is IEmpty[], false);
Eval(15841, v is INotEmpty, false);
Eval(15842, v is INotEmpty[], false);
- Eval(15843, v is IEmptyGen<int>, false);
- Eval(15844, v is IEmptyGen<int>[], false);
- Eval(15845, v is INotEmptyGen<int>, false);
- Eval(15846, v is INotEmptyGen<int>[], false);
+// Eval(15843, v is IEmptyGen<int>, false);
+// Eval(15844, v is IEmptyGen<int>[], false);
+// Eval(15845, v is INotEmptyGen<int>, false);
+// Eval(15846, v is INotEmptyGen<int>[], false);
Eval(15847, v is SimpleDelegate, false);
Eval(15848, v is SimpleDelegate[], false);
- Eval(15849, v is GenericDelegate<int>, false);
- Eval(15850, v is GenericDelegate<int>[], false);
+// Eval(15849, v is GenericDelegate<int>, false);
+// Eval(15850, v is GenericDelegate<int>[], false);
Eval(15851, v is EmptyClass, false);
Eval(15852, v is EmptyClass[], false);
Eval(15853, v is NotEmptyClass, false);
Eval(15854, v is NotEmptyClass[], false);
- Eval(15855, v is EmptyClassGen<int>, false);
- Eval(15856, v is EmptyClassGen<int>[], false);
- Eval(15857, v is NotEmptyClassGen<Guid>, false);
- Eval(15858, v is NotEmptyClassGen<Guid>[], false);
- Eval(15859, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(15860, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15855, v is EmptyClassGen<int>, false);
+// Eval(15856, v is EmptyClassGen<int>[], false);
+// Eval(15857, v is NotEmptyClassGen<Guid>, false);
+// Eval(15858, v is NotEmptyClassGen<Guid>[], false);
+// Eval(15859, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15860, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(15861, v is NestedClass, false);
Eval(15862, v is NestedClass[], false);
- Eval(15863, v is NestedClassGen<Decimal>, false);
- Eval(15864, v is NestedClassGen<Decimal>[], false);
+// Eval(15863, v is NestedClassGen<Decimal>, false);
+// Eval(15864, v is NestedClassGen<Decimal>[], false);
Eval(15865, v is ImplementOneInterfaceC, false);
Eval(15866, v is ImplementOneInterfaceC[], false);
Eval(15867, v is ImplementTwoInterfaceC, false);
Eval(15868, v is ImplementTwoInterfaceC[], false);
- Eval(15869, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15870, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15871, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(15872, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15873, v is ImplementAllInterfaceC<int>, false);
- Eval(15874, v is ImplementAllInterfaceC<int>[], false);
+// Eval(15869, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15870, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15871, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15872, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15873, v is ImplementAllInterfaceC<int>, false);
+// Eval(15874, v is ImplementAllInterfaceC<int>[], false);
Eval(15875, v is SealedClass, false);
Eval(15876, v is SealedClass[], false);
}
@@ -15547,26 +15547,26 @@ internal class Program
Eval(15882, v is NotEmptyStruct[], false);
Eval(15883, v is NotEmptyStruct?, false);
Eval(15884, v is NotEmptyStruct?[], false);
- Eval(15885, v is EmptyStructGen<int>, false);
- Eval(15886, v is EmptyStructGen<int>[], false);
- Eval(15887, v is EmptyStructGen<int>?, false);
- Eval(15888, v is EmptyStructGen<int>?[], false);
- Eval(15889, v is NotEmptyStructGen<Guid>, false);
- Eval(15890, v is NotEmptyStructGen<Guid>[], false);
- Eval(15891, v is NotEmptyStructGen<Guid>?, false);
- Eval(15892, v is NotEmptyStructGen<Guid>?[], false);
- Eval(15893, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15894, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15895, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15896, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15885, v is EmptyStructGen<int>, false);
+// Eval(15886, v is EmptyStructGen<int>[], false);
+// Eval(15887, v is EmptyStructGen<int>?, false);
+// Eval(15888, v is EmptyStructGen<int>?[], false);
+// Eval(15889, v is NotEmptyStructGen<Guid>, false);
+// Eval(15890, v is NotEmptyStructGen<Guid>[], false);
+// Eval(15891, v is NotEmptyStructGen<Guid>?, false);
+// Eval(15892, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(15893, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15894, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15895, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15896, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15897, v is NestedStruct, false);
Eval(15898, v is NestedStruct[], false);
Eval(15899, v is NestedStruct?, false);
Eval(15900, v is NestedStruct?[], false);
- Eval(15901, v is NestedStructGen<Decimal>, false);
- Eval(15902, v is NestedStructGen<Decimal>[], false);
- Eval(15903, v is NestedStructGen<Decimal>?, false);
- Eval(15904, v is NestedStructGen<Decimal>?[], false);
+// Eval(15901, v is NestedStructGen<Decimal>, false);
+// Eval(15902, v is NestedStructGen<Decimal>[], false);
+// Eval(15903, v is NestedStructGen<Decimal>?, false);
+// Eval(15904, v is NestedStructGen<Decimal>?[], false);
Eval(15905, v is ExplicitFieldOffsetStruct, false);
Eval(15906, v is ExplicitFieldOffsetStruct[], false);
Eval(15907, v is ExplicitFieldOffsetStruct?, false);
@@ -15583,18 +15583,18 @@ internal class Program
Eval(15926, v is ImplementTwoInterface[], false);
Eval(15927, v is ImplementTwoInterface?, false);
Eval(15928, v is ImplementTwoInterface?[], false);
- Eval(15929, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15930, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15931, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15932, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15933, v is ImplementTwoInterfaceGen<int>, false);
- Eval(15934, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(15935, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(15936, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15937, v is ImplementAllInterface<int>, false);
- Eval(15938, v is ImplementAllInterface<int>[], false);
- Eval(15939, v is ImplementAllInterface<int>?, false);
- Eval(15940, v is ImplementAllInterface<int>?[], false);
+// Eval(15929, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15930, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15931, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15932, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15933, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(15934, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15935, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15936, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15937, v is ImplementAllInterface<int>, false);
+// Eval(15938, v is ImplementAllInterface<int>[], false);
+// Eval(15939, v is ImplementAllInterface<int>?, false);
+// Eval(15940, v is ImplementAllInterface<int>?[], false);
Eval(15941, v is IntE, true);
Eval(15942, v is IntE[], false);
Eval(15943, v is IntE?, true);
@@ -15693,38 +15693,38 @@ internal class Program
Eval(16036, v is IEmpty[], false);
Eval(16037, v is INotEmpty, false);
Eval(16038, v is INotEmpty[], false);
- Eval(16039, v is IEmptyGen<int>, false);
- Eval(16040, v is IEmptyGen<int>[], false);
- Eval(16041, v is INotEmptyGen<int>, false);
- Eval(16042, v is INotEmptyGen<int>[], false);
+// Eval(16039, v is IEmptyGen<int>, false);
+// Eval(16040, v is IEmptyGen<int>[], false);
+// Eval(16041, v is INotEmptyGen<int>, false);
+// Eval(16042, v is INotEmptyGen<int>[], false);
Eval(16043, v is SimpleDelegate, false);
Eval(16044, v is SimpleDelegate[], false);
- Eval(16045, v is GenericDelegate<int>, false);
- Eval(16046, v is GenericDelegate<int>[], false);
+// Eval(16045, v is GenericDelegate<int>, false);
+// Eval(16046, v is GenericDelegate<int>[], false);
Eval(16047, v is EmptyClass, false);
Eval(16048, v is EmptyClass[], false);
Eval(16049, v is NotEmptyClass, false);
Eval(16050, v is NotEmptyClass[], false);
- Eval(16051, v is EmptyClassGen<int>, false);
- Eval(16052, v is EmptyClassGen<int>[], false);
- Eval(16053, v is NotEmptyClassGen<Guid>, false);
- Eval(16054, v is NotEmptyClassGen<Guid>[], false);
- Eval(16055, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(16056, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16051, v is EmptyClassGen<int>, false);
+// Eval(16052, v is EmptyClassGen<int>[], false);
+// Eval(16053, v is NotEmptyClassGen<Guid>, false);
+// Eval(16054, v is NotEmptyClassGen<Guid>[], false);
+// Eval(16055, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16056, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(16057, v is NestedClass, false);
Eval(16058, v is NestedClass[], false);
- Eval(16059, v is NestedClassGen<Decimal>, false);
- Eval(16060, v is NestedClassGen<Decimal>[], false);
+// Eval(16059, v is NestedClassGen<Decimal>, false);
+// Eval(16060, v is NestedClassGen<Decimal>[], false);
Eval(16061, v is ImplementOneInterfaceC, false);
Eval(16062, v is ImplementOneInterfaceC[], false);
Eval(16063, v is ImplementTwoInterfaceC, false);
Eval(16064, v is ImplementTwoInterfaceC[], false);
- Eval(16065, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16066, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16067, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(16068, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16069, v is ImplementAllInterfaceC<int>, false);
- Eval(16070, v is ImplementAllInterfaceC<int>[], false);
+// Eval(16065, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16066, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16067, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16068, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16069, v is ImplementAllInterfaceC<int>, false);
+// Eval(16070, v is ImplementAllInterfaceC<int>[], false);
Eval(16071, v is SealedClass, false);
Eval(16072, v is SealedClass[], false);
}
@@ -15738,26 +15738,26 @@ internal class Program
Eval(16078, v is NotEmptyStruct[], false);
Eval(16079, v is NotEmptyStruct?, false);
Eval(16080, v is NotEmptyStruct?[], false);
- Eval(16081, v is EmptyStructGen<int>, false);
- Eval(16082, v is EmptyStructGen<int>[], false);
- Eval(16083, v is EmptyStructGen<int>?, false);
- Eval(16084, v is EmptyStructGen<int>?[], false);
- Eval(16085, v is NotEmptyStructGen<Guid>, false);
- Eval(16086, v is NotEmptyStructGen<Guid>[], false);
- Eval(16087, v is NotEmptyStructGen<Guid>?, false);
- Eval(16088, v is NotEmptyStructGen<Guid>?[], false);
- Eval(16089, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16090, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16091, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16092, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16081, v is EmptyStructGen<int>, false);
+// Eval(16082, v is EmptyStructGen<int>[], false);
+// Eval(16083, v is EmptyStructGen<int>?, false);
+// Eval(16084, v is EmptyStructGen<int>?[], false);
+// Eval(16085, v is NotEmptyStructGen<Guid>, false);
+// Eval(16086, v is NotEmptyStructGen<Guid>[], false);
+// Eval(16087, v is NotEmptyStructGen<Guid>?, false);
+// Eval(16088, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(16089, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16090, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16091, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16092, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16093, v is NestedStruct, false);
Eval(16094, v is NestedStruct[], false);
Eval(16095, v is NestedStruct?, false);
Eval(16096, v is NestedStruct?[], false);
- Eval(16097, v is NestedStructGen<Decimal>, false);
- Eval(16098, v is NestedStructGen<Decimal>[], false);
- Eval(16099, v is NestedStructGen<Decimal>?, false);
- Eval(16100, v is NestedStructGen<Decimal>?[], false);
+// Eval(16097, v is NestedStructGen<Decimal>, false);
+// Eval(16098, v is NestedStructGen<Decimal>[], false);
+// Eval(16099, v is NestedStructGen<Decimal>?, false);
+// Eval(16100, v is NestedStructGen<Decimal>?[], false);
Eval(16101, v is ExplicitFieldOffsetStruct, false);
Eval(16102, v is ExplicitFieldOffsetStruct[], false);
Eval(16103, v is ExplicitFieldOffsetStruct?, false);
@@ -15774,18 +15774,18 @@ internal class Program
Eval(16122, v is ImplementTwoInterface[], false);
Eval(16123, v is ImplementTwoInterface?, false);
Eval(16124, v is ImplementTwoInterface?[], false);
- Eval(16125, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16126, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16127, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16128, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16129, v is ImplementTwoInterfaceGen<int>, false);
- Eval(16130, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(16131, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(16132, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16133, v is ImplementAllInterface<int>, false);
- Eval(16134, v is ImplementAllInterface<int>[], false);
- Eval(16135, v is ImplementAllInterface<int>?, false);
- Eval(16136, v is ImplementAllInterface<int>?[], false);
+// Eval(16125, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16126, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16127, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16128, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16129, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(16130, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16131, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16132, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16133, v is ImplementAllInterface<int>, false);
+// Eval(16134, v is ImplementAllInterface<int>[], false);
+// Eval(16135, v is ImplementAllInterface<int>?, false);
+// Eval(16136, v is ImplementAllInterface<int>?[], false);
Eval(16137, v is IntE, false);
Eval(16138, v is IntE[], false);
Eval(16139, v is IntE?, false);
@@ -15884,38 +15884,38 @@ internal class Program
Eval(16232, v is IEmpty[], false);
Eval(16233, v is INotEmpty, false);
Eval(16234, v is INotEmpty[], false);
- Eval(16235, v is IEmptyGen<int>, false);
- Eval(16236, v is IEmptyGen<int>[], false);
- Eval(16237, v is INotEmptyGen<int>, false);
- Eval(16238, v is INotEmptyGen<int>[], false);
+// Eval(16235, v is IEmptyGen<int>, false);
+// Eval(16236, v is IEmptyGen<int>[], false);
+// Eval(16237, v is INotEmptyGen<int>, false);
+// Eval(16238, v is INotEmptyGen<int>[], false);
Eval(16239, v is SimpleDelegate, false);
Eval(16240, v is SimpleDelegate[], false);
- Eval(16241, v is GenericDelegate<int>, false);
- Eval(16242, v is GenericDelegate<int>[], false);
+// Eval(16241, v is GenericDelegate<int>, false);
+// Eval(16242, v is GenericDelegate<int>[], false);
Eval(16243, v is EmptyClass, false);
Eval(16244, v is EmptyClass[], false);
Eval(16245, v is NotEmptyClass, false);
Eval(16246, v is NotEmptyClass[], false);
- Eval(16247, v is EmptyClassGen<int>, false);
- Eval(16248, v is EmptyClassGen<int>[], false);
- Eval(16249, v is NotEmptyClassGen<Guid>, false);
- Eval(16250, v is NotEmptyClassGen<Guid>[], false);
- Eval(16251, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(16252, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16247, v is EmptyClassGen<int>, false);
+// Eval(16248, v is EmptyClassGen<int>[], false);
+// Eval(16249, v is NotEmptyClassGen<Guid>, false);
+// Eval(16250, v is NotEmptyClassGen<Guid>[], false);
+// Eval(16251, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16252, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(16253, v is NestedClass, false);
Eval(16254, v is NestedClass[], false);
- Eval(16255, v is NestedClassGen<Decimal>, false);
- Eval(16256, v is NestedClassGen<Decimal>[], false);
+// Eval(16255, v is NestedClassGen<Decimal>, false);
+// Eval(16256, v is NestedClassGen<Decimal>[], false);
Eval(16257, v is ImplementOneInterfaceC, false);
Eval(16258, v is ImplementOneInterfaceC[], false);
Eval(16259, v is ImplementTwoInterfaceC, false);
Eval(16260, v is ImplementTwoInterfaceC[], false);
- Eval(16261, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16262, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16263, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(16264, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16265, v is ImplementAllInterfaceC<int>, false);
- Eval(16266, v is ImplementAllInterfaceC<int>[], false);
+// Eval(16261, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16262, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16263, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16264, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16265, v is ImplementAllInterfaceC<int>, false);
+// Eval(16266, v is ImplementAllInterfaceC<int>[], false);
Eval(16267, v is SealedClass, false);
Eval(16268, v is SealedClass[], false);
}
@@ -15929,26 +15929,26 @@ internal class Program
Eval(16274, v is NotEmptyStruct[], false);
Eval(16275, v is NotEmptyStruct?, false);
Eval(16276, v is NotEmptyStruct?[], false);
- Eval(16277, v is EmptyStructGen<int>, false);
- Eval(16278, v is EmptyStructGen<int>[], false);
- Eval(16279, v is EmptyStructGen<int>?, false);
- Eval(16280, v is EmptyStructGen<int>?[], false);
- Eval(16281, v is NotEmptyStructGen<Guid>, false);
- Eval(16282, v is NotEmptyStructGen<Guid>[], false);
- Eval(16283, v is NotEmptyStructGen<Guid>?, false);
- Eval(16284, v is NotEmptyStructGen<Guid>?[], false);
- Eval(16285, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16286, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16287, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16288, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16277, v is EmptyStructGen<int>, false);
+// Eval(16278, v is EmptyStructGen<int>[], false);
+// Eval(16279, v is EmptyStructGen<int>?, false);
+// Eval(16280, v is EmptyStructGen<int>?[], false);
+// Eval(16281, v is NotEmptyStructGen<Guid>, false);
+// Eval(16282, v is NotEmptyStructGen<Guid>[], false);
+// Eval(16283, v is NotEmptyStructGen<Guid>?, false);
+// Eval(16284, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(16285, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16286, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16287, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16288, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16289, v is NestedStruct, false);
Eval(16290, v is NestedStruct[], false);
Eval(16291, v is NestedStruct?, false);
Eval(16292, v is NestedStruct?[], false);
- Eval(16293, v is NestedStructGen<Decimal>, false);
- Eval(16294, v is NestedStructGen<Decimal>[], false);
- Eval(16295, v is NestedStructGen<Decimal>?, false);
- Eval(16296, v is NestedStructGen<Decimal>?[], false);
+// Eval(16293, v is NestedStructGen<Decimal>, false);
+// Eval(16294, v is NestedStructGen<Decimal>[], false);
+// Eval(16295, v is NestedStructGen<Decimal>?, false);
+// Eval(16296, v is NestedStructGen<Decimal>?[], false);
Eval(16297, v is ExplicitFieldOffsetStruct, false);
Eval(16298, v is ExplicitFieldOffsetStruct[], false);
Eval(16299, v is ExplicitFieldOffsetStruct?, false);
@@ -15965,18 +15965,18 @@ internal class Program
Eval(16318, v is ImplementTwoInterface[], false);
Eval(16319, v is ImplementTwoInterface?, false);
Eval(16320, v is ImplementTwoInterface?[], false);
- Eval(16321, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16322, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16323, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16324, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16325, v is ImplementTwoInterfaceGen<int>, false);
- Eval(16326, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(16327, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(16328, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16329, v is ImplementAllInterface<int>, false);
- Eval(16330, v is ImplementAllInterface<int>[], false);
- Eval(16331, v is ImplementAllInterface<int>?, false);
- Eval(16332, v is ImplementAllInterface<int>?[], false);
+// Eval(16321, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16322, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16323, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16324, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16325, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(16326, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16327, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16328, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16329, v is ImplementAllInterface<int>, false);
+// Eval(16330, v is ImplementAllInterface<int>[], false);
+// Eval(16331, v is ImplementAllInterface<int>?, false);
+// Eval(16332, v is ImplementAllInterface<int>?[], false);
Eval(16333, v is IntE, false);
Eval(16334, v is IntE[], false);
Eval(16335, v is IntE?, false);
@@ -16075,38 +16075,38 @@ internal class Program
Eval(16428, v is IEmpty[], false);
Eval(16429, v is INotEmpty, false);
Eval(16430, v is INotEmpty[], false);
- Eval(16431, v is IEmptyGen<int>, false);
- Eval(16432, v is IEmptyGen<int>[], false);
- Eval(16433, v is INotEmptyGen<int>, false);
- Eval(16434, v is INotEmptyGen<int>[], false);
+// Eval(16431, v is IEmptyGen<int>, false);
+// Eval(16432, v is IEmptyGen<int>[], false);
+// Eval(16433, v is INotEmptyGen<int>, false);
+// Eval(16434, v is INotEmptyGen<int>[], false);
Eval(16435, v is SimpleDelegate, false);
Eval(16436, v is SimpleDelegate[], false);
- Eval(16437, v is GenericDelegate<int>, false);
- Eval(16438, v is GenericDelegate<int>[], false);
+// Eval(16437, v is GenericDelegate<int>, false);
+// Eval(16438, v is GenericDelegate<int>[], false);
Eval(16439, v is EmptyClass, false);
Eval(16440, v is EmptyClass[], false);
Eval(16441, v is NotEmptyClass, false);
Eval(16442, v is NotEmptyClass[], false);
- Eval(16443, v is EmptyClassGen<int>, false);
- Eval(16444, v is EmptyClassGen<int>[], false);
- Eval(16445, v is NotEmptyClassGen<Guid>, false);
- Eval(16446, v is NotEmptyClassGen<Guid>[], false);
- Eval(16447, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(16448, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16443, v is EmptyClassGen<int>, false);
+// Eval(16444, v is EmptyClassGen<int>[], false);
+// Eval(16445, v is NotEmptyClassGen<Guid>, false);
+// Eval(16446, v is NotEmptyClassGen<Guid>[], false);
+// Eval(16447, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16448, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(16449, v is NestedClass, false);
Eval(16450, v is NestedClass[], false);
- Eval(16451, v is NestedClassGen<Decimal>, false);
- Eval(16452, v is NestedClassGen<Decimal>[], false);
+// Eval(16451, v is NestedClassGen<Decimal>, false);
+// Eval(16452, v is NestedClassGen<Decimal>[], false);
Eval(16453, v is ImplementOneInterfaceC, false);
Eval(16454, v is ImplementOneInterfaceC[], false);
Eval(16455, v is ImplementTwoInterfaceC, false);
Eval(16456, v is ImplementTwoInterfaceC[], false);
- Eval(16457, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16458, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16459, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(16460, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16461, v is ImplementAllInterfaceC<int>, false);
- Eval(16462, v is ImplementAllInterfaceC<int>[], false);
+// Eval(16457, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16458, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16459, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16460, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16461, v is ImplementAllInterfaceC<int>, false);
+// Eval(16462, v is ImplementAllInterfaceC<int>[], false);
Eval(16463, v is SealedClass, false);
Eval(16464, v is SealedClass[], false);
}
@@ -16120,26 +16120,26 @@ internal class Program
Eval(16470, v is NotEmptyStruct[], false);
Eval(16471, v is NotEmptyStruct?, false);
Eval(16472, v is NotEmptyStruct?[], false);
- Eval(16473, v is EmptyStructGen<int>, false);
- Eval(16474, v is EmptyStructGen<int>[], false);
- Eval(16475, v is EmptyStructGen<int>?, false);
- Eval(16476, v is EmptyStructGen<int>?[], false);
- Eval(16477, v is NotEmptyStructGen<Guid>, false);
- Eval(16478, v is NotEmptyStructGen<Guid>[], false);
- Eval(16479, v is NotEmptyStructGen<Guid>?, false);
- Eval(16480, v is NotEmptyStructGen<Guid>?[], false);
- Eval(16481, v is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16482, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16483, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16484, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16473, v is EmptyStructGen<int>, false);
+// Eval(16474, v is EmptyStructGen<int>[], false);
+// Eval(16475, v is EmptyStructGen<int>?, false);
+// Eval(16476, v is EmptyStructGen<int>?[], false);
+// Eval(16477, v is NotEmptyStructGen<Guid>, false);
+// Eval(16478, v is NotEmptyStructGen<Guid>[], false);
+// Eval(16479, v is NotEmptyStructGen<Guid>?, false);
+// Eval(16480, v is NotEmptyStructGen<Guid>?[], false);
+// Eval(16481, v is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16482, v is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16483, v is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16484, v is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16485, v is NestedStruct, false);
Eval(16486, v is NestedStruct[], false);
Eval(16487, v is NestedStruct?, false);
Eval(16488, v is NestedStruct?[], false);
- Eval(16489, v is NestedStructGen<Decimal>, false);
- Eval(16490, v is NestedStructGen<Decimal>[], false);
- Eval(16491, v is NestedStructGen<Decimal>?, false);
- Eval(16492, v is NestedStructGen<Decimal>?[], false);
+// Eval(16489, v is NestedStructGen<Decimal>, false);
+// Eval(16490, v is NestedStructGen<Decimal>[], false);
+// Eval(16491, v is NestedStructGen<Decimal>?, false);
+// Eval(16492, v is NestedStructGen<Decimal>?[], false);
Eval(16493, v is ExplicitFieldOffsetStruct, false);
Eval(16494, v is ExplicitFieldOffsetStruct[], false);
Eval(16495, v is ExplicitFieldOffsetStruct?, false);
@@ -16156,18 +16156,18 @@ internal class Program
Eval(16514, v is ImplementTwoInterface[], false);
Eval(16515, v is ImplementTwoInterface?, false);
Eval(16516, v is ImplementTwoInterface?[], false);
- Eval(16517, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16518, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16519, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16520, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16521, v is ImplementTwoInterfaceGen<int>, false);
- Eval(16522, v is ImplementTwoInterfaceGen<int>[], false);
- Eval(16523, v is ImplementTwoInterfaceGen<int>?, false);
- Eval(16524, v is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16525, v is ImplementAllInterface<int>, false);
- Eval(16526, v is ImplementAllInterface<int>[], false);
- Eval(16527, v is ImplementAllInterface<int>?, false);
- Eval(16528, v is ImplementAllInterface<int>?[], false);
+// Eval(16517, v is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16518, v is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16519, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16520, v is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16521, v is ImplementTwoInterfaceGen<int>, false);
+// Eval(16522, v is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16523, v is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16524, v is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16525, v is ImplementAllInterface<int>, false);
+// Eval(16526, v is ImplementAllInterface<int>[], false);
+// Eval(16527, v is ImplementAllInterface<int>?, false);
+// Eval(16528, v is ImplementAllInterface<int>?[], false);
Eval(16529, v is IntE, false);
Eval(16530, v is IntE[], false);
Eval(16531, v is IntE?, false);
@@ -16266,38 +16266,38 @@ internal class Program
Eval(16624, v is IEmpty[], false);
Eval(16625, v is INotEmpty, false);
Eval(16626, v is INotEmpty[], false);
- Eval(16627, v is IEmptyGen<int>, false);
- Eval(16628, v is IEmptyGen<int>[], false);
- Eval(16629, v is INotEmptyGen<int>, false);
- Eval(16630, v is INotEmptyGen<int>[], false);
+// Eval(16627, v is IEmptyGen<int>, false);
+// Eval(16628, v is IEmptyGen<int>[], false);
+// Eval(16629, v is INotEmptyGen<int>, false);
+// Eval(16630, v is INotEmptyGen<int>[], false);
Eval(16631, v is SimpleDelegate, false);
Eval(16632, v is SimpleDelegate[], false);
- Eval(16633, v is GenericDelegate<int>, false);
- Eval(16634, v is GenericDelegate<int>[], false);
+// Eval(16633, v is GenericDelegate<int>, false);
+// Eval(16634, v is GenericDelegate<int>[], false);
Eval(16635, v is EmptyClass, false);
Eval(16636, v is EmptyClass[], false);
Eval(16637, v is NotEmptyClass, false);
Eval(16638, v is NotEmptyClass[], false);
- Eval(16639, v is EmptyClassGen<int>, false);
- Eval(16640, v is EmptyClassGen<int>[], false);
- Eval(16641, v is NotEmptyClassGen<Guid>, false);
- Eval(16642, v is NotEmptyClassGen<Guid>[], false);
- Eval(16643, v is NotEmptyClassConstrainedGen<object>, false);
- Eval(16644, v is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16639, v is EmptyClassGen<int>, false);
+// Eval(16640, v is EmptyClassGen<int>[], false);
+// Eval(16641, v is NotEmptyClassGen<Guid>, false);
+// Eval(16642, v is NotEmptyClassGen<Guid>[], false);
+// Eval(16643, v is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16644, v is NotEmptyClassConstrainedGen<object>[], false);
Eval(16645, v is NestedClass, false);
Eval(16646, v is NestedClass[], false);
- Eval(16647, v is NestedClassGen<Decimal>, false);
- Eval(16648, v is NestedClassGen<Decimal>[], false);
+// Eval(16647, v is NestedClassGen<Decimal>, false);
+// Eval(16648, v is NestedClassGen<Decimal>[], false);
Eval(16649, v is ImplementOneInterfaceC, false);
Eval(16650, v is ImplementOneInterfaceC[], false);
Eval(16651, v is ImplementTwoInterfaceC, false);
Eval(16652, v is ImplementTwoInterfaceC[], false);
- Eval(16653, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16654, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16655, v is ImplementTwoInterfaceGenC<int>, false);
- Eval(16656, v is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16657, v is ImplementAllInterfaceC<int>, false);
- Eval(16658, v is ImplementAllInterfaceC<int>[], false);
+// Eval(16653, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16654, v is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16655, v is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16656, v is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16657, v is ImplementAllInterfaceC<int>, false);
+// Eval(16658, v is ImplementAllInterfaceC<int>[], false);
Eval(16659, v is SealedClass, false);
Eval(16660, v is SealedClass[], false);
}
diff --git a/tests/src/JIT/Directed/nullabletypes/isinstinterface.cs b/tests/src/JIT/Directed/nullabletypes/isinstinterface.cs
index 192c17c09f..0a8f2d920d 100644
--- a/tests/src/JIT/Directed/nullabletypes/isinstinterface.cs
+++ b/tests/src/JIT/Directed/nullabletypes/isinstinterface.cs
@@ -28,18 +28,18 @@ internal class Program
Eval(0006, o is ImplementTwoInterface[], false);
Eval(0007, o is ImplementTwoInterface?, false);
Eval(0008, o is ImplementTwoInterface?[], false);
- Eval(0009, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0010, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0011, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0012, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0013, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0014, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0015, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0016, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0017, o is ImplementAllInterface<int>, false);
- Eval(0018, o is ImplementAllInterface<int>[], false);
- Eval(0019, o is ImplementAllInterface<int>?, false);
- Eval(0020, o is ImplementAllInterface<int>?[], false);
+// Eval(0009, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0010, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0011, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0012, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0013, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0014, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0015, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0016, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0017, o is ImplementAllInterface<int>, false);
+// Eval(0018, o is ImplementAllInterface<int>[], false);
+// Eval(0019, o is ImplementAllInterface<int>?, false);
+// Eval(0020, o is ImplementAllInterface<int>?[], false);
Eval(0021, o is char, false);
Eval(0022, o is char[], false);
Eval(0023, o is char?, false);
@@ -110,38 +110,38 @@ internal class Program
Eval(0088, o is IEmpty[], false);
Eval(0089, o is INotEmpty, false);
Eval(0090, o is INotEmpty[], false);
- Eval(0091, o is IEmptyGen<int>, false);
- Eval(0092, o is IEmptyGen<int>[], false);
- Eval(0093, o is INotEmptyGen<int>, false);
- Eval(0094, o is INotEmptyGen<int>[], false);
+// Eval(0091, o is IEmptyGen<int>, false);
+// Eval(0092, o is IEmptyGen<int>[], false);
+// Eval(0093, o is INotEmptyGen<int>, false);
+// Eval(0094, o is INotEmptyGen<int>[], false);
Eval(0095, o is SimpleDelegate, false);
Eval(0096, o is SimpleDelegate[], false);
- Eval(0097, o is GenericDelegate<int>, false);
- Eval(0098, o is GenericDelegate<int>[], false);
+// Eval(0097, o is GenericDelegate<int>, false);
+// Eval(0098, o is GenericDelegate<int>[], false);
Eval(0099, o is EmptyClass, false);
Eval(0100, o is EmptyClass[], false);
Eval(0101, o is NotEmptyClass, false);
Eval(0102, o is NotEmptyClass[], false);
- Eval(0103, o is EmptyClassGen<int>, false);
- Eval(0104, o is EmptyClassGen<int>[], false);
- Eval(0105, o is NotEmptyClassGen<Guid>, false);
- Eval(0106, o is NotEmptyClassGen<Guid>[], false);
- Eval(0107, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0108, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0103, o is EmptyClassGen<int>, false);
+// Eval(0104, o is EmptyClassGen<int>[], false);
+// Eval(0105, o is NotEmptyClassGen<Guid>, false);
+// Eval(0106, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0107, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0108, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0109, o is NestedClass, false);
Eval(0110, o is NestedClass[], false);
- Eval(0111, o is NestedClassGen<Decimal>, false);
- Eval(0112, o is NestedClassGen<Decimal>[], false);
+// Eval(0111, o is NestedClassGen<Decimal>, false);
+// Eval(0112, o is NestedClassGen<Decimal>[], false);
Eval(0113, o is ImplementOneInterfaceC, false);
Eval(0114, o is ImplementOneInterfaceC[], false);
Eval(0115, o is ImplementTwoInterfaceC, false);
Eval(0116, o is ImplementTwoInterfaceC[], false);
- Eval(0117, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0118, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0119, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0120, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0121, o is ImplementAllInterfaceC<int>, false);
- Eval(0122, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0117, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0118, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0119, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0120, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0121, o is ImplementAllInterfaceC<int>, false);
+// Eval(0122, o is ImplementAllInterfaceC<int>[], false);
Eval(0123, o is SealedClass, false);
Eval(0124, o is SealedClass[], false);
}
@@ -156,18 +156,18 @@ internal class Program
Eval(0130, o is ImplementTwoInterface[], false);
Eval(0131, o is ImplementTwoInterface?, false);
Eval(0132, o is ImplementTwoInterface?[], false);
- Eval(0133, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0134, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0135, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0136, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0137, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0138, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0139, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0140, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0141, o is ImplementAllInterface<int>, false);
- Eval(0142, o is ImplementAllInterface<int>[], false);
- Eval(0143, o is ImplementAllInterface<int>?, false);
- Eval(0144, o is ImplementAllInterface<int>?[], false);
+// Eval(0133, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0134, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0135, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0136, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0137, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0138, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0139, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0140, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0141, o is ImplementAllInterface<int>, false);
+// Eval(0142, o is ImplementAllInterface<int>[], false);
+// Eval(0143, o is ImplementAllInterface<int>?, false);
+// Eval(0144, o is ImplementAllInterface<int>?[], false);
Eval(0145, o is char, false);
Eval(0146, o is char[], false);
Eval(0147, o is char?, false);
@@ -238,38 +238,38 @@ internal class Program
Eval(0212, o is IEmpty[], false);
Eval(0213, o is INotEmpty, false);
Eval(0214, o is INotEmpty[], false);
- Eval(0215, o is IEmptyGen<int>, false);
- Eval(0216, o is IEmptyGen<int>[], false);
- Eval(0217, o is INotEmptyGen<int>, false);
- Eval(0218, o is INotEmptyGen<int>[], false);
+// Eval(0215, o is IEmptyGen<int>, false);
+// Eval(0216, o is IEmptyGen<int>[], false);
+// Eval(0217, o is INotEmptyGen<int>, false);
+// Eval(0218, o is INotEmptyGen<int>[], false);
Eval(0219, o is SimpleDelegate, false);
Eval(0220, o is SimpleDelegate[], false);
- Eval(0221, o is GenericDelegate<int>, false);
- Eval(0222, o is GenericDelegate<int>[], false);
+// Eval(0221, o is GenericDelegate<int>, false);
+// Eval(0222, o is GenericDelegate<int>[], false);
Eval(0223, o is EmptyClass, false);
Eval(0224, o is EmptyClass[], false);
Eval(0225, o is NotEmptyClass, false);
Eval(0226, o is NotEmptyClass[], false);
- Eval(0227, o is EmptyClassGen<int>, false);
- Eval(0228, o is EmptyClassGen<int>[], false);
- Eval(0229, o is NotEmptyClassGen<Guid>, false);
- Eval(0230, o is NotEmptyClassGen<Guid>[], false);
- Eval(0231, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0232, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0227, o is EmptyClassGen<int>, false);
+// Eval(0228, o is EmptyClassGen<int>[], false);
+// Eval(0229, o is NotEmptyClassGen<Guid>, false);
+// Eval(0230, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0231, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0232, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0233, o is NestedClass, false);
Eval(0234, o is NestedClass[], false);
- Eval(0235, o is NestedClassGen<Decimal>, false);
- Eval(0236, o is NestedClassGen<Decimal>[], false);
+// Eval(0235, o is NestedClassGen<Decimal>, false);
+// Eval(0236, o is NestedClassGen<Decimal>[], false);
Eval(0237, o is ImplementOneInterfaceC, false);
Eval(0238, o is ImplementOneInterfaceC[], false);
Eval(0239, o is ImplementTwoInterfaceC, false);
Eval(0240, o is ImplementTwoInterfaceC[], false);
- Eval(0241, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0242, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0243, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0244, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0245, o is ImplementAllInterfaceC<int>, false);
- Eval(0246, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0241, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0242, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0243, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0244, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0245, o is ImplementAllInterfaceC<int>, false);
+// Eval(0246, o is ImplementAllInterfaceC<int>[], false);
Eval(0247, o is SealedClass, false);
Eval(0248, o is SealedClass[], false);
}
@@ -284,18 +284,18 @@ internal class Program
Eval(0254, o is ImplementTwoInterface[], false);
Eval(0255, o is ImplementTwoInterface?, false);
Eval(0256, o is ImplementTwoInterface?[], false);
- Eval(0257, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0258, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0259, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0260, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0261, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0262, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0263, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0264, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0265, o is ImplementAllInterface<int>, false);
- Eval(0266, o is ImplementAllInterface<int>[], false);
- Eval(0267, o is ImplementAllInterface<int>?, false);
- Eval(0268, o is ImplementAllInterface<int>?[], false);
+// Eval(0257, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0258, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0259, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0260, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0261, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0262, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0263, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0264, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0265, o is ImplementAllInterface<int>, false);
+// Eval(0266, o is ImplementAllInterface<int>[], false);
+// Eval(0267, o is ImplementAllInterface<int>?, false);
+// Eval(0268, o is ImplementAllInterface<int>?[], false);
Eval(0269, o is char, false);
Eval(0270, o is char[], false);
Eval(0271, o is char?, false);
@@ -366,38 +366,38 @@ internal class Program
Eval(0336, o is IEmpty[], false);
Eval(0337, o is INotEmpty, false);
Eval(0338, o is INotEmpty[], false);
- Eval(0339, o is IEmptyGen<int>, false);
- Eval(0340, o is IEmptyGen<int>[], false);
- Eval(0341, o is INotEmptyGen<int>, false);
- Eval(0342, o is INotEmptyGen<int>[], false);
+// Eval(0339, o is IEmptyGen<int>, false);
+// Eval(0340, o is IEmptyGen<int>[], false);
+// Eval(0341, o is INotEmptyGen<int>, false);
+// Eval(0342, o is INotEmptyGen<int>[], false);
Eval(0343, o is SimpleDelegate, false);
Eval(0344, o is SimpleDelegate[], false);
- Eval(0345, o is GenericDelegate<int>, false);
- Eval(0346, o is GenericDelegate<int>[], false);
+// Eval(0345, o is GenericDelegate<int>, false);
+// Eval(0346, o is GenericDelegate<int>[], false);
Eval(0347, o is EmptyClass, false);
Eval(0348, o is EmptyClass[], false);
Eval(0349, o is NotEmptyClass, false);
Eval(0350, o is NotEmptyClass[], false);
- Eval(0351, o is EmptyClassGen<int>, false);
- Eval(0352, o is EmptyClassGen<int>[], false);
- Eval(0353, o is NotEmptyClassGen<Guid>, false);
- Eval(0354, o is NotEmptyClassGen<Guid>[], false);
- Eval(0355, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0356, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0351, o is EmptyClassGen<int>, false);
+// Eval(0352, o is EmptyClassGen<int>[], false);
+// Eval(0353, o is NotEmptyClassGen<Guid>, false);
+// Eval(0354, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0355, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0356, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0357, o is NestedClass, false);
Eval(0358, o is NestedClass[], false);
- Eval(0359, o is NestedClassGen<Decimal>, false);
- Eval(0360, o is NestedClassGen<Decimal>[], false);
+// Eval(0359, o is NestedClassGen<Decimal>, false);
+// Eval(0360, o is NestedClassGen<Decimal>[], false);
Eval(0361, o is ImplementOneInterfaceC, false);
Eval(0362, o is ImplementOneInterfaceC[], false);
Eval(0363, o is ImplementTwoInterfaceC, false);
Eval(0364, o is ImplementTwoInterfaceC[], false);
- Eval(0365, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0366, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0367, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0368, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0369, o is ImplementAllInterfaceC<int>, false);
- Eval(0370, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0365, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0366, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0367, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0368, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0369, o is ImplementAllInterfaceC<int>, false);
+// Eval(0370, o is ImplementAllInterfaceC<int>[], false);
Eval(0371, o is SealedClass, false);
Eval(0372, o is SealedClass[], false);
}
@@ -415,18 +415,18 @@ internal class Program
Eval(0378, o is ImplementTwoInterface[], false);
Eval(0379, o is ImplementTwoInterface?, true);
Eval(0380, o is ImplementTwoInterface?[], false);
- Eval(0381, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0382, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0383, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0384, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0385, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0386, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0387, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0388, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0389, o is ImplementAllInterface<int>, false);
- Eval(0390, o is ImplementAllInterface<int>[], false);
- Eval(0391, o is ImplementAllInterface<int>?, false);
- Eval(0392, o is ImplementAllInterface<int>?[], false);
+// Eval(0381, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0382, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0383, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0384, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0385, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0386, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0387, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0388, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0389, o is ImplementAllInterface<int>, false);
+// Eval(0390, o is ImplementAllInterface<int>[], false);
+// Eval(0391, o is ImplementAllInterface<int>?, false);
+// Eval(0392, o is ImplementAllInterface<int>?[], false);
Eval(0393, o is char, false);
Eval(0394, o is char[], false);
Eval(0395, o is char?, false);
@@ -497,38 +497,38 @@ internal class Program
Eval(0460, o is IEmpty[], false);
Eval(0461, o is INotEmpty, true);
Eval(0462, o is INotEmpty[], false);
- Eval(0463, o is IEmptyGen<int>, false);
- Eval(0464, o is IEmptyGen<int>[], false);
- Eval(0465, o is INotEmptyGen<int>, false);
- Eval(0466, o is INotEmptyGen<int>[], false);
+// Eval(0463, o is IEmptyGen<int>, false);
+// Eval(0464, o is IEmptyGen<int>[], false);
+// Eval(0465, o is INotEmptyGen<int>, false);
+// Eval(0466, o is INotEmptyGen<int>[], false);
Eval(0467, o is SimpleDelegate, false);
Eval(0468, o is SimpleDelegate[], false);
- Eval(0469, o is GenericDelegate<int>, false);
- Eval(0470, o is GenericDelegate<int>[], false);
+// Eval(0469, o is GenericDelegate<int>, false);
+// Eval(0470, o is GenericDelegate<int>[], false);
Eval(0471, o is EmptyClass, false);
Eval(0472, o is EmptyClass[], false);
Eval(0473, o is NotEmptyClass, false);
Eval(0474, o is NotEmptyClass[], false);
- Eval(0475, o is EmptyClassGen<int>, false);
- Eval(0476, o is EmptyClassGen<int>[], false);
- Eval(0477, o is NotEmptyClassGen<Guid>, false);
- Eval(0478, o is NotEmptyClassGen<Guid>[], false);
- Eval(0479, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0480, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0475, o is EmptyClassGen<int>, false);
+// Eval(0476, o is EmptyClassGen<int>[], false);
+// Eval(0477, o is NotEmptyClassGen<Guid>, false);
+// Eval(0478, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0479, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0480, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0481, o is NestedClass, false);
Eval(0482, o is NestedClass[], false);
- Eval(0483, o is NestedClassGen<Decimal>, false);
- Eval(0484, o is NestedClassGen<Decimal>[], false);
+// Eval(0483, o is NestedClassGen<Decimal>, false);
+// Eval(0484, o is NestedClassGen<Decimal>[], false);
Eval(0485, o is ImplementOneInterfaceC, false);
Eval(0486, o is ImplementOneInterfaceC[], false);
Eval(0487, o is ImplementTwoInterfaceC, false);
Eval(0488, o is ImplementTwoInterfaceC[], false);
- Eval(0489, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0490, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0491, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0492, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0493, o is ImplementAllInterfaceC<int>, false);
- Eval(0494, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0489, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0490, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0491, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0492, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0493, o is ImplementAllInterfaceC<int>, false);
+// Eval(0494, o is ImplementAllInterfaceC<int>[], false);
Eval(0495, o is SealedClass, false);
Eval(0496, o is SealedClass[], false);
}
@@ -543,18 +543,18 @@ internal class Program
Eval(0502, o is ImplementTwoInterface[], false);
Eval(0503, o is ImplementTwoInterface?, true);
Eval(0504, o is ImplementTwoInterface?[], false);
- Eval(0505, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0506, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0507, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0508, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0509, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0510, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0511, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0512, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0513, o is ImplementAllInterface<int>, false);
- Eval(0514, o is ImplementAllInterface<int>[], false);
- Eval(0515, o is ImplementAllInterface<int>?, false);
- Eval(0516, o is ImplementAllInterface<int>?[], false);
+// Eval(0505, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0506, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0507, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0508, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0509, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0510, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0511, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0512, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0513, o is ImplementAllInterface<int>, false);
+// Eval(0514, o is ImplementAllInterface<int>[], false);
+// Eval(0515, o is ImplementAllInterface<int>?, false);
+// Eval(0516, o is ImplementAllInterface<int>?[], false);
Eval(0517, o is char, false);
Eval(0518, o is char[], false);
Eval(0519, o is char?, false);
@@ -625,38 +625,38 @@ internal class Program
Eval(0584, o is IEmpty[], false);
Eval(0585, o is INotEmpty, true);
Eval(0586, o is INotEmpty[], false);
- Eval(0587, o is IEmptyGen<int>, false);
- Eval(0588, o is IEmptyGen<int>[], false);
- Eval(0589, o is INotEmptyGen<int>, false);
- Eval(0590, o is INotEmptyGen<int>[], false);
+// Eval(0587, o is IEmptyGen<int>, false);
+// Eval(0588, o is IEmptyGen<int>[], false);
+// Eval(0589, o is INotEmptyGen<int>, false);
+// Eval(0590, o is INotEmptyGen<int>[], false);
Eval(0591, o is SimpleDelegate, false);
Eval(0592, o is SimpleDelegate[], false);
- Eval(0593, o is GenericDelegate<int>, false);
- Eval(0594, o is GenericDelegate<int>[], false);
+// Eval(0593, o is GenericDelegate<int>, false);
+// Eval(0594, o is GenericDelegate<int>[], false);
Eval(0595, o is EmptyClass, false);
Eval(0596, o is EmptyClass[], false);
Eval(0597, o is NotEmptyClass, false);
Eval(0598, o is NotEmptyClass[], false);
- Eval(0599, o is EmptyClassGen<int>, false);
- Eval(0600, o is EmptyClassGen<int>[], false);
- Eval(0601, o is NotEmptyClassGen<Guid>, false);
- Eval(0602, o is NotEmptyClassGen<Guid>[], false);
- Eval(0603, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0604, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0599, o is EmptyClassGen<int>, false);
+// Eval(0600, o is EmptyClassGen<int>[], false);
+// Eval(0601, o is NotEmptyClassGen<Guid>, false);
+// Eval(0602, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0603, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0604, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0605, o is NestedClass, false);
Eval(0606, o is NestedClass[], false);
- Eval(0607, o is NestedClassGen<Decimal>, false);
- Eval(0608, o is NestedClassGen<Decimal>[], false);
+// Eval(0607, o is NestedClassGen<Decimal>, false);
+// Eval(0608, o is NestedClassGen<Decimal>[], false);
Eval(0609, o is ImplementOneInterfaceC, false);
Eval(0610, o is ImplementOneInterfaceC[], false);
Eval(0611, o is ImplementTwoInterfaceC, false);
Eval(0612, o is ImplementTwoInterfaceC[], false);
- Eval(0613, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0614, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0615, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0616, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0617, o is ImplementAllInterfaceC<int>, false);
- Eval(0618, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0613, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0614, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0615, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0616, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0617, o is ImplementAllInterfaceC<int>, false);
+// Eval(0618, o is ImplementAllInterfaceC<int>[], false);
Eval(0619, o is SealedClass, false);
Eval(0620, o is SealedClass[], false);
}
@@ -671,18 +671,18 @@ internal class Program
Eval(0626, o is ImplementTwoInterface[], false);
Eval(0627, o is ImplementTwoInterface?, false);
Eval(0628, o is ImplementTwoInterface?[], false);
- Eval(0629, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0630, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0631, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0632, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0633, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0634, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0635, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0636, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0637, o is ImplementAllInterface<int>, false);
- Eval(0638, o is ImplementAllInterface<int>[], false);
- Eval(0639, o is ImplementAllInterface<int>?, false);
- Eval(0640, o is ImplementAllInterface<int>?[], false);
+// Eval(0629, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0630, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0631, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0632, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0633, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0634, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0635, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0636, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0637, o is ImplementAllInterface<int>, false);
+// Eval(0638, o is ImplementAllInterface<int>[], false);
+// Eval(0639, o is ImplementAllInterface<int>?, false);
+// Eval(0640, o is ImplementAllInterface<int>?[], false);
Eval(0641, o is char, false);
Eval(0642, o is char[], false);
Eval(0643, o is char?, false);
@@ -753,38 +753,38 @@ internal class Program
Eval(0708, o is IEmpty[], false);
Eval(0709, o is INotEmpty, false);
Eval(0710, o is INotEmpty[], false);
- Eval(0711, o is IEmptyGen<int>, false);
- Eval(0712, o is IEmptyGen<int>[], false);
- Eval(0713, o is INotEmptyGen<int>, false);
- Eval(0714, o is INotEmptyGen<int>[], false);
+// Eval(0711, o is IEmptyGen<int>, false);
+// Eval(0712, o is IEmptyGen<int>[], false);
+// Eval(0713, o is INotEmptyGen<int>, false);
+// Eval(0714, o is INotEmptyGen<int>[], false);
Eval(0715, o is SimpleDelegate, false);
Eval(0716, o is SimpleDelegate[], false);
- Eval(0717, o is GenericDelegate<int>, false);
- Eval(0718, o is GenericDelegate<int>[], false);
+// Eval(0717, o is GenericDelegate<int>, false);
+// Eval(0718, o is GenericDelegate<int>[], false);
Eval(0719, o is EmptyClass, false);
Eval(0720, o is EmptyClass[], false);
Eval(0721, o is NotEmptyClass, false);
Eval(0722, o is NotEmptyClass[], false);
- Eval(0723, o is EmptyClassGen<int>, false);
- Eval(0724, o is EmptyClassGen<int>[], false);
- Eval(0725, o is NotEmptyClassGen<Guid>, false);
- Eval(0726, o is NotEmptyClassGen<Guid>[], false);
- Eval(0727, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0728, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0723, o is EmptyClassGen<int>, false);
+// Eval(0724, o is EmptyClassGen<int>[], false);
+// Eval(0725, o is NotEmptyClassGen<Guid>, false);
+// Eval(0726, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0727, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0728, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0729, o is NestedClass, false);
Eval(0730, o is NestedClass[], false);
- Eval(0731, o is NestedClassGen<Decimal>, false);
- Eval(0732, o is NestedClassGen<Decimal>[], false);
+// Eval(0731, o is NestedClassGen<Decimal>, false);
+// Eval(0732, o is NestedClassGen<Decimal>[], false);
Eval(0733, o is ImplementOneInterfaceC, false);
Eval(0734, o is ImplementOneInterfaceC[], false);
Eval(0735, o is ImplementTwoInterfaceC, false);
Eval(0736, o is ImplementTwoInterfaceC[], false);
- Eval(0737, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0738, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0739, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0740, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0741, o is ImplementAllInterfaceC<int>, false);
- Eval(0742, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0737, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0738, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0739, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0740, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0741, o is ImplementAllInterfaceC<int>, false);
+// Eval(0742, o is ImplementAllInterfaceC<int>[], false);
Eval(0743, o is SealedClass, false);
Eval(0744, o is SealedClass[], false);
}
@@ -802,18 +802,18 @@ internal class Program
Eval(0750, o is ImplementTwoInterface[], false);
Eval(0751, o is ImplementTwoInterface?, false);
Eval(0752, o is ImplementTwoInterface?[], false);
- Eval(0753, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(0754, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0755, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(0756, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0757, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0758, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0759, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0760, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0761, o is ImplementAllInterface<int>, false);
- Eval(0762, o is ImplementAllInterface<int>[], false);
- Eval(0763, o is ImplementAllInterface<int>?, false);
- Eval(0764, o is ImplementAllInterface<int>?[], false);
+// Eval(0753, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(0754, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0755, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(0756, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0757, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0758, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0759, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0760, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0761, o is ImplementAllInterface<int>, false);
+// Eval(0762, o is ImplementAllInterface<int>[], false);
+// Eval(0763, o is ImplementAllInterface<int>?, false);
+// Eval(0764, o is ImplementAllInterface<int>?[], false);
Eval(0765, o is char, false);
Eval(0766, o is char[], false);
Eval(0767, o is char?, false);
@@ -884,38 +884,38 @@ internal class Program
Eval(0832, o is IEmpty[], false);
Eval(0833, o is INotEmpty, false);
Eval(0834, o is INotEmpty[], false);
- Eval(0835, o is IEmptyGen<int>, false);
- Eval(0836, o is IEmptyGen<int>[], false);
- Eval(0837, o is INotEmptyGen<int>, false);
- Eval(0838, o is INotEmptyGen<int>[], false);
+// Eval(0835, o is IEmptyGen<int>, false);
+// Eval(0836, o is IEmptyGen<int>[], false);
+// Eval(0837, o is INotEmptyGen<int>, false);
+// Eval(0838, o is INotEmptyGen<int>[], false);
Eval(0839, o is SimpleDelegate, false);
Eval(0840, o is SimpleDelegate[], false);
- Eval(0841, o is GenericDelegate<int>, false);
- Eval(0842, o is GenericDelegate<int>[], false);
+// Eval(0841, o is GenericDelegate<int>, false);
+// Eval(0842, o is GenericDelegate<int>[], false);
Eval(0843, o is EmptyClass, false);
Eval(0844, o is EmptyClass[], false);
Eval(0845, o is NotEmptyClass, false);
Eval(0846, o is NotEmptyClass[], false);
- Eval(0847, o is EmptyClassGen<int>, false);
- Eval(0848, o is EmptyClassGen<int>[], false);
- Eval(0849, o is NotEmptyClassGen<Guid>, false);
- Eval(0850, o is NotEmptyClassGen<Guid>[], false);
- Eval(0851, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0852, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0847, o is EmptyClassGen<int>, false);
+// Eval(0848, o is EmptyClassGen<int>[], false);
+// Eval(0849, o is NotEmptyClassGen<Guid>, false);
+// Eval(0850, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0851, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0852, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0853, o is NestedClass, false);
Eval(0854, o is NestedClass[], false);
- Eval(0855, o is NestedClassGen<Decimal>, false);
- Eval(0856, o is NestedClassGen<Decimal>[], false);
+// Eval(0855, o is NestedClassGen<Decimal>, false);
+// Eval(0856, o is NestedClassGen<Decimal>[], false);
Eval(0857, o is ImplementOneInterfaceC, false);
Eval(0858, o is ImplementOneInterfaceC[], false);
Eval(0859, o is ImplementTwoInterfaceC, false);
Eval(0860, o is ImplementTwoInterfaceC[], false);
- Eval(0861, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0862, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0863, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0864, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0865, o is ImplementAllInterfaceC<int>, false);
- Eval(0866, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0861, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0862, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0863, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0864, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0865, o is ImplementAllInterfaceC<int>, false);
+// Eval(0866, o is ImplementAllInterfaceC<int>[], false);
Eval(0867, o is SealedClass, false);
Eval(0868, o is SealedClass[], false);
}
@@ -930,18 +930,18 @@ internal class Program
Eval(0874, o is ImplementTwoInterface[], false);
Eval(0875, o is ImplementTwoInterface?, false);
Eval(0876, o is ImplementTwoInterface?[], false);
- Eval(0877, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(0878, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0879, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(0880, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0881, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0882, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0883, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0884, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0885, o is ImplementAllInterface<int>, false);
- Eval(0886, o is ImplementAllInterface<int>[], false);
- Eval(0887, o is ImplementAllInterface<int>?, false);
- Eval(0888, o is ImplementAllInterface<int>?[], false);
+// Eval(0877, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(0878, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0879, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(0880, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0881, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0882, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0883, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0884, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0885, o is ImplementAllInterface<int>, false);
+// Eval(0886, o is ImplementAllInterface<int>[], false);
+// Eval(0887, o is ImplementAllInterface<int>?, false);
+// Eval(0888, o is ImplementAllInterface<int>?[], false);
Eval(0889, o is char, false);
Eval(0890, o is char[], false);
Eval(0891, o is char?, false);
@@ -1012,38 +1012,38 @@ internal class Program
Eval(0956, o is IEmpty[], false);
Eval(0957, o is INotEmpty, false);
Eval(0958, o is INotEmpty[], false);
- Eval(0959, o is IEmptyGen<int>, false);
- Eval(0960, o is IEmptyGen<int>[], false);
- Eval(0961, o is INotEmptyGen<int>, false);
- Eval(0962, o is INotEmptyGen<int>[], false);
+// Eval(0959, o is IEmptyGen<int>, false);
+// Eval(0960, o is IEmptyGen<int>[], false);
+// Eval(0961, o is INotEmptyGen<int>, false);
+// Eval(0962, o is INotEmptyGen<int>[], false);
Eval(0963, o is SimpleDelegate, false);
Eval(0964, o is SimpleDelegate[], false);
- Eval(0965, o is GenericDelegate<int>, false);
- Eval(0966, o is GenericDelegate<int>[], false);
+// Eval(0965, o is GenericDelegate<int>, false);
+// Eval(0966, o is GenericDelegate<int>[], false);
Eval(0967, o is EmptyClass, false);
Eval(0968, o is EmptyClass[], false);
Eval(0969, o is NotEmptyClass, false);
Eval(0970, o is NotEmptyClass[], false);
- Eval(0971, o is EmptyClassGen<int>, false);
- Eval(0972, o is EmptyClassGen<int>[], false);
- Eval(0973, o is NotEmptyClassGen<Guid>, false);
- Eval(0974, o is NotEmptyClassGen<Guid>[], false);
- Eval(0975, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0976, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0971, o is EmptyClassGen<int>, false);
+// Eval(0972, o is EmptyClassGen<int>[], false);
+// Eval(0973, o is NotEmptyClassGen<Guid>, false);
+// Eval(0974, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0975, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0976, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0977, o is NestedClass, false);
Eval(0978, o is NestedClass[], false);
- Eval(0979, o is NestedClassGen<Decimal>, false);
- Eval(0980, o is NestedClassGen<Decimal>[], false);
+// Eval(0979, o is NestedClassGen<Decimal>, false);
+// Eval(0980, o is NestedClassGen<Decimal>[], false);
Eval(0981, o is ImplementOneInterfaceC, false);
Eval(0982, o is ImplementOneInterfaceC[], false);
Eval(0983, o is ImplementTwoInterfaceC, false);
Eval(0984, o is ImplementTwoInterfaceC[], false);
- Eval(0985, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0986, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0987, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0988, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0989, o is ImplementAllInterfaceC<int>, false);
- Eval(0990, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0985, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0986, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0987, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0988, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0989, o is ImplementAllInterfaceC<int>, false);
+// Eval(0990, o is ImplementAllInterfaceC<int>[], false);
Eval(0991, o is SealedClass, false);
Eval(0992, o is SealedClass[], false);
}
@@ -1058,18 +1058,18 @@ internal class Program
Eval(0998, o is ImplementTwoInterface[], false);
Eval(0999, o is ImplementTwoInterface?, false);
Eval(1000, o is ImplementTwoInterface?[], false);
- Eval(1001, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1002, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1003, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1004, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1005, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1006, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1007, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1008, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1009, o is ImplementAllInterface<int>, false);
- Eval(1010, o is ImplementAllInterface<int>[], false);
- Eval(1011, o is ImplementAllInterface<int>?, false);
- Eval(1012, o is ImplementAllInterface<int>?[], false);
+// Eval(1001, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1002, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1003, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1004, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1005, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1006, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1007, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1008, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1009, o is ImplementAllInterface<int>, false);
+// Eval(1010, o is ImplementAllInterface<int>[], false);
+// Eval(1011, o is ImplementAllInterface<int>?, false);
+// Eval(1012, o is ImplementAllInterface<int>?[], false);
Eval(1013, o is char, false);
Eval(1014, o is char[], false);
Eval(1015, o is char?, false);
@@ -1140,38 +1140,38 @@ internal class Program
Eval(1080, o is IEmpty[], false);
Eval(1081, o is INotEmpty, false);
Eval(1082, o is INotEmpty[], false);
- Eval(1083, o is IEmptyGen<int>, false);
- Eval(1084, o is IEmptyGen<int>[], false);
- Eval(1085, o is INotEmptyGen<int>, false);
- Eval(1086, o is INotEmptyGen<int>[], false);
+// Eval(1083, o is IEmptyGen<int>, false);
+// Eval(1084, o is IEmptyGen<int>[], false);
+// Eval(1085, o is INotEmptyGen<int>, false);
+// Eval(1086, o is INotEmptyGen<int>[], false);
Eval(1087, o is SimpleDelegate, false);
Eval(1088, o is SimpleDelegate[], false);
- Eval(1089, o is GenericDelegate<int>, false);
- Eval(1090, o is GenericDelegate<int>[], false);
+// Eval(1089, o is GenericDelegate<int>, false);
+// Eval(1090, o is GenericDelegate<int>[], false);
Eval(1091, o is EmptyClass, false);
Eval(1092, o is EmptyClass[], false);
Eval(1093, o is NotEmptyClass, false);
Eval(1094, o is NotEmptyClass[], false);
- Eval(1095, o is EmptyClassGen<int>, false);
- Eval(1096, o is EmptyClassGen<int>[], false);
- Eval(1097, o is NotEmptyClassGen<Guid>, false);
- Eval(1098, o is NotEmptyClassGen<Guid>[], false);
- Eval(1099, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1100, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1095, o is EmptyClassGen<int>, false);
+// Eval(1096, o is EmptyClassGen<int>[], false);
+// Eval(1097, o is NotEmptyClassGen<Guid>, false);
+// Eval(1098, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1099, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1100, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1101, o is NestedClass, false);
Eval(1102, o is NestedClass[], false);
- Eval(1103, o is NestedClassGen<Decimal>, false);
- Eval(1104, o is NestedClassGen<Decimal>[], false);
+// Eval(1103, o is NestedClassGen<Decimal>, false);
+// Eval(1104, o is NestedClassGen<Decimal>[], false);
Eval(1105, o is ImplementOneInterfaceC, false);
Eval(1106, o is ImplementOneInterfaceC[], false);
Eval(1107, o is ImplementTwoInterfaceC, false);
Eval(1108, o is ImplementTwoInterfaceC[], false);
- Eval(1109, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1110, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1111, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1112, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1113, o is ImplementAllInterfaceC<int>, false);
- Eval(1114, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1109, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1110, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1111, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1112, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1113, o is ImplementAllInterfaceC<int>, false);
+// Eval(1114, o is ImplementAllInterfaceC<int>[], false);
Eval(1115, o is SealedClass, false);
Eval(1116, o is SealedClass[], false);
}
@@ -1189,18 +1189,18 @@ internal class Program
Eval(1122, o is ImplementTwoInterface[], false);
Eval(1123, o is ImplementTwoInterface?, false);
Eval(1124, o is ImplementTwoInterface?[], false);
- Eval(1125, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1126, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1127, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1128, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1129, o is ImplementTwoInterfaceGen<int>, true);
- Eval(1130, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1131, o is ImplementTwoInterfaceGen<int>?, true);
- Eval(1132, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1133, o is ImplementAllInterface<int>, false);
- Eval(1134, o is ImplementAllInterface<int>[], false);
- Eval(1135, o is ImplementAllInterface<int>?, false);
- Eval(1136, o is ImplementAllInterface<int>?[], false);
+// Eval(1125, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1126, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1127, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1128, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1129, o is ImplementTwoInterfaceGen<int>, true);
+// Eval(1130, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1131, o is ImplementTwoInterfaceGen<int>?, true);
+// Eval(1132, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1133, o is ImplementAllInterface<int>, false);
+// Eval(1134, o is ImplementAllInterface<int>[], false);
+// Eval(1135, o is ImplementAllInterface<int>?, false);
+// Eval(1136, o is ImplementAllInterface<int>?[], false);
Eval(1137, o is char, false);
Eval(1138, o is char[], false);
Eval(1139, o is char?, false);
@@ -1271,38 +1271,38 @@ internal class Program
Eval(1204, o is IEmpty[], false);
Eval(1205, o is INotEmpty, false);
Eval(1206, o is INotEmpty[], false);
- Eval(1207, o is IEmptyGen<int>, true);
- Eval(1208, o is IEmptyGen<int>[], false);
- Eval(1209, o is INotEmptyGen<int>, true);
- Eval(1210, o is INotEmptyGen<int>[], false);
+// Eval(1207, o is IEmptyGen<int>, true);
+// Eval(1208, o is IEmptyGen<int>[], false);
+// Eval(1209, o is INotEmptyGen<int>, true);
+// Eval(1210, o is INotEmptyGen<int>[], false);
Eval(1211, o is SimpleDelegate, false);
Eval(1212, o is SimpleDelegate[], false);
- Eval(1213, o is GenericDelegate<int>, false);
- Eval(1214, o is GenericDelegate<int>[], false);
+// Eval(1213, o is GenericDelegate<int>, false);
+// Eval(1214, o is GenericDelegate<int>[], false);
Eval(1215, o is EmptyClass, false);
Eval(1216, o is EmptyClass[], false);
Eval(1217, o is NotEmptyClass, false);
Eval(1218, o is NotEmptyClass[], false);
- Eval(1219, o is EmptyClassGen<int>, false);
- Eval(1220, o is EmptyClassGen<int>[], false);
- Eval(1221, o is NotEmptyClassGen<Guid>, false);
- Eval(1222, o is NotEmptyClassGen<Guid>[], false);
- Eval(1223, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1224, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1219, o is EmptyClassGen<int>, false);
+// Eval(1220, o is EmptyClassGen<int>[], false);
+// Eval(1221, o is NotEmptyClassGen<Guid>, false);
+// Eval(1222, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1223, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1224, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1225, o is NestedClass, false);
Eval(1226, o is NestedClass[], false);
- Eval(1227, o is NestedClassGen<Decimal>, false);
- Eval(1228, o is NestedClassGen<Decimal>[], false);
+// Eval(1227, o is NestedClassGen<Decimal>, false);
+// Eval(1228, o is NestedClassGen<Decimal>[], false);
Eval(1229, o is ImplementOneInterfaceC, false);
Eval(1230, o is ImplementOneInterfaceC[], false);
Eval(1231, o is ImplementTwoInterfaceC, false);
Eval(1232, o is ImplementTwoInterfaceC[], false);
- Eval(1233, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1234, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1235, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1236, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1237, o is ImplementAllInterfaceC<int>, false);
- Eval(1238, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1233, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1234, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1235, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1236, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1237, o is ImplementAllInterfaceC<int>, false);
+// Eval(1238, o is ImplementAllInterfaceC<int>[], false);
Eval(1239, o is SealedClass, false);
Eval(1240, o is SealedClass[], false);
}
@@ -1317,18 +1317,18 @@ internal class Program
Eval(1246, o is ImplementTwoInterface[], false);
Eval(1247, o is ImplementTwoInterface?, false);
Eval(1248, o is ImplementTwoInterface?[], false);
- Eval(1249, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1250, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1251, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1252, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1253, o is ImplementTwoInterfaceGen<int>, true);
- Eval(1254, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1255, o is ImplementTwoInterfaceGen<int>?, true);
- Eval(1256, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1257, o is ImplementAllInterface<int>, false);
- Eval(1258, o is ImplementAllInterface<int>[], false);
- Eval(1259, o is ImplementAllInterface<int>?, false);
- Eval(1260, o is ImplementAllInterface<int>?[], false);
+// Eval(1249, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1250, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1251, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1252, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1253, o is ImplementTwoInterfaceGen<int>, true);
+// Eval(1254, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1255, o is ImplementTwoInterfaceGen<int>?, true);
+// Eval(1256, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1257, o is ImplementAllInterface<int>, false);
+// Eval(1258, o is ImplementAllInterface<int>[], false);
+// Eval(1259, o is ImplementAllInterface<int>?, false);
+// Eval(1260, o is ImplementAllInterface<int>?[], false);
Eval(1261, o is char, false);
Eval(1262, o is char[], false);
Eval(1263, o is char?, false);
@@ -1399,38 +1399,38 @@ internal class Program
Eval(1328, o is IEmpty[], false);
Eval(1329, o is INotEmpty, false);
Eval(1330, o is INotEmpty[], false);
- Eval(1331, o is IEmptyGen<int>, true);
- Eval(1332, o is IEmptyGen<int>[], false);
- Eval(1333, o is INotEmptyGen<int>, true);
- Eval(1334, o is INotEmptyGen<int>[], false);
+// Eval(1331, o is IEmptyGen<int>, true);
+// Eval(1332, o is IEmptyGen<int>[], false);
+// Eval(1333, o is INotEmptyGen<int>, true);
+// Eval(1334, o is INotEmptyGen<int>[], false);
Eval(1335, o is SimpleDelegate, false);
Eval(1336, o is SimpleDelegate[], false);
- Eval(1337, o is GenericDelegate<int>, false);
- Eval(1338, o is GenericDelegate<int>[], false);
+// Eval(1337, o is GenericDelegate<int>, false);
+// Eval(1338, o is GenericDelegate<int>[], false);
Eval(1339, o is EmptyClass, false);
Eval(1340, o is EmptyClass[], false);
Eval(1341, o is NotEmptyClass, false);
Eval(1342, o is NotEmptyClass[], false);
- Eval(1343, o is EmptyClassGen<int>, false);
- Eval(1344, o is EmptyClassGen<int>[], false);
- Eval(1345, o is NotEmptyClassGen<Guid>, false);
- Eval(1346, o is NotEmptyClassGen<Guid>[], false);
- Eval(1347, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1348, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1343, o is EmptyClassGen<int>, false);
+// Eval(1344, o is EmptyClassGen<int>[], false);
+// Eval(1345, o is NotEmptyClassGen<Guid>, false);
+// Eval(1346, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1347, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1348, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1349, o is NestedClass, false);
Eval(1350, o is NestedClass[], false);
- Eval(1351, o is NestedClassGen<Decimal>, false);
- Eval(1352, o is NestedClassGen<Decimal>[], false);
+// Eval(1351, o is NestedClassGen<Decimal>, false);
+// Eval(1352, o is NestedClassGen<Decimal>[], false);
Eval(1353, o is ImplementOneInterfaceC, false);
Eval(1354, o is ImplementOneInterfaceC[], false);
Eval(1355, o is ImplementTwoInterfaceC, false);
Eval(1356, o is ImplementTwoInterfaceC[], false);
- Eval(1357, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1358, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1359, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1360, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1361, o is ImplementAllInterfaceC<int>, false);
- Eval(1362, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1357, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1358, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1359, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1360, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1361, o is ImplementAllInterfaceC<int>, false);
+// Eval(1362, o is ImplementAllInterfaceC<int>[], false);
Eval(1363, o is SealedClass, false);
Eval(1364, o is SealedClass[], false);
}
@@ -1445,18 +1445,18 @@ internal class Program
Eval(1370, o is ImplementTwoInterface[], false);
Eval(1371, o is ImplementTwoInterface?, false);
Eval(1372, o is ImplementTwoInterface?[], false);
- Eval(1373, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1374, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1375, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1376, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1377, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1378, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1379, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1380, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1381, o is ImplementAllInterface<int>, false);
- Eval(1382, o is ImplementAllInterface<int>[], false);
- Eval(1383, o is ImplementAllInterface<int>?, false);
- Eval(1384, o is ImplementAllInterface<int>?[], false);
+// Eval(1373, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1374, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1375, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1376, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1377, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1378, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1379, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1380, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1381, o is ImplementAllInterface<int>, false);
+// Eval(1382, o is ImplementAllInterface<int>[], false);
+// Eval(1383, o is ImplementAllInterface<int>?, false);
+// Eval(1384, o is ImplementAllInterface<int>?[], false);
Eval(1385, o is char, false);
Eval(1386, o is char[], false);
Eval(1387, o is char?, false);
@@ -1527,38 +1527,38 @@ internal class Program
Eval(1452, o is IEmpty[], false);
Eval(1453, o is INotEmpty, false);
Eval(1454, o is INotEmpty[], false);
- Eval(1455, o is IEmptyGen<int>, false);
- Eval(1456, o is IEmptyGen<int>[], false);
- Eval(1457, o is INotEmptyGen<int>, false);
- Eval(1458, o is INotEmptyGen<int>[], false);
+// Eval(1455, o is IEmptyGen<int>, false);
+// Eval(1456, o is IEmptyGen<int>[], false);
+// Eval(1457, o is INotEmptyGen<int>, false);
+// Eval(1458, o is INotEmptyGen<int>[], false);
Eval(1459, o is SimpleDelegate, false);
Eval(1460, o is SimpleDelegate[], false);
- Eval(1461, o is GenericDelegate<int>, false);
- Eval(1462, o is GenericDelegate<int>[], false);
+// Eval(1461, o is GenericDelegate<int>, false);
+// Eval(1462, o is GenericDelegate<int>[], false);
Eval(1463, o is EmptyClass, false);
Eval(1464, o is EmptyClass[], false);
Eval(1465, o is NotEmptyClass, false);
Eval(1466, o is NotEmptyClass[], false);
- Eval(1467, o is EmptyClassGen<int>, false);
- Eval(1468, o is EmptyClassGen<int>[], false);
- Eval(1469, o is NotEmptyClassGen<Guid>, false);
- Eval(1470, o is NotEmptyClassGen<Guid>[], false);
- Eval(1471, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1472, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1467, o is EmptyClassGen<int>, false);
+// Eval(1468, o is EmptyClassGen<int>[], false);
+// Eval(1469, o is NotEmptyClassGen<Guid>, false);
+// Eval(1470, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1471, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1472, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1473, o is NestedClass, false);
Eval(1474, o is NestedClass[], false);
- Eval(1475, o is NestedClassGen<Decimal>, false);
- Eval(1476, o is NestedClassGen<Decimal>[], false);
+// Eval(1475, o is NestedClassGen<Decimal>, false);
+// Eval(1476, o is NestedClassGen<Decimal>[], false);
Eval(1477, o is ImplementOneInterfaceC, false);
Eval(1478, o is ImplementOneInterfaceC[], false);
Eval(1479, o is ImplementTwoInterfaceC, false);
Eval(1480, o is ImplementTwoInterfaceC[], false);
- Eval(1481, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1482, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1483, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1484, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1485, o is ImplementAllInterfaceC<int>, false);
- Eval(1486, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1481, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1482, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1483, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1484, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1485, o is ImplementAllInterfaceC<int>, false);
+// Eval(1486, o is ImplementAllInterfaceC<int>[], false);
Eval(1487, o is SealedClass, false);
Eval(1488, o is SealedClass[], false);
}
@@ -1576,18 +1576,18 @@ internal class Program
Eval(1494, o is ImplementTwoInterface[], false);
Eval(1495, o is ImplementTwoInterface?, false);
Eval(1496, o is ImplementTwoInterface?[], false);
- Eval(1497, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1498, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1499, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1500, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1501, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1502, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1503, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1504, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1505, o is ImplementAllInterface<int>, true);
- Eval(1506, o is ImplementAllInterface<int>[], false);
- Eval(1507, o is ImplementAllInterface<int>?, true);
- Eval(1508, o is ImplementAllInterface<int>?[], false);
+// Eval(1497, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1498, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1499, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1500, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1501, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1502, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1503, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1504, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1505, o is ImplementAllInterface<int>, true);
+// Eval(1506, o is ImplementAllInterface<int>[], false);
+// Eval(1507, o is ImplementAllInterface<int>?, true);
+// Eval(1508, o is ImplementAllInterface<int>?[], false);
Eval(1509, o is char, false);
Eval(1510, o is char[], false);
Eval(1511, o is char?, false);
@@ -1658,38 +1658,38 @@ internal class Program
Eval(1576, o is IEmpty[], false);
Eval(1577, o is INotEmpty, true);
Eval(1578, o is INotEmpty[], false);
- Eval(1579, o is IEmptyGen<int>, true);
- Eval(1580, o is IEmptyGen<int>[], false);
- Eval(1581, o is INotEmptyGen<int>, true);
- Eval(1582, o is INotEmptyGen<int>[], false);
+// Eval(1579, o is IEmptyGen<int>, true);
+// Eval(1580, o is IEmptyGen<int>[], false);
+// Eval(1581, o is INotEmptyGen<int>, true);
+// Eval(1582, o is INotEmptyGen<int>[], false);
Eval(1583, o is SimpleDelegate, false);
Eval(1584, o is SimpleDelegate[], false);
- Eval(1585, o is GenericDelegate<int>, false);
- Eval(1586, o is GenericDelegate<int>[], false);
+// Eval(1585, o is GenericDelegate<int>, false);
+// Eval(1586, o is GenericDelegate<int>[], false);
Eval(1587, o is EmptyClass, false);
Eval(1588, o is EmptyClass[], false);
Eval(1589, o is NotEmptyClass, false);
Eval(1590, o is NotEmptyClass[], false);
- Eval(1591, o is EmptyClassGen<int>, false);
- Eval(1592, o is EmptyClassGen<int>[], false);
- Eval(1593, o is NotEmptyClassGen<Guid>, false);
- Eval(1594, o is NotEmptyClassGen<Guid>[], false);
- Eval(1595, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1596, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1591, o is EmptyClassGen<int>, false);
+// Eval(1592, o is EmptyClassGen<int>[], false);
+// Eval(1593, o is NotEmptyClassGen<Guid>, false);
+// Eval(1594, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1595, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1596, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1597, o is NestedClass, false);
Eval(1598, o is NestedClass[], false);
- Eval(1599, o is NestedClassGen<Decimal>, false);
- Eval(1600, o is NestedClassGen<Decimal>[], false);
+// Eval(1599, o is NestedClassGen<Decimal>, false);
+// Eval(1600, o is NestedClassGen<Decimal>[], false);
Eval(1601, o is ImplementOneInterfaceC, false);
Eval(1602, o is ImplementOneInterfaceC[], false);
Eval(1603, o is ImplementTwoInterfaceC, false);
Eval(1604, o is ImplementTwoInterfaceC[], false);
- Eval(1605, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1606, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1607, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1608, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1609, o is ImplementAllInterfaceC<int>, false);
- Eval(1610, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1605, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1606, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1607, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1608, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1609, o is ImplementAllInterfaceC<int>, false);
+// Eval(1610, o is ImplementAllInterfaceC<int>[], false);
Eval(1611, o is SealedClass, false);
Eval(1612, o is SealedClass[], false);
}
@@ -1704,18 +1704,18 @@ internal class Program
Eval(1618, o is ImplementTwoInterface[], false);
Eval(1619, o is ImplementTwoInterface?, false);
Eval(1620, o is ImplementTwoInterface?[], false);
- Eval(1621, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1622, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1623, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1624, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1625, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1626, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1627, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1628, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1629, o is ImplementAllInterface<int>, true);
- Eval(1630, o is ImplementAllInterface<int>[], false);
- Eval(1631, o is ImplementAllInterface<int>?, true);
- Eval(1632, o is ImplementAllInterface<int>?[], false);
+// Eval(1621, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1622, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1623, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1624, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1625, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1626, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1627, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1628, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1629, o is ImplementAllInterface<int>, true);
+// Eval(1630, o is ImplementAllInterface<int>[], false);
+// Eval(1631, o is ImplementAllInterface<int>?, true);
+// Eval(1632, o is ImplementAllInterface<int>?[], false);
Eval(1633, o is char, false);
Eval(1634, o is char[], false);
Eval(1635, o is char?, false);
@@ -1786,38 +1786,38 @@ internal class Program
Eval(1700, o is IEmpty[], false);
Eval(1701, o is INotEmpty, true);
Eval(1702, o is INotEmpty[], false);
- Eval(1703, o is IEmptyGen<int>, true);
- Eval(1704, o is IEmptyGen<int>[], false);
- Eval(1705, o is INotEmptyGen<int>, true);
- Eval(1706, o is INotEmptyGen<int>[], false);
+// Eval(1703, o is IEmptyGen<int>, true);
+// Eval(1704, o is IEmptyGen<int>[], false);
+// Eval(1705, o is INotEmptyGen<int>, true);
+// Eval(1706, o is INotEmptyGen<int>[], false);
Eval(1707, o is SimpleDelegate, false);
Eval(1708, o is SimpleDelegate[], false);
- Eval(1709, o is GenericDelegate<int>, false);
- Eval(1710, o is GenericDelegate<int>[], false);
+// Eval(1709, o is GenericDelegate<int>, false);
+// Eval(1710, o is GenericDelegate<int>[], false);
Eval(1711, o is EmptyClass, false);
Eval(1712, o is EmptyClass[], false);
Eval(1713, o is NotEmptyClass, false);
Eval(1714, o is NotEmptyClass[], false);
- Eval(1715, o is EmptyClassGen<int>, false);
- Eval(1716, o is EmptyClassGen<int>[], false);
- Eval(1717, o is NotEmptyClassGen<Guid>, false);
- Eval(1718, o is NotEmptyClassGen<Guid>[], false);
- Eval(1719, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1720, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1715, o is EmptyClassGen<int>, false);
+// Eval(1716, o is EmptyClassGen<int>[], false);
+// Eval(1717, o is NotEmptyClassGen<Guid>, false);
+// Eval(1718, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1719, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1720, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1721, o is NestedClass, false);
Eval(1722, o is NestedClass[], false);
- Eval(1723, o is NestedClassGen<Decimal>, false);
- Eval(1724, o is NestedClassGen<Decimal>[], false);
+// Eval(1723, o is NestedClassGen<Decimal>, false);
+// Eval(1724, o is NestedClassGen<Decimal>[], false);
Eval(1725, o is ImplementOneInterfaceC, false);
Eval(1726, o is ImplementOneInterfaceC[], false);
Eval(1727, o is ImplementTwoInterfaceC, false);
Eval(1728, o is ImplementTwoInterfaceC[], false);
- Eval(1729, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1730, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1731, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1732, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1733, o is ImplementAllInterfaceC<int>, false);
- Eval(1734, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1729, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1730, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1731, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1732, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1733, o is ImplementAllInterfaceC<int>, false);
+// Eval(1734, o is ImplementAllInterfaceC<int>[], false);
Eval(1735, o is SealedClass, false);
Eval(1736, o is SealedClass[], false);
}
@@ -1832,18 +1832,18 @@ internal class Program
Eval(1742, o is ImplementTwoInterface[], false);
Eval(1743, o is ImplementTwoInterface?, false);
Eval(1744, o is ImplementTwoInterface?[], false);
- Eval(1745, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1746, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1747, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1748, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1749, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1750, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1751, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1752, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1753, o is ImplementAllInterface<int>, false);
- Eval(1754, o is ImplementAllInterface<int>[], false);
- Eval(1755, o is ImplementAllInterface<int>?, false);
- Eval(1756, o is ImplementAllInterface<int>?[], false);
+// Eval(1745, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1746, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1747, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1748, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1749, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1750, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1751, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1752, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1753, o is ImplementAllInterface<int>, false);
+// Eval(1754, o is ImplementAllInterface<int>[], false);
+// Eval(1755, o is ImplementAllInterface<int>?, false);
+// Eval(1756, o is ImplementAllInterface<int>?[], false);
Eval(1757, o is char, false);
Eval(1758, o is char[], false);
Eval(1759, o is char?, false);
@@ -1914,38 +1914,38 @@ internal class Program
Eval(1824, o is IEmpty[], false);
Eval(1825, o is INotEmpty, false);
Eval(1826, o is INotEmpty[], false);
- Eval(1827, o is IEmptyGen<int>, false);
- Eval(1828, o is IEmptyGen<int>[], false);
- Eval(1829, o is INotEmptyGen<int>, false);
- Eval(1830, o is INotEmptyGen<int>[], false);
+// Eval(1827, o is IEmptyGen<int>, false);
+// Eval(1828, o is IEmptyGen<int>[], false);
+// Eval(1829, o is INotEmptyGen<int>, false);
+// Eval(1830, o is INotEmptyGen<int>[], false);
Eval(1831, o is SimpleDelegate, false);
Eval(1832, o is SimpleDelegate[], false);
- Eval(1833, o is GenericDelegate<int>, false);
- Eval(1834, o is GenericDelegate<int>[], false);
+// Eval(1833, o is GenericDelegate<int>, false);
+// Eval(1834, o is GenericDelegate<int>[], false);
Eval(1835, o is EmptyClass, false);
Eval(1836, o is EmptyClass[], false);
Eval(1837, o is NotEmptyClass, false);
Eval(1838, o is NotEmptyClass[], false);
- Eval(1839, o is EmptyClassGen<int>, false);
- Eval(1840, o is EmptyClassGen<int>[], false);
- Eval(1841, o is NotEmptyClassGen<Guid>, false);
- Eval(1842, o is NotEmptyClassGen<Guid>[], false);
- Eval(1843, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1844, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1839, o is EmptyClassGen<int>, false);
+// Eval(1840, o is EmptyClassGen<int>[], false);
+// Eval(1841, o is NotEmptyClassGen<Guid>, false);
+// Eval(1842, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1843, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1844, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1845, o is NestedClass, false);
Eval(1846, o is NestedClass[], false);
- Eval(1847, o is NestedClassGen<Decimal>, false);
- Eval(1848, o is NestedClassGen<Decimal>[], false);
+// Eval(1847, o is NestedClassGen<Decimal>, false);
+// Eval(1848, o is NestedClassGen<Decimal>[], false);
Eval(1849, o is ImplementOneInterfaceC, false);
Eval(1850, o is ImplementOneInterfaceC[], false);
Eval(1851, o is ImplementTwoInterfaceC, false);
Eval(1852, o is ImplementTwoInterfaceC[], false);
- Eval(1853, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1854, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1855, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1856, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1857, o is ImplementAllInterfaceC<int>, false);
- Eval(1858, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1853, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1854, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1855, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1856, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1857, o is ImplementAllInterfaceC<int>, false);
+// Eval(1858, o is ImplementAllInterfaceC<int>[], false);
Eval(1859, o is SealedClass, false);
Eval(1860, o is SealedClass[], false);
}
@@ -1963,18 +1963,18 @@ internal class Program
Eval(1866, o is ImplementTwoInterface[], false);
Eval(1867, o is ImplementTwoInterface?, false);
Eval(1868, o is ImplementTwoInterface?[], false);
- Eval(1869, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1870, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1871, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1872, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1873, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1874, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1875, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1876, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1877, o is ImplementAllInterface<int>, false);
- Eval(1878, o is ImplementAllInterface<int>[], false);
- Eval(1879, o is ImplementAllInterface<int>?, false);
- Eval(1880, o is ImplementAllInterface<int>?[], false);
+// Eval(1869, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1870, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1871, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1872, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1873, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1874, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1875, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1876, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1877, o is ImplementAllInterface<int>, false);
+// Eval(1878, o is ImplementAllInterface<int>[], false);
+// Eval(1879, o is ImplementAllInterface<int>?, false);
+// Eval(1880, o is ImplementAllInterface<int>?[], false);
Eval(1881, o is char, true);
Eval(1882, o is char[], false);
Eval(1883, o is char?, true);
@@ -2045,38 +2045,38 @@ internal class Program
Eval(1948, o is IEmpty[], false);
Eval(1949, o is INotEmpty, false);
Eval(1950, o is INotEmpty[], false);
- Eval(1951, o is IEmptyGen<int>, false);
- Eval(1952, o is IEmptyGen<int>[], false);
- Eval(1953, o is INotEmptyGen<int>, false);
- Eval(1954, o is INotEmptyGen<int>[], false);
+// Eval(1951, o is IEmptyGen<int>, false);
+// Eval(1952, o is IEmptyGen<int>[], false);
+// Eval(1953, o is INotEmptyGen<int>, false);
+// Eval(1954, o is INotEmptyGen<int>[], false);
Eval(1955, o is SimpleDelegate, false);
Eval(1956, o is SimpleDelegate[], false);
- Eval(1957, o is GenericDelegate<int>, false);
- Eval(1958, o is GenericDelegate<int>[], false);
+// Eval(1957, o is GenericDelegate<int>, false);
+// Eval(1958, o is GenericDelegate<int>[], false);
Eval(1959, o is EmptyClass, false);
Eval(1960, o is EmptyClass[], false);
Eval(1961, o is NotEmptyClass, false);
Eval(1962, o is NotEmptyClass[], false);
- Eval(1963, o is EmptyClassGen<int>, false);
- Eval(1964, o is EmptyClassGen<int>[], false);
- Eval(1965, o is NotEmptyClassGen<Guid>, false);
- Eval(1966, o is NotEmptyClassGen<Guid>[], false);
- Eval(1967, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1968, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1963, o is EmptyClassGen<int>, false);
+// Eval(1964, o is EmptyClassGen<int>[], false);
+// Eval(1965, o is NotEmptyClassGen<Guid>, false);
+// Eval(1966, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1967, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1968, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1969, o is NestedClass, false);
Eval(1970, o is NestedClass[], false);
- Eval(1971, o is NestedClassGen<Decimal>, false);
- Eval(1972, o is NestedClassGen<Decimal>[], false);
+// Eval(1971, o is NestedClassGen<Decimal>, false);
+// Eval(1972, o is NestedClassGen<Decimal>[], false);
Eval(1973, o is ImplementOneInterfaceC, false);
Eval(1974, o is ImplementOneInterfaceC[], false);
Eval(1975, o is ImplementTwoInterfaceC, false);
Eval(1976, o is ImplementTwoInterfaceC[], false);
- Eval(1977, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1978, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1979, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1980, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1981, o is ImplementAllInterfaceC<int>, false);
- Eval(1982, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1977, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1978, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1979, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1980, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1981, o is ImplementAllInterfaceC<int>, false);
+// Eval(1982, o is ImplementAllInterfaceC<int>[], false);
Eval(1983, o is SealedClass, false);
Eval(1984, o is SealedClass[], false);
}
@@ -2091,18 +2091,18 @@ internal class Program
Eval(1990, o is ImplementTwoInterface[], false);
Eval(1991, o is ImplementTwoInterface?, false);
Eval(1992, o is ImplementTwoInterface?[], false);
- Eval(1993, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1994, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1995, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1996, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1997, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1998, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1999, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2000, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2001, o is ImplementAllInterface<int>, false);
- Eval(2002, o is ImplementAllInterface<int>[], false);
- Eval(2003, o is ImplementAllInterface<int>?, false);
- Eval(2004, o is ImplementAllInterface<int>?[], false);
+// Eval(1993, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1994, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1995, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1996, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1997, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1998, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1999, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2000, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2001, o is ImplementAllInterface<int>, false);
+// Eval(2002, o is ImplementAllInterface<int>[], false);
+// Eval(2003, o is ImplementAllInterface<int>?, false);
+// Eval(2004, o is ImplementAllInterface<int>?[], false);
Eval(2005, o is char, true);
Eval(2006, o is char[], false);
Eval(2007, o is char?, true);
@@ -2173,38 +2173,38 @@ internal class Program
Eval(2072, o is IEmpty[], false);
Eval(2073, o is INotEmpty, false);
Eval(2074, o is INotEmpty[], false);
- Eval(2075, o is IEmptyGen<int>, false);
- Eval(2076, o is IEmptyGen<int>[], false);
- Eval(2077, o is INotEmptyGen<int>, false);
- Eval(2078, o is INotEmptyGen<int>[], false);
+// Eval(2075, o is IEmptyGen<int>, false);
+// Eval(2076, o is IEmptyGen<int>[], false);
+// Eval(2077, o is INotEmptyGen<int>, false);
+// Eval(2078, o is INotEmptyGen<int>[], false);
Eval(2079, o is SimpleDelegate, false);
Eval(2080, o is SimpleDelegate[], false);
- Eval(2081, o is GenericDelegate<int>, false);
- Eval(2082, o is GenericDelegate<int>[], false);
+// Eval(2081, o is GenericDelegate<int>, false);
+// Eval(2082, o is GenericDelegate<int>[], false);
Eval(2083, o is EmptyClass, false);
Eval(2084, o is EmptyClass[], false);
Eval(2085, o is NotEmptyClass, false);
Eval(2086, o is NotEmptyClass[], false);
- Eval(2087, o is EmptyClassGen<int>, false);
- Eval(2088, o is EmptyClassGen<int>[], false);
- Eval(2089, o is NotEmptyClassGen<Guid>, false);
- Eval(2090, o is NotEmptyClassGen<Guid>[], false);
- Eval(2091, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2092, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2087, o is EmptyClassGen<int>, false);
+// Eval(2088, o is EmptyClassGen<int>[], false);
+// Eval(2089, o is NotEmptyClassGen<Guid>, false);
+// Eval(2090, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2091, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2092, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2093, o is NestedClass, false);
Eval(2094, o is NestedClass[], false);
- Eval(2095, o is NestedClassGen<Decimal>, false);
- Eval(2096, o is NestedClassGen<Decimal>[], false);
+// Eval(2095, o is NestedClassGen<Decimal>, false);
+// Eval(2096, o is NestedClassGen<Decimal>[], false);
Eval(2097, o is ImplementOneInterfaceC, false);
Eval(2098, o is ImplementOneInterfaceC[], false);
Eval(2099, o is ImplementTwoInterfaceC, false);
Eval(2100, o is ImplementTwoInterfaceC[], false);
- Eval(2101, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2102, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2103, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2104, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2105, o is ImplementAllInterfaceC<int>, false);
- Eval(2106, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2101, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2102, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2103, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2104, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2105, o is ImplementAllInterfaceC<int>, false);
+// Eval(2106, o is ImplementAllInterfaceC<int>[], false);
Eval(2107, o is SealedClass, false);
Eval(2108, o is SealedClass[], false);
}
@@ -2219,18 +2219,18 @@ internal class Program
Eval(2114, o is ImplementTwoInterface[], false);
Eval(2115, o is ImplementTwoInterface?, false);
Eval(2116, o is ImplementTwoInterface?[], false);
- Eval(2117, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2118, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2119, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2120, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2121, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2122, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2123, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2124, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2125, o is ImplementAllInterface<int>, false);
- Eval(2126, o is ImplementAllInterface<int>[], false);
- Eval(2127, o is ImplementAllInterface<int>?, false);
- Eval(2128, o is ImplementAllInterface<int>?[], false);
+// Eval(2117, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2118, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2119, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2120, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2121, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2122, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2123, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2124, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2125, o is ImplementAllInterface<int>, false);
+// Eval(2126, o is ImplementAllInterface<int>[], false);
+// Eval(2127, o is ImplementAllInterface<int>?, false);
+// Eval(2128, o is ImplementAllInterface<int>?[], false);
Eval(2129, o is char, false);
Eval(2130, o is char[], false);
Eval(2131, o is char?, false);
@@ -2301,38 +2301,38 @@ internal class Program
Eval(2196, o is IEmpty[], false);
Eval(2197, o is INotEmpty, false);
Eval(2198, o is INotEmpty[], false);
- Eval(2199, o is IEmptyGen<int>, false);
- Eval(2200, o is IEmptyGen<int>[], false);
- Eval(2201, o is INotEmptyGen<int>, false);
- Eval(2202, o is INotEmptyGen<int>[], false);
+// Eval(2199, o is IEmptyGen<int>, false);
+// Eval(2200, o is IEmptyGen<int>[], false);
+// Eval(2201, o is INotEmptyGen<int>, false);
+// Eval(2202, o is INotEmptyGen<int>[], false);
Eval(2203, o is SimpleDelegate, false);
Eval(2204, o is SimpleDelegate[], false);
- Eval(2205, o is GenericDelegate<int>, false);
- Eval(2206, o is GenericDelegate<int>[], false);
+// Eval(2205, o is GenericDelegate<int>, false);
+// Eval(2206, o is GenericDelegate<int>[], false);
Eval(2207, o is EmptyClass, false);
Eval(2208, o is EmptyClass[], false);
Eval(2209, o is NotEmptyClass, false);
Eval(2210, o is NotEmptyClass[], false);
- Eval(2211, o is EmptyClassGen<int>, false);
- Eval(2212, o is EmptyClassGen<int>[], false);
- Eval(2213, o is NotEmptyClassGen<Guid>, false);
- Eval(2214, o is NotEmptyClassGen<Guid>[], false);
- Eval(2215, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2216, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2211, o is EmptyClassGen<int>, false);
+// Eval(2212, o is EmptyClassGen<int>[], false);
+// Eval(2213, o is NotEmptyClassGen<Guid>, false);
+// Eval(2214, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2215, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2216, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2217, o is NestedClass, false);
Eval(2218, o is NestedClass[], false);
- Eval(2219, o is NestedClassGen<Decimal>, false);
- Eval(2220, o is NestedClassGen<Decimal>[], false);
+// Eval(2219, o is NestedClassGen<Decimal>, false);
+// Eval(2220, o is NestedClassGen<Decimal>[], false);
Eval(2221, o is ImplementOneInterfaceC, false);
Eval(2222, o is ImplementOneInterfaceC[], false);
Eval(2223, o is ImplementTwoInterfaceC, false);
Eval(2224, o is ImplementTwoInterfaceC[], false);
- Eval(2225, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2226, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2227, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2228, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2229, o is ImplementAllInterfaceC<int>, false);
- Eval(2230, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2225, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2226, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2227, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2228, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2229, o is ImplementAllInterfaceC<int>, false);
+// Eval(2230, o is ImplementAllInterfaceC<int>[], false);
Eval(2231, o is SealedClass, false);
Eval(2232, o is SealedClass[], false);
}
@@ -2350,18 +2350,18 @@ internal class Program
Eval(2238, o is ImplementTwoInterface[], false);
Eval(2239, o is ImplementTwoInterface?, false);
Eval(2240, o is ImplementTwoInterface?[], false);
- Eval(2241, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2242, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2243, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2244, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2245, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2246, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2247, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2248, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2249, o is ImplementAllInterface<int>, false);
- Eval(2250, o is ImplementAllInterface<int>[], false);
- Eval(2251, o is ImplementAllInterface<int>?, false);
- Eval(2252, o is ImplementAllInterface<int>?[], false);
+// Eval(2241, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2242, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2243, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2244, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2245, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2246, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2247, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2248, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2249, o is ImplementAllInterface<int>, false);
+// Eval(2250, o is ImplementAllInterface<int>[], false);
+// Eval(2251, o is ImplementAllInterface<int>?, false);
+// Eval(2252, o is ImplementAllInterface<int>?[], false);
Eval(2253, o is char, false);
Eval(2254, o is char[], false);
Eval(2255, o is char?, false);
@@ -2432,38 +2432,38 @@ internal class Program
Eval(2320, o is IEmpty[], false);
Eval(2321, o is INotEmpty, false);
Eval(2322, o is INotEmpty[], false);
- Eval(2323, o is IEmptyGen<int>, false);
- Eval(2324, o is IEmptyGen<int>[], false);
- Eval(2325, o is INotEmptyGen<int>, false);
- Eval(2326, o is INotEmptyGen<int>[], false);
+// Eval(2323, o is IEmptyGen<int>, false);
+// Eval(2324, o is IEmptyGen<int>[], false);
+// Eval(2325, o is INotEmptyGen<int>, false);
+// Eval(2326, o is INotEmptyGen<int>[], false);
Eval(2327, o is SimpleDelegate, false);
Eval(2328, o is SimpleDelegate[], false);
- Eval(2329, o is GenericDelegate<int>, false);
- Eval(2330, o is GenericDelegate<int>[], false);
+// Eval(2329, o is GenericDelegate<int>, false);
+// Eval(2330, o is GenericDelegate<int>[], false);
Eval(2331, o is EmptyClass, false);
Eval(2332, o is EmptyClass[], false);
Eval(2333, o is NotEmptyClass, false);
Eval(2334, o is NotEmptyClass[], false);
- Eval(2335, o is EmptyClassGen<int>, false);
- Eval(2336, o is EmptyClassGen<int>[], false);
- Eval(2337, o is NotEmptyClassGen<Guid>, false);
- Eval(2338, o is NotEmptyClassGen<Guid>[], false);
- Eval(2339, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2340, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2335, o is EmptyClassGen<int>, false);
+// Eval(2336, o is EmptyClassGen<int>[], false);
+// Eval(2337, o is NotEmptyClassGen<Guid>, false);
+// Eval(2338, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2339, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2340, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2341, o is NestedClass, false);
Eval(2342, o is NestedClass[], false);
- Eval(2343, o is NestedClassGen<Decimal>, false);
- Eval(2344, o is NestedClassGen<Decimal>[], false);
+// Eval(2343, o is NestedClassGen<Decimal>, false);
+// Eval(2344, o is NestedClassGen<Decimal>[], false);
Eval(2345, o is ImplementOneInterfaceC, false);
Eval(2346, o is ImplementOneInterfaceC[], false);
Eval(2347, o is ImplementTwoInterfaceC, false);
Eval(2348, o is ImplementTwoInterfaceC[], false);
- Eval(2349, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2350, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2351, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2352, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2353, o is ImplementAllInterfaceC<int>, false);
- Eval(2354, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2349, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2350, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2351, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2352, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2353, o is ImplementAllInterfaceC<int>, false);
+// Eval(2354, o is ImplementAllInterfaceC<int>[], false);
Eval(2355, o is SealedClass, false);
Eval(2356, o is SealedClass[], false);
}
@@ -2478,18 +2478,18 @@ internal class Program
Eval(2362, o is ImplementTwoInterface[], false);
Eval(2363, o is ImplementTwoInterface?, false);
Eval(2364, o is ImplementTwoInterface?[], false);
- Eval(2365, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2366, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2367, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2368, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2369, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2370, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2371, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2372, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2373, o is ImplementAllInterface<int>, false);
- Eval(2374, o is ImplementAllInterface<int>[], false);
- Eval(2375, o is ImplementAllInterface<int>?, false);
- Eval(2376, o is ImplementAllInterface<int>?[], false);
+// Eval(2365, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2366, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2367, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2368, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2369, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2370, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2371, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2372, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2373, o is ImplementAllInterface<int>, false);
+// Eval(2374, o is ImplementAllInterface<int>[], false);
+// Eval(2375, o is ImplementAllInterface<int>?, false);
+// Eval(2376, o is ImplementAllInterface<int>?[], false);
Eval(2377, o is char, false);
Eval(2378, o is char[], false);
Eval(2379, o is char?, false);
@@ -2560,38 +2560,38 @@ internal class Program
Eval(2444, o is IEmpty[], false);
Eval(2445, o is INotEmpty, false);
Eval(2446, o is INotEmpty[], false);
- Eval(2447, o is IEmptyGen<int>, false);
- Eval(2448, o is IEmptyGen<int>[], false);
- Eval(2449, o is INotEmptyGen<int>, false);
- Eval(2450, o is INotEmptyGen<int>[], false);
+// Eval(2447, o is IEmptyGen<int>, false);
+// Eval(2448, o is IEmptyGen<int>[], false);
+// Eval(2449, o is INotEmptyGen<int>, false);
+// Eval(2450, o is INotEmptyGen<int>[], false);
Eval(2451, o is SimpleDelegate, false);
Eval(2452, o is SimpleDelegate[], false);
- Eval(2453, o is GenericDelegate<int>, false);
- Eval(2454, o is GenericDelegate<int>[], false);
+// Eval(2453, o is GenericDelegate<int>, false);
+// Eval(2454, o is GenericDelegate<int>[], false);
Eval(2455, o is EmptyClass, false);
Eval(2456, o is EmptyClass[], false);
Eval(2457, o is NotEmptyClass, false);
Eval(2458, o is NotEmptyClass[], false);
- Eval(2459, o is EmptyClassGen<int>, false);
- Eval(2460, o is EmptyClassGen<int>[], false);
- Eval(2461, o is NotEmptyClassGen<Guid>, false);
- Eval(2462, o is NotEmptyClassGen<Guid>[], false);
- Eval(2463, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2464, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2459, o is EmptyClassGen<int>, false);
+// Eval(2460, o is EmptyClassGen<int>[], false);
+// Eval(2461, o is NotEmptyClassGen<Guid>, false);
+// Eval(2462, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2463, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2464, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2465, o is NestedClass, false);
Eval(2466, o is NestedClass[], false);
- Eval(2467, o is NestedClassGen<Decimal>, false);
- Eval(2468, o is NestedClassGen<Decimal>[], false);
+// Eval(2467, o is NestedClassGen<Decimal>, false);
+// Eval(2468, o is NestedClassGen<Decimal>[], false);
Eval(2469, o is ImplementOneInterfaceC, false);
Eval(2470, o is ImplementOneInterfaceC[], false);
Eval(2471, o is ImplementTwoInterfaceC, false);
Eval(2472, o is ImplementTwoInterfaceC[], false);
- Eval(2473, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2474, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2475, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2476, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2477, o is ImplementAllInterfaceC<int>, false);
- Eval(2478, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2473, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2474, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2475, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2476, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2477, o is ImplementAllInterfaceC<int>, false);
+// Eval(2478, o is ImplementAllInterfaceC<int>[], false);
Eval(2479, o is SealedClass, false);
Eval(2480, o is SealedClass[], false);
}
@@ -2606,18 +2606,18 @@ internal class Program
Eval(2486, o is ImplementTwoInterface[], false);
Eval(2487, o is ImplementTwoInterface?, false);
Eval(2488, o is ImplementTwoInterface?[], false);
- Eval(2489, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2490, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2491, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2492, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2493, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2494, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2495, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2496, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2497, o is ImplementAllInterface<int>, false);
- Eval(2498, o is ImplementAllInterface<int>[], false);
- Eval(2499, o is ImplementAllInterface<int>?, false);
- Eval(2500, o is ImplementAllInterface<int>?[], false);
+// Eval(2489, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2490, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2491, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2492, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2493, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2494, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2495, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2496, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2497, o is ImplementAllInterface<int>, false);
+// Eval(2498, o is ImplementAllInterface<int>[], false);
+// Eval(2499, o is ImplementAllInterface<int>?, false);
+// Eval(2500, o is ImplementAllInterface<int>?[], false);
Eval(2501, o is char, false);
Eval(2502, o is char[], false);
Eval(2503, o is char?, false);
@@ -2688,38 +2688,38 @@ internal class Program
Eval(2568, o is IEmpty[], false);
Eval(2569, o is INotEmpty, false);
Eval(2570, o is INotEmpty[], false);
- Eval(2571, o is IEmptyGen<int>, false);
- Eval(2572, o is IEmptyGen<int>[], false);
- Eval(2573, o is INotEmptyGen<int>, false);
- Eval(2574, o is INotEmptyGen<int>[], false);
+// Eval(2571, o is IEmptyGen<int>, false);
+// Eval(2572, o is IEmptyGen<int>[], false);
+// Eval(2573, o is INotEmptyGen<int>, false);
+// Eval(2574, o is INotEmptyGen<int>[], false);
Eval(2575, o is SimpleDelegate, false);
Eval(2576, o is SimpleDelegate[], false);
- Eval(2577, o is GenericDelegate<int>, false);
- Eval(2578, o is GenericDelegate<int>[], false);
+// Eval(2577, o is GenericDelegate<int>, false);
+// Eval(2578, o is GenericDelegate<int>[], false);
Eval(2579, o is EmptyClass, false);
Eval(2580, o is EmptyClass[], false);
Eval(2581, o is NotEmptyClass, false);
Eval(2582, o is NotEmptyClass[], false);
- Eval(2583, o is EmptyClassGen<int>, false);
- Eval(2584, o is EmptyClassGen<int>[], false);
- Eval(2585, o is NotEmptyClassGen<Guid>, false);
- Eval(2586, o is NotEmptyClassGen<Guid>[], false);
- Eval(2587, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2588, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2583, o is EmptyClassGen<int>, false);
+// Eval(2584, o is EmptyClassGen<int>[], false);
+// Eval(2585, o is NotEmptyClassGen<Guid>, false);
+// Eval(2586, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2587, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2588, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2589, o is NestedClass, false);
Eval(2590, o is NestedClass[], false);
- Eval(2591, o is NestedClassGen<Decimal>, false);
- Eval(2592, o is NestedClassGen<Decimal>[], false);
+// Eval(2591, o is NestedClassGen<Decimal>, false);
+// Eval(2592, o is NestedClassGen<Decimal>[], false);
Eval(2593, o is ImplementOneInterfaceC, false);
Eval(2594, o is ImplementOneInterfaceC[], false);
Eval(2595, o is ImplementTwoInterfaceC, false);
Eval(2596, o is ImplementTwoInterfaceC[], false);
- Eval(2597, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2598, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2599, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2600, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2601, o is ImplementAllInterfaceC<int>, false);
- Eval(2602, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2597, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2598, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2599, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2600, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2601, o is ImplementAllInterfaceC<int>, false);
+// Eval(2602, o is ImplementAllInterfaceC<int>[], false);
Eval(2603, o is SealedClass, false);
Eval(2604, o is SealedClass[], false);
}
@@ -2737,18 +2737,18 @@ internal class Program
Eval(2610, o is ImplementTwoInterface[], false);
Eval(2611, o is ImplementTwoInterface?, false);
Eval(2612, o is ImplementTwoInterface?[], false);
- Eval(2613, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2614, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2615, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2616, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2617, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2618, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2619, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2620, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2621, o is ImplementAllInterface<int>, false);
- Eval(2622, o is ImplementAllInterface<int>[], false);
- Eval(2623, o is ImplementAllInterface<int>?, false);
- Eval(2624, o is ImplementAllInterface<int>?[], false);
+// Eval(2613, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2614, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2615, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2616, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2617, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2618, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2619, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2620, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2621, o is ImplementAllInterface<int>, false);
+// Eval(2622, o is ImplementAllInterface<int>[], false);
+// Eval(2623, o is ImplementAllInterface<int>?, false);
+// Eval(2624, o is ImplementAllInterface<int>?[], false);
Eval(2625, o is char, false);
Eval(2626, o is char[], false);
Eval(2627, o is char?, false);
@@ -2819,38 +2819,38 @@ internal class Program
Eval(2692, o is IEmpty[], false);
Eval(2693, o is INotEmpty, false);
Eval(2694, o is INotEmpty[], false);
- Eval(2695, o is IEmptyGen<int>, false);
- Eval(2696, o is IEmptyGen<int>[], false);
- Eval(2697, o is INotEmptyGen<int>, false);
- Eval(2698, o is INotEmptyGen<int>[], false);
+// Eval(2695, o is IEmptyGen<int>, false);
+// Eval(2696, o is IEmptyGen<int>[], false);
+// Eval(2697, o is INotEmptyGen<int>, false);
+// Eval(2698, o is INotEmptyGen<int>[], false);
Eval(2699, o is SimpleDelegate, false);
Eval(2700, o is SimpleDelegate[], false);
- Eval(2701, o is GenericDelegate<int>, false);
- Eval(2702, o is GenericDelegate<int>[], false);
+// Eval(2701, o is GenericDelegate<int>, false);
+// Eval(2702, o is GenericDelegate<int>[], false);
Eval(2703, o is EmptyClass, false);
Eval(2704, o is EmptyClass[], false);
Eval(2705, o is NotEmptyClass, false);
Eval(2706, o is NotEmptyClass[], false);
- Eval(2707, o is EmptyClassGen<int>, false);
- Eval(2708, o is EmptyClassGen<int>[], false);
- Eval(2709, o is NotEmptyClassGen<Guid>, false);
- Eval(2710, o is NotEmptyClassGen<Guid>[], false);
- Eval(2711, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2712, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2707, o is EmptyClassGen<int>, false);
+// Eval(2708, o is EmptyClassGen<int>[], false);
+// Eval(2709, o is NotEmptyClassGen<Guid>, false);
+// Eval(2710, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2711, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2712, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2713, o is NestedClass, false);
Eval(2714, o is NestedClass[], false);
- Eval(2715, o is NestedClassGen<Decimal>, false);
- Eval(2716, o is NestedClassGen<Decimal>[], false);
+// Eval(2715, o is NestedClassGen<Decimal>, false);
+// Eval(2716, o is NestedClassGen<Decimal>[], false);
Eval(2717, o is ImplementOneInterfaceC, false);
Eval(2718, o is ImplementOneInterfaceC[], false);
Eval(2719, o is ImplementTwoInterfaceC, false);
Eval(2720, o is ImplementTwoInterfaceC[], false);
- Eval(2721, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2722, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2723, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2724, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2725, o is ImplementAllInterfaceC<int>, false);
- Eval(2726, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2721, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2722, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2723, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2724, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2725, o is ImplementAllInterfaceC<int>, false);
+// Eval(2726, o is ImplementAllInterfaceC<int>[], false);
Eval(2727, o is SealedClass, false);
Eval(2728, o is SealedClass[], false);
}
@@ -2865,18 +2865,18 @@ internal class Program
Eval(2734, o is ImplementTwoInterface[], false);
Eval(2735, o is ImplementTwoInterface?, false);
Eval(2736, o is ImplementTwoInterface?[], false);
- Eval(2737, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2738, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2739, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2740, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2741, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2742, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2743, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2744, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2745, o is ImplementAllInterface<int>, false);
- Eval(2746, o is ImplementAllInterface<int>[], false);
- Eval(2747, o is ImplementAllInterface<int>?, false);
- Eval(2748, o is ImplementAllInterface<int>?[], false);
+// Eval(2737, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2738, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2739, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2740, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2741, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2742, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2743, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2744, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2745, o is ImplementAllInterface<int>, false);
+// Eval(2746, o is ImplementAllInterface<int>[], false);
+// Eval(2747, o is ImplementAllInterface<int>?, false);
+// Eval(2748, o is ImplementAllInterface<int>?[], false);
Eval(2749, o is char, false);
Eval(2750, o is char[], false);
Eval(2751, o is char?, false);
@@ -2947,38 +2947,38 @@ internal class Program
Eval(2816, o is IEmpty[], false);
Eval(2817, o is INotEmpty, false);
Eval(2818, o is INotEmpty[], false);
- Eval(2819, o is IEmptyGen<int>, false);
- Eval(2820, o is IEmptyGen<int>[], false);
- Eval(2821, o is INotEmptyGen<int>, false);
- Eval(2822, o is INotEmptyGen<int>[], false);
+// Eval(2819, o is IEmptyGen<int>, false);
+// Eval(2820, o is IEmptyGen<int>[], false);
+// Eval(2821, o is INotEmptyGen<int>, false);
+// Eval(2822, o is INotEmptyGen<int>[], false);
Eval(2823, o is SimpleDelegate, false);
Eval(2824, o is SimpleDelegate[], false);
- Eval(2825, o is GenericDelegate<int>, false);
- Eval(2826, o is GenericDelegate<int>[], false);
+// Eval(2825, o is GenericDelegate<int>, false);
+// Eval(2826, o is GenericDelegate<int>[], false);
Eval(2827, o is EmptyClass, false);
Eval(2828, o is EmptyClass[], false);
Eval(2829, o is NotEmptyClass, false);
Eval(2830, o is NotEmptyClass[], false);
- Eval(2831, o is EmptyClassGen<int>, false);
- Eval(2832, o is EmptyClassGen<int>[], false);
- Eval(2833, o is NotEmptyClassGen<Guid>, false);
- Eval(2834, o is NotEmptyClassGen<Guid>[], false);
- Eval(2835, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2836, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2831, o is EmptyClassGen<int>, false);
+// Eval(2832, o is EmptyClassGen<int>[], false);
+// Eval(2833, o is NotEmptyClassGen<Guid>, false);
+// Eval(2834, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2835, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2836, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2837, o is NestedClass, false);
Eval(2838, o is NestedClass[], false);
- Eval(2839, o is NestedClassGen<Decimal>, false);
- Eval(2840, o is NestedClassGen<Decimal>[], false);
+// Eval(2839, o is NestedClassGen<Decimal>, false);
+// Eval(2840, o is NestedClassGen<Decimal>[], false);
Eval(2841, o is ImplementOneInterfaceC, false);
Eval(2842, o is ImplementOneInterfaceC[], false);
Eval(2843, o is ImplementTwoInterfaceC, false);
Eval(2844, o is ImplementTwoInterfaceC[], false);
- Eval(2845, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2846, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2847, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2848, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2849, o is ImplementAllInterfaceC<int>, false);
- Eval(2850, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2845, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2846, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2847, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2848, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2849, o is ImplementAllInterfaceC<int>, false);
+// Eval(2850, o is ImplementAllInterfaceC<int>[], false);
Eval(2851, o is SealedClass, false);
Eval(2852, o is SealedClass[], false);
}
@@ -2993,18 +2993,18 @@ internal class Program
Eval(2858, o is ImplementTwoInterface[], false);
Eval(2859, o is ImplementTwoInterface?, false);
Eval(2860, o is ImplementTwoInterface?[], false);
- Eval(2861, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2862, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2863, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2864, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2865, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2866, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2867, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2868, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2869, o is ImplementAllInterface<int>, false);
- Eval(2870, o is ImplementAllInterface<int>[], false);
- Eval(2871, o is ImplementAllInterface<int>?, false);
- Eval(2872, o is ImplementAllInterface<int>?[], false);
+// Eval(2861, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2862, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2863, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2864, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2865, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2866, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2867, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2868, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2869, o is ImplementAllInterface<int>, false);
+// Eval(2870, o is ImplementAllInterface<int>[], false);
+// Eval(2871, o is ImplementAllInterface<int>?, false);
+// Eval(2872, o is ImplementAllInterface<int>?[], false);
Eval(2873, o is char, false);
Eval(2874, o is char[], false);
Eval(2875, o is char?, false);
@@ -3075,38 +3075,38 @@ internal class Program
Eval(2940, o is IEmpty[], false);
Eval(2941, o is INotEmpty, false);
Eval(2942, o is INotEmpty[], false);
- Eval(2943, o is IEmptyGen<int>, false);
- Eval(2944, o is IEmptyGen<int>[], false);
- Eval(2945, o is INotEmptyGen<int>, false);
- Eval(2946, o is INotEmptyGen<int>[], false);
+// Eval(2943, o is IEmptyGen<int>, false);
+// Eval(2944, o is IEmptyGen<int>[], false);
+// Eval(2945, o is INotEmptyGen<int>, false);
+// Eval(2946, o is INotEmptyGen<int>[], false);
Eval(2947, o is SimpleDelegate, false);
Eval(2948, o is SimpleDelegate[], false);
- Eval(2949, o is GenericDelegate<int>, false);
- Eval(2950, o is GenericDelegate<int>[], false);
+// Eval(2949, o is GenericDelegate<int>, false);
+// Eval(2950, o is GenericDelegate<int>[], false);
Eval(2951, o is EmptyClass, false);
Eval(2952, o is EmptyClass[], false);
Eval(2953, o is NotEmptyClass, false);
Eval(2954, o is NotEmptyClass[], false);
- Eval(2955, o is EmptyClassGen<int>, false);
- Eval(2956, o is EmptyClassGen<int>[], false);
- Eval(2957, o is NotEmptyClassGen<Guid>, false);
- Eval(2958, o is NotEmptyClassGen<Guid>[], false);
- Eval(2959, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2960, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2955, o is EmptyClassGen<int>, false);
+// Eval(2956, o is EmptyClassGen<int>[], false);
+// Eval(2957, o is NotEmptyClassGen<Guid>, false);
+// Eval(2958, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2959, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2960, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2961, o is NestedClass, false);
Eval(2962, o is NestedClass[], false);
- Eval(2963, o is NestedClassGen<Decimal>, false);
- Eval(2964, o is NestedClassGen<Decimal>[], false);
+// Eval(2963, o is NestedClassGen<Decimal>, false);
+// Eval(2964, o is NestedClassGen<Decimal>[], false);
Eval(2965, o is ImplementOneInterfaceC, false);
Eval(2966, o is ImplementOneInterfaceC[], false);
Eval(2967, o is ImplementTwoInterfaceC, false);
Eval(2968, o is ImplementTwoInterfaceC[], false);
- Eval(2969, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2970, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2971, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2972, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2973, o is ImplementAllInterfaceC<int>, false);
- Eval(2974, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2969, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2970, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2971, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2972, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2973, o is ImplementAllInterfaceC<int>, false);
+// Eval(2974, o is ImplementAllInterfaceC<int>[], false);
Eval(2975, o is SealedClass, false);
Eval(2976, o is SealedClass[], false);
}
@@ -3124,18 +3124,18 @@ internal class Program
Eval(2982, o is ImplementTwoInterface[], false);
Eval(2983, o is ImplementTwoInterface?, false);
Eval(2984, o is ImplementTwoInterface?[], false);
- Eval(2985, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2986, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2987, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2988, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2989, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2990, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2991, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2992, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2993, o is ImplementAllInterface<int>, false);
- Eval(2994, o is ImplementAllInterface<int>[], false);
- Eval(2995, o is ImplementAllInterface<int>?, false);
- Eval(2996, o is ImplementAllInterface<int>?[], false);
+// Eval(2985, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2986, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2987, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2988, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2989, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2990, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2991, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2992, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2993, o is ImplementAllInterface<int>, false);
+// Eval(2994, o is ImplementAllInterface<int>[], false);
+// Eval(2995, o is ImplementAllInterface<int>?, false);
+// Eval(2996, o is ImplementAllInterface<int>?[], false);
Eval(2997, o is char, false);
Eval(2998, o is char[], false);
Eval(2999, o is char?, false);
@@ -3206,38 +3206,38 @@ internal class Program
Eval(3064, o is IEmpty[], false);
Eval(3065, o is INotEmpty, false);
Eval(3066, o is INotEmpty[], false);
- Eval(3067, o is IEmptyGen<int>, false);
- Eval(3068, o is IEmptyGen<int>[], false);
- Eval(3069, o is INotEmptyGen<int>, false);
- Eval(3070, o is INotEmptyGen<int>[], false);
+// Eval(3067, o is IEmptyGen<int>, false);
+// Eval(3068, o is IEmptyGen<int>[], false);
+// Eval(3069, o is INotEmptyGen<int>, false);
+// Eval(3070, o is INotEmptyGen<int>[], false);
Eval(3071, o is SimpleDelegate, false);
Eval(3072, o is SimpleDelegate[], false);
- Eval(3073, o is GenericDelegate<int>, false);
- Eval(3074, o is GenericDelegate<int>[], false);
+// Eval(3073, o is GenericDelegate<int>, false);
+// Eval(3074, o is GenericDelegate<int>[], false);
Eval(3075, o is EmptyClass, false);
Eval(3076, o is EmptyClass[], false);
Eval(3077, o is NotEmptyClass, false);
Eval(3078, o is NotEmptyClass[], false);
- Eval(3079, o is EmptyClassGen<int>, false);
- Eval(3080, o is EmptyClassGen<int>[], false);
- Eval(3081, o is NotEmptyClassGen<Guid>, false);
- Eval(3082, o is NotEmptyClassGen<Guid>[], false);
- Eval(3083, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3084, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3079, o is EmptyClassGen<int>, false);
+// Eval(3080, o is EmptyClassGen<int>[], false);
+// Eval(3081, o is NotEmptyClassGen<Guid>, false);
+// Eval(3082, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3083, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3084, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3085, o is NestedClass, false);
Eval(3086, o is NestedClass[], false);
- Eval(3087, o is NestedClassGen<Decimal>, false);
- Eval(3088, o is NestedClassGen<Decimal>[], false);
+// Eval(3087, o is NestedClassGen<Decimal>, false);
+// Eval(3088, o is NestedClassGen<Decimal>[], false);
Eval(3089, o is ImplementOneInterfaceC, false);
Eval(3090, o is ImplementOneInterfaceC[], false);
Eval(3091, o is ImplementTwoInterfaceC, false);
Eval(3092, o is ImplementTwoInterfaceC[], false);
- Eval(3093, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3094, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3095, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3096, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3097, o is ImplementAllInterfaceC<int>, false);
- Eval(3098, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3093, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3094, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3095, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3096, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3097, o is ImplementAllInterfaceC<int>, false);
+// Eval(3098, o is ImplementAllInterfaceC<int>[], false);
Eval(3099, o is SealedClass, false);
Eval(3100, o is SealedClass[], false);
}
@@ -3252,18 +3252,18 @@ internal class Program
Eval(3106, o is ImplementTwoInterface[], false);
Eval(3107, o is ImplementTwoInterface?, false);
Eval(3108, o is ImplementTwoInterface?[], false);
- Eval(3109, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3110, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3111, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3112, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3113, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3114, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3115, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3116, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3117, o is ImplementAllInterface<int>, false);
- Eval(3118, o is ImplementAllInterface<int>[], false);
- Eval(3119, o is ImplementAllInterface<int>?, false);
- Eval(3120, o is ImplementAllInterface<int>?[], false);
+// Eval(3109, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3110, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3111, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3112, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3113, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3114, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3115, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3116, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3117, o is ImplementAllInterface<int>, false);
+// Eval(3118, o is ImplementAllInterface<int>[], false);
+// Eval(3119, o is ImplementAllInterface<int>?, false);
+// Eval(3120, o is ImplementAllInterface<int>?[], false);
Eval(3121, o is char, false);
Eval(3122, o is char[], false);
Eval(3123, o is char?, false);
@@ -3334,38 +3334,38 @@ internal class Program
Eval(3188, o is IEmpty[], false);
Eval(3189, o is INotEmpty, false);
Eval(3190, o is INotEmpty[], false);
- Eval(3191, o is IEmptyGen<int>, false);
- Eval(3192, o is IEmptyGen<int>[], false);
- Eval(3193, o is INotEmptyGen<int>, false);
- Eval(3194, o is INotEmptyGen<int>[], false);
+// Eval(3191, o is IEmptyGen<int>, false);
+// Eval(3192, o is IEmptyGen<int>[], false);
+// Eval(3193, o is INotEmptyGen<int>, false);
+// Eval(3194, o is INotEmptyGen<int>[], false);
Eval(3195, o is SimpleDelegate, false);
Eval(3196, o is SimpleDelegate[], false);
- Eval(3197, o is GenericDelegate<int>, false);
- Eval(3198, o is GenericDelegate<int>[], false);
+// Eval(3197, o is GenericDelegate<int>, false);
+// Eval(3198, o is GenericDelegate<int>[], false);
Eval(3199, o is EmptyClass, false);
Eval(3200, o is EmptyClass[], false);
Eval(3201, o is NotEmptyClass, false);
Eval(3202, o is NotEmptyClass[], false);
- Eval(3203, o is EmptyClassGen<int>, false);
- Eval(3204, o is EmptyClassGen<int>[], false);
- Eval(3205, o is NotEmptyClassGen<Guid>, false);
- Eval(3206, o is NotEmptyClassGen<Guid>[], false);
- Eval(3207, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3208, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3203, o is EmptyClassGen<int>, false);
+// Eval(3204, o is EmptyClassGen<int>[], false);
+// Eval(3205, o is NotEmptyClassGen<Guid>, false);
+// Eval(3206, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3207, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3208, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3209, o is NestedClass, false);
Eval(3210, o is NestedClass[], false);
- Eval(3211, o is NestedClassGen<Decimal>, false);
- Eval(3212, o is NestedClassGen<Decimal>[], false);
+// Eval(3211, o is NestedClassGen<Decimal>, false);
+// Eval(3212, o is NestedClassGen<Decimal>[], false);
Eval(3213, o is ImplementOneInterfaceC, false);
Eval(3214, o is ImplementOneInterfaceC[], false);
Eval(3215, o is ImplementTwoInterfaceC, false);
Eval(3216, o is ImplementTwoInterfaceC[], false);
- Eval(3217, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3218, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3219, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3220, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3221, o is ImplementAllInterfaceC<int>, false);
- Eval(3222, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3217, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3218, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3219, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3220, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3221, o is ImplementAllInterfaceC<int>, false);
+// Eval(3222, o is ImplementAllInterfaceC<int>[], false);
Eval(3223, o is SealedClass, false);
Eval(3224, o is SealedClass[], false);
}
@@ -3380,18 +3380,18 @@ internal class Program
Eval(3230, o is ImplementTwoInterface[], false);
Eval(3231, o is ImplementTwoInterface?, false);
Eval(3232, o is ImplementTwoInterface?[], false);
- Eval(3233, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3234, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3235, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3236, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3237, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3238, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3239, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3240, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3241, o is ImplementAllInterface<int>, false);
- Eval(3242, o is ImplementAllInterface<int>[], false);
- Eval(3243, o is ImplementAllInterface<int>?, false);
- Eval(3244, o is ImplementAllInterface<int>?[], false);
+// Eval(3233, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3234, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3235, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3236, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3237, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3238, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3239, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3240, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3241, o is ImplementAllInterface<int>, false);
+// Eval(3242, o is ImplementAllInterface<int>[], false);
+// Eval(3243, o is ImplementAllInterface<int>?, false);
+// Eval(3244, o is ImplementAllInterface<int>?[], false);
Eval(3245, o is char, false);
Eval(3246, o is char[], false);
Eval(3247, o is char?, false);
@@ -3462,38 +3462,38 @@ internal class Program
Eval(3312, o is IEmpty[], false);
Eval(3313, o is INotEmpty, false);
Eval(3314, o is INotEmpty[], false);
- Eval(3315, o is IEmptyGen<int>, false);
- Eval(3316, o is IEmptyGen<int>[], false);
- Eval(3317, o is INotEmptyGen<int>, false);
- Eval(3318, o is INotEmptyGen<int>[], false);
+// Eval(3315, o is IEmptyGen<int>, false);
+// Eval(3316, o is IEmptyGen<int>[], false);
+// Eval(3317, o is INotEmptyGen<int>, false);
+// Eval(3318, o is INotEmptyGen<int>[], false);
Eval(3319, o is SimpleDelegate, false);
Eval(3320, o is SimpleDelegate[], false);
- Eval(3321, o is GenericDelegate<int>, false);
- Eval(3322, o is GenericDelegate<int>[], false);
+// Eval(3321, o is GenericDelegate<int>, false);
+// Eval(3322, o is GenericDelegate<int>[], false);
Eval(3323, o is EmptyClass, false);
Eval(3324, o is EmptyClass[], false);
Eval(3325, o is NotEmptyClass, false);
Eval(3326, o is NotEmptyClass[], false);
- Eval(3327, o is EmptyClassGen<int>, false);
- Eval(3328, o is EmptyClassGen<int>[], false);
- Eval(3329, o is NotEmptyClassGen<Guid>, false);
- Eval(3330, o is NotEmptyClassGen<Guid>[], false);
- Eval(3331, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3332, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3327, o is EmptyClassGen<int>, false);
+// Eval(3328, o is EmptyClassGen<int>[], false);
+// Eval(3329, o is NotEmptyClassGen<Guid>, false);
+// Eval(3330, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3331, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3332, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3333, o is NestedClass, false);
Eval(3334, o is NestedClass[], false);
- Eval(3335, o is NestedClassGen<Decimal>, false);
- Eval(3336, o is NestedClassGen<Decimal>[], false);
+// Eval(3335, o is NestedClassGen<Decimal>, false);
+// Eval(3336, o is NestedClassGen<Decimal>[], false);
Eval(3337, o is ImplementOneInterfaceC, false);
Eval(3338, o is ImplementOneInterfaceC[], false);
Eval(3339, o is ImplementTwoInterfaceC, false);
Eval(3340, o is ImplementTwoInterfaceC[], false);
- Eval(3341, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3342, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3343, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3344, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3345, o is ImplementAllInterfaceC<int>, false);
- Eval(3346, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3341, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3342, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3343, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3344, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3345, o is ImplementAllInterfaceC<int>, false);
+// Eval(3346, o is ImplementAllInterfaceC<int>[], false);
Eval(3347, o is SealedClass, false);
Eval(3348, o is SealedClass[], false);
}
@@ -3511,18 +3511,18 @@ internal class Program
Eval(3354, o is ImplementTwoInterface[], false);
Eval(3355, o is ImplementTwoInterface?, false);
Eval(3356, o is ImplementTwoInterface?[], false);
- Eval(3357, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3358, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3359, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3360, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3361, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3362, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3363, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3364, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3365, o is ImplementAllInterface<int>, false);
- Eval(3366, o is ImplementAllInterface<int>[], false);
- Eval(3367, o is ImplementAllInterface<int>?, false);
- Eval(3368, o is ImplementAllInterface<int>?[], false);
+// Eval(3357, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3358, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3359, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3360, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3361, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3362, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3363, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3364, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3365, o is ImplementAllInterface<int>, false);
+// Eval(3366, o is ImplementAllInterface<int>[], false);
+// Eval(3367, o is ImplementAllInterface<int>?, false);
+// Eval(3368, o is ImplementAllInterface<int>?[], false);
Eval(3369, o is char, false);
Eval(3370, o is char[], false);
Eval(3371, o is char?, false);
@@ -3593,38 +3593,38 @@ internal class Program
Eval(3436, o is IEmpty[], false);
Eval(3437, o is INotEmpty, false);
Eval(3438, o is INotEmpty[], false);
- Eval(3439, o is IEmptyGen<int>, false);
- Eval(3440, o is IEmptyGen<int>[], false);
- Eval(3441, o is INotEmptyGen<int>, false);
- Eval(3442, o is INotEmptyGen<int>[], false);
+// Eval(3439, o is IEmptyGen<int>, false);
+// Eval(3440, o is IEmptyGen<int>[], false);
+// Eval(3441, o is INotEmptyGen<int>, false);
+// Eval(3442, o is INotEmptyGen<int>[], false);
Eval(3443, o is SimpleDelegate, false);
Eval(3444, o is SimpleDelegate[], false);
- Eval(3445, o is GenericDelegate<int>, false);
- Eval(3446, o is GenericDelegate<int>[], false);
+// Eval(3445, o is GenericDelegate<int>, false);
+// Eval(3446, o is GenericDelegate<int>[], false);
Eval(3447, o is EmptyClass, false);
Eval(3448, o is EmptyClass[], false);
Eval(3449, o is NotEmptyClass, false);
Eval(3450, o is NotEmptyClass[], false);
- Eval(3451, o is EmptyClassGen<int>, false);
- Eval(3452, o is EmptyClassGen<int>[], false);
- Eval(3453, o is NotEmptyClassGen<Guid>, false);
- Eval(3454, o is NotEmptyClassGen<Guid>[], false);
- Eval(3455, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3456, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3451, o is EmptyClassGen<int>, false);
+// Eval(3452, o is EmptyClassGen<int>[], false);
+// Eval(3453, o is NotEmptyClassGen<Guid>, false);
+// Eval(3454, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3455, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3456, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3457, o is NestedClass, false);
Eval(3458, o is NestedClass[], false);
- Eval(3459, o is NestedClassGen<Decimal>, false);
- Eval(3460, o is NestedClassGen<Decimal>[], false);
+// Eval(3459, o is NestedClassGen<Decimal>, false);
+// Eval(3460, o is NestedClassGen<Decimal>[], false);
Eval(3461, o is ImplementOneInterfaceC, false);
Eval(3462, o is ImplementOneInterfaceC[], false);
Eval(3463, o is ImplementTwoInterfaceC, false);
Eval(3464, o is ImplementTwoInterfaceC[], false);
- Eval(3465, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3466, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3467, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3468, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3469, o is ImplementAllInterfaceC<int>, false);
- Eval(3470, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3465, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3466, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3467, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3468, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3469, o is ImplementAllInterfaceC<int>, false);
+// Eval(3470, o is ImplementAllInterfaceC<int>[], false);
Eval(3471, o is SealedClass, false);
Eval(3472, o is SealedClass[], false);
}
@@ -3639,18 +3639,18 @@ internal class Program
Eval(3478, o is ImplementTwoInterface[], false);
Eval(3479, o is ImplementTwoInterface?, false);
Eval(3480, o is ImplementTwoInterface?[], false);
- Eval(3481, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3482, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3483, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3484, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3485, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3486, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3487, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3488, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3489, o is ImplementAllInterface<int>, false);
- Eval(3490, o is ImplementAllInterface<int>[], false);
- Eval(3491, o is ImplementAllInterface<int>?, false);
- Eval(3492, o is ImplementAllInterface<int>?[], false);
+// Eval(3481, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3482, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3483, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3484, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3485, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3486, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3487, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3488, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3489, o is ImplementAllInterface<int>, false);
+// Eval(3490, o is ImplementAllInterface<int>[], false);
+// Eval(3491, o is ImplementAllInterface<int>?, false);
+// Eval(3492, o is ImplementAllInterface<int>?[], false);
Eval(3493, o is char, false);
Eval(3494, o is char[], false);
Eval(3495, o is char?, false);
@@ -3721,38 +3721,38 @@ internal class Program
Eval(3560, o is IEmpty[], false);
Eval(3561, o is INotEmpty, false);
Eval(3562, o is INotEmpty[], false);
- Eval(3563, o is IEmptyGen<int>, false);
- Eval(3564, o is IEmptyGen<int>[], false);
- Eval(3565, o is INotEmptyGen<int>, false);
- Eval(3566, o is INotEmptyGen<int>[], false);
+// Eval(3563, o is IEmptyGen<int>, false);
+// Eval(3564, o is IEmptyGen<int>[], false);
+// Eval(3565, o is INotEmptyGen<int>, false);
+// Eval(3566, o is INotEmptyGen<int>[], false);
Eval(3567, o is SimpleDelegate, false);
Eval(3568, o is SimpleDelegate[], false);
- Eval(3569, o is GenericDelegate<int>, false);
- Eval(3570, o is GenericDelegate<int>[], false);
+// Eval(3569, o is GenericDelegate<int>, false);
+// Eval(3570, o is GenericDelegate<int>[], false);
Eval(3571, o is EmptyClass, false);
Eval(3572, o is EmptyClass[], false);
Eval(3573, o is NotEmptyClass, false);
Eval(3574, o is NotEmptyClass[], false);
- Eval(3575, o is EmptyClassGen<int>, false);
- Eval(3576, o is EmptyClassGen<int>[], false);
- Eval(3577, o is NotEmptyClassGen<Guid>, false);
- Eval(3578, o is NotEmptyClassGen<Guid>[], false);
- Eval(3579, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3580, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3575, o is EmptyClassGen<int>, false);
+// Eval(3576, o is EmptyClassGen<int>[], false);
+// Eval(3577, o is NotEmptyClassGen<Guid>, false);
+// Eval(3578, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3579, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3580, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3581, o is NestedClass, false);
Eval(3582, o is NestedClass[], false);
- Eval(3583, o is NestedClassGen<Decimal>, false);
- Eval(3584, o is NestedClassGen<Decimal>[], false);
+// Eval(3583, o is NestedClassGen<Decimal>, false);
+// Eval(3584, o is NestedClassGen<Decimal>[], false);
Eval(3585, o is ImplementOneInterfaceC, false);
Eval(3586, o is ImplementOneInterfaceC[], false);
Eval(3587, o is ImplementTwoInterfaceC, false);
Eval(3588, o is ImplementTwoInterfaceC[], false);
- Eval(3589, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3590, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3591, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3592, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3593, o is ImplementAllInterfaceC<int>, false);
- Eval(3594, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3589, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3590, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3591, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3592, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3593, o is ImplementAllInterfaceC<int>, false);
+// Eval(3594, o is ImplementAllInterfaceC<int>[], false);
Eval(3595, o is SealedClass, false);
Eval(3596, o is SealedClass[], false);
}
@@ -3767,18 +3767,18 @@ internal class Program
Eval(3602, o is ImplementTwoInterface[], false);
Eval(3603, o is ImplementTwoInterface?, false);
Eval(3604, o is ImplementTwoInterface?[], false);
- Eval(3605, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3606, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3607, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3608, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3609, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3610, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3611, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3612, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3613, o is ImplementAllInterface<int>, false);
- Eval(3614, o is ImplementAllInterface<int>[], false);
- Eval(3615, o is ImplementAllInterface<int>?, false);
- Eval(3616, o is ImplementAllInterface<int>?[], false);
+// Eval(3605, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3606, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3607, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3608, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3609, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3610, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3611, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3612, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3613, o is ImplementAllInterface<int>, false);
+// Eval(3614, o is ImplementAllInterface<int>[], false);
+// Eval(3615, o is ImplementAllInterface<int>?, false);
+// Eval(3616, o is ImplementAllInterface<int>?[], false);
Eval(3617, o is char, false);
Eval(3618, o is char[], false);
Eval(3619, o is char?, false);
@@ -3849,38 +3849,38 @@ internal class Program
Eval(3684, o is IEmpty[], false);
Eval(3685, o is INotEmpty, false);
Eval(3686, o is INotEmpty[], false);
- Eval(3687, o is IEmptyGen<int>, false);
- Eval(3688, o is IEmptyGen<int>[], false);
- Eval(3689, o is INotEmptyGen<int>, false);
- Eval(3690, o is INotEmptyGen<int>[], false);
+// Eval(3687, o is IEmptyGen<int>, false);
+// Eval(3688, o is IEmptyGen<int>[], false);
+// Eval(3689, o is INotEmptyGen<int>, false);
+// Eval(3690, o is INotEmptyGen<int>[], false);
Eval(3691, o is SimpleDelegate, false);
Eval(3692, o is SimpleDelegate[], false);
- Eval(3693, o is GenericDelegate<int>, false);
- Eval(3694, o is GenericDelegate<int>[], false);
+// Eval(3693, o is GenericDelegate<int>, false);
+// Eval(3694, o is GenericDelegate<int>[], false);
Eval(3695, o is EmptyClass, false);
Eval(3696, o is EmptyClass[], false);
Eval(3697, o is NotEmptyClass, false);
Eval(3698, o is NotEmptyClass[], false);
- Eval(3699, o is EmptyClassGen<int>, false);
- Eval(3700, o is EmptyClassGen<int>[], false);
- Eval(3701, o is NotEmptyClassGen<Guid>, false);
- Eval(3702, o is NotEmptyClassGen<Guid>[], false);
- Eval(3703, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3704, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3699, o is EmptyClassGen<int>, false);
+// Eval(3700, o is EmptyClassGen<int>[], false);
+// Eval(3701, o is NotEmptyClassGen<Guid>, false);
+// Eval(3702, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3703, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3704, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3705, o is NestedClass, false);
Eval(3706, o is NestedClass[], false);
- Eval(3707, o is NestedClassGen<Decimal>, false);
- Eval(3708, o is NestedClassGen<Decimal>[], false);
+// Eval(3707, o is NestedClassGen<Decimal>, false);
+// Eval(3708, o is NestedClassGen<Decimal>[], false);
Eval(3709, o is ImplementOneInterfaceC, false);
Eval(3710, o is ImplementOneInterfaceC[], false);
Eval(3711, o is ImplementTwoInterfaceC, false);
Eval(3712, o is ImplementTwoInterfaceC[], false);
- Eval(3713, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3714, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3715, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3716, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3717, o is ImplementAllInterfaceC<int>, false);
- Eval(3718, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3713, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3714, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3715, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3716, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3717, o is ImplementAllInterfaceC<int>, false);
+// Eval(3718, o is ImplementAllInterfaceC<int>[], false);
Eval(3719, o is SealedClass, false);
Eval(3720, o is SealedClass[], false);
}
@@ -3898,18 +3898,18 @@ internal class Program
Eval(3726, o is ImplementTwoInterface[], false);
Eval(3727, o is ImplementTwoInterface?, false);
Eval(3728, o is ImplementTwoInterface?[], false);
- Eval(3729, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3730, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3731, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3732, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3733, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3734, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3735, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3736, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3737, o is ImplementAllInterface<int>, false);
- Eval(3738, o is ImplementAllInterface<int>[], false);
- Eval(3739, o is ImplementAllInterface<int>?, false);
- Eval(3740, o is ImplementAllInterface<int>?[], false);
+// Eval(3729, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3730, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3731, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3732, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3733, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3734, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3735, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3736, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3737, o is ImplementAllInterface<int>, false);
+// Eval(3738, o is ImplementAllInterface<int>[], false);
+// Eval(3739, o is ImplementAllInterface<int>?, false);
+// Eval(3740, o is ImplementAllInterface<int>?[], false);
Eval(3741, o is char, false);
Eval(3742, o is char[], false);
Eval(3743, o is char?, false);
@@ -3980,38 +3980,38 @@ internal class Program
Eval(3808, o is IEmpty[], false);
Eval(3809, o is INotEmpty, false);
Eval(3810, o is INotEmpty[], false);
- Eval(3811, o is IEmptyGen<int>, false);
- Eval(3812, o is IEmptyGen<int>[], false);
- Eval(3813, o is INotEmptyGen<int>, false);
- Eval(3814, o is INotEmptyGen<int>[], false);
+// Eval(3811, o is IEmptyGen<int>, false);
+// Eval(3812, o is IEmptyGen<int>[], false);
+// Eval(3813, o is INotEmptyGen<int>, false);
+// Eval(3814, o is INotEmptyGen<int>[], false);
Eval(3815, o is SimpleDelegate, false);
Eval(3816, o is SimpleDelegate[], false);
- Eval(3817, o is GenericDelegate<int>, false);
- Eval(3818, o is GenericDelegate<int>[], false);
+// Eval(3817, o is GenericDelegate<int>, false);
+// Eval(3818, o is GenericDelegate<int>[], false);
Eval(3819, o is EmptyClass, false);
Eval(3820, o is EmptyClass[], false);
Eval(3821, o is NotEmptyClass, false);
Eval(3822, o is NotEmptyClass[], false);
- Eval(3823, o is EmptyClassGen<int>, false);
- Eval(3824, o is EmptyClassGen<int>[], false);
- Eval(3825, o is NotEmptyClassGen<Guid>, false);
- Eval(3826, o is NotEmptyClassGen<Guid>[], false);
- Eval(3827, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3828, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3823, o is EmptyClassGen<int>, false);
+// Eval(3824, o is EmptyClassGen<int>[], false);
+// Eval(3825, o is NotEmptyClassGen<Guid>, false);
+// Eval(3826, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3827, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3828, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3829, o is NestedClass, false);
Eval(3830, o is NestedClass[], false);
- Eval(3831, o is NestedClassGen<Decimal>, false);
- Eval(3832, o is NestedClassGen<Decimal>[], false);
+// Eval(3831, o is NestedClassGen<Decimal>, false);
+// Eval(3832, o is NestedClassGen<Decimal>[], false);
Eval(3833, o is ImplementOneInterfaceC, false);
Eval(3834, o is ImplementOneInterfaceC[], false);
Eval(3835, o is ImplementTwoInterfaceC, false);
Eval(3836, o is ImplementTwoInterfaceC[], false);
- Eval(3837, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3838, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3839, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3840, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3841, o is ImplementAllInterfaceC<int>, false);
- Eval(3842, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3837, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3838, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3839, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3840, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3841, o is ImplementAllInterfaceC<int>, false);
+// Eval(3842, o is ImplementAllInterfaceC<int>[], false);
Eval(3843, o is SealedClass, false);
Eval(3844, o is SealedClass[], false);
}
@@ -4026,18 +4026,18 @@ internal class Program
Eval(3850, o is ImplementTwoInterface[], false);
Eval(3851, o is ImplementTwoInterface?, false);
Eval(3852, o is ImplementTwoInterface?[], false);
- Eval(3853, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3854, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3855, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3856, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3857, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3858, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3859, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3860, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3861, o is ImplementAllInterface<int>, false);
- Eval(3862, o is ImplementAllInterface<int>[], false);
- Eval(3863, o is ImplementAllInterface<int>?, false);
- Eval(3864, o is ImplementAllInterface<int>?[], false);
+// Eval(3853, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3854, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3855, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3856, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3857, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3858, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3859, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3860, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3861, o is ImplementAllInterface<int>, false);
+// Eval(3862, o is ImplementAllInterface<int>[], false);
+// Eval(3863, o is ImplementAllInterface<int>?, false);
+// Eval(3864, o is ImplementAllInterface<int>?[], false);
Eval(3865, o is char, false);
Eval(3866, o is char[], false);
Eval(3867, o is char?, false);
@@ -4108,38 +4108,38 @@ internal class Program
Eval(3932, o is IEmpty[], false);
Eval(3933, o is INotEmpty, false);
Eval(3934, o is INotEmpty[], false);
- Eval(3935, o is IEmptyGen<int>, false);
- Eval(3936, o is IEmptyGen<int>[], false);
- Eval(3937, o is INotEmptyGen<int>, false);
- Eval(3938, o is INotEmptyGen<int>[], false);
+// Eval(3935, o is IEmptyGen<int>, false);
+// Eval(3936, o is IEmptyGen<int>[], false);
+// Eval(3937, o is INotEmptyGen<int>, false);
+// Eval(3938, o is INotEmptyGen<int>[], false);
Eval(3939, o is SimpleDelegate, false);
Eval(3940, o is SimpleDelegate[], false);
- Eval(3941, o is GenericDelegate<int>, false);
- Eval(3942, o is GenericDelegate<int>[], false);
+// Eval(3941, o is GenericDelegate<int>, false);
+// Eval(3942, o is GenericDelegate<int>[], false);
Eval(3943, o is EmptyClass, false);
Eval(3944, o is EmptyClass[], false);
Eval(3945, o is NotEmptyClass, false);
Eval(3946, o is NotEmptyClass[], false);
- Eval(3947, o is EmptyClassGen<int>, false);
- Eval(3948, o is EmptyClassGen<int>[], false);
- Eval(3949, o is NotEmptyClassGen<Guid>, false);
- Eval(3950, o is NotEmptyClassGen<Guid>[], false);
- Eval(3951, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3952, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3947, o is EmptyClassGen<int>, false);
+// Eval(3948, o is EmptyClassGen<int>[], false);
+// Eval(3949, o is NotEmptyClassGen<Guid>, false);
+// Eval(3950, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3951, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3952, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3953, o is NestedClass, false);
Eval(3954, o is NestedClass[], false);
- Eval(3955, o is NestedClassGen<Decimal>, false);
- Eval(3956, o is NestedClassGen<Decimal>[], false);
+// Eval(3955, o is NestedClassGen<Decimal>, false);
+// Eval(3956, o is NestedClassGen<Decimal>[], false);
Eval(3957, o is ImplementOneInterfaceC, false);
Eval(3958, o is ImplementOneInterfaceC[], false);
Eval(3959, o is ImplementTwoInterfaceC, false);
Eval(3960, o is ImplementTwoInterfaceC[], false);
- Eval(3961, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3962, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3963, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3964, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3965, o is ImplementAllInterfaceC<int>, false);
- Eval(3966, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3961, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3962, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3963, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3964, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3965, o is ImplementAllInterfaceC<int>, false);
+// Eval(3966, o is ImplementAllInterfaceC<int>[], false);
Eval(3967, o is SealedClass, false);
Eval(3968, o is SealedClass[], false);
}
@@ -4154,18 +4154,18 @@ internal class Program
Eval(3974, o is ImplementTwoInterface[], false);
Eval(3975, o is ImplementTwoInterface?, false);
Eval(3976, o is ImplementTwoInterface?[], false);
- Eval(3977, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3978, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3979, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3980, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3981, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3982, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3983, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3984, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3985, o is ImplementAllInterface<int>, false);
- Eval(3986, o is ImplementAllInterface<int>[], false);
- Eval(3987, o is ImplementAllInterface<int>?, false);
- Eval(3988, o is ImplementAllInterface<int>?[], false);
+// Eval(3977, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3978, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3979, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3980, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3981, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3982, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3983, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3984, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3985, o is ImplementAllInterface<int>, false);
+// Eval(3986, o is ImplementAllInterface<int>[], false);
+// Eval(3987, o is ImplementAllInterface<int>?, false);
+// Eval(3988, o is ImplementAllInterface<int>?[], false);
Eval(3989, o is char, false);
Eval(3990, o is char[], false);
Eval(3991, o is char?, false);
@@ -4236,38 +4236,38 @@ internal class Program
Eval(4056, o is IEmpty[], false);
Eval(4057, o is INotEmpty, false);
Eval(4058, o is INotEmpty[], false);
- Eval(4059, o is IEmptyGen<int>, false);
- Eval(4060, o is IEmptyGen<int>[], false);
- Eval(4061, o is INotEmptyGen<int>, false);
- Eval(4062, o is INotEmptyGen<int>[], false);
+// Eval(4059, o is IEmptyGen<int>, false);
+// Eval(4060, o is IEmptyGen<int>[], false);
+// Eval(4061, o is INotEmptyGen<int>, false);
+// Eval(4062, o is INotEmptyGen<int>[], false);
Eval(4063, o is SimpleDelegate, false);
Eval(4064, o is SimpleDelegate[], false);
- Eval(4065, o is GenericDelegate<int>, false);
- Eval(4066, o is GenericDelegate<int>[], false);
+// Eval(4065, o is GenericDelegate<int>, false);
+// Eval(4066, o is GenericDelegate<int>[], false);
Eval(4067, o is EmptyClass, false);
Eval(4068, o is EmptyClass[], false);
Eval(4069, o is NotEmptyClass, false);
Eval(4070, o is NotEmptyClass[], false);
- Eval(4071, o is EmptyClassGen<int>, false);
- Eval(4072, o is EmptyClassGen<int>[], false);
- Eval(4073, o is NotEmptyClassGen<Guid>, false);
- Eval(4074, o is NotEmptyClassGen<Guid>[], false);
- Eval(4075, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4076, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4071, o is EmptyClassGen<int>, false);
+// Eval(4072, o is EmptyClassGen<int>[], false);
+// Eval(4073, o is NotEmptyClassGen<Guid>, false);
+// Eval(4074, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4075, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4076, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4077, o is NestedClass, false);
Eval(4078, o is NestedClass[], false);
- Eval(4079, o is NestedClassGen<Decimal>, false);
- Eval(4080, o is NestedClassGen<Decimal>[], false);
+// Eval(4079, o is NestedClassGen<Decimal>, false);
+// Eval(4080, o is NestedClassGen<Decimal>[], false);
Eval(4081, o is ImplementOneInterfaceC, false);
Eval(4082, o is ImplementOneInterfaceC[], false);
Eval(4083, o is ImplementTwoInterfaceC, false);
Eval(4084, o is ImplementTwoInterfaceC[], false);
- Eval(4085, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4086, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4087, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4088, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4089, o is ImplementAllInterfaceC<int>, false);
- Eval(4090, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4085, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4086, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4087, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4088, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4089, o is ImplementAllInterfaceC<int>, false);
+// Eval(4090, o is ImplementAllInterfaceC<int>[], false);
Eval(4091, o is SealedClass, false);
Eval(4092, o is SealedClass[], false);
}
@@ -4285,18 +4285,18 @@ internal class Program
Eval(4098, o is ImplementTwoInterface[], false);
Eval(4099, o is ImplementTwoInterface?, false);
Eval(4100, o is ImplementTwoInterface?[], false);
- Eval(4101, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4102, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4103, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4104, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4105, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4106, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4107, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4108, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4109, o is ImplementAllInterface<int>, false);
- Eval(4110, o is ImplementAllInterface<int>[], false);
- Eval(4111, o is ImplementAllInterface<int>?, false);
- Eval(4112, o is ImplementAllInterface<int>?[], false);
+// Eval(4101, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4102, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4103, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4104, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4105, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4106, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4107, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4108, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4109, o is ImplementAllInterface<int>, false);
+// Eval(4110, o is ImplementAllInterface<int>[], false);
+// Eval(4111, o is ImplementAllInterface<int>?, false);
+// Eval(4112, o is ImplementAllInterface<int>?[], false);
Eval(4113, o is char, false);
Eval(4114, o is char[], false);
Eval(4115, o is char?, false);
@@ -4367,38 +4367,38 @@ internal class Program
Eval(4180, o is IEmpty[], false);
Eval(4181, o is INotEmpty, false);
Eval(4182, o is INotEmpty[], false);
- Eval(4183, o is IEmptyGen<int>, false);
- Eval(4184, o is IEmptyGen<int>[], false);
- Eval(4185, o is INotEmptyGen<int>, false);
- Eval(4186, o is INotEmptyGen<int>[], false);
+// Eval(4183, o is IEmptyGen<int>, false);
+// Eval(4184, o is IEmptyGen<int>[], false);
+// Eval(4185, o is INotEmptyGen<int>, false);
+// Eval(4186, o is INotEmptyGen<int>[], false);
Eval(4187, o is SimpleDelegate, false);
Eval(4188, o is SimpleDelegate[], false);
- Eval(4189, o is GenericDelegate<int>, false);
- Eval(4190, o is GenericDelegate<int>[], false);
+// Eval(4189, o is GenericDelegate<int>, false);
+// Eval(4190, o is GenericDelegate<int>[], false);
Eval(4191, o is EmptyClass, false);
Eval(4192, o is EmptyClass[], false);
Eval(4193, o is NotEmptyClass, false);
Eval(4194, o is NotEmptyClass[], false);
- Eval(4195, o is EmptyClassGen<int>, false);
- Eval(4196, o is EmptyClassGen<int>[], false);
- Eval(4197, o is NotEmptyClassGen<Guid>, false);
- Eval(4198, o is NotEmptyClassGen<Guid>[], false);
- Eval(4199, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4200, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4195, o is EmptyClassGen<int>, false);
+// Eval(4196, o is EmptyClassGen<int>[], false);
+// Eval(4197, o is NotEmptyClassGen<Guid>, false);
+// Eval(4198, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4199, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4200, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4201, o is NestedClass, false);
Eval(4202, o is NestedClass[], false);
- Eval(4203, o is NestedClassGen<Decimal>, false);
- Eval(4204, o is NestedClassGen<Decimal>[], false);
+// Eval(4203, o is NestedClassGen<Decimal>, false);
+// Eval(4204, o is NestedClassGen<Decimal>[], false);
Eval(4205, o is ImplementOneInterfaceC, false);
Eval(4206, o is ImplementOneInterfaceC[], false);
Eval(4207, o is ImplementTwoInterfaceC, false);
Eval(4208, o is ImplementTwoInterfaceC[], false);
- Eval(4209, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4210, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4211, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4212, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4213, o is ImplementAllInterfaceC<int>, false);
- Eval(4214, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4209, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4210, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4211, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4212, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4213, o is ImplementAllInterfaceC<int>, false);
+// Eval(4214, o is ImplementAllInterfaceC<int>[], false);
Eval(4215, o is SealedClass, false);
Eval(4216, o is SealedClass[], false);
}
@@ -4413,18 +4413,18 @@ internal class Program
Eval(4222, o is ImplementTwoInterface[], false);
Eval(4223, o is ImplementTwoInterface?, false);
Eval(4224, o is ImplementTwoInterface?[], false);
- Eval(4225, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4226, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4227, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4228, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4229, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4230, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4231, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4232, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4233, o is ImplementAllInterface<int>, false);
- Eval(4234, o is ImplementAllInterface<int>[], false);
- Eval(4235, o is ImplementAllInterface<int>?, false);
- Eval(4236, o is ImplementAllInterface<int>?[], false);
+// Eval(4225, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4226, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4227, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4228, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4229, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4230, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4231, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4232, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4233, o is ImplementAllInterface<int>, false);
+// Eval(4234, o is ImplementAllInterface<int>[], false);
+// Eval(4235, o is ImplementAllInterface<int>?, false);
+// Eval(4236, o is ImplementAllInterface<int>?[], false);
Eval(4237, o is char, false);
Eval(4238, o is char[], false);
Eval(4239, o is char?, false);
@@ -4495,38 +4495,38 @@ internal class Program
Eval(4304, o is IEmpty[], false);
Eval(4305, o is INotEmpty, false);
Eval(4306, o is INotEmpty[], false);
- Eval(4307, o is IEmptyGen<int>, false);
- Eval(4308, o is IEmptyGen<int>[], false);
- Eval(4309, o is INotEmptyGen<int>, false);
- Eval(4310, o is INotEmptyGen<int>[], false);
+// Eval(4307, o is IEmptyGen<int>, false);
+// Eval(4308, o is IEmptyGen<int>[], false);
+// Eval(4309, o is INotEmptyGen<int>, false);
+// Eval(4310, o is INotEmptyGen<int>[], false);
Eval(4311, o is SimpleDelegate, false);
Eval(4312, o is SimpleDelegate[], false);
- Eval(4313, o is GenericDelegate<int>, false);
- Eval(4314, o is GenericDelegate<int>[], false);
+// Eval(4313, o is GenericDelegate<int>, false);
+// Eval(4314, o is GenericDelegate<int>[], false);
Eval(4315, o is EmptyClass, false);
Eval(4316, o is EmptyClass[], false);
Eval(4317, o is NotEmptyClass, false);
Eval(4318, o is NotEmptyClass[], false);
- Eval(4319, o is EmptyClassGen<int>, false);
- Eval(4320, o is EmptyClassGen<int>[], false);
- Eval(4321, o is NotEmptyClassGen<Guid>, false);
- Eval(4322, o is NotEmptyClassGen<Guid>[], false);
- Eval(4323, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4324, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4319, o is EmptyClassGen<int>, false);
+// Eval(4320, o is EmptyClassGen<int>[], false);
+// Eval(4321, o is NotEmptyClassGen<Guid>, false);
+// Eval(4322, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4323, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4324, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4325, o is NestedClass, false);
Eval(4326, o is NestedClass[], false);
- Eval(4327, o is NestedClassGen<Decimal>, false);
- Eval(4328, o is NestedClassGen<Decimal>[], false);
+// Eval(4327, o is NestedClassGen<Decimal>, false);
+// Eval(4328, o is NestedClassGen<Decimal>[], false);
Eval(4329, o is ImplementOneInterfaceC, false);
Eval(4330, o is ImplementOneInterfaceC[], false);
Eval(4331, o is ImplementTwoInterfaceC, false);
Eval(4332, o is ImplementTwoInterfaceC[], false);
- Eval(4333, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4334, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4335, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4336, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4337, o is ImplementAllInterfaceC<int>, false);
- Eval(4338, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4333, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4334, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4335, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4336, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4337, o is ImplementAllInterfaceC<int>, false);
+// Eval(4338, o is ImplementAllInterfaceC<int>[], false);
Eval(4339, o is SealedClass, false);
Eval(4340, o is SealedClass[], false);
}
@@ -4541,18 +4541,18 @@ internal class Program
Eval(4346, o is ImplementTwoInterface[], false);
Eval(4347, o is ImplementTwoInterface?, false);
Eval(4348, o is ImplementTwoInterface?[], false);
- Eval(4349, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4350, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4351, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4352, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4353, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4354, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4355, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4356, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4357, o is ImplementAllInterface<int>, false);
- Eval(4358, o is ImplementAllInterface<int>[], false);
- Eval(4359, o is ImplementAllInterface<int>?, false);
- Eval(4360, o is ImplementAllInterface<int>?[], false);
+// Eval(4349, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4350, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4351, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4352, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4353, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4354, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4355, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4356, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4357, o is ImplementAllInterface<int>, false);
+// Eval(4358, o is ImplementAllInterface<int>[], false);
+// Eval(4359, o is ImplementAllInterface<int>?, false);
+// Eval(4360, o is ImplementAllInterface<int>?[], false);
Eval(4361, o is char, false);
Eval(4362, o is char[], false);
Eval(4363, o is char?, false);
@@ -4623,38 +4623,38 @@ internal class Program
Eval(4428, o is IEmpty[], false);
Eval(4429, o is INotEmpty, false);
Eval(4430, o is INotEmpty[], false);
- Eval(4431, o is IEmptyGen<int>, false);
- Eval(4432, o is IEmptyGen<int>[], false);
- Eval(4433, o is INotEmptyGen<int>, false);
- Eval(4434, o is INotEmptyGen<int>[], false);
+// Eval(4431, o is IEmptyGen<int>, false);
+// Eval(4432, o is IEmptyGen<int>[], false);
+// Eval(4433, o is INotEmptyGen<int>, false);
+// Eval(4434, o is INotEmptyGen<int>[], false);
Eval(4435, o is SimpleDelegate, false);
Eval(4436, o is SimpleDelegate[], false);
- Eval(4437, o is GenericDelegate<int>, false);
- Eval(4438, o is GenericDelegate<int>[], false);
+// Eval(4437, o is GenericDelegate<int>, false);
+// Eval(4438, o is GenericDelegate<int>[], false);
Eval(4439, o is EmptyClass, false);
Eval(4440, o is EmptyClass[], false);
Eval(4441, o is NotEmptyClass, false);
Eval(4442, o is NotEmptyClass[], false);
- Eval(4443, o is EmptyClassGen<int>, false);
- Eval(4444, o is EmptyClassGen<int>[], false);
- Eval(4445, o is NotEmptyClassGen<Guid>, false);
- Eval(4446, o is NotEmptyClassGen<Guid>[], false);
- Eval(4447, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4448, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4443, o is EmptyClassGen<int>, false);
+// Eval(4444, o is EmptyClassGen<int>[], false);
+// Eval(4445, o is NotEmptyClassGen<Guid>, false);
+// Eval(4446, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4447, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4448, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4449, o is NestedClass, false);
Eval(4450, o is NestedClass[], false);
- Eval(4451, o is NestedClassGen<Decimal>, false);
- Eval(4452, o is NestedClassGen<Decimal>[], false);
+// Eval(4451, o is NestedClassGen<Decimal>, false);
+// Eval(4452, o is NestedClassGen<Decimal>[], false);
Eval(4453, o is ImplementOneInterfaceC, false);
Eval(4454, o is ImplementOneInterfaceC[], false);
Eval(4455, o is ImplementTwoInterfaceC, false);
Eval(4456, o is ImplementTwoInterfaceC[], false);
- Eval(4457, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4458, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4459, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4460, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4461, o is ImplementAllInterfaceC<int>, false);
- Eval(4462, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4457, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4458, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4459, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4460, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4461, o is ImplementAllInterfaceC<int>, false);
+// Eval(4462, o is ImplementAllInterfaceC<int>[], false);
Eval(4463, o is SealedClass, false);
Eval(4464, o is SealedClass[], false);
}
@@ -4672,18 +4672,18 @@ internal class Program
Eval(4470, o is ImplementTwoInterface[], false);
Eval(4471, o is ImplementTwoInterface?, false);
Eval(4472, o is ImplementTwoInterface?[], false);
- Eval(4473, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4474, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4475, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4476, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4477, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4478, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4479, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4480, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4481, o is ImplementAllInterface<int>, false);
- Eval(4482, o is ImplementAllInterface<int>[], false);
- Eval(4483, o is ImplementAllInterface<int>?, false);
- Eval(4484, o is ImplementAllInterface<int>?[], false);
+// Eval(4473, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4474, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4475, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4476, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4477, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4478, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4479, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4480, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4481, o is ImplementAllInterface<int>, false);
+// Eval(4482, o is ImplementAllInterface<int>[], false);
+// Eval(4483, o is ImplementAllInterface<int>?, false);
+// Eval(4484, o is ImplementAllInterface<int>?[], false);
Eval(4485, o is char, false);
Eval(4486, o is char[], false);
Eval(4487, o is char?, false);
@@ -4754,38 +4754,38 @@ internal class Program
Eval(4552, o is IEmpty[], false);
Eval(4553, o is INotEmpty, false);
Eval(4554, o is INotEmpty[], false);
- Eval(4555, o is IEmptyGen<int>, false);
- Eval(4556, o is IEmptyGen<int>[], false);
- Eval(4557, o is INotEmptyGen<int>, false);
- Eval(4558, o is INotEmptyGen<int>[], false);
+// Eval(4555, o is IEmptyGen<int>, false);
+// Eval(4556, o is IEmptyGen<int>[], false);
+// Eval(4557, o is INotEmptyGen<int>, false);
+// Eval(4558, o is INotEmptyGen<int>[], false);
Eval(4559, o is SimpleDelegate, false);
Eval(4560, o is SimpleDelegate[], false);
- Eval(4561, o is GenericDelegate<int>, false);
- Eval(4562, o is GenericDelegate<int>[], false);
+// Eval(4561, o is GenericDelegate<int>, false);
+// Eval(4562, o is GenericDelegate<int>[], false);
Eval(4563, o is EmptyClass, false);
Eval(4564, o is EmptyClass[], false);
Eval(4565, o is NotEmptyClass, false);
Eval(4566, o is NotEmptyClass[], false);
- Eval(4567, o is EmptyClassGen<int>, false);
- Eval(4568, o is EmptyClassGen<int>[], false);
- Eval(4569, o is NotEmptyClassGen<Guid>, false);
- Eval(4570, o is NotEmptyClassGen<Guid>[], false);
- Eval(4571, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4572, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4567, o is EmptyClassGen<int>, false);
+// Eval(4568, o is EmptyClassGen<int>[], false);
+// Eval(4569, o is NotEmptyClassGen<Guid>, false);
+// Eval(4570, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4571, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4572, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4573, o is NestedClass, false);
Eval(4574, o is NestedClass[], false);
- Eval(4575, o is NestedClassGen<Decimal>, false);
- Eval(4576, o is NestedClassGen<Decimal>[], false);
+// Eval(4575, o is NestedClassGen<Decimal>, false);
+// Eval(4576, o is NestedClassGen<Decimal>[], false);
Eval(4577, o is ImplementOneInterfaceC, false);
Eval(4578, o is ImplementOneInterfaceC[], false);
Eval(4579, o is ImplementTwoInterfaceC, false);
Eval(4580, o is ImplementTwoInterfaceC[], false);
- Eval(4581, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4582, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4583, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4584, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4585, o is ImplementAllInterfaceC<int>, false);
- Eval(4586, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4581, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4582, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4583, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4584, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4585, o is ImplementAllInterfaceC<int>, false);
+// Eval(4586, o is ImplementAllInterfaceC<int>[], false);
Eval(4587, o is SealedClass, false);
Eval(4588, o is SealedClass[], false);
}
@@ -4800,18 +4800,18 @@ internal class Program
Eval(4594, o is ImplementTwoInterface[], false);
Eval(4595, o is ImplementTwoInterface?, false);
Eval(4596, o is ImplementTwoInterface?[], false);
- Eval(4597, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4598, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4599, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4600, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4601, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4602, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4603, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4604, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4605, o is ImplementAllInterface<int>, false);
- Eval(4606, o is ImplementAllInterface<int>[], false);
- Eval(4607, o is ImplementAllInterface<int>?, false);
- Eval(4608, o is ImplementAllInterface<int>?[], false);
+// Eval(4597, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4598, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4599, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4600, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4601, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4602, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4603, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4604, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4605, o is ImplementAllInterface<int>, false);
+// Eval(4606, o is ImplementAllInterface<int>[], false);
+// Eval(4607, o is ImplementAllInterface<int>?, false);
+// Eval(4608, o is ImplementAllInterface<int>?[], false);
Eval(4609, o is char, false);
Eval(4610, o is char[], false);
Eval(4611, o is char?, false);
@@ -4882,38 +4882,38 @@ internal class Program
Eval(4676, o is IEmpty[], false);
Eval(4677, o is INotEmpty, false);
Eval(4678, o is INotEmpty[], false);
- Eval(4679, o is IEmptyGen<int>, false);
- Eval(4680, o is IEmptyGen<int>[], false);
- Eval(4681, o is INotEmptyGen<int>, false);
- Eval(4682, o is INotEmptyGen<int>[], false);
+// Eval(4679, o is IEmptyGen<int>, false);
+// Eval(4680, o is IEmptyGen<int>[], false);
+// Eval(4681, o is INotEmptyGen<int>, false);
+// Eval(4682, o is INotEmptyGen<int>[], false);
Eval(4683, o is SimpleDelegate, false);
Eval(4684, o is SimpleDelegate[], false);
- Eval(4685, o is GenericDelegate<int>, false);
- Eval(4686, o is GenericDelegate<int>[], false);
+// Eval(4685, o is GenericDelegate<int>, false);
+// Eval(4686, o is GenericDelegate<int>[], false);
Eval(4687, o is EmptyClass, false);
Eval(4688, o is EmptyClass[], false);
Eval(4689, o is NotEmptyClass, false);
Eval(4690, o is NotEmptyClass[], false);
- Eval(4691, o is EmptyClassGen<int>, false);
- Eval(4692, o is EmptyClassGen<int>[], false);
- Eval(4693, o is NotEmptyClassGen<Guid>, false);
- Eval(4694, o is NotEmptyClassGen<Guid>[], false);
- Eval(4695, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4696, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4691, o is EmptyClassGen<int>, false);
+// Eval(4692, o is EmptyClassGen<int>[], false);
+// Eval(4693, o is NotEmptyClassGen<Guid>, false);
+// Eval(4694, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4695, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4696, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4697, o is NestedClass, false);
Eval(4698, o is NestedClass[], false);
- Eval(4699, o is NestedClassGen<Decimal>, false);
- Eval(4700, o is NestedClassGen<Decimal>[], false);
+// Eval(4699, o is NestedClassGen<Decimal>, false);
+// Eval(4700, o is NestedClassGen<Decimal>[], false);
Eval(4701, o is ImplementOneInterfaceC, false);
Eval(4702, o is ImplementOneInterfaceC[], false);
Eval(4703, o is ImplementTwoInterfaceC, false);
Eval(4704, o is ImplementTwoInterfaceC[], false);
- Eval(4705, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4706, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4707, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4708, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4709, o is ImplementAllInterfaceC<int>, false);
- Eval(4710, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4705, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4706, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4707, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4708, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4709, o is ImplementAllInterfaceC<int>, false);
+// Eval(4710, o is ImplementAllInterfaceC<int>[], false);
Eval(4711, o is SealedClass, false);
Eval(4712, o is SealedClass[], false);
}
@@ -4928,18 +4928,18 @@ internal class Program
Eval(4718, o is ImplementTwoInterface[], false);
Eval(4719, o is ImplementTwoInterface?, false);
Eval(4720, o is ImplementTwoInterface?[], false);
- Eval(4721, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4722, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4723, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4724, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4725, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4726, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4727, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4728, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4729, o is ImplementAllInterface<int>, false);
- Eval(4730, o is ImplementAllInterface<int>[], false);
- Eval(4731, o is ImplementAllInterface<int>?, false);
- Eval(4732, o is ImplementAllInterface<int>?[], false);
+// Eval(4721, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4722, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4723, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4724, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4725, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4726, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4727, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4728, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4729, o is ImplementAllInterface<int>, false);
+// Eval(4730, o is ImplementAllInterface<int>[], false);
+// Eval(4731, o is ImplementAllInterface<int>?, false);
+// Eval(4732, o is ImplementAllInterface<int>?[], false);
Eval(4733, o is char, false);
Eval(4734, o is char[], false);
Eval(4735, o is char?, false);
@@ -5010,38 +5010,38 @@ internal class Program
Eval(4800, o is IEmpty[], false);
Eval(4801, o is INotEmpty, false);
Eval(4802, o is INotEmpty[], false);
- Eval(4803, o is IEmptyGen<int>, false);
- Eval(4804, o is IEmptyGen<int>[], false);
- Eval(4805, o is INotEmptyGen<int>, false);
- Eval(4806, o is INotEmptyGen<int>[], false);
+// Eval(4803, o is IEmptyGen<int>, false);
+// Eval(4804, o is IEmptyGen<int>[], false);
+// Eval(4805, o is INotEmptyGen<int>, false);
+// Eval(4806, o is INotEmptyGen<int>[], false);
Eval(4807, o is SimpleDelegate, false);
Eval(4808, o is SimpleDelegate[], false);
- Eval(4809, o is GenericDelegate<int>, false);
- Eval(4810, o is GenericDelegate<int>[], false);
+// Eval(4809, o is GenericDelegate<int>, false);
+// Eval(4810, o is GenericDelegate<int>[], false);
Eval(4811, o is EmptyClass, false);
Eval(4812, o is EmptyClass[], false);
Eval(4813, o is NotEmptyClass, false);
Eval(4814, o is NotEmptyClass[], false);
- Eval(4815, o is EmptyClassGen<int>, false);
- Eval(4816, o is EmptyClassGen<int>[], false);
- Eval(4817, o is NotEmptyClassGen<Guid>, false);
- Eval(4818, o is NotEmptyClassGen<Guid>[], false);
- Eval(4819, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4820, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4815, o is EmptyClassGen<int>, false);
+// Eval(4816, o is EmptyClassGen<int>[], false);
+// Eval(4817, o is NotEmptyClassGen<Guid>, false);
+// Eval(4818, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4819, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4820, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4821, o is NestedClass, false);
Eval(4822, o is NestedClass[], false);
- Eval(4823, o is NestedClassGen<Decimal>, false);
- Eval(4824, o is NestedClassGen<Decimal>[], false);
+// Eval(4823, o is NestedClassGen<Decimal>, false);
+// Eval(4824, o is NestedClassGen<Decimal>[], false);
Eval(4825, o is ImplementOneInterfaceC, false);
Eval(4826, o is ImplementOneInterfaceC[], false);
Eval(4827, o is ImplementTwoInterfaceC, false);
Eval(4828, o is ImplementTwoInterfaceC[], false);
- Eval(4829, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4830, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4831, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4832, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4833, o is ImplementAllInterfaceC<int>, false);
- Eval(4834, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4829, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4830, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4831, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4832, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4833, o is ImplementAllInterfaceC<int>, false);
+// Eval(4834, o is ImplementAllInterfaceC<int>[], false);
Eval(4835, o is SealedClass, false);
Eval(4836, o is SealedClass[], false);
}
@@ -5059,18 +5059,18 @@ internal class Program
Eval(4842, o is ImplementTwoInterface[], false);
Eval(4843, o is ImplementTwoInterface?, false);
Eval(4844, o is ImplementTwoInterface?[], false);
- Eval(4845, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4846, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4847, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4848, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4849, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4850, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4851, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4852, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4853, o is ImplementAllInterface<int>, false);
- Eval(4854, o is ImplementAllInterface<int>[], false);
- Eval(4855, o is ImplementAllInterface<int>?, false);
- Eval(4856, o is ImplementAllInterface<int>?[], false);
+// Eval(4845, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4846, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4847, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4848, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4849, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4850, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4851, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4852, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4853, o is ImplementAllInterface<int>, false);
+// Eval(4854, o is ImplementAllInterface<int>[], false);
+// Eval(4855, o is ImplementAllInterface<int>?, false);
+// Eval(4856, o is ImplementAllInterface<int>?[], false);
Eval(4857, o is char, false);
Eval(4858, o is char[], false);
Eval(4859, o is char?, false);
@@ -5141,38 +5141,38 @@ internal class Program
Eval(4924, o is IEmpty[], false);
Eval(4925, o is INotEmpty, false);
Eval(4926, o is INotEmpty[], false);
- Eval(4927, o is IEmptyGen<int>, false);
- Eval(4928, o is IEmptyGen<int>[], false);
- Eval(4929, o is INotEmptyGen<int>, false);
- Eval(4930, o is INotEmptyGen<int>[], false);
+// Eval(4927, o is IEmptyGen<int>, false);
+// Eval(4928, o is IEmptyGen<int>[], false);
+// Eval(4929, o is INotEmptyGen<int>, false);
+// Eval(4930, o is INotEmptyGen<int>[], false);
Eval(4931, o is SimpleDelegate, false);
Eval(4932, o is SimpleDelegate[], false);
- Eval(4933, o is GenericDelegate<int>, false);
- Eval(4934, o is GenericDelegate<int>[], false);
+// Eval(4933, o is GenericDelegate<int>, false);
+// Eval(4934, o is GenericDelegate<int>[], false);
Eval(4935, o is EmptyClass, false);
Eval(4936, o is EmptyClass[], false);
Eval(4937, o is NotEmptyClass, false);
Eval(4938, o is NotEmptyClass[], false);
- Eval(4939, o is EmptyClassGen<int>, false);
- Eval(4940, o is EmptyClassGen<int>[], false);
- Eval(4941, o is NotEmptyClassGen<Guid>, false);
- Eval(4942, o is NotEmptyClassGen<Guid>[], false);
- Eval(4943, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4944, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4939, o is EmptyClassGen<int>, false);
+// Eval(4940, o is EmptyClassGen<int>[], false);
+// Eval(4941, o is NotEmptyClassGen<Guid>, false);
+// Eval(4942, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4943, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4944, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4945, o is NestedClass, false);
Eval(4946, o is NestedClass[], false);
- Eval(4947, o is NestedClassGen<Decimal>, false);
- Eval(4948, o is NestedClassGen<Decimal>[], false);
+// Eval(4947, o is NestedClassGen<Decimal>, false);
+// Eval(4948, o is NestedClassGen<Decimal>[], false);
Eval(4949, o is ImplementOneInterfaceC, false);
Eval(4950, o is ImplementOneInterfaceC[], false);
Eval(4951, o is ImplementTwoInterfaceC, false);
Eval(4952, o is ImplementTwoInterfaceC[], false);
- Eval(4953, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4954, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4955, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4956, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4957, o is ImplementAllInterfaceC<int>, false);
- Eval(4958, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4953, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4954, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4955, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4956, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4957, o is ImplementAllInterfaceC<int>, false);
+// Eval(4958, o is ImplementAllInterfaceC<int>[], false);
Eval(4959, o is SealedClass, false);
Eval(4960, o is SealedClass[], false);
}
@@ -5187,18 +5187,18 @@ internal class Program
Eval(4966, o is ImplementTwoInterface[], false);
Eval(4967, o is ImplementTwoInterface?, false);
Eval(4968, o is ImplementTwoInterface?[], false);
- Eval(4969, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4970, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4971, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4972, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4973, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4974, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4975, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4976, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4977, o is ImplementAllInterface<int>, false);
- Eval(4978, o is ImplementAllInterface<int>[], false);
- Eval(4979, o is ImplementAllInterface<int>?, false);
- Eval(4980, o is ImplementAllInterface<int>?[], false);
+// Eval(4969, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4970, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4971, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4972, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4973, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4974, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4975, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4976, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4977, o is ImplementAllInterface<int>, false);
+// Eval(4978, o is ImplementAllInterface<int>[], false);
+// Eval(4979, o is ImplementAllInterface<int>?, false);
+// Eval(4980, o is ImplementAllInterface<int>?[], false);
Eval(4981, o is char, false);
Eval(4982, o is char[], false);
Eval(4983, o is char?, false);
@@ -5269,38 +5269,38 @@ internal class Program
Eval(5048, o is IEmpty[], false);
Eval(5049, o is INotEmpty, false);
Eval(5050, o is INotEmpty[], false);
- Eval(5051, o is IEmptyGen<int>, false);
- Eval(5052, o is IEmptyGen<int>[], false);
- Eval(5053, o is INotEmptyGen<int>, false);
- Eval(5054, o is INotEmptyGen<int>[], false);
+// Eval(5051, o is IEmptyGen<int>, false);
+// Eval(5052, o is IEmptyGen<int>[], false);
+// Eval(5053, o is INotEmptyGen<int>, false);
+// Eval(5054, o is INotEmptyGen<int>[], false);
Eval(5055, o is SimpleDelegate, false);
Eval(5056, o is SimpleDelegate[], false);
- Eval(5057, o is GenericDelegate<int>, false);
- Eval(5058, o is GenericDelegate<int>[], false);
+// Eval(5057, o is GenericDelegate<int>, false);
+// Eval(5058, o is GenericDelegate<int>[], false);
Eval(5059, o is EmptyClass, false);
Eval(5060, o is EmptyClass[], false);
Eval(5061, o is NotEmptyClass, false);
Eval(5062, o is NotEmptyClass[], false);
- Eval(5063, o is EmptyClassGen<int>, false);
- Eval(5064, o is EmptyClassGen<int>[], false);
- Eval(5065, o is NotEmptyClassGen<Guid>, false);
- Eval(5066, o is NotEmptyClassGen<Guid>[], false);
- Eval(5067, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5068, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5063, o is EmptyClassGen<int>, false);
+// Eval(5064, o is EmptyClassGen<int>[], false);
+// Eval(5065, o is NotEmptyClassGen<Guid>, false);
+// Eval(5066, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5067, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5068, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5069, o is NestedClass, false);
Eval(5070, o is NestedClass[], false);
- Eval(5071, o is NestedClassGen<Decimal>, false);
- Eval(5072, o is NestedClassGen<Decimal>[], false);
+// Eval(5071, o is NestedClassGen<Decimal>, false);
+// Eval(5072, o is NestedClassGen<Decimal>[], false);
Eval(5073, o is ImplementOneInterfaceC, false);
Eval(5074, o is ImplementOneInterfaceC[], false);
Eval(5075, o is ImplementTwoInterfaceC, false);
Eval(5076, o is ImplementTwoInterfaceC[], false);
- Eval(5077, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5078, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5079, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5080, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5081, o is ImplementAllInterfaceC<int>, false);
- Eval(5082, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5077, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5078, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5079, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5080, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5081, o is ImplementAllInterfaceC<int>, false);
+// Eval(5082, o is ImplementAllInterfaceC<int>[], false);
Eval(5083, o is SealedClass, false);
Eval(5084, o is SealedClass[], false);
}
@@ -5315,18 +5315,18 @@ internal class Program
Eval(5090, o is ImplementTwoInterface[], false);
Eval(5091, o is ImplementTwoInterface?, false);
Eval(5092, o is ImplementTwoInterface?[], false);
- Eval(5093, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5094, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5095, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5096, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5097, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5098, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5099, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5100, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5101, o is ImplementAllInterface<int>, false);
- Eval(5102, o is ImplementAllInterface<int>[], false);
- Eval(5103, o is ImplementAllInterface<int>?, false);
- Eval(5104, o is ImplementAllInterface<int>?[], false);
+// Eval(5093, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5094, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5095, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5096, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5097, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5098, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5099, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5100, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5101, o is ImplementAllInterface<int>, false);
+// Eval(5102, o is ImplementAllInterface<int>[], false);
+// Eval(5103, o is ImplementAllInterface<int>?, false);
+// Eval(5104, o is ImplementAllInterface<int>?[], false);
Eval(5105, o is char, false);
Eval(5106, o is char[], false);
Eval(5107, o is char?, false);
@@ -5397,38 +5397,38 @@ internal class Program
Eval(5172, o is IEmpty[], false);
Eval(5173, o is INotEmpty, false);
Eval(5174, o is INotEmpty[], false);
- Eval(5175, o is IEmptyGen<int>, false);
- Eval(5176, o is IEmptyGen<int>[], false);
- Eval(5177, o is INotEmptyGen<int>, false);
- Eval(5178, o is INotEmptyGen<int>[], false);
+// Eval(5175, o is IEmptyGen<int>, false);
+// Eval(5176, o is IEmptyGen<int>[], false);
+// Eval(5177, o is INotEmptyGen<int>, false);
+// Eval(5178, o is INotEmptyGen<int>[], false);
Eval(5179, o is SimpleDelegate, false);
Eval(5180, o is SimpleDelegate[], false);
- Eval(5181, o is GenericDelegate<int>, false);
- Eval(5182, o is GenericDelegate<int>[], false);
+// Eval(5181, o is GenericDelegate<int>, false);
+// Eval(5182, o is GenericDelegate<int>[], false);
Eval(5183, o is EmptyClass, false);
Eval(5184, o is EmptyClass[], false);
Eval(5185, o is NotEmptyClass, false);
Eval(5186, o is NotEmptyClass[], false);
- Eval(5187, o is EmptyClassGen<int>, false);
- Eval(5188, o is EmptyClassGen<int>[], false);
- Eval(5189, o is NotEmptyClassGen<Guid>, false);
- Eval(5190, o is NotEmptyClassGen<Guid>[], false);
- Eval(5191, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5192, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5187, o is EmptyClassGen<int>, false);
+// Eval(5188, o is EmptyClassGen<int>[], false);
+// Eval(5189, o is NotEmptyClassGen<Guid>, false);
+// Eval(5190, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5191, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5192, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5193, o is NestedClass, false);
Eval(5194, o is NestedClass[], false);
- Eval(5195, o is NestedClassGen<Decimal>, false);
- Eval(5196, o is NestedClassGen<Decimal>[], false);
+// Eval(5195, o is NestedClassGen<Decimal>, false);
+// Eval(5196, o is NestedClassGen<Decimal>[], false);
Eval(5197, o is ImplementOneInterfaceC, false);
Eval(5198, o is ImplementOneInterfaceC[], false);
Eval(5199, o is ImplementTwoInterfaceC, false);
Eval(5200, o is ImplementTwoInterfaceC[], false);
- Eval(5201, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5202, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5203, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5204, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5205, o is ImplementAllInterfaceC<int>, false);
- Eval(5206, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5201, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5202, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5203, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5204, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5205, o is ImplementAllInterfaceC<int>, false);
+// Eval(5206, o is ImplementAllInterfaceC<int>[], false);
Eval(5207, o is SealedClass, false);
Eval(5208, o is SealedClass[], false);
}
@@ -5446,18 +5446,18 @@ internal class Program
Eval(5214, o is ImplementTwoInterface[], false);
Eval(5215, o is ImplementTwoInterface?, false);
Eval(5216, o is ImplementTwoInterface?[], false);
- Eval(5217, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5218, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5219, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5220, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5221, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5222, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5223, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5224, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5225, o is ImplementAllInterface<int>, false);
- Eval(5226, o is ImplementAllInterface<int>[], false);
- Eval(5227, o is ImplementAllInterface<int>?, false);
- Eval(5228, o is ImplementAllInterface<int>?[], false);
+// Eval(5217, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5218, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5219, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5220, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5221, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5222, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5223, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5224, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5225, o is ImplementAllInterface<int>, false);
+// Eval(5226, o is ImplementAllInterface<int>[], false);
+// Eval(5227, o is ImplementAllInterface<int>?, false);
+// Eval(5228, o is ImplementAllInterface<int>?[], false);
Eval(5229, o is char, false);
Eval(5230, o is char[], false);
Eval(5231, o is char?, false);
@@ -5528,38 +5528,38 @@ internal class Program
Eval(5296, o is IEmpty[], false);
Eval(5297, o is INotEmpty, false);
Eval(5298, o is INotEmpty[], false);
- Eval(5299, o is IEmptyGen<int>, false);
- Eval(5300, o is IEmptyGen<int>[], false);
- Eval(5301, o is INotEmptyGen<int>, false);
- Eval(5302, o is INotEmptyGen<int>[], false);
+// Eval(5299, o is IEmptyGen<int>, false);
+// Eval(5300, o is IEmptyGen<int>[], false);
+// Eval(5301, o is INotEmptyGen<int>, false);
+// Eval(5302, o is INotEmptyGen<int>[], false);
Eval(5303, o is SimpleDelegate, false);
Eval(5304, o is SimpleDelegate[], false);
- Eval(5305, o is GenericDelegate<int>, false);
- Eval(5306, o is GenericDelegate<int>[], false);
+// Eval(5305, o is GenericDelegate<int>, false);
+// Eval(5306, o is GenericDelegate<int>[], false);
Eval(5307, o is EmptyClass, false);
Eval(5308, o is EmptyClass[], false);
Eval(5309, o is NotEmptyClass, false);
Eval(5310, o is NotEmptyClass[], false);
- Eval(5311, o is EmptyClassGen<int>, false);
- Eval(5312, o is EmptyClassGen<int>[], false);
- Eval(5313, o is NotEmptyClassGen<Guid>, false);
- Eval(5314, o is NotEmptyClassGen<Guid>[], false);
- Eval(5315, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5316, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5311, o is EmptyClassGen<int>, false);
+// Eval(5312, o is EmptyClassGen<int>[], false);
+// Eval(5313, o is NotEmptyClassGen<Guid>, false);
+// Eval(5314, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5315, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5316, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5317, o is NestedClass, false);
Eval(5318, o is NestedClass[], false);
- Eval(5319, o is NestedClassGen<Decimal>, false);
- Eval(5320, o is NestedClassGen<Decimal>[], false);
+// Eval(5319, o is NestedClassGen<Decimal>, false);
+// Eval(5320, o is NestedClassGen<Decimal>[], false);
Eval(5321, o is ImplementOneInterfaceC, false);
Eval(5322, o is ImplementOneInterfaceC[], false);
Eval(5323, o is ImplementTwoInterfaceC, false);
Eval(5324, o is ImplementTwoInterfaceC[], false);
- Eval(5325, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5326, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5327, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5328, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5329, o is ImplementAllInterfaceC<int>, false);
- Eval(5330, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5325, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5326, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5327, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5328, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5329, o is ImplementAllInterfaceC<int>, false);
+// Eval(5330, o is ImplementAllInterfaceC<int>[], false);
Eval(5331, o is SealedClass, false);
Eval(5332, o is SealedClass[], false);
}
@@ -5574,18 +5574,18 @@ internal class Program
Eval(5338, o is ImplementTwoInterface[], false);
Eval(5339, o is ImplementTwoInterface?, false);
Eval(5340, o is ImplementTwoInterface?[], false);
- Eval(5341, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5342, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5343, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5344, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5345, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5346, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5347, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5348, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5349, o is ImplementAllInterface<int>, false);
- Eval(5350, o is ImplementAllInterface<int>[], false);
- Eval(5351, o is ImplementAllInterface<int>?, false);
- Eval(5352, o is ImplementAllInterface<int>?[], false);
+// Eval(5341, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5342, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5343, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5344, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5345, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5346, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5347, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5348, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5349, o is ImplementAllInterface<int>, false);
+// Eval(5350, o is ImplementAllInterface<int>[], false);
+// Eval(5351, o is ImplementAllInterface<int>?, false);
+// Eval(5352, o is ImplementAllInterface<int>?[], false);
Eval(5353, o is char, false);
Eval(5354, o is char[], false);
Eval(5355, o is char?, false);
@@ -5656,38 +5656,38 @@ internal class Program
Eval(5420, o is IEmpty[], false);
Eval(5421, o is INotEmpty, false);
Eval(5422, o is INotEmpty[], false);
- Eval(5423, o is IEmptyGen<int>, false);
- Eval(5424, o is IEmptyGen<int>[], false);
- Eval(5425, o is INotEmptyGen<int>, false);
- Eval(5426, o is INotEmptyGen<int>[], false);
+// Eval(5423, o is IEmptyGen<int>, false);
+// Eval(5424, o is IEmptyGen<int>[], false);
+// Eval(5425, o is INotEmptyGen<int>, false);
+// Eval(5426, o is INotEmptyGen<int>[], false);
Eval(5427, o is SimpleDelegate, false);
Eval(5428, o is SimpleDelegate[], false);
- Eval(5429, o is GenericDelegate<int>, false);
- Eval(5430, o is GenericDelegate<int>[], false);
+// Eval(5429, o is GenericDelegate<int>, false);
+// Eval(5430, o is GenericDelegate<int>[], false);
Eval(5431, o is EmptyClass, false);
Eval(5432, o is EmptyClass[], false);
Eval(5433, o is NotEmptyClass, false);
Eval(5434, o is NotEmptyClass[], false);
- Eval(5435, o is EmptyClassGen<int>, false);
- Eval(5436, o is EmptyClassGen<int>[], false);
- Eval(5437, o is NotEmptyClassGen<Guid>, false);
- Eval(5438, o is NotEmptyClassGen<Guid>[], false);
- Eval(5439, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5440, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5435, o is EmptyClassGen<int>, false);
+// Eval(5436, o is EmptyClassGen<int>[], false);
+// Eval(5437, o is NotEmptyClassGen<Guid>, false);
+// Eval(5438, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5439, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5440, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5441, o is NestedClass, false);
Eval(5442, o is NestedClass[], false);
- Eval(5443, o is NestedClassGen<Decimal>, false);
- Eval(5444, o is NestedClassGen<Decimal>[], false);
+// Eval(5443, o is NestedClassGen<Decimal>, false);
+// Eval(5444, o is NestedClassGen<Decimal>[], false);
Eval(5445, o is ImplementOneInterfaceC, false);
Eval(5446, o is ImplementOneInterfaceC[], false);
Eval(5447, o is ImplementTwoInterfaceC, false);
Eval(5448, o is ImplementTwoInterfaceC[], false);
- Eval(5449, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5450, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5451, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5452, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5453, o is ImplementAllInterfaceC<int>, false);
- Eval(5454, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5449, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5450, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5451, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5452, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5453, o is ImplementAllInterfaceC<int>, false);
+// Eval(5454, o is ImplementAllInterfaceC<int>[], false);
Eval(5455, o is SealedClass, false);
Eval(5456, o is SealedClass[], false);
}
@@ -5702,18 +5702,18 @@ internal class Program
Eval(5462, o is ImplementTwoInterface[], false);
Eval(5463, o is ImplementTwoInterface?, false);
Eval(5464, o is ImplementTwoInterface?[], false);
- Eval(5465, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5466, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5467, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5468, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5469, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5470, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5471, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5472, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5473, o is ImplementAllInterface<int>, false);
- Eval(5474, o is ImplementAllInterface<int>[], false);
- Eval(5475, o is ImplementAllInterface<int>?, false);
- Eval(5476, o is ImplementAllInterface<int>?[], false);
+// Eval(5465, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5466, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5467, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5468, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5469, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5470, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5471, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5472, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5473, o is ImplementAllInterface<int>, false);
+// Eval(5474, o is ImplementAllInterface<int>[], false);
+// Eval(5475, o is ImplementAllInterface<int>?, false);
+// Eval(5476, o is ImplementAllInterface<int>?[], false);
Eval(5477, o is char, false);
Eval(5478, o is char[], false);
Eval(5479, o is char?, false);
@@ -5784,38 +5784,38 @@ internal class Program
Eval(5544, o is IEmpty[], false);
Eval(5545, o is INotEmpty, false);
Eval(5546, o is INotEmpty[], false);
- Eval(5547, o is IEmptyGen<int>, false);
- Eval(5548, o is IEmptyGen<int>[], false);
- Eval(5549, o is INotEmptyGen<int>, false);
- Eval(5550, o is INotEmptyGen<int>[], false);
+// Eval(5547, o is IEmptyGen<int>, false);
+// Eval(5548, o is IEmptyGen<int>[], false);
+// Eval(5549, o is INotEmptyGen<int>, false);
+// Eval(5550, o is INotEmptyGen<int>[], false);
Eval(5551, o is SimpleDelegate, false);
Eval(5552, o is SimpleDelegate[], false);
- Eval(5553, o is GenericDelegate<int>, false);
- Eval(5554, o is GenericDelegate<int>[], false);
+// Eval(5553, o is GenericDelegate<int>, false);
+// Eval(5554, o is GenericDelegate<int>[], false);
Eval(5555, o is EmptyClass, false);
Eval(5556, o is EmptyClass[], false);
Eval(5557, o is NotEmptyClass, false);
Eval(5558, o is NotEmptyClass[], false);
- Eval(5559, o is EmptyClassGen<int>, false);
- Eval(5560, o is EmptyClassGen<int>[], false);
- Eval(5561, o is NotEmptyClassGen<Guid>, false);
- Eval(5562, o is NotEmptyClassGen<Guid>[], false);
- Eval(5563, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5564, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5559, o is EmptyClassGen<int>, false);
+// Eval(5560, o is EmptyClassGen<int>[], false);
+// Eval(5561, o is NotEmptyClassGen<Guid>, false);
+// Eval(5562, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5563, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5564, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5565, o is NestedClass, false);
Eval(5566, o is NestedClass[], false);
- Eval(5567, o is NestedClassGen<Decimal>, false);
- Eval(5568, o is NestedClassGen<Decimal>[], false);
+// Eval(5567, o is NestedClassGen<Decimal>, false);
+// Eval(5568, o is NestedClassGen<Decimal>[], false);
Eval(5569, o is ImplementOneInterfaceC, false);
Eval(5570, o is ImplementOneInterfaceC[], false);
Eval(5571, o is ImplementTwoInterfaceC, false);
Eval(5572, o is ImplementTwoInterfaceC[], false);
- Eval(5573, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5574, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5575, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5576, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5577, o is ImplementAllInterfaceC<int>, false);
- Eval(5578, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5573, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5574, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5575, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5576, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5577, o is ImplementAllInterfaceC<int>, false);
+// Eval(5578, o is ImplementAllInterfaceC<int>[], false);
Eval(5579, o is SealedClass, false);
Eval(5580, o is SealedClass[], false);
}
@@ -5833,18 +5833,18 @@ internal class Program
Eval(5586, o is ImplementTwoInterface[], false);
Eval(5587, o is ImplementTwoInterface?, false);
Eval(5588, o is ImplementTwoInterface?[], false);
- Eval(5589, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5590, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5591, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5592, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5593, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5594, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5595, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5596, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5597, o is ImplementAllInterface<int>, false);
- Eval(5598, o is ImplementAllInterface<int>[], false);
- Eval(5599, o is ImplementAllInterface<int>?, false);
- Eval(5600, o is ImplementAllInterface<int>?[], false);
+// Eval(5589, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5590, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5591, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5592, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5593, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5594, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5595, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5596, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5597, o is ImplementAllInterface<int>, false);
+// Eval(5598, o is ImplementAllInterface<int>[], false);
+// Eval(5599, o is ImplementAllInterface<int>?, false);
+// Eval(5600, o is ImplementAllInterface<int>?[], false);
Eval(5601, o is char, false);
Eval(5602, o is char[], false);
Eval(5603, o is char?, false);
@@ -5915,38 +5915,38 @@ internal class Program
Eval(5668, o is IEmpty[], false);
Eval(5669, o is INotEmpty, false);
Eval(5670, o is INotEmpty[], false);
- Eval(5671, o is IEmptyGen<int>, false);
- Eval(5672, o is IEmptyGen<int>[], false);
- Eval(5673, o is INotEmptyGen<int>, false);
- Eval(5674, o is INotEmptyGen<int>[], false);
+// Eval(5671, o is IEmptyGen<int>, false);
+// Eval(5672, o is IEmptyGen<int>[], false);
+// Eval(5673, o is INotEmptyGen<int>, false);
+// Eval(5674, o is INotEmptyGen<int>[], false);
Eval(5675, o is SimpleDelegate, false);
Eval(5676, o is SimpleDelegate[], false);
- Eval(5677, o is GenericDelegate<int>, false);
- Eval(5678, o is GenericDelegate<int>[], false);
+// Eval(5677, o is GenericDelegate<int>, false);
+// Eval(5678, o is GenericDelegate<int>[], false);
Eval(5679, o is EmptyClass, false);
Eval(5680, o is EmptyClass[], false);
Eval(5681, o is NotEmptyClass, false);
Eval(5682, o is NotEmptyClass[], false);
- Eval(5683, o is EmptyClassGen<int>, false);
- Eval(5684, o is EmptyClassGen<int>[], false);
- Eval(5685, o is NotEmptyClassGen<Guid>, false);
- Eval(5686, o is NotEmptyClassGen<Guid>[], false);
- Eval(5687, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5688, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5683, o is EmptyClassGen<int>, false);
+// Eval(5684, o is EmptyClassGen<int>[], false);
+// Eval(5685, o is NotEmptyClassGen<Guid>, false);
+// Eval(5686, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5687, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5688, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5689, o is NestedClass, false);
Eval(5690, o is NestedClass[], false);
- Eval(5691, o is NestedClassGen<Decimal>, false);
- Eval(5692, o is NestedClassGen<Decimal>[], false);
+// Eval(5691, o is NestedClassGen<Decimal>, false);
+// Eval(5692, o is NestedClassGen<Decimal>[], false);
Eval(5693, o is ImplementOneInterfaceC, false);
Eval(5694, o is ImplementOneInterfaceC[], false);
Eval(5695, o is ImplementTwoInterfaceC, false);
Eval(5696, o is ImplementTwoInterfaceC[], false);
- Eval(5697, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5698, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5699, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5700, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5701, o is ImplementAllInterfaceC<int>, false);
- Eval(5702, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5697, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5698, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5699, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5700, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5701, o is ImplementAllInterfaceC<int>, false);
+// Eval(5702, o is ImplementAllInterfaceC<int>[], false);
Eval(5703, o is SealedClass, false);
Eval(5704, o is SealedClass[], false);
}
@@ -5961,18 +5961,18 @@ internal class Program
Eval(5710, o is ImplementTwoInterface[], false);
Eval(5711, o is ImplementTwoInterface?, false);
Eval(5712, o is ImplementTwoInterface?[], false);
- Eval(5713, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5714, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5715, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5716, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5717, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5718, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5719, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5720, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5721, o is ImplementAllInterface<int>, false);
- Eval(5722, o is ImplementAllInterface<int>[], false);
- Eval(5723, o is ImplementAllInterface<int>?, false);
- Eval(5724, o is ImplementAllInterface<int>?[], false);
+// Eval(5713, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5714, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5715, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5716, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5717, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5718, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5719, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5720, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5721, o is ImplementAllInterface<int>, false);
+// Eval(5722, o is ImplementAllInterface<int>[], false);
+// Eval(5723, o is ImplementAllInterface<int>?, false);
+// Eval(5724, o is ImplementAllInterface<int>?[], false);
Eval(5725, o is char, false);
Eval(5726, o is char[], false);
Eval(5727, o is char?, false);
@@ -6043,38 +6043,38 @@ internal class Program
Eval(5792, o is IEmpty[], false);
Eval(5793, o is INotEmpty, false);
Eval(5794, o is INotEmpty[], false);
- Eval(5795, o is IEmptyGen<int>, false);
- Eval(5796, o is IEmptyGen<int>[], false);
- Eval(5797, o is INotEmptyGen<int>, false);
- Eval(5798, o is INotEmptyGen<int>[], false);
+// Eval(5795, o is IEmptyGen<int>, false);
+// Eval(5796, o is IEmptyGen<int>[], false);
+// Eval(5797, o is INotEmptyGen<int>, false);
+// Eval(5798, o is INotEmptyGen<int>[], false);
Eval(5799, o is SimpleDelegate, false);
Eval(5800, o is SimpleDelegate[], false);
- Eval(5801, o is GenericDelegate<int>, false);
- Eval(5802, o is GenericDelegate<int>[], false);
+// Eval(5801, o is GenericDelegate<int>, false);
+// Eval(5802, o is GenericDelegate<int>[], false);
Eval(5803, o is EmptyClass, false);
Eval(5804, o is EmptyClass[], false);
Eval(5805, o is NotEmptyClass, false);
Eval(5806, o is NotEmptyClass[], false);
- Eval(5807, o is EmptyClassGen<int>, false);
- Eval(5808, o is EmptyClassGen<int>[], false);
- Eval(5809, o is NotEmptyClassGen<Guid>, false);
- Eval(5810, o is NotEmptyClassGen<Guid>[], false);
- Eval(5811, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5812, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5807, o is EmptyClassGen<int>, false);
+// Eval(5808, o is EmptyClassGen<int>[], false);
+// Eval(5809, o is NotEmptyClassGen<Guid>, false);
+// Eval(5810, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5811, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5812, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5813, o is NestedClass, false);
Eval(5814, o is NestedClass[], false);
- Eval(5815, o is NestedClassGen<Decimal>, false);
- Eval(5816, o is NestedClassGen<Decimal>[], false);
+// Eval(5815, o is NestedClassGen<Decimal>, false);
+// Eval(5816, o is NestedClassGen<Decimal>[], false);
Eval(5817, o is ImplementOneInterfaceC, false);
Eval(5818, o is ImplementOneInterfaceC[], false);
Eval(5819, o is ImplementTwoInterfaceC, false);
Eval(5820, o is ImplementTwoInterfaceC[], false);
- Eval(5821, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5822, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5823, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5824, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5825, o is ImplementAllInterfaceC<int>, false);
- Eval(5826, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5821, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5822, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5823, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5824, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5825, o is ImplementAllInterfaceC<int>, false);
+// Eval(5826, o is ImplementAllInterfaceC<int>[], false);
Eval(5827, o is SealedClass, false);
Eval(5828, o is SealedClass[], false);
}
@@ -6089,18 +6089,18 @@ internal class Program
Eval(5834, o is ImplementTwoInterface[], false);
Eval(5835, o is ImplementTwoInterface?, false);
Eval(5836, o is ImplementTwoInterface?[], false);
- Eval(5837, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5838, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5839, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5840, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5841, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5842, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5843, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5844, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5845, o is ImplementAllInterface<int>, false);
- Eval(5846, o is ImplementAllInterface<int>[], false);
- Eval(5847, o is ImplementAllInterface<int>?, false);
- Eval(5848, o is ImplementAllInterface<int>?[], false);
+// Eval(5837, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5838, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5839, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5840, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5841, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5842, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5843, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5844, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5845, o is ImplementAllInterface<int>, false);
+// Eval(5846, o is ImplementAllInterface<int>[], false);
+// Eval(5847, o is ImplementAllInterface<int>?, false);
+// Eval(5848, o is ImplementAllInterface<int>?[], false);
Eval(5849, o is char, false);
Eval(5850, o is char[], false);
Eval(5851, o is char?, false);
@@ -6171,38 +6171,38 @@ internal class Program
Eval(5916, o is IEmpty[], false);
Eval(5917, o is INotEmpty, false);
Eval(5918, o is INotEmpty[], false);
- Eval(5919, o is IEmptyGen<int>, false);
- Eval(5920, o is IEmptyGen<int>[], false);
- Eval(5921, o is INotEmptyGen<int>, false);
- Eval(5922, o is INotEmptyGen<int>[], false);
+// Eval(5919, o is IEmptyGen<int>, false);
+// Eval(5920, o is IEmptyGen<int>[], false);
+// Eval(5921, o is INotEmptyGen<int>, false);
+// Eval(5922, o is INotEmptyGen<int>[], false);
Eval(5923, o is SimpleDelegate, false);
Eval(5924, o is SimpleDelegate[], false);
- Eval(5925, o is GenericDelegate<int>, false);
- Eval(5926, o is GenericDelegate<int>[], false);
+// Eval(5925, o is GenericDelegate<int>, false);
+// Eval(5926, o is GenericDelegate<int>[], false);
Eval(5927, o is EmptyClass, false);
Eval(5928, o is EmptyClass[], false);
Eval(5929, o is NotEmptyClass, false);
Eval(5930, o is NotEmptyClass[], false);
- Eval(5931, o is EmptyClassGen<int>, false);
- Eval(5932, o is EmptyClassGen<int>[], false);
- Eval(5933, o is NotEmptyClassGen<Guid>, false);
- Eval(5934, o is NotEmptyClassGen<Guid>[], false);
- Eval(5935, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(5936, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(5931, o is EmptyClassGen<int>, false);
+// Eval(5932, o is EmptyClassGen<int>[], false);
+// Eval(5933, o is NotEmptyClassGen<Guid>, false);
+// Eval(5934, o is NotEmptyClassGen<Guid>[], false);
+// Eval(5935, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(5936, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(5937, o is NestedClass, false);
Eval(5938, o is NestedClass[], false);
- Eval(5939, o is NestedClassGen<Decimal>, false);
- Eval(5940, o is NestedClassGen<Decimal>[], false);
+// Eval(5939, o is NestedClassGen<Decimal>, false);
+// Eval(5940, o is NestedClassGen<Decimal>[], false);
Eval(5941, o is ImplementOneInterfaceC, false);
Eval(5942, o is ImplementOneInterfaceC[], false);
Eval(5943, o is ImplementTwoInterfaceC, false);
Eval(5944, o is ImplementTwoInterfaceC[], false);
- Eval(5945, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(5946, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(5947, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(5948, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(5949, o is ImplementAllInterfaceC<int>, false);
- Eval(5950, o is ImplementAllInterfaceC<int>[], false);
+// Eval(5945, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(5946, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(5947, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(5948, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(5949, o is ImplementAllInterfaceC<int>, false);
+// Eval(5950, o is ImplementAllInterfaceC<int>[], false);
Eval(5951, o is SealedClass, false);
Eval(5952, o is SealedClass[], false);
}
@@ -6220,18 +6220,18 @@ internal class Program
Eval(5958, o is ImplementTwoInterface[], false);
Eval(5959, o is ImplementTwoInterface?, false);
Eval(5960, o is ImplementTwoInterface?[], false);
- Eval(5961, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5962, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5963, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5964, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5965, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5966, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5967, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5968, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5969, o is ImplementAllInterface<int>, false);
- Eval(5970, o is ImplementAllInterface<int>[], false);
- Eval(5971, o is ImplementAllInterface<int>?, false);
- Eval(5972, o is ImplementAllInterface<int>?[], false);
+// Eval(5961, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5962, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5963, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5964, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5965, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5966, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5967, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5968, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5969, o is ImplementAllInterface<int>, false);
+// Eval(5970, o is ImplementAllInterface<int>[], false);
+// Eval(5971, o is ImplementAllInterface<int>?, false);
+// Eval(5972, o is ImplementAllInterface<int>?[], false);
Eval(5973, o is char, false);
Eval(5974, o is char[], false);
Eval(5975, o is char?, false);
@@ -6302,38 +6302,38 @@ internal class Program
Eval(6040, o is IEmpty[], false);
Eval(6041, o is INotEmpty, false);
Eval(6042, o is INotEmpty[], false);
- Eval(6043, o is IEmptyGen<int>, false);
- Eval(6044, o is IEmptyGen<int>[], false);
- Eval(6045, o is INotEmptyGen<int>, false);
- Eval(6046, o is INotEmptyGen<int>[], false);
+// Eval(6043, o is IEmptyGen<int>, false);
+// Eval(6044, o is IEmptyGen<int>[], false);
+// Eval(6045, o is INotEmptyGen<int>, false);
+// Eval(6046, o is INotEmptyGen<int>[], false);
Eval(6047, o is SimpleDelegate, false);
Eval(6048, o is SimpleDelegate[], false);
- Eval(6049, o is GenericDelegate<int>, false);
- Eval(6050, o is GenericDelegate<int>[], false);
+// Eval(6049, o is GenericDelegate<int>, false);
+// Eval(6050, o is GenericDelegate<int>[], false);
Eval(6051, o is EmptyClass, false);
Eval(6052, o is EmptyClass[], false);
Eval(6053, o is NotEmptyClass, false);
Eval(6054, o is NotEmptyClass[], false);
- Eval(6055, o is EmptyClassGen<int>, false);
- Eval(6056, o is EmptyClassGen<int>[], false);
- Eval(6057, o is NotEmptyClassGen<Guid>, false);
- Eval(6058, o is NotEmptyClassGen<Guid>[], false);
- Eval(6059, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6060, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6055, o is EmptyClassGen<int>, false);
+// Eval(6056, o is EmptyClassGen<int>[], false);
+// Eval(6057, o is NotEmptyClassGen<Guid>, false);
+// Eval(6058, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6059, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6060, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6061, o is NestedClass, false);
Eval(6062, o is NestedClass[], false);
- Eval(6063, o is NestedClassGen<Decimal>, false);
- Eval(6064, o is NestedClassGen<Decimal>[], false);
+// Eval(6063, o is NestedClassGen<Decimal>, false);
+// Eval(6064, o is NestedClassGen<Decimal>[], false);
Eval(6065, o is ImplementOneInterfaceC, false);
Eval(6066, o is ImplementOneInterfaceC[], false);
Eval(6067, o is ImplementTwoInterfaceC, false);
Eval(6068, o is ImplementTwoInterfaceC[], false);
- Eval(6069, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6070, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6071, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6072, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6073, o is ImplementAllInterfaceC<int>, false);
- Eval(6074, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6069, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6070, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6071, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6072, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6073, o is ImplementAllInterfaceC<int>, false);
+// Eval(6074, o is ImplementAllInterfaceC<int>[], false);
Eval(6075, o is SealedClass, false);
Eval(6076, o is SealedClass[], false);
}
@@ -6348,18 +6348,18 @@ internal class Program
Eval(6082, o is ImplementTwoInterface[], false);
Eval(6083, o is ImplementTwoInterface?, false);
Eval(6084, o is ImplementTwoInterface?[], false);
- Eval(6085, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6086, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6087, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6088, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6089, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6090, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6091, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6092, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6093, o is ImplementAllInterface<int>, false);
- Eval(6094, o is ImplementAllInterface<int>[], false);
- Eval(6095, o is ImplementAllInterface<int>?, false);
- Eval(6096, o is ImplementAllInterface<int>?[], false);
+// Eval(6085, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6086, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6087, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6088, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6089, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6090, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6091, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6092, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6093, o is ImplementAllInterface<int>, false);
+// Eval(6094, o is ImplementAllInterface<int>[], false);
+// Eval(6095, o is ImplementAllInterface<int>?, false);
+// Eval(6096, o is ImplementAllInterface<int>?[], false);
Eval(6097, o is char, false);
Eval(6098, o is char[], false);
Eval(6099, o is char?, false);
@@ -6430,38 +6430,38 @@ internal class Program
Eval(6164, o is IEmpty[], false);
Eval(6165, o is INotEmpty, false);
Eval(6166, o is INotEmpty[], false);
- Eval(6167, o is IEmptyGen<int>, false);
- Eval(6168, o is IEmptyGen<int>[], false);
- Eval(6169, o is INotEmptyGen<int>, false);
- Eval(6170, o is INotEmptyGen<int>[], false);
+// Eval(6167, o is IEmptyGen<int>, false);
+// Eval(6168, o is IEmptyGen<int>[], false);
+// Eval(6169, o is INotEmptyGen<int>, false);
+// Eval(6170, o is INotEmptyGen<int>[], false);
Eval(6171, o is SimpleDelegate, false);
Eval(6172, o is SimpleDelegate[], false);
- Eval(6173, o is GenericDelegate<int>, false);
- Eval(6174, o is GenericDelegate<int>[], false);
+// Eval(6173, o is GenericDelegate<int>, false);
+// Eval(6174, o is GenericDelegate<int>[], false);
Eval(6175, o is EmptyClass, false);
Eval(6176, o is EmptyClass[], false);
Eval(6177, o is NotEmptyClass, false);
Eval(6178, o is NotEmptyClass[], false);
- Eval(6179, o is EmptyClassGen<int>, false);
- Eval(6180, o is EmptyClassGen<int>[], false);
- Eval(6181, o is NotEmptyClassGen<Guid>, false);
- Eval(6182, o is NotEmptyClassGen<Guid>[], false);
- Eval(6183, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6184, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6179, o is EmptyClassGen<int>, false);
+// Eval(6180, o is EmptyClassGen<int>[], false);
+// Eval(6181, o is NotEmptyClassGen<Guid>, false);
+// Eval(6182, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6183, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6184, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6185, o is NestedClass, false);
Eval(6186, o is NestedClass[], false);
- Eval(6187, o is NestedClassGen<Decimal>, false);
- Eval(6188, o is NestedClassGen<Decimal>[], false);
+// Eval(6187, o is NestedClassGen<Decimal>, false);
+// Eval(6188, o is NestedClassGen<Decimal>[], false);
Eval(6189, o is ImplementOneInterfaceC, false);
Eval(6190, o is ImplementOneInterfaceC[], false);
Eval(6191, o is ImplementTwoInterfaceC, false);
Eval(6192, o is ImplementTwoInterfaceC[], false);
- Eval(6193, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6194, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6195, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6196, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6197, o is ImplementAllInterfaceC<int>, false);
- Eval(6198, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6193, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6194, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6195, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6196, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6197, o is ImplementAllInterfaceC<int>, false);
+// Eval(6198, o is ImplementAllInterfaceC<int>[], false);
Eval(6199, o is SealedClass, false);
Eval(6200, o is SealedClass[], false);
}
@@ -6476,18 +6476,18 @@ internal class Program
Eval(6206, o is ImplementTwoInterface[], false);
Eval(6207, o is ImplementTwoInterface?, false);
Eval(6208, o is ImplementTwoInterface?[], false);
- Eval(6209, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6210, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6211, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6212, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6213, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6214, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6215, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6216, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6217, o is ImplementAllInterface<int>, false);
- Eval(6218, o is ImplementAllInterface<int>[], false);
- Eval(6219, o is ImplementAllInterface<int>?, false);
- Eval(6220, o is ImplementAllInterface<int>?[], false);
+// Eval(6209, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6210, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6211, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6212, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6213, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6214, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6215, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6216, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6217, o is ImplementAllInterface<int>, false);
+// Eval(6218, o is ImplementAllInterface<int>[], false);
+// Eval(6219, o is ImplementAllInterface<int>?, false);
+// Eval(6220, o is ImplementAllInterface<int>?[], false);
Eval(6221, o is char, false);
Eval(6222, o is char[], false);
Eval(6223, o is char?, false);
@@ -6558,38 +6558,38 @@ internal class Program
Eval(6288, o is IEmpty[], false);
Eval(6289, o is INotEmpty, false);
Eval(6290, o is INotEmpty[], false);
- Eval(6291, o is IEmptyGen<int>, false);
- Eval(6292, o is IEmptyGen<int>[], false);
- Eval(6293, o is INotEmptyGen<int>, false);
- Eval(6294, o is INotEmptyGen<int>[], false);
+// Eval(6291, o is IEmptyGen<int>, false);
+// Eval(6292, o is IEmptyGen<int>[], false);
+// Eval(6293, o is INotEmptyGen<int>, false);
+// Eval(6294, o is INotEmptyGen<int>[], false);
Eval(6295, o is SimpleDelegate, false);
Eval(6296, o is SimpleDelegate[], false);
- Eval(6297, o is GenericDelegate<int>, false);
- Eval(6298, o is GenericDelegate<int>[], false);
+// Eval(6297, o is GenericDelegate<int>, false);
+// Eval(6298, o is GenericDelegate<int>[], false);
Eval(6299, o is EmptyClass, false);
Eval(6300, o is EmptyClass[], false);
Eval(6301, o is NotEmptyClass, false);
Eval(6302, o is NotEmptyClass[], false);
- Eval(6303, o is EmptyClassGen<int>, false);
- Eval(6304, o is EmptyClassGen<int>[], false);
- Eval(6305, o is NotEmptyClassGen<Guid>, false);
- Eval(6306, o is NotEmptyClassGen<Guid>[], false);
- Eval(6307, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6308, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6303, o is EmptyClassGen<int>, false);
+// Eval(6304, o is EmptyClassGen<int>[], false);
+// Eval(6305, o is NotEmptyClassGen<Guid>, false);
+// Eval(6306, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6307, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6308, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6309, o is NestedClass, false);
Eval(6310, o is NestedClass[], false);
- Eval(6311, o is NestedClassGen<Decimal>, false);
- Eval(6312, o is NestedClassGen<Decimal>[], false);
+// Eval(6311, o is NestedClassGen<Decimal>, false);
+// Eval(6312, o is NestedClassGen<Decimal>[], false);
Eval(6313, o is ImplementOneInterfaceC, false);
Eval(6314, o is ImplementOneInterfaceC[], false);
Eval(6315, o is ImplementTwoInterfaceC, false);
Eval(6316, o is ImplementTwoInterfaceC[], false);
- Eval(6317, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6318, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6319, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6320, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6321, o is ImplementAllInterfaceC<int>, false);
- Eval(6322, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6317, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6318, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6319, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6320, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6321, o is ImplementAllInterfaceC<int>, false);
+// Eval(6322, o is ImplementAllInterfaceC<int>[], false);
Eval(6323, o is SealedClass, false);
Eval(6324, o is SealedClass[], false);
}
@@ -6607,18 +6607,18 @@ internal class Program
Eval(6330, o is ImplementTwoInterface[], false);
Eval(6331, o is ImplementTwoInterface?, false);
Eval(6332, o is ImplementTwoInterface?[], false);
- Eval(6333, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6334, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6335, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6336, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6337, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6338, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6339, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6340, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6341, o is ImplementAllInterface<int>, false);
- Eval(6342, o is ImplementAllInterface<int>[], false);
- Eval(6343, o is ImplementAllInterface<int>?, false);
- Eval(6344, o is ImplementAllInterface<int>?[], false);
+// Eval(6333, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6334, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6335, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6336, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6337, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6338, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6339, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6340, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6341, o is ImplementAllInterface<int>, false);
+// Eval(6342, o is ImplementAllInterface<int>[], false);
+// Eval(6343, o is ImplementAllInterface<int>?, false);
+// Eval(6344, o is ImplementAllInterface<int>?[], false);
Eval(6345, o is char, false);
Eval(6346, o is char[], false);
Eval(6347, o is char?, false);
@@ -6689,38 +6689,38 @@ internal class Program
Eval(6412, o is IEmpty[], false);
Eval(6413, o is INotEmpty, false);
Eval(6414, o is INotEmpty[], false);
- Eval(6415, o is IEmptyGen<int>, false);
- Eval(6416, o is IEmptyGen<int>[], false);
- Eval(6417, o is INotEmptyGen<int>, false);
- Eval(6418, o is INotEmptyGen<int>[], false);
+// Eval(6415, o is IEmptyGen<int>, false);
+// Eval(6416, o is IEmptyGen<int>[], false);
+// Eval(6417, o is INotEmptyGen<int>, false);
+// Eval(6418, o is INotEmptyGen<int>[], false);
Eval(6419, o is SimpleDelegate, false);
Eval(6420, o is SimpleDelegate[], false);
- Eval(6421, o is GenericDelegate<int>, false);
- Eval(6422, o is GenericDelegate<int>[], false);
+// Eval(6421, o is GenericDelegate<int>, false);
+// Eval(6422, o is GenericDelegate<int>[], false);
Eval(6423, o is EmptyClass, false);
Eval(6424, o is EmptyClass[], false);
Eval(6425, o is NotEmptyClass, false);
Eval(6426, o is NotEmptyClass[], false);
- Eval(6427, o is EmptyClassGen<int>, false);
- Eval(6428, o is EmptyClassGen<int>[], false);
- Eval(6429, o is NotEmptyClassGen<Guid>, false);
- Eval(6430, o is NotEmptyClassGen<Guid>[], false);
- Eval(6431, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6432, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6427, o is EmptyClassGen<int>, false);
+// Eval(6428, o is EmptyClassGen<int>[], false);
+// Eval(6429, o is NotEmptyClassGen<Guid>, false);
+// Eval(6430, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6431, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6432, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6433, o is NestedClass, false);
Eval(6434, o is NestedClass[], false);
- Eval(6435, o is NestedClassGen<Decimal>, false);
- Eval(6436, o is NestedClassGen<Decimal>[], false);
+// Eval(6435, o is NestedClassGen<Decimal>, false);
+// Eval(6436, o is NestedClassGen<Decimal>[], false);
Eval(6437, o is ImplementOneInterfaceC, false);
Eval(6438, o is ImplementOneInterfaceC[], false);
Eval(6439, o is ImplementTwoInterfaceC, false);
Eval(6440, o is ImplementTwoInterfaceC[], false);
- Eval(6441, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6442, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6443, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6444, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6445, o is ImplementAllInterfaceC<int>, false);
- Eval(6446, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6441, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6442, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6443, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6444, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6445, o is ImplementAllInterfaceC<int>, false);
+// Eval(6446, o is ImplementAllInterfaceC<int>[], false);
Eval(6447, o is SealedClass, false);
Eval(6448, o is SealedClass[], false);
}
@@ -6735,18 +6735,18 @@ internal class Program
Eval(6454, o is ImplementTwoInterface[], false);
Eval(6455, o is ImplementTwoInterface?, false);
Eval(6456, o is ImplementTwoInterface?[], false);
- Eval(6457, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6458, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6459, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6460, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6461, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6462, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6463, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6464, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6465, o is ImplementAllInterface<int>, false);
- Eval(6466, o is ImplementAllInterface<int>[], false);
- Eval(6467, o is ImplementAllInterface<int>?, false);
- Eval(6468, o is ImplementAllInterface<int>?[], false);
+// Eval(6457, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6458, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6459, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6460, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6461, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6462, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6463, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6464, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6465, o is ImplementAllInterface<int>, false);
+// Eval(6466, o is ImplementAllInterface<int>[], false);
+// Eval(6467, o is ImplementAllInterface<int>?, false);
+// Eval(6468, o is ImplementAllInterface<int>?[], false);
Eval(6469, o is char, false);
Eval(6470, o is char[], false);
Eval(6471, o is char?, false);
@@ -6817,38 +6817,38 @@ internal class Program
Eval(6536, o is IEmpty[], false);
Eval(6537, o is INotEmpty, false);
Eval(6538, o is INotEmpty[], false);
- Eval(6539, o is IEmptyGen<int>, false);
- Eval(6540, o is IEmptyGen<int>[], false);
- Eval(6541, o is INotEmptyGen<int>, false);
- Eval(6542, o is INotEmptyGen<int>[], false);
+// Eval(6539, o is IEmptyGen<int>, false);
+// Eval(6540, o is IEmptyGen<int>[], false);
+// Eval(6541, o is INotEmptyGen<int>, false);
+// Eval(6542, o is INotEmptyGen<int>[], false);
Eval(6543, o is SimpleDelegate, false);
Eval(6544, o is SimpleDelegate[], false);
- Eval(6545, o is GenericDelegate<int>, false);
- Eval(6546, o is GenericDelegate<int>[], false);
+// Eval(6545, o is GenericDelegate<int>, false);
+// Eval(6546, o is GenericDelegate<int>[], false);
Eval(6547, o is EmptyClass, false);
Eval(6548, o is EmptyClass[], false);
Eval(6549, o is NotEmptyClass, false);
Eval(6550, o is NotEmptyClass[], false);
- Eval(6551, o is EmptyClassGen<int>, false);
- Eval(6552, o is EmptyClassGen<int>[], false);
- Eval(6553, o is NotEmptyClassGen<Guid>, false);
- Eval(6554, o is NotEmptyClassGen<Guid>[], false);
- Eval(6555, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6556, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6551, o is EmptyClassGen<int>, false);
+// Eval(6552, o is EmptyClassGen<int>[], false);
+// Eval(6553, o is NotEmptyClassGen<Guid>, false);
+// Eval(6554, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6555, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6556, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6557, o is NestedClass, false);
Eval(6558, o is NestedClass[], false);
- Eval(6559, o is NestedClassGen<Decimal>, false);
- Eval(6560, o is NestedClassGen<Decimal>[], false);
+// Eval(6559, o is NestedClassGen<Decimal>, false);
+// Eval(6560, o is NestedClassGen<Decimal>[], false);
Eval(6561, o is ImplementOneInterfaceC, false);
Eval(6562, o is ImplementOneInterfaceC[], false);
Eval(6563, o is ImplementTwoInterfaceC, false);
Eval(6564, o is ImplementTwoInterfaceC[], false);
- Eval(6565, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6566, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6567, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6568, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6569, o is ImplementAllInterfaceC<int>, false);
- Eval(6570, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6565, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6566, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6567, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6568, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6569, o is ImplementAllInterfaceC<int>, false);
+// Eval(6570, o is ImplementAllInterfaceC<int>[], false);
Eval(6571, o is SealedClass, false);
Eval(6572, o is SealedClass[], false);
}
@@ -6863,18 +6863,18 @@ internal class Program
Eval(6578, o is ImplementTwoInterface[], false);
Eval(6579, o is ImplementTwoInterface?, false);
Eval(6580, o is ImplementTwoInterface?[], false);
- Eval(6581, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6582, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6583, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6584, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6585, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6586, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6587, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6588, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6589, o is ImplementAllInterface<int>, false);
- Eval(6590, o is ImplementAllInterface<int>[], false);
- Eval(6591, o is ImplementAllInterface<int>?, false);
- Eval(6592, o is ImplementAllInterface<int>?[], false);
+// Eval(6581, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6582, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6583, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6584, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6585, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6586, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6587, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6588, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6589, o is ImplementAllInterface<int>, false);
+// Eval(6590, o is ImplementAllInterface<int>[], false);
+// Eval(6591, o is ImplementAllInterface<int>?, false);
+// Eval(6592, o is ImplementAllInterface<int>?[], false);
Eval(6593, o is char, false);
Eval(6594, o is char[], false);
Eval(6595, o is char?, false);
@@ -6945,38 +6945,38 @@ internal class Program
Eval(6660, o is IEmpty[], false);
Eval(6661, o is INotEmpty, false);
Eval(6662, o is INotEmpty[], false);
- Eval(6663, o is IEmptyGen<int>, false);
- Eval(6664, o is IEmptyGen<int>[], false);
- Eval(6665, o is INotEmptyGen<int>, false);
- Eval(6666, o is INotEmptyGen<int>[], false);
+// Eval(6663, o is IEmptyGen<int>, false);
+// Eval(6664, o is IEmptyGen<int>[], false);
+// Eval(6665, o is INotEmptyGen<int>, false);
+// Eval(6666, o is INotEmptyGen<int>[], false);
Eval(6667, o is SimpleDelegate, false);
Eval(6668, o is SimpleDelegate[], false);
- Eval(6669, o is GenericDelegate<int>, false);
- Eval(6670, o is GenericDelegate<int>[], false);
+// Eval(6669, o is GenericDelegate<int>, false);
+// Eval(6670, o is GenericDelegate<int>[], false);
Eval(6671, o is EmptyClass, false);
Eval(6672, o is EmptyClass[], false);
Eval(6673, o is NotEmptyClass, false);
Eval(6674, o is NotEmptyClass[], false);
- Eval(6675, o is EmptyClassGen<int>, false);
- Eval(6676, o is EmptyClassGen<int>[], false);
- Eval(6677, o is NotEmptyClassGen<Guid>, false);
- Eval(6678, o is NotEmptyClassGen<Guid>[], false);
- Eval(6679, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6680, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6675, o is EmptyClassGen<int>, false);
+// Eval(6676, o is EmptyClassGen<int>[], false);
+// Eval(6677, o is NotEmptyClassGen<Guid>, false);
+// Eval(6678, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6679, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6680, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6681, o is NestedClass, false);
Eval(6682, o is NestedClass[], false);
- Eval(6683, o is NestedClassGen<Decimal>, false);
- Eval(6684, o is NestedClassGen<Decimal>[], false);
+// Eval(6683, o is NestedClassGen<Decimal>, false);
+// Eval(6684, o is NestedClassGen<Decimal>[], false);
Eval(6685, o is ImplementOneInterfaceC, false);
Eval(6686, o is ImplementOneInterfaceC[], false);
Eval(6687, o is ImplementTwoInterfaceC, false);
Eval(6688, o is ImplementTwoInterfaceC[], false);
- Eval(6689, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6690, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6691, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6692, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6693, o is ImplementAllInterfaceC<int>, false);
- Eval(6694, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6689, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6690, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6691, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6692, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6693, o is ImplementAllInterfaceC<int>, false);
+// Eval(6694, o is ImplementAllInterfaceC<int>[], false);
Eval(6695, o is SealedClass, false);
Eval(6696, o is SealedClass[], false);
}
diff --git a/tests/src/JIT/Directed/nullabletypes/isinstvaluetype.cs b/tests/src/JIT/Directed/nullabletypes/isinstvaluetype.cs
index 871909c319..2277a3fcef 100644
--- a/tests/src/JIT/Directed/nullabletypes/isinstvaluetype.cs
+++ b/tests/src/JIT/Directed/nullabletypes/isinstvaluetype.cs
@@ -28,26 +28,26 @@ internal class Program
Eval(0006, o is NotEmptyStruct[], false);
Eval(0007, o is NotEmptyStruct?, false);
Eval(0008, o is NotEmptyStruct?[], false);
- Eval(0009, o is EmptyStructGen<int>, false);
- Eval(0010, o is EmptyStructGen<int>[], false);
- Eval(0011, o is EmptyStructGen<int>?, false);
- Eval(0012, o is EmptyStructGen<int>?[], false);
- Eval(0013, o is NotEmptyStructGen<Guid>, false);
- Eval(0014, o is NotEmptyStructGen<Guid>[], false);
- Eval(0015, o is NotEmptyStructGen<Guid>?, false);
- Eval(0016, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0017, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0018, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0019, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0020, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0009, o is EmptyStructGen<int>, false);
+// Eval(0010, o is EmptyStructGen<int>[], false);
+// Eval(0011, o is EmptyStructGen<int>?, false);
+// Eval(0012, o is EmptyStructGen<int>?[], false);
+// Eval(0013, o is NotEmptyStructGen<Guid>, false);
+// Eval(0014, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0015, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0016, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0017, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0018, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0019, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0020, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0021, o is NestedStruct, false);
Eval(0022, o is NestedStruct[], false);
Eval(0023, o is NestedStruct?, false);
Eval(0024, o is NestedStruct?[], false);
- Eval(0025, o is NestedStructGen<Decimal>, false);
- Eval(0026, o is NestedStructGen<Decimal>[], false);
- Eval(0027, o is NestedStructGen<Decimal>?, false);
- Eval(0028, o is NestedStructGen<Decimal>?[], false);
+// Eval(0025, o is NestedStructGen<Decimal>, false);
+// Eval(0026, o is NestedStructGen<Decimal>[], false);
+// Eval(0027, o is NestedStructGen<Decimal>?, false);
+// Eval(0028, o is NestedStructGen<Decimal>?[], false);
Eval(0029, o is ExplicitFieldOffsetStruct, false);
Eval(0030, o is ExplicitFieldOffsetStruct[], false);
Eval(0031, o is ExplicitFieldOffsetStruct?, false);
@@ -64,18 +64,18 @@ internal class Program
Eval(0050, o is ImplementTwoInterface[], false);
Eval(0051, o is ImplementTwoInterface?, false);
Eval(0052, o is ImplementTwoInterface?[], false);
- Eval(0053, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0054, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0055, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0056, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0057, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0058, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0059, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0060, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0061, o is ImplementAllInterface<int>, false);
- Eval(0062, o is ImplementAllInterface<int>[], false);
- Eval(0063, o is ImplementAllInterface<int>?, false);
- Eval(0064, o is ImplementAllInterface<int>?[], false);
+// Eval(0053, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0054, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0055, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0056, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0057, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0058, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0059, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0060, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0061, o is ImplementAllInterface<int>, false);
+// Eval(0062, o is ImplementAllInterface<int>[], false);
+// Eval(0063, o is ImplementAllInterface<int>?, false);
+// Eval(0064, o is ImplementAllInterface<int>?[], false);
Eval(0065, o is IntE, false);
Eval(0066, o is IntE[], false);
Eval(0067, o is IntE?, false);
@@ -174,38 +174,38 @@ internal class Program
Eval(0160, o is IEmpty[], false);
Eval(0161, o is INotEmpty, false);
Eval(0162, o is INotEmpty[], false);
- Eval(0163, o is IEmptyGen<int>, false);
- Eval(0164, o is IEmptyGen<int>[], false);
- Eval(0165, o is INotEmptyGen<int>, false);
- Eval(0166, o is INotEmptyGen<int>[], false);
+// Eval(0163, o is IEmptyGen<int>, false);
+// Eval(0164, o is IEmptyGen<int>[], false);
+// Eval(0165, o is INotEmptyGen<int>, false);
+// Eval(0166, o is INotEmptyGen<int>[], false);
Eval(0167, o is SimpleDelegate, false);
Eval(0168, o is SimpleDelegate[], false);
- Eval(0169, o is GenericDelegate<int>, false);
- Eval(0170, o is GenericDelegate<int>[], false);
+// Eval(0169, o is GenericDelegate<int>, false);
+// Eval(0170, o is GenericDelegate<int>[], false);
Eval(0171, o is EmptyClass, false);
Eval(0172, o is EmptyClass[], false);
Eval(0173, o is NotEmptyClass, false);
Eval(0174, o is NotEmptyClass[], false);
- Eval(0175, o is EmptyClassGen<int>, false);
- Eval(0176, o is EmptyClassGen<int>[], false);
- Eval(0177, o is NotEmptyClassGen<Guid>, false);
- Eval(0178, o is NotEmptyClassGen<Guid>[], false);
- Eval(0179, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0180, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0175, o is EmptyClassGen<int>, false);
+// Eval(0176, o is EmptyClassGen<int>[], false);
+// Eval(0177, o is NotEmptyClassGen<Guid>, false);
+// Eval(0178, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0179, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0180, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0181, o is NestedClass, false);
Eval(0182, o is NestedClass[], false);
- Eval(0183, o is NestedClassGen<Decimal>, false);
- Eval(0184, o is NestedClassGen<Decimal>[], false);
+// Eval(0183, o is NestedClassGen<Decimal>, false);
+// Eval(0184, o is NestedClassGen<Decimal>[], false);
Eval(0185, o is ImplementOneInterfaceC, false);
Eval(0186, o is ImplementOneInterfaceC[], false);
Eval(0187, o is ImplementTwoInterfaceC, false);
Eval(0188, o is ImplementTwoInterfaceC[], false);
- Eval(0189, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0190, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0191, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0192, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0193, o is ImplementAllInterfaceC<int>, false);
- Eval(0194, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0189, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0190, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0191, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0192, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0193, o is ImplementAllInterfaceC<int>, false);
+// Eval(0194, o is ImplementAllInterfaceC<int>[], false);
Eval(0195, o is SealedClass, false);
Eval(0196, o is SealedClass[], false);
}
@@ -220,26 +220,26 @@ internal class Program
Eval(0202, o is NotEmptyStruct[], false);
Eval(0203, o is NotEmptyStruct?, false);
Eval(0204, o is NotEmptyStruct?[], false);
- Eval(0205, o is EmptyStructGen<int>, false);
- Eval(0206, o is EmptyStructGen<int>[], false);
- Eval(0207, o is EmptyStructGen<int>?, false);
- Eval(0208, o is EmptyStructGen<int>?[], false);
- Eval(0209, o is NotEmptyStructGen<Guid>, false);
- Eval(0210, o is NotEmptyStructGen<Guid>[], false);
- Eval(0211, o is NotEmptyStructGen<Guid>?, false);
- Eval(0212, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0213, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0214, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0215, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0216, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0205, o is EmptyStructGen<int>, false);
+// Eval(0206, o is EmptyStructGen<int>[], false);
+// Eval(0207, o is EmptyStructGen<int>?, false);
+// Eval(0208, o is EmptyStructGen<int>?[], false);
+// Eval(0209, o is NotEmptyStructGen<Guid>, false);
+// Eval(0210, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0211, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0212, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0213, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0214, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0215, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0216, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0217, o is NestedStruct, false);
Eval(0218, o is NestedStruct[], false);
Eval(0219, o is NestedStruct?, false);
Eval(0220, o is NestedStruct?[], false);
- Eval(0221, o is NestedStructGen<Decimal>, false);
- Eval(0222, o is NestedStructGen<Decimal>[], false);
- Eval(0223, o is NestedStructGen<Decimal>?, false);
- Eval(0224, o is NestedStructGen<Decimal>?[], false);
+// Eval(0221, o is NestedStructGen<Decimal>, false);
+// Eval(0222, o is NestedStructGen<Decimal>[], false);
+// Eval(0223, o is NestedStructGen<Decimal>?, false);
+// Eval(0224, o is NestedStructGen<Decimal>?[], false);
Eval(0225, o is ExplicitFieldOffsetStruct, false);
Eval(0226, o is ExplicitFieldOffsetStruct[], false);
Eval(0227, o is ExplicitFieldOffsetStruct?, false);
@@ -256,18 +256,18 @@ internal class Program
Eval(0246, o is ImplementTwoInterface[], false);
Eval(0247, o is ImplementTwoInterface?, false);
Eval(0248, o is ImplementTwoInterface?[], false);
- Eval(0249, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0250, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0251, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0252, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0253, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0254, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0255, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0256, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0257, o is ImplementAllInterface<int>, false);
- Eval(0258, o is ImplementAllInterface<int>[], false);
- Eval(0259, o is ImplementAllInterface<int>?, false);
- Eval(0260, o is ImplementAllInterface<int>?[], false);
+// Eval(0249, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0250, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0251, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0252, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0253, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0254, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0255, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0256, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0257, o is ImplementAllInterface<int>, false);
+// Eval(0258, o is ImplementAllInterface<int>[], false);
+// Eval(0259, o is ImplementAllInterface<int>?, false);
+// Eval(0260, o is ImplementAllInterface<int>?[], false);
Eval(0261, o is IntE, false);
Eval(0262, o is IntE[], false);
Eval(0263, o is IntE?, false);
@@ -366,38 +366,38 @@ internal class Program
Eval(0356, o is IEmpty[], false);
Eval(0357, o is INotEmpty, false);
Eval(0358, o is INotEmpty[], false);
- Eval(0359, o is IEmptyGen<int>, false);
- Eval(0360, o is IEmptyGen<int>[], false);
- Eval(0361, o is INotEmptyGen<int>, false);
- Eval(0362, o is INotEmptyGen<int>[], false);
+// Eval(0359, o is IEmptyGen<int>, false);
+// Eval(0360, o is IEmptyGen<int>[], false);
+// Eval(0361, o is INotEmptyGen<int>, false);
+// Eval(0362, o is INotEmptyGen<int>[], false);
Eval(0363, o is SimpleDelegate, false);
Eval(0364, o is SimpleDelegate[], false);
- Eval(0365, o is GenericDelegate<int>, false);
- Eval(0366, o is GenericDelegate<int>[], false);
+// Eval(0365, o is GenericDelegate<int>, false);
+// Eval(0366, o is GenericDelegate<int>[], false);
Eval(0367, o is EmptyClass, false);
Eval(0368, o is EmptyClass[], false);
Eval(0369, o is NotEmptyClass, false);
Eval(0370, o is NotEmptyClass[], false);
- Eval(0371, o is EmptyClassGen<int>, false);
- Eval(0372, o is EmptyClassGen<int>[], false);
- Eval(0373, o is NotEmptyClassGen<Guid>, false);
- Eval(0374, o is NotEmptyClassGen<Guid>[], false);
- Eval(0375, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0376, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0371, o is EmptyClassGen<int>, false);
+// Eval(0372, o is EmptyClassGen<int>[], false);
+// Eval(0373, o is NotEmptyClassGen<Guid>, false);
+// Eval(0374, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0375, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0376, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0377, o is NestedClass, false);
Eval(0378, o is NestedClass[], false);
- Eval(0379, o is NestedClassGen<Decimal>, false);
- Eval(0380, o is NestedClassGen<Decimal>[], false);
+// Eval(0379, o is NestedClassGen<Decimal>, false);
+// Eval(0380, o is NestedClassGen<Decimal>[], false);
Eval(0381, o is ImplementOneInterfaceC, false);
Eval(0382, o is ImplementOneInterfaceC[], false);
Eval(0383, o is ImplementTwoInterfaceC, false);
Eval(0384, o is ImplementTwoInterfaceC[], false);
- Eval(0385, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0386, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0387, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0388, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0389, o is ImplementAllInterfaceC<int>, false);
- Eval(0390, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0385, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0386, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0387, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0388, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0389, o is ImplementAllInterfaceC<int>, false);
+// Eval(0390, o is ImplementAllInterfaceC<int>[], false);
Eval(0391, o is SealedClass, false);
Eval(0392, o is SealedClass[], false);
}
@@ -412,26 +412,26 @@ internal class Program
Eval(0398, o is NotEmptyStruct[], false);
Eval(0399, o is NotEmptyStruct?, false);
Eval(0400, o is NotEmptyStruct?[], false);
- Eval(0401, o is EmptyStructGen<int>, false);
- Eval(0402, o is EmptyStructGen<int>[], false);
- Eval(0403, o is EmptyStructGen<int>?, false);
- Eval(0404, o is EmptyStructGen<int>?[], false);
- Eval(0405, o is NotEmptyStructGen<Guid>, false);
- Eval(0406, o is NotEmptyStructGen<Guid>[], false);
- Eval(0407, o is NotEmptyStructGen<Guid>?, false);
- Eval(0408, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0409, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0410, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0411, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0412, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0401, o is EmptyStructGen<int>, false);
+// Eval(0402, o is EmptyStructGen<int>[], false);
+// Eval(0403, o is EmptyStructGen<int>?, false);
+// Eval(0404, o is EmptyStructGen<int>?[], false);
+// Eval(0405, o is NotEmptyStructGen<Guid>, false);
+// Eval(0406, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0407, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0408, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0409, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0410, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0411, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0412, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0413, o is NestedStruct, false);
Eval(0414, o is NestedStruct[], false);
Eval(0415, o is NestedStruct?, false);
Eval(0416, o is NestedStruct?[], false);
- Eval(0417, o is NestedStructGen<Decimal>, false);
- Eval(0418, o is NestedStructGen<Decimal>[], false);
- Eval(0419, o is NestedStructGen<Decimal>?, false);
- Eval(0420, o is NestedStructGen<Decimal>?[], false);
+// Eval(0417, o is NestedStructGen<Decimal>, false);
+// Eval(0418, o is NestedStructGen<Decimal>[], false);
+// Eval(0419, o is NestedStructGen<Decimal>?, false);
+// Eval(0420, o is NestedStructGen<Decimal>?[], false);
Eval(0421, o is ExplicitFieldOffsetStruct, false);
Eval(0422, o is ExplicitFieldOffsetStruct[], false);
Eval(0423, o is ExplicitFieldOffsetStruct?, false);
@@ -448,18 +448,18 @@ internal class Program
Eval(0442, o is ImplementTwoInterface[], false);
Eval(0443, o is ImplementTwoInterface?, false);
Eval(0444, o is ImplementTwoInterface?[], false);
- Eval(0445, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0446, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0447, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0448, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0449, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0450, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0451, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0452, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0453, o is ImplementAllInterface<int>, false);
- Eval(0454, o is ImplementAllInterface<int>[], false);
- Eval(0455, o is ImplementAllInterface<int>?, false);
- Eval(0456, o is ImplementAllInterface<int>?[], false);
+// Eval(0445, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0446, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0447, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0448, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0449, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0450, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0451, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0452, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0453, o is ImplementAllInterface<int>, false);
+// Eval(0454, o is ImplementAllInterface<int>[], false);
+// Eval(0455, o is ImplementAllInterface<int>?, false);
+// Eval(0456, o is ImplementAllInterface<int>?[], false);
Eval(0457, o is IntE, false);
Eval(0458, o is IntE[], false);
Eval(0459, o is IntE?, false);
@@ -558,38 +558,38 @@ internal class Program
Eval(0552, o is IEmpty[], false);
Eval(0553, o is INotEmpty, false);
Eval(0554, o is INotEmpty[], false);
- Eval(0555, o is IEmptyGen<int>, false);
- Eval(0556, o is IEmptyGen<int>[], false);
- Eval(0557, o is INotEmptyGen<int>, false);
- Eval(0558, o is INotEmptyGen<int>[], false);
+// Eval(0555, o is IEmptyGen<int>, false);
+// Eval(0556, o is IEmptyGen<int>[], false);
+// Eval(0557, o is INotEmptyGen<int>, false);
+// Eval(0558, o is INotEmptyGen<int>[], false);
Eval(0559, o is SimpleDelegate, false);
Eval(0560, o is SimpleDelegate[], false);
- Eval(0561, o is GenericDelegate<int>, false);
- Eval(0562, o is GenericDelegate<int>[], false);
+// Eval(0561, o is GenericDelegate<int>, false);
+// Eval(0562, o is GenericDelegate<int>[], false);
Eval(0563, o is EmptyClass, false);
Eval(0564, o is EmptyClass[], false);
Eval(0565, o is NotEmptyClass, false);
Eval(0566, o is NotEmptyClass[], false);
- Eval(0567, o is EmptyClassGen<int>, false);
- Eval(0568, o is EmptyClassGen<int>[], false);
- Eval(0569, o is NotEmptyClassGen<Guid>, false);
- Eval(0570, o is NotEmptyClassGen<Guid>[], false);
- Eval(0571, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0572, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0567, o is EmptyClassGen<int>, false);
+// Eval(0568, o is EmptyClassGen<int>[], false);
+// Eval(0569, o is NotEmptyClassGen<Guid>, false);
+// Eval(0570, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0571, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0572, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0573, o is NestedClass, false);
Eval(0574, o is NestedClass[], false);
- Eval(0575, o is NestedClassGen<Decimal>, false);
- Eval(0576, o is NestedClassGen<Decimal>[], false);
+// Eval(0575, o is NestedClassGen<Decimal>, false);
+// Eval(0576, o is NestedClassGen<Decimal>[], false);
Eval(0577, o is ImplementOneInterfaceC, false);
Eval(0578, o is ImplementOneInterfaceC[], false);
Eval(0579, o is ImplementTwoInterfaceC, false);
Eval(0580, o is ImplementTwoInterfaceC[], false);
- Eval(0581, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0582, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0583, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0584, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0585, o is ImplementAllInterfaceC<int>, false);
- Eval(0586, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0581, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0582, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0583, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0584, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0585, o is ImplementAllInterfaceC<int>, false);
+// Eval(0586, o is ImplementAllInterfaceC<int>[], false);
Eval(0587, o is SealedClass, false);
Eval(0588, o is SealedClass[], false);
}
@@ -607,26 +607,26 @@ internal class Program
Eval(0594, o is NotEmptyStruct[], false);
Eval(0595, o is NotEmptyStruct?, true);
Eval(0596, o is NotEmptyStruct?[], false);
- Eval(0597, o is EmptyStructGen<int>, false);
- Eval(0598, o is EmptyStructGen<int>[], false);
- Eval(0599, o is EmptyStructGen<int>?, false);
- Eval(0600, o is EmptyStructGen<int>?[], false);
- Eval(0601, o is NotEmptyStructGen<Guid>, false);
- Eval(0602, o is NotEmptyStructGen<Guid>[], false);
- Eval(0603, o is NotEmptyStructGen<Guid>?, false);
- Eval(0604, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0605, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0606, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0607, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0608, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0597, o is EmptyStructGen<int>, false);
+// Eval(0598, o is EmptyStructGen<int>[], false);
+// Eval(0599, o is EmptyStructGen<int>?, false);
+// Eval(0600, o is EmptyStructGen<int>?[], false);
+// Eval(0601, o is NotEmptyStructGen<Guid>, false);
+// Eval(0602, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0603, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0604, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0605, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0606, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0607, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0608, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0609, o is NestedStruct, false);
Eval(0610, o is NestedStruct[], false);
Eval(0611, o is NestedStruct?, false);
Eval(0612, o is NestedStruct?[], false);
- Eval(0613, o is NestedStructGen<Decimal>, false);
- Eval(0614, o is NestedStructGen<Decimal>[], false);
- Eval(0615, o is NestedStructGen<Decimal>?, false);
- Eval(0616, o is NestedStructGen<Decimal>?[], false);
+// Eval(0613, o is NestedStructGen<Decimal>, false);
+// Eval(0614, o is NestedStructGen<Decimal>[], false);
+// Eval(0615, o is NestedStructGen<Decimal>?, false);
+// Eval(0616, o is NestedStructGen<Decimal>?[], false);
Eval(0617, o is ExplicitFieldOffsetStruct, false);
Eval(0618, o is ExplicitFieldOffsetStruct[], false);
Eval(0619, o is ExplicitFieldOffsetStruct?, false);
@@ -643,18 +643,18 @@ internal class Program
Eval(0638, o is ImplementTwoInterface[], false);
Eval(0639, o is ImplementTwoInterface?, false);
Eval(0640, o is ImplementTwoInterface?[], false);
- Eval(0641, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0642, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0643, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0644, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0645, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0646, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0647, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0648, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0649, o is ImplementAllInterface<int>, false);
- Eval(0650, o is ImplementAllInterface<int>[], false);
- Eval(0651, o is ImplementAllInterface<int>?, false);
- Eval(0652, o is ImplementAllInterface<int>?[], false);
+// Eval(0641, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0642, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0643, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0644, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0645, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0646, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0647, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0648, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0649, o is ImplementAllInterface<int>, false);
+// Eval(0650, o is ImplementAllInterface<int>[], false);
+// Eval(0651, o is ImplementAllInterface<int>?, false);
+// Eval(0652, o is ImplementAllInterface<int>?[], false);
Eval(0653, o is IntE, false);
Eval(0654, o is IntE[], false);
Eval(0655, o is IntE?, false);
@@ -753,38 +753,38 @@ internal class Program
Eval(0748, o is IEmpty[], false);
Eval(0749, o is INotEmpty, false);
Eval(0750, o is INotEmpty[], false);
- Eval(0751, o is IEmptyGen<int>, false);
- Eval(0752, o is IEmptyGen<int>[], false);
- Eval(0753, o is INotEmptyGen<int>, false);
- Eval(0754, o is INotEmptyGen<int>[], false);
+// Eval(0751, o is IEmptyGen<int>, false);
+// Eval(0752, o is IEmptyGen<int>[], false);
+// Eval(0753, o is INotEmptyGen<int>, false);
+// Eval(0754, o is INotEmptyGen<int>[], false);
Eval(0755, o is SimpleDelegate, false);
Eval(0756, o is SimpleDelegate[], false);
- Eval(0757, o is GenericDelegate<int>, false);
- Eval(0758, o is GenericDelegate<int>[], false);
+// Eval(0757, o is GenericDelegate<int>, false);
+// Eval(0758, o is GenericDelegate<int>[], false);
Eval(0759, o is EmptyClass, false);
Eval(0760, o is EmptyClass[], false);
Eval(0761, o is NotEmptyClass, false);
Eval(0762, o is NotEmptyClass[], false);
- Eval(0763, o is EmptyClassGen<int>, false);
- Eval(0764, o is EmptyClassGen<int>[], false);
- Eval(0765, o is NotEmptyClassGen<Guid>, false);
- Eval(0766, o is NotEmptyClassGen<Guid>[], false);
- Eval(0767, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0768, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0763, o is EmptyClassGen<int>, false);
+// Eval(0764, o is EmptyClassGen<int>[], false);
+// Eval(0765, o is NotEmptyClassGen<Guid>, false);
+// Eval(0766, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0767, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0768, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0769, o is NestedClass, false);
Eval(0770, o is NestedClass[], false);
- Eval(0771, o is NestedClassGen<Decimal>, false);
- Eval(0772, o is NestedClassGen<Decimal>[], false);
+// Eval(0771, o is NestedClassGen<Decimal>, false);
+// Eval(0772, o is NestedClassGen<Decimal>[], false);
Eval(0773, o is ImplementOneInterfaceC, false);
Eval(0774, o is ImplementOneInterfaceC[], false);
Eval(0775, o is ImplementTwoInterfaceC, false);
Eval(0776, o is ImplementTwoInterfaceC[], false);
- Eval(0777, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0778, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0779, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0780, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0781, o is ImplementAllInterfaceC<int>, false);
- Eval(0782, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0777, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0778, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0779, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0780, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0781, o is ImplementAllInterfaceC<int>, false);
+// Eval(0782, o is ImplementAllInterfaceC<int>[], false);
Eval(0783, o is SealedClass, false);
Eval(0784, o is SealedClass[], false);
}
@@ -799,26 +799,26 @@ internal class Program
Eval(0790, o is NotEmptyStruct[], false);
Eval(0791, o is NotEmptyStruct?, true);
Eval(0792, o is NotEmptyStruct?[], false);
- Eval(0793, o is EmptyStructGen<int>, false);
- Eval(0794, o is EmptyStructGen<int>[], false);
- Eval(0795, o is EmptyStructGen<int>?, false);
- Eval(0796, o is EmptyStructGen<int>?[], false);
- Eval(0797, o is NotEmptyStructGen<Guid>, false);
- Eval(0798, o is NotEmptyStructGen<Guid>[], false);
- Eval(0799, o is NotEmptyStructGen<Guid>?, false);
- Eval(0800, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0801, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0802, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0803, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(0804, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0793, o is EmptyStructGen<int>, false);
+// Eval(0794, o is EmptyStructGen<int>[], false);
+// Eval(0795, o is EmptyStructGen<int>?, false);
+// Eval(0796, o is EmptyStructGen<int>?[], false);
+// Eval(0797, o is NotEmptyStructGen<Guid>, false);
+// Eval(0798, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0799, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0800, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0801, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0802, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0803, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(0804, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(0805, o is NestedStruct, false);
Eval(0806, o is NestedStruct[], false);
Eval(0807, o is NestedStruct?, false);
Eval(0808, o is NestedStruct?[], false);
- Eval(0809, o is NestedStructGen<Decimal>, false);
- Eval(0810, o is NestedStructGen<Decimal>[], false);
- Eval(0811, o is NestedStructGen<Decimal>?, false);
- Eval(0812, o is NestedStructGen<Decimal>?[], false);
+// Eval(0809, o is NestedStructGen<Decimal>, false);
+// Eval(0810, o is NestedStructGen<Decimal>[], false);
+// Eval(0811, o is NestedStructGen<Decimal>?, false);
+// Eval(0812, o is NestedStructGen<Decimal>?[], false);
Eval(0813, o is ExplicitFieldOffsetStruct, false);
Eval(0814, o is ExplicitFieldOffsetStruct[], false);
Eval(0815, o is ExplicitFieldOffsetStruct?, false);
@@ -835,18 +835,18 @@ internal class Program
Eval(0834, o is ImplementTwoInterface[], false);
Eval(0835, o is ImplementTwoInterface?, false);
Eval(0836, o is ImplementTwoInterface?[], false);
- Eval(0837, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(0838, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(0839, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(0840, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(0841, o is ImplementTwoInterfaceGen<int>, false);
- Eval(0842, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(0843, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(0844, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(0845, o is ImplementAllInterface<int>, false);
- Eval(0846, o is ImplementAllInterface<int>[], false);
- Eval(0847, o is ImplementAllInterface<int>?, false);
- Eval(0848, o is ImplementAllInterface<int>?[], false);
+// Eval(0837, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(0838, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(0839, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(0840, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(0841, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(0842, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(0843, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(0844, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(0845, o is ImplementAllInterface<int>, false);
+// Eval(0846, o is ImplementAllInterface<int>[], false);
+// Eval(0847, o is ImplementAllInterface<int>?, false);
+// Eval(0848, o is ImplementAllInterface<int>?[], false);
Eval(0849, o is IntE, false);
Eval(0850, o is IntE[], false);
Eval(0851, o is IntE?, false);
@@ -945,38 +945,38 @@ internal class Program
Eval(0944, o is IEmpty[], false);
Eval(0945, o is INotEmpty, false);
Eval(0946, o is INotEmpty[], false);
- Eval(0947, o is IEmptyGen<int>, false);
- Eval(0948, o is IEmptyGen<int>[], false);
- Eval(0949, o is INotEmptyGen<int>, false);
- Eval(0950, o is INotEmptyGen<int>[], false);
+// Eval(0947, o is IEmptyGen<int>, false);
+// Eval(0948, o is IEmptyGen<int>[], false);
+// Eval(0949, o is INotEmptyGen<int>, false);
+// Eval(0950, o is INotEmptyGen<int>[], false);
Eval(0951, o is SimpleDelegate, false);
Eval(0952, o is SimpleDelegate[], false);
- Eval(0953, o is GenericDelegate<int>, false);
- Eval(0954, o is GenericDelegate<int>[], false);
+// Eval(0953, o is GenericDelegate<int>, false);
+// Eval(0954, o is GenericDelegate<int>[], false);
Eval(0955, o is EmptyClass, false);
Eval(0956, o is EmptyClass[], false);
Eval(0957, o is NotEmptyClass, false);
Eval(0958, o is NotEmptyClass[], false);
- Eval(0959, o is EmptyClassGen<int>, false);
- Eval(0960, o is EmptyClassGen<int>[], false);
- Eval(0961, o is NotEmptyClassGen<Guid>, false);
- Eval(0962, o is NotEmptyClassGen<Guid>[], false);
- Eval(0963, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(0964, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(0959, o is EmptyClassGen<int>, false);
+// Eval(0960, o is EmptyClassGen<int>[], false);
+// Eval(0961, o is NotEmptyClassGen<Guid>, false);
+// Eval(0962, o is NotEmptyClassGen<Guid>[], false);
+// Eval(0963, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(0964, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(0965, o is NestedClass, false);
Eval(0966, o is NestedClass[], false);
- Eval(0967, o is NestedClassGen<Decimal>, false);
- Eval(0968, o is NestedClassGen<Decimal>[], false);
+// Eval(0967, o is NestedClassGen<Decimal>, false);
+// Eval(0968, o is NestedClassGen<Decimal>[], false);
Eval(0969, o is ImplementOneInterfaceC, false);
Eval(0970, o is ImplementOneInterfaceC[], false);
Eval(0971, o is ImplementTwoInterfaceC, false);
Eval(0972, o is ImplementTwoInterfaceC[], false);
- Eval(0973, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(0974, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(0975, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(0976, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(0977, o is ImplementAllInterfaceC<int>, false);
- Eval(0978, o is ImplementAllInterfaceC<int>[], false);
+// Eval(0973, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(0974, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(0975, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(0976, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(0977, o is ImplementAllInterfaceC<int>, false);
+// Eval(0978, o is ImplementAllInterfaceC<int>[], false);
Eval(0979, o is SealedClass, false);
Eval(0980, o is SealedClass[], false);
}
@@ -991,26 +991,26 @@ internal class Program
Eval(0986, o is NotEmptyStruct[], false);
Eval(0987, o is NotEmptyStruct?, false);
Eval(0988, o is NotEmptyStruct?[], false);
- Eval(0989, o is EmptyStructGen<int>, false);
- Eval(0990, o is EmptyStructGen<int>[], false);
- Eval(0991, o is EmptyStructGen<int>?, false);
- Eval(0992, o is EmptyStructGen<int>?[], false);
- Eval(0993, o is NotEmptyStructGen<Guid>, false);
- Eval(0994, o is NotEmptyStructGen<Guid>[], false);
- Eval(0995, o is NotEmptyStructGen<Guid>?, false);
- Eval(0996, o is NotEmptyStructGen<Guid>?[], false);
- Eval(0997, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(0998, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(0999, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1000, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(0989, o is EmptyStructGen<int>, false);
+// Eval(0990, o is EmptyStructGen<int>[], false);
+// Eval(0991, o is EmptyStructGen<int>?, false);
+// Eval(0992, o is EmptyStructGen<int>?[], false);
+// Eval(0993, o is NotEmptyStructGen<Guid>, false);
+// Eval(0994, o is NotEmptyStructGen<Guid>[], false);
+// Eval(0995, o is NotEmptyStructGen<Guid>?, false);
+// Eval(0996, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(0997, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(0998, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(0999, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1000, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1001, o is NestedStruct, false);
Eval(1002, o is NestedStruct[], false);
Eval(1003, o is NestedStruct?, false);
Eval(1004, o is NestedStruct?[], false);
- Eval(1005, o is NestedStructGen<Decimal>, false);
- Eval(1006, o is NestedStructGen<Decimal>[], false);
- Eval(1007, o is NestedStructGen<Decimal>?, false);
- Eval(1008, o is NestedStructGen<Decimal>?[], false);
+// Eval(1005, o is NestedStructGen<Decimal>, false);
+// Eval(1006, o is NestedStructGen<Decimal>[], false);
+// Eval(1007, o is NestedStructGen<Decimal>?, false);
+// Eval(1008, o is NestedStructGen<Decimal>?[], false);
Eval(1009, o is ExplicitFieldOffsetStruct, false);
Eval(1010, o is ExplicitFieldOffsetStruct[], false);
Eval(1011, o is ExplicitFieldOffsetStruct?, false);
@@ -1027,18 +1027,18 @@ internal class Program
Eval(1030, o is ImplementTwoInterface[], false);
Eval(1031, o is ImplementTwoInterface?, false);
Eval(1032, o is ImplementTwoInterface?[], false);
- Eval(1033, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1034, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1035, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1036, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1037, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1038, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1039, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1040, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1041, o is ImplementAllInterface<int>, false);
- Eval(1042, o is ImplementAllInterface<int>[], false);
- Eval(1043, o is ImplementAllInterface<int>?, false);
- Eval(1044, o is ImplementAllInterface<int>?[], false);
+// Eval(1033, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1034, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1035, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1036, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1037, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1038, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1039, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1040, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1041, o is ImplementAllInterface<int>, false);
+// Eval(1042, o is ImplementAllInterface<int>[], false);
+// Eval(1043, o is ImplementAllInterface<int>?, false);
+// Eval(1044, o is ImplementAllInterface<int>?[], false);
Eval(1045, o is IntE, false);
Eval(1046, o is IntE[], false);
Eval(1047, o is IntE?, false);
@@ -1137,38 +1137,38 @@ internal class Program
Eval(1140, o is IEmpty[], false);
Eval(1141, o is INotEmpty, false);
Eval(1142, o is INotEmpty[], false);
- Eval(1143, o is IEmptyGen<int>, false);
- Eval(1144, o is IEmptyGen<int>[], false);
- Eval(1145, o is INotEmptyGen<int>, false);
- Eval(1146, o is INotEmptyGen<int>[], false);
+// Eval(1143, o is IEmptyGen<int>, false);
+// Eval(1144, o is IEmptyGen<int>[], false);
+// Eval(1145, o is INotEmptyGen<int>, false);
+// Eval(1146, o is INotEmptyGen<int>[], false);
Eval(1147, o is SimpleDelegate, false);
Eval(1148, o is SimpleDelegate[], false);
- Eval(1149, o is GenericDelegate<int>, false);
- Eval(1150, o is GenericDelegate<int>[], false);
+// Eval(1149, o is GenericDelegate<int>, false);
+// Eval(1150, o is GenericDelegate<int>[], false);
Eval(1151, o is EmptyClass, false);
Eval(1152, o is EmptyClass[], false);
Eval(1153, o is NotEmptyClass, false);
Eval(1154, o is NotEmptyClass[], false);
- Eval(1155, o is EmptyClassGen<int>, false);
- Eval(1156, o is EmptyClassGen<int>[], false);
- Eval(1157, o is NotEmptyClassGen<Guid>, false);
- Eval(1158, o is NotEmptyClassGen<Guid>[], false);
- Eval(1159, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1160, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1155, o is EmptyClassGen<int>, false);
+// Eval(1156, o is EmptyClassGen<int>[], false);
+// Eval(1157, o is NotEmptyClassGen<Guid>, false);
+// Eval(1158, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1159, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1160, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1161, o is NestedClass, false);
Eval(1162, o is NestedClass[], false);
- Eval(1163, o is NestedClassGen<Decimal>, false);
- Eval(1164, o is NestedClassGen<Decimal>[], false);
+// Eval(1163, o is NestedClassGen<Decimal>, false);
+// Eval(1164, o is NestedClassGen<Decimal>[], false);
Eval(1165, o is ImplementOneInterfaceC, false);
Eval(1166, o is ImplementOneInterfaceC[], false);
Eval(1167, o is ImplementTwoInterfaceC, false);
Eval(1168, o is ImplementTwoInterfaceC[], false);
- Eval(1169, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1170, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1171, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1172, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1173, o is ImplementAllInterfaceC<int>, false);
- Eval(1174, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1169, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1170, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1171, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1172, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1173, o is ImplementAllInterfaceC<int>, false);
+// Eval(1174, o is ImplementAllInterfaceC<int>[], false);
Eval(1175, o is SealedClass, false);
Eval(1176, o is SealedClass[], false);
}
@@ -1186,26 +1186,26 @@ internal class Program
Eval(1182, o is NotEmptyStruct[], false);
Eval(1183, o is NotEmptyStruct?, false);
Eval(1184, o is NotEmptyStruct?[], false);
- Eval(1185, o is EmptyStructGen<int>, true);
- Eval(1186, o is EmptyStructGen<int>[], false);
- Eval(1187, o is EmptyStructGen<int>?, true);
- Eval(1188, o is EmptyStructGen<int>?[], false);
- Eval(1189, o is NotEmptyStructGen<Guid>, false);
- Eval(1190, o is NotEmptyStructGen<Guid>[], false);
- Eval(1191, o is NotEmptyStructGen<Guid>?, false);
- Eval(1192, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1193, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1194, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1195, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1196, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1185, o is EmptyStructGen<int>, true);
+// Eval(1186, o is EmptyStructGen<int>[], false);
+// Eval(1187, o is EmptyStructGen<int>?, true);
+// Eval(1188, o is EmptyStructGen<int>?[], false);
+// Eval(1189, o is NotEmptyStructGen<Guid>, false);
+// Eval(1190, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1191, o is NotEmptyStructGen<Guid>?, false);
+// Eval(1192, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1193, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1194, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1195, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1196, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1197, o is NestedStruct, false);
Eval(1198, o is NestedStruct[], false);
Eval(1199, o is NestedStruct?, false);
Eval(1200, o is NestedStruct?[], false);
- Eval(1201, o is NestedStructGen<Decimal>, false);
- Eval(1202, o is NestedStructGen<Decimal>[], false);
- Eval(1203, o is NestedStructGen<Decimal>?, false);
- Eval(1204, o is NestedStructGen<Decimal>?[], false);
+// Eval(1201, o is NestedStructGen<Decimal>, false);
+// Eval(1202, o is NestedStructGen<Decimal>[], false);
+// Eval(1203, o is NestedStructGen<Decimal>?, false);
+// Eval(1204, o is NestedStructGen<Decimal>?[], false);
Eval(1205, o is ExplicitFieldOffsetStruct, false);
Eval(1206, o is ExplicitFieldOffsetStruct[], false);
Eval(1207, o is ExplicitFieldOffsetStruct?, false);
@@ -1222,18 +1222,18 @@ internal class Program
Eval(1226, o is ImplementTwoInterface[], false);
Eval(1227, o is ImplementTwoInterface?, false);
Eval(1228, o is ImplementTwoInterface?[], false);
- Eval(1229, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1230, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1231, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1232, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1233, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1234, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1235, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1236, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1237, o is ImplementAllInterface<int>, false);
- Eval(1238, o is ImplementAllInterface<int>[], false);
- Eval(1239, o is ImplementAllInterface<int>?, false);
- Eval(1240, o is ImplementAllInterface<int>?[], false);
+// Eval(1229, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1230, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1231, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1232, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1233, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1234, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1235, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1236, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1237, o is ImplementAllInterface<int>, false);
+// Eval(1238, o is ImplementAllInterface<int>[], false);
+// Eval(1239, o is ImplementAllInterface<int>?, false);
+// Eval(1240, o is ImplementAllInterface<int>?[], false);
Eval(1241, o is IntE, false);
Eval(1242, o is IntE[], false);
Eval(1243, o is IntE?, false);
@@ -1332,38 +1332,38 @@ internal class Program
Eval(1336, o is IEmpty[], false);
Eval(1337, o is INotEmpty, false);
Eval(1338, o is INotEmpty[], false);
- Eval(1339, o is IEmptyGen<int>, false);
- Eval(1340, o is IEmptyGen<int>[], false);
- Eval(1341, o is INotEmptyGen<int>, false);
- Eval(1342, o is INotEmptyGen<int>[], false);
+// Eval(1339, o is IEmptyGen<int>, false);
+// Eval(1340, o is IEmptyGen<int>[], false);
+// Eval(1341, o is INotEmptyGen<int>, false);
+// Eval(1342, o is INotEmptyGen<int>[], false);
Eval(1343, o is SimpleDelegate, false);
Eval(1344, o is SimpleDelegate[], false);
- Eval(1345, o is GenericDelegate<int>, false);
- Eval(1346, o is GenericDelegate<int>[], false);
+// Eval(1345, o is GenericDelegate<int>, false);
+// Eval(1346, o is GenericDelegate<int>[], false);
Eval(1347, o is EmptyClass, false);
Eval(1348, o is EmptyClass[], false);
Eval(1349, o is NotEmptyClass, false);
Eval(1350, o is NotEmptyClass[], false);
- Eval(1351, o is EmptyClassGen<int>, false);
- Eval(1352, o is EmptyClassGen<int>[], false);
- Eval(1353, o is NotEmptyClassGen<Guid>, false);
- Eval(1354, o is NotEmptyClassGen<Guid>[], false);
- Eval(1355, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1356, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1351, o is EmptyClassGen<int>, false);
+// Eval(1352, o is EmptyClassGen<int>[], false);
+// Eval(1353, o is NotEmptyClassGen<Guid>, false);
+// Eval(1354, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1355, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1356, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1357, o is NestedClass, false);
Eval(1358, o is NestedClass[], false);
- Eval(1359, o is NestedClassGen<Decimal>, false);
- Eval(1360, o is NestedClassGen<Decimal>[], false);
+// Eval(1359, o is NestedClassGen<Decimal>, false);
+// Eval(1360, o is NestedClassGen<Decimal>[], false);
Eval(1361, o is ImplementOneInterfaceC, false);
Eval(1362, o is ImplementOneInterfaceC[], false);
Eval(1363, o is ImplementTwoInterfaceC, false);
Eval(1364, o is ImplementTwoInterfaceC[], false);
- Eval(1365, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1366, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1367, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1368, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1369, o is ImplementAllInterfaceC<int>, false);
- Eval(1370, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1365, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1366, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1367, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1368, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1369, o is ImplementAllInterfaceC<int>, false);
+// Eval(1370, o is ImplementAllInterfaceC<int>[], false);
Eval(1371, o is SealedClass, false);
Eval(1372, o is SealedClass[], false);
}
@@ -1378,26 +1378,26 @@ internal class Program
Eval(1378, o is NotEmptyStruct[], false);
Eval(1379, o is NotEmptyStruct?, false);
Eval(1380, o is NotEmptyStruct?[], false);
- Eval(1381, o is EmptyStructGen<int>, true);
- Eval(1382, o is EmptyStructGen<int>[], false);
- Eval(1383, o is EmptyStructGen<int>?, true);
- Eval(1384, o is EmptyStructGen<int>?[], false);
- Eval(1385, o is NotEmptyStructGen<Guid>, false);
- Eval(1386, o is NotEmptyStructGen<Guid>[], false);
- Eval(1387, o is NotEmptyStructGen<Guid>?, false);
- Eval(1388, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1389, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1390, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1391, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1392, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1381, o is EmptyStructGen<int>, true);
+// Eval(1382, o is EmptyStructGen<int>[], false);
+// Eval(1383, o is EmptyStructGen<int>?, true);
+// Eval(1384, o is EmptyStructGen<int>?[], false);
+// Eval(1385, o is NotEmptyStructGen<Guid>, false);
+// Eval(1386, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1387, o is NotEmptyStructGen<Guid>?, false);
+// Eval(1388, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1389, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1390, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1391, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1392, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1393, o is NestedStruct, false);
Eval(1394, o is NestedStruct[], false);
Eval(1395, o is NestedStruct?, false);
Eval(1396, o is NestedStruct?[], false);
- Eval(1397, o is NestedStructGen<Decimal>, false);
- Eval(1398, o is NestedStructGen<Decimal>[], false);
- Eval(1399, o is NestedStructGen<Decimal>?, false);
- Eval(1400, o is NestedStructGen<Decimal>?[], false);
+// Eval(1397, o is NestedStructGen<Decimal>, false);
+// Eval(1398, o is NestedStructGen<Decimal>[], false);
+// Eval(1399, o is NestedStructGen<Decimal>?, false);
+// Eval(1400, o is NestedStructGen<Decimal>?[], false);
Eval(1401, o is ExplicitFieldOffsetStruct, false);
Eval(1402, o is ExplicitFieldOffsetStruct[], false);
Eval(1403, o is ExplicitFieldOffsetStruct?, false);
@@ -1414,18 +1414,18 @@ internal class Program
Eval(1422, o is ImplementTwoInterface[], false);
Eval(1423, o is ImplementTwoInterface?, false);
Eval(1424, o is ImplementTwoInterface?[], false);
- Eval(1425, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1426, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1427, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1428, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1429, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1430, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1431, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1432, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1433, o is ImplementAllInterface<int>, false);
- Eval(1434, o is ImplementAllInterface<int>[], false);
- Eval(1435, o is ImplementAllInterface<int>?, false);
- Eval(1436, o is ImplementAllInterface<int>?[], false);
+// Eval(1425, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1426, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1427, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1428, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1429, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1430, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1431, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1432, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1433, o is ImplementAllInterface<int>, false);
+// Eval(1434, o is ImplementAllInterface<int>[], false);
+// Eval(1435, o is ImplementAllInterface<int>?, false);
+// Eval(1436, o is ImplementAllInterface<int>?[], false);
Eval(1437, o is IntE, false);
Eval(1438, o is IntE[], false);
Eval(1439, o is IntE?, false);
@@ -1524,38 +1524,38 @@ internal class Program
Eval(1532, o is IEmpty[], false);
Eval(1533, o is INotEmpty, false);
Eval(1534, o is INotEmpty[], false);
- Eval(1535, o is IEmptyGen<int>, false);
- Eval(1536, o is IEmptyGen<int>[], false);
- Eval(1537, o is INotEmptyGen<int>, false);
- Eval(1538, o is INotEmptyGen<int>[], false);
+// Eval(1535, o is IEmptyGen<int>, false);
+// Eval(1536, o is IEmptyGen<int>[], false);
+// Eval(1537, o is INotEmptyGen<int>, false);
+// Eval(1538, o is INotEmptyGen<int>[], false);
Eval(1539, o is SimpleDelegate, false);
Eval(1540, o is SimpleDelegate[], false);
- Eval(1541, o is GenericDelegate<int>, false);
- Eval(1542, o is GenericDelegate<int>[], false);
+// Eval(1541, o is GenericDelegate<int>, false);
+// Eval(1542, o is GenericDelegate<int>[], false);
Eval(1543, o is EmptyClass, false);
Eval(1544, o is EmptyClass[], false);
Eval(1545, o is NotEmptyClass, false);
Eval(1546, o is NotEmptyClass[], false);
- Eval(1547, o is EmptyClassGen<int>, false);
- Eval(1548, o is EmptyClassGen<int>[], false);
- Eval(1549, o is NotEmptyClassGen<Guid>, false);
- Eval(1550, o is NotEmptyClassGen<Guid>[], false);
- Eval(1551, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1552, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1547, o is EmptyClassGen<int>, false);
+// Eval(1548, o is EmptyClassGen<int>[], false);
+// Eval(1549, o is NotEmptyClassGen<Guid>, false);
+// Eval(1550, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1551, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1552, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1553, o is NestedClass, false);
Eval(1554, o is NestedClass[], false);
- Eval(1555, o is NestedClassGen<Decimal>, false);
- Eval(1556, o is NestedClassGen<Decimal>[], false);
+// Eval(1555, o is NestedClassGen<Decimal>, false);
+// Eval(1556, o is NestedClassGen<Decimal>[], false);
Eval(1557, o is ImplementOneInterfaceC, false);
Eval(1558, o is ImplementOneInterfaceC[], false);
Eval(1559, o is ImplementTwoInterfaceC, false);
Eval(1560, o is ImplementTwoInterfaceC[], false);
- Eval(1561, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1562, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1563, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1564, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1565, o is ImplementAllInterfaceC<int>, false);
- Eval(1566, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1561, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1562, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1563, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1564, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1565, o is ImplementAllInterfaceC<int>, false);
+// Eval(1566, o is ImplementAllInterfaceC<int>[], false);
Eval(1567, o is SealedClass, false);
Eval(1568, o is SealedClass[], false);
}
@@ -1570,26 +1570,26 @@ internal class Program
Eval(1574, o is NotEmptyStruct[], false);
Eval(1575, o is NotEmptyStruct?, false);
Eval(1576, o is NotEmptyStruct?[], false);
- Eval(1577, o is EmptyStructGen<int>, false);
- Eval(1578, o is EmptyStructGen<int>[], false);
- Eval(1579, o is EmptyStructGen<int>?, false);
- Eval(1580, o is EmptyStructGen<int>?[], false);
- Eval(1581, o is NotEmptyStructGen<Guid>, false);
- Eval(1582, o is NotEmptyStructGen<Guid>[], false);
- Eval(1583, o is NotEmptyStructGen<Guid>?, false);
- Eval(1584, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1585, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1586, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1587, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1588, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1577, o is EmptyStructGen<int>, false);
+// Eval(1578, o is EmptyStructGen<int>[], false);
+// Eval(1579, o is EmptyStructGen<int>?, false);
+// Eval(1580, o is EmptyStructGen<int>?[], false);
+// Eval(1581, o is NotEmptyStructGen<Guid>, false);
+// Eval(1582, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1583, o is NotEmptyStructGen<Guid>?, false);
+// Eval(1584, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1585, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1586, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1587, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1588, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1589, o is NestedStruct, false);
Eval(1590, o is NestedStruct[], false);
Eval(1591, o is NestedStruct?, false);
Eval(1592, o is NestedStruct?[], false);
- Eval(1593, o is NestedStructGen<Decimal>, false);
- Eval(1594, o is NestedStructGen<Decimal>[], false);
- Eval(1595, o is NestedStructGen<Decimal>?, false);
- Eval(1596, o is NestedStructGen<Decimal>?[], false);
+// Eval(1593, o is NestedStructGen<Decimal>, false);
+// Eval(1594, o is NestedStructGen<Decimal>[], false);
+// Eval(1595, o is NestedStructGen<Decimal>?, false);
+// Eval(1596, o is NestedStructGen<Decimal>?[], false);
Eval(1597, o is ExplicitFieldOffsetStruct, false);
Eval(1598, o is ExplicitFieldOffsetStruct[], false);
Eval(1599, o is ExplicitFieldOffsetStruct?, false);
@@ -1606,18 +1606,18 @@ internal class Program
Eval(1618, o is ImplementTwoInterface[], false);
Eval(1619, o is ImplementTwoInterface?, false);
Eval(1620, o is ImplementTwoInterface?[], false);
- Eval(1621, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1622, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1623, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1624, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1625, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1626, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1627, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1628, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1629, o is ImplementAllInterface<int>, false);
- Eval(1630, o is ImplementAllInterface<int>[], false);
- Eval(1631, o is ImplementAllInterface<int>?, false);
- Eval(1632, o is ImplementAllInterface<int>?[], false);
+// Eval(1621, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1622, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1623, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1624, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1625, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1626, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1627, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1628, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1629, o is ImplementAllInterface<int>, false);
+// Eval(1630, o is ImplementAllInterface<int>[], false);
+// Eval(1631, o is ImplementAllInterface<int>?, false);
+// Eval(1632, o is ImplementAllInterface<int>?[], false);
Eval(1633, o is IntE, false);
Eval(1634, o is IntE[], false);
Eval(1635, o is IntE?, false);
@@ -1716,38 +1716,38 @@ internal class Program
Eval(1728, o is IEmpty[], false);
Eval(1729, o is INotEmpty, false);
Eval(1730, o is INotEmpty[], false);
- Eval(1731, o is IEmptyGen<int>, false);
- Eval(1732, o is IEmptyGen<int>[], false);
- Eval(1733, o is INotEmptyGen<int>, false);
- Eval(1734, o is INotEmptyGen<int>[], false);
+// Eval(1731, o is IEmptyGen<int>, false);
+// Eval(1732, o is IEmptyGen<int>[], false);
+// Eval(1733, o is INotEmptyGen<int>, false);
+// Eval(1734, o is INotEmptyGen<int>[], false);
Eval(1735, o is SimpleDelegate, false);
Eval(1736, o is SimpleDelegate[], false);
- Eval(1737, o is GenericDelegate<int>, false);
- Eval(1738, o is GenericDelegate<int>[], false);
+// Eval(1737, o is GenericDelegate<int>, false);
+// Eval(1738, o is GenericDelegate<int>[], false);
Eval(1739, o is EmptyClass, false);
Eval(1740, o is EmptyClass[], false);
Eval(1741, o is NotEmptyClass, false);
Eval(1742, o is NotEmptyClass[], false);
- Eval(1743, o is EmptyClassGen<int>, false);
- Eval(1744, o is EmptyClassGen<int>[], false);
- Eval(1745, o is NotEmptyClassGen<Guid>, false);
- Eval(1746, o is NotEmptyClassGen<Guid>[], false);
- Eval(1747, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1748, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1743, o is EmptyClassGen<int>, false);
+// Eval(1744, o is EmptyClassGen<int>[], false);
+// Eval(1745, o is NotEmptyClassGen<Guid>, false);
+// Eval(1746, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1747, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1748, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1749, o is NestedClass, false);
Eval(1750, o is NestedClass[], false);
- Eval(1751, o is NestedClassGen<Decimal>, false);
- Eval(1752, o is NestedClassGen<Decimal>[], false);
+// Eval(1751, o is NestedClassGen<Decimal>, false);
+// Eval(1752, o is NestedClassGen<Decimal>[], false);
Eval(1753, o is ImplementOneInterfaceC, false);
Eval(1754, o is ImplementOneInterfaceC[], false);
Eval(1755, o is ImplementTwoInterfaceC, false);
Eval(1756, o is ImplementTwoInterfaceC[], false);
- Eval(1757, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1758, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1759, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1760, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1761, o is ImplementAllInterfaceC<int>, false);
- Eval(1762, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1757, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1758, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1759, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1760, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1761, o is ImplementAllInterfaceC<int>, false);
+// Eval(1762, o is ImplementAllInterfaceC<int>[], false);
Eval(1763, o is SealedClass, false);
Eval(1764, o is SealedClass[], false);
}
@@ -1765,26 +1765,26 @@ internal class Program
Eval(1770, o is NotEmptyStruct[], false);
Eval(1771, o is NotEmptyStruct?, false);
Eval(1772, o is NotEmptyStruct?[], false);
- Eval(1773, o is EmptyStructGen<int>, false);
- Eval(1774, o is EmptyStructGen<int>[], false);
- Eval(1775, o is EmptyStructGen<int>?, false);
- Eval(1776, o is EmptyStructGen<int>?[], false);
- Eval(1777, o is NotEmptyStructGen<Guid>, true);
- Eval(1778, o is NotEmptyStructGen<Guid>[], false);
- Eval(1779, o is NotEmptyStructGen<Guid>?, true);
- Eval(1780, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1781, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1782, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1783, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1784, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1773, o is EmptyStructGen<int>, false);
+// Eval(1774, o is EmptyStructGen<int>[], false);
+// Eval(1775, o is EmptyStructGen<int>?, false);
+// Eval(1776, o is EmptyStructGen<int>?[], false);
+// Eval(1777, o is NotEmptyStructGen<Guid>, true);
+// Eval(1778, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1779, o is NotEmptyStructGen<Guid>?, true);
+// Eval(1780, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1781, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1782, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1783, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1784, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1785, o is NestedStruct, false);
Eval(1786, o is NestedStruct[], false);
Eval(1787, o is NestedStruct?, false);
Eval(1788, o is NestedStruct?[], false);
- Eval(1789, o is NestedStructGen<Decimal>, false);
- Eval(1790, o is NestedStructGen<Decimal>[], false);
- Eval(1791, o is NestedStructGen<Decimal>?, false);
- Eval(1792, o is NestedStructGen<Decimal>?[], false);
+// Eval(1789, o is NestedStructGen<Decimal>, false);
+// Eval(1790, o is NestedStructGen<Decimal>[], false);
+// Eval(1791, o is NestedStructGen<Decimal>?, false);
+// Eval(1792, o is NestedStructGen<Decimal>?[], false);
Eval(1793, o is ExplicitFieldOffsetStruct, false);
Eval(1794, o is ExplicitFieldOffsetStruct[], false);
Eval(1795, o is ExplicitFieldOffsetStruct?, false);
@@ -1801,18 +1801,18 @@ internal class Program
Eval(1814, o is ImplementTwoInterface[], false);
Eval(1815, o is ImplementTwoInterface?, false);
Eval(1816, o is ImplementTwoInterface?[], false);
- Eval(1817, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(1818, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(1819, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(1820, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(1821, o is ImplementTwoInterfaceGen<int>, false);
- Eval(1822, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(1823, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(1824, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(1825, o is ImplementAllInterface<int>, false);
- Eval(1826, o is ImplementAllInterface<int>[], false);
- Eval(1827, o is ImplementAllInterface<int>?, false);
- Eval(1828, o is ImplementAllInterface<int>?[], false);
+// Eval(1817, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(1818, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(1819, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(1820, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(1821, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(1822, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(1823, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(1824, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(1825, o is ImplementAllInterface<int>, false);
+// Eval(1826, o is ImplementAllInterface<int>[], false);
+// Eval(1827, o is ImplementAllInterface<int>?, false);
+// Eval(1828, o is ImplementAllInterface<int>?[], false);
Eval(1829, o is IntE, false);
Eval(1830, o is IntE[], false);
Eval(1831, o is IntE?, false);
@@ -1911,38 +1911,38 @@ internal class Program
Eval(1924, o is IEmpty[], false);
Eval(1925, o is INotEmpty, false);
Eval(1926, o is INotEmpty[], false);
- Eval(1927, o is IEmptyGen<int>, false);
- Eval(1928, o is IEmptyGen<int>[], false);
- Eval(1929, o is INotEmptyGen<int>, false);
- Eval(1930, o is INotEmptyGen<int>[], false);
+// Eval(1927, o is IEmptyGen<int>, false);
+// Eval(1928, o is IEmptyGen<int>[], false);
+// Eval(1929, o is INotEmptyGen<int>, false);
+// Eval(1930, o is INotEmptyGen<int>[], false);
Eval(1931, o is SimpleDelegate, false);
Eval(1932, o is SimpleDelegate[], false);
- Eval(1933, o is GenericDelegate<int>, false);
- Eval(1934, o is GenericDelegate<int>[], false);
+// Eval(1933, o is GenericDelegate<int>, false);
+// Eval(1934, o is GenericDelegate<int>[], false);
Eval(1935, o is EmptyClass, false);
Eval(1936, o is EmptyClass[], false);
Eval(1937, o is NotEmptyClass, false);
Eval(1938, o is NotEmptyClass[], false);
- Eval(1939, o is EmptyClassGen<int>, false);
- Eval(1940, o is EmptyClassGen<int>[], false);
- Eval(1941, o is NotEmptyClassGen<Guid>, false);
- Eval(1942, o is NotEmptyClassGen<Guid>[], false);
- Eval(1943, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(1944, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(1939, o is EmptyClassGen<int>, false);
+// Eval(1940, o is EmptyClassGen<int>[], false);
+// Eval(1941, o is NotEmptyClassGen<Guid>, false);
+// Eval(1942, o is NotEmptyClassGen<Guid>[], false);
+// Eval(1943, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(1944, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(1945, o is NestedClass, false);
Eval(1946, o is NestedClass[], false);
- Eval(1947, o is NestedClassGen<Decimal>, false);
- Eval(1948, o is NestedClassGen<Decimal>[], false);
+// Eval(1947, o is NestedClassGen<Decimal>, false);
+// Eval(1948, o is NestedClassGen<Decimal>[], false);
Eval(1949, o is ImplementOneInterfaceC, false);
Eval(1950, o is ImplementOneInterfaceC[], false);
Eval(1951, o is ImplementTwoInterfaceC, false);
Eval(1952, o is ImplementTwoInterfaceC[], false);
- Eval(1953, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(1954, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(1955, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(1956, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(1957, o is ImplementAllInterfaceC<int>, false);
- Eval(1958, o is ImplementAllInterfaceC<int>[], false);
+// Eval(1953, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(1954, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(1955, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(1956, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(1957, o is ImplementAllInterfaceC<int>, false);
+// Eval(1958, o is ImplementAllInterfaceC<int>[], false);
Eval(1959, o is SealedClass, false);
Eval(1960, o is SealedClass[], false);
}
@@ -1957,26 +1957,26 @@ internal class Program
Eval(1966, o is NotEmptyStruct[], false);
Eval(1967, o is NotEmptyStruct?, false);
Eval(1968, o is NotEmptyStruct?[], false);
- Eval(1969, o is EmptyStructGen<int>, false);
- Eval(1970, o is EmptyStructGen<int>[], false);
- Eval(1971, o is EmptyStructGen<int>?, false);
- Eval(1972, o is EmptyStructGen<int>?[], false);
- Eval(1973, o is NotEmptyStructGen<Guid>, true);
- Eval(1974, o is NotEmptyStructGen<Guid>[], false);
- Eval(1975, o is NotEmptyStructGen<Guid>?, true);
- Eval(1976, o is NotEmptyStructGen<Guid>?[], false);
- Eval(1977, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(1978, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(1979, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(1980, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(1969, o is EmptyStructGen<int>, false);
+// Eval(1970, o is EmptyStructGen<int>[], false);
+// Eval(1971, o is EmptyStructGen<int>?, false);
+// Eval(1972, o is EmptyStructGen<int>?[], false);
+// Eval(1973, o is NotEmptyStructGen<Guid>, true);
+// Eval(1974, o is NotEmptyStructGen<Guid>[], false);
+// Eval(1975, o is NotEmptyStructGen<Guid>?, true);
+// Eval(1976, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(1977, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(1978, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(1979, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(1980, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(1981, o is NestedStruct, false);
Eval(1982, o is NestedStruct[], false);
Eval(1983, o is NestedStruct?, false);
Eval(1984, o is NestedStruct?[], false);
- Eval(1985, o is NestedStructGen<Decimal>, false);
- Eval(1986, o is NestedStructGen<Decimal>[], false);
- Eval(1987, o is NestedStructGen<Decimal>?, false);
- Eval(1988, o is NestedStructGen<Decimal>?[], false);
+// Eval(1985, o is NestedStructGen<Decimal>, false);
+// Eval(1986, o is NestedStructGen<Decimal>[], false);
+// Eval(1987, o is NestedStructGen<Decimal>?, false);
+// Eval(1988, o is NestedStructGen<Decimal>?[], false);
Eval(1989, o is ExplicitFieldOffsetStruct, false);
Eval(1990, o is ExplicitFieldOffsetStruct[], false);
Eval(1991, o is ExplicitFieldOffsetStruct?, false);
@@ -1993,18 +1993,18 @@ internal class Program
Eval(2010, o is ImplementTwoInterface[], false);
Eval(2011, o is ImplementTwoInterface?, false);
Eval(2012, o is ImplementTwoInterface?[], false);
- Eval(2013, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2014, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2015, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2016, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2017, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2018, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2019, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2020, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2021, o is ImplementAllInterface<int>, false);
- Eval(2022, o is ImplementAllInterface<int>[], false);
- Eval(2023, o is ImplementAllInterface<int>?, false);
- Eval(2024, o is ImplementAllInterface<int>?[], false);
+// Eval(2013, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2014, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2015, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2016, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2017, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2018, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2019, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2020, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2021, o is ImplementAllInterface<int>, false);
+// Eval(2022, o is ImplementAllInterface<int>[], false);
+// Eval(2023, o is ImplementAllInterface<int>?, false);
+// Eval(2024, o is ImplementAllInterface<int>?[], false);
Eval(2025, o is IntE, false);
Eval(2026, o is IntE[], false);
Eval(2027, o is IntE?, false);
@@ -2103,38 +2103,38 @@ internal class Program
Eval(2120, o is IEmpty[], false);
Eval(2121, o is INotEmpty, false);
Eval(2122, o is INotEmpty[], false);
- Eval(2123, o is IEmptyGen<int>, false);
- Eval(2124, o is IEmptyGen<int>[], false);
- Eval(2125, o is INotEmptyGen<int>, false);
- Eval(2126, o is INotEmptyGen<int>[], false);
+// Eval(2123, o is IEmptyGen<int>, false);
+// Eval(2124, o is IEmptyGen<int>[], false);
+// Eval(2125, o is INotEmptyGen<int>, false);
+// Eval(2126, o is INotEmptyGen<int>[], false);
Eval(2127, o is SimpleDelegate, false);
Eval(2128, o is SimpleDelegate[], false);
- Eval(2129, o is GenericDelegate<int>, false);
- Eval(2130, o is GenericDelegate<int>[], false);
+// Eval(2129, o is GenericDelegate<int>, false);
+// Eval(2130, o is GenericDelegate<int>[], false);
Eval(2131, o is EmptyClass, false);
Eval(2132, o is EmptyClass[], false);
Eval(2133, o is NotEmptyClass, false);
Eval(2134, o is NotEmptyClass[], false);
- Eval(2135, o is EmptyClassGen<int>, false);
- Eval(2136, o is EmptyClassGen<int>[], false);
- Eval(2137, o is NotEmptyClassGen<Guid>, false);
- Eval(2138, o is NotEmptyClassGen<Guid>[], false);
- Eval(2139, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2140, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2135, o is EmptyClassGen<int>, false);
+// Eval(2136, o is EmptyClassGen<int>[], false);
+// Eval(2137, o is NotEmptyClassGen<Guid>, false);
+// Eval(2138, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2139, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2140, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2141, o is NestedClass, false);
Eval(2142, o is NestedClass[], false);
- Eval(2143, o is NestedClassGen<Decimal>, false);
- Eval(2144, o is NestedClassGen<Decimal>[], false);
+// Eval(2143, o is NestedClassGen<Decimal>, false);
+// Eval(2144, o is NestedClassGen<Decimal>[], false);
Eval(2145, o is ImplementOneInterfaceC, false);
Eval(2146, o is ImplementOneInterfaceC[], false);
Eval(2147, o is ImplementTwoInterfaceC, false);
Eval(2148, o is ImplementTwoInterfaceC[], false);
- Eval(2149, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2150, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2151, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2152, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2153, o is ImplementAllInterfaceC<int>, false);
- Eval(2154, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2149, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2150, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2151, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2152, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2153, o is ImplementAllInterfaceC<int>, false);
+// Eval(2154, o is ImplementAllInterfaceC<int>[], false);
Eval(2155, o is SealedClass, false);
Eval(2156, o is SealedClass[], false);
}
@@ -2149,26 +2149,26 @@ internal class Program
Eval(2162, o is NotEmptyStruct[], false);
Eval(2163, o is NotEmptyStruct?, false);
Eval(2164, o is NotEmptyStruct?[], false);
- Eval(2165, o is EmptyStructGen<int>, false);
- Eval(2166, o is EmptyStructGen<int>[], false);
- Eval(2167, o is EmptyStructGen<int>?, false);
- Eval(2168, o is EmptyStructGen<int>?[], false);
- Eval(2169, o is NotEmptyStructGen<Guid>, false);
- Eval(2170, o is NotEmptyStructGen<Guid>[], false);
- Eval(2171, o is NotEmptyStructGen<Guid>?, false);
- Eval(2172, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2173, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2174, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2175, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2176, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2165, o is EmptyStructGen<int>, false);
+// Eval(2166, o is EmptyStructGen<int>[], false);
+// Eval(2167, o is EmptyStructGen<int>?, false);
+// Eval(2168, o is EmptyStructGen<int>?[], false);
+// Eval(2169, o is NotEmptyStructGen<Guid>, false);
+// Eval(2170, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2171, o is NotEmptyStructGen<Guid>?, false);
+// Eval(2172, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2173, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2174, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2175, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2176, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2177, o is NestedStruct, false);
Eval(2178, o is NestedStruct[], false);
Eval(2179, o is NestedStruct?, false);
Eval(2180, o is NestedStruct?[], false);
- Eval(2181, o is NestedStructGen<Decimal>, false);
- Eval(2182, o is NestedStructGen<Decimal>[], false);
- Eval(2183, o is NestedStructGen<Decimal>?, false);
- Eval(2184, o is NestedStructGen<Decimal>?[], false);
+// Eval(2181, o is NestedStructGen<Decimal>, false);
+// Eval(2182, o is NestedStructGen<Decimal>[], false);
+// Eval(2183, o is NestedStructGen<Decimal>?, false);
+// Eval(2184, o is NestedStructGen<Decimal>?[], false);
Eval(2185, o is ExplicitFieldOffsetStruct, false);
Eval(2186, o is ExplicitFieldOffsetStruct[], false);
Eval(2187, o is ExplicitFieldOffsetStruct?, false);
@@ -2185,18 +2185,18 @@ internal class Program
Eval(2206, o is ImplementTwoInterface[], false);
Eval(2207, o is ImplementTwoInterface?, false);
Eval(2208, o is ImplementTwoInterface?[], false);
- Eval(2209, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2210, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2211, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2212, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2213, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2214, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2215, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2216, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2217, o is ImplementAllInterface<int>, false);
- Eval(2218, o is ImplementAllInterface<int>[], false);
- Eval(2219, o is ImplementAllInterface<int>?, false);
- Eval(2220, o is ImplementAllInterface<int>?[], false);
+// Eval(2209, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2210, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2211, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2212, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2213, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2214, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2215, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2216, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2217, o is ImplementAllInterface<int>, false);
+// Eval(2218, o is ImplementAllInterface<int>[], false);
+// Eval(2219, o is ImplementAllInterface<int>?, false);
+// Eval(2220, o is ImplementAllInterface<int>?[], false);
Eval(2221, o is IntE, false);
Eval(2222, o is IntE[], false);
Eval(2223, o is IntE?, false);
@@ -2295,38 +2295,38 @@ internal class Program
Eval(2316, o is IEmpty[], false);
Eval(2317, o is INotEmpty, false);
Eval(2318, o is INotEmpty[], false);
- Eval(2319, o is IEmptyGen<int>, false);
- Eval(2320, o is IEmptyGen<int>[], false);
- Eval(2321, o is INotEmptyGen<int>, false);
- Eval(2322, o is INotEmptyGen<int>[], false);
+// Eval(2319, o is IEmptyGen<int>, false);
+// Eval(2320, o is IEmptyGen<int>[], false);
+// Eval(2321, o is INotEmptyGen<int>, false);
+// Eval(2322, o is INotEmptyGen<int>[], false);
Eval(2323, o is SimpleDelegate, false);
Eval(2324, o is SimpleDelegate[], false);
- Eval(2325, o is GenericDelegate<int>, false);
- Eval(2326, o is GenericDelegate<int>[], false);
+// Eval(2325, o is GenericDelegate<int>, false);
+// Eval(2326, o is GenericDelegate<int>[], false);
Eval(2327, o is EmptyClass, false);
Eval(2328, o is EmptyClass[], false);
Eval(2329, o is NotEmptyClass, false);
Eval(2330, o is NotEmptyClass[], false);
- Eval(2331, o is EmptyClassGen<int>, false);
- Eval(2332, o is EmptyClassGen<int>[], false);
- Eval(2333, o is NotEmptyClassGen<Guid>, false);
- Eval(2334, o is NotEmptyClassGen<Guid>[], false);
- Eval(2335, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2336, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2331, o is EmptyClassGen<int>, false);
+// Eval(2332, o is EmptyClassGen<int>[], false);
+// Eval(2333, o is NotEmptyClassGen<Guid>, false);
+// Eval(2334, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2335, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2336, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2337, o is NestedClass, false);
Eval(2338, o is NestedClass[], false);
- Eval(2339, o is NestedClassGen<Decimal>, false);
- Eval(2340, o is NestedClassGen<Decimal>[], false);
+// Eval(2339, o is NestedClassGen<Decimal>, false);
+// Eval(2340, o is NestedClassGen<Decimal>[], false);
Eval(2341, o is ImplementOneInterfaceC, false);
Eval(2342, o is ImplementOneInterfaceC[], false);
Eval(2343, o is ImplementTwoInterfaceC, false);
Eval(2344, o is ImplementTwoInterfaceC[], false);
- Eval(2345, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2346, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2347, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2348, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2349, o is ImplementAllInterfaceC<int>, false);
- Eval(2350, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2345, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2346, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2347, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2348, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2349, o is ImplementAllInterfaceC<int>, false);
+// Eval(2350, o is ImplementAllInterfaceC<int>[], false);
Eval(2351, o is SealedClass, false);
Eval(2352, o is SealedClass[], false);
}
@@ -2344,26 +2344,26 @@ internal class Program
Eval(2358, o is NotEmptyStruct[], false);
Eval(2359, o is NotEmptyStruct?, false);
Eval(2360, o is NotEmptyStruct?[], false);
- Eval(2361, o is EmptyStructGen<int>, false);
- Eval(2362, o is EmptyStructGen<int>[], false);
- Eval(2363, o is EmptyStructGen<int>?, false);
- Eval(2364, o is EmptyStructGen<int>?[], false);
- Eval(2365, o is NotEmptyStructGen<Guid>, false);
- Eval(2366, o is NotEmptyStructGen<Guid>[], false);
- Eval(2367, o is NotEmptyStructGen<Guid>?, false);
- Eval(2368, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2369, o is NotEmptyStructConstrainedGen<IntPtr>, true);
- Eval(2370, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2371, o is NotEmptyStructConstrainedGen<IntPtr>?, true);
- Eval(2372, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2361, o is EmptyStructGen<int>, false);
+// Eval(2362, o is EmptyStructGen<int>[], false);
+// Eval(2363, o is EmptyStructGen<int>?, false);
+// Eval(2364, o is EmptyStructGen<int>?[], false);
+// Eval(2365, o is NotEmptyStructGen<Guid>, false);
+// Eval(2366, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2367, o is NotEmptyStructGen<Guid>?, false);
+// Eval(2368, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2369, o is NotEmptyStructConstrainedGen<IntPtr>, true);
+// Eval(2370, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2371, o is NotEmptyStructConstrainedGen<IntPtr>?, true);
+// Eval(2372, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2373, o is NestedStruct, false);
Eval(2374, o is NestedStruct[], false);
Eval(2375, o is NestedStruct?, false);
Eval(2376, o is NestedStruct?[], false);
- Eval(2377, o is NestedStructGen<Decimal>, false);
- Eval(2378, o is NestedStructGen<Decimal>[], false);
- Eval(2379, o is NestedStructGen<Decimal>?, false);
- Eval(2380, o is NestedStructGen<Decimal>?[], false);
+// Eval(2377, o is NestedStructGen<Decimal>, false);
+// Eval(2378, o is NestedStructGen<Decimal>[], false);
+// Eval(2379, o is NestedStructGen<Decimal>?, false);
+// Eval(2380, o is NestedStructGen<Decimal>?[], false);
Eval(2381, o is ExplicitFieldOffsetStruct, false);
Eval(2382, o is ExplicitFieldOffsetStruct[], false);
Eval(2383, o is ExplicitFieldOffsetStruct?, false);
@@ -2380,18 +2380,18 @@ internal class Program
Eval(2402, o is ImplementTwoInterface[], false);
Eval(2403, o is ImplementTwoInterface?, false);
Eval(2404, o is ImplementTwoInterface?[], false);
- Eval(2405, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2406, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2407, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2408, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2409, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2410, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2411, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2412, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2413, o is ImplementAllInterface<int>, false);
- Eval(2414, o is ImplementAllInterface<int>[], false);
- Eval(2415, o is ImplementAllInterface<int>?, false);
- Eval(2416, o is ImplementAllInterface<int>?[], false);
+// Eval(2405, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2406, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2407, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2408, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2409, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2410, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2411, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2412, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2413, o is ImplementAllInterface<int>, false);
+// Eval(2414, o is ImplementAllInterface<int>[], false);
+// Eval(2415, o is ImplementAllInterface<int>?, false);
+// Eval(2416, o is ImplementAllInterface<int>?[], false);
Eval(2417, o is IntE, false);
Eval(2418, o is IntE[], false);
Eval(2419, o is IntE?, false);
@@ -2490,38 +2490,38 @@ internal class Program
Eval(2512, o is IEmpty[], false);
Eval(2513, o is INotEmpty, false);
Eval(2514, o is INotEmpty[], false);
- Eval(2515, o is IEmptyGen<int>, false);
- Eval(2516, o is IEmptyGen<int>[], false);
- Eval(2517, o is INotEmptyGen<int>, false);
- Eval(2518, o is INotEmptyGen<int>[], false);
+// Eval(2515, o is IEmptyGen<int>, false);
+// Eval(2516, o is IEmptyGen<int>[], false);
+// Eval(2517, o is INotEmptyGen<int>, false);
+// Eval(2518, o is INotEmptyGen<int>[], false);
Eval(2519, o is SimpleDelegate, false);
Eval(2520, o is SimpleDelegate[], false);
- Eval(2521, o is GenericDelegate<int>, false);
- Eval(2522, o is GenericDelegate<int>[], false);
+// Eval(2521, o is GenericDelegate<int>, false);
+// Eval(2522, o is GenericDelegate<int>[], false);
Eval(2523, o is EmptyClass, false);
Eval(2524, o is EmptyClass[], false);
Eval(2525, o is NotEmptyClass, false);
Eval(2526, o is NotEmptyClass[], false);
- Eval(2527, o is EmptyClassGen<int>, false);
- Eval(2528, o is EmptyClassGen<int>[], false);
- Eval(2529, o is NotEmptyClassGen<Guid>, false);
- Eval(2530, o is NotEmptyClassGen<Guid>[], false);
- Eval(2531, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2532, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2527, o is EmptyClassGen<int>, false);
+// Eval(2528, o is EmptyClassGen<int>[], false);
+// Eval(2529, o is NotEmptyClassGen<Guid>, false);
+// Eval(2530, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2531, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2532, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2533, o is NestedClass, false);
Eval(2534, o is NestedClass[], false);
- Eval(2535, o is NestedClassGen<Decimal>, false);
- Eval(2536, o is NestedClassGen<Decimal>[], false);
+// Eval(2535, o is NestedClassGen<Decimal>, false);
+// Eval(2536, o is NestedClassGen<Decimal>[], false);
Eval(2537, o is ImplementOneInterfaceC, false);
Eval(2538, o is ImplementOneInterfaceC[], false);
Eval(2539, o is ImplementTwoInterfaceC, false);
Eval(2540, o is ImplementTwoInterfaceC[], false);
- Eval(2541, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2542, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2543, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2544, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2545, o is ImplementAllInterfaceC<int>, false);
- Eval(2546, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2541, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2542, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2543, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2544, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2545, o is ImplementAllInterfaceC<int>, false);
+// Eval(2546, o is ImplementAllInterfaceC<int>[], false);
Eval(2547, o is SealedClass, false);
Eval(2548, o is SealedClass[], false);
}
@@ -2536,26 +2536,26 @@ internal class Program
Eval(2554, o is NotEmptyStruct[], false);
Eval(2555, o is NotEmptyStruct?, false);
Eval(2556, o is NotEmptyStruct?[], false);
- Eval(2557, o is EmptyStructGen<int>, false);
- Eval(2558, o is EmptyStructGen<int>[], false);
- Eval(2559, o is EmptyStructGen<int>?, false);
- Eval(2560, o is EmptyStructGen<int>?[], false);
- Eval(2561, o is NotEmptyStructGen<Guid>, false);
- Eval(2562, o is NotEmptyStructGen<Guid>[], false);
- Eval(2563, o is NotEmptyStructGen<Guid>?, false);
- Eval(2564, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2565, o is NotEmptyStructConstrainedGen<IntPtr>, true);
- Eval(2566, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2567, o is NotEmptyStructConstrainedGen<IntPtr>?, true);
- Eval(2568, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2557, o is EmptyStructGen<int>, false);
+// Eval(2558, o is EmptyStructGen<int>[], false);
+// Eval(2559, o is EmptyStructGen<int>?, false);
+// Eval(2560, o is EmptyStructGen<int>?[], false);
+// Eval(2561, o is NotEmptyStructGen<Guid>, false);
+// Eval(2562, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2563, o is NotEmptyStructGen<Guid>?, false);
+// Eval(2564, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2565, o is NotEmptyStructConstrainedGen<IntPtr>, true);
+// Eval(2566, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2567, o is NotEmptyStructConstrainedGen<IntPtr>?, true);
+// Eval(2568, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2569, o is NestedStruct, false);
Eval(2570, o is NestedStruct[], false);
Eval(2571, o is NestedStruct?, false);
Eval(2572, o is NestedStruct?[], false);
- Eval(2573, o is NestedStructGen<Decimal>, false);
- Eval(2574, o is NestedStructGen<Decimal>[], false);
- Eval(2575, o is NestedStructGen<Decimal>?, false);
- Eval(2576, o is NestedStructGen<Decimal>?[], false);
+// Eval(2573, o is NestedStructGen<Decimal>, false);
+// Eval(2574, o is NestedStructGen<Decimal>[], false);
+// Eval(2575, o is NestedStructGen<Decimal>?, false);
+// Eval(2576, o is NestedStructGen<Decimal>?[], false);
Eval(2577, o is ExplicitFieldOffsetStruct, false);
Eval(2578, o is ExplicitFieldOffsetStruct[], false);
Eval(2579, o is ExplicitFieldOffsetStruct?, false);
@@ -2572,18 +2572,18 @@ internal class Program
Eval(2598, o is ImplementTwoInterface[], false);
Eval(2599, o is ImplementTwoInterface?, false);
Eval(2600, o is ImplementTwoInterface?[], false);
- Eval(2601, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2602, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2603, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2604, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2605, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2606, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2607, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2608, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2609, o is ImplementAllInterface<int>, false);
- Eval(2610, o is ImplementAllInterface<int>[], false);
- Eval(2611, o is ImplementAllInterface<int>?, false);
- Eval(2612, o is ImplementAllInterface<int>?[], false);
+// Eval(2601, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2602, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2603, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2604, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2605, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2606, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2607, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2608, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2609, o is ImplementAllInterface<int>, false);
+// Eval(2610, o is ImplementAllInterface<int>[], false);
+// Eval(2611, o is ImplementAllInterface<int>?, false);
+// Eval(2612, o is ImplementAllInterface<int>?[], false);
Eval(2613, o is IntE, false);
Eval(2614, o is IntE[], false);
Eval(2615, o is IntE?, false);
@@ -2682,38 +2682,38 @@ internal class Program
Eval(2708, o is IEmpty[], false);
Eval(2709, o is INotEmpty, false);
Eval(2710, o is INotEmpty[], false);
- Eval(2711, o is IEmptyGen<int>, false);
- Eval(2712, o is IEmptyGen<int>[], false);
- Eval(2713, o is INotEmptyGen<int>, false);
- Eval(2714, o is INotEmptyGen<int>[], false);
+// Eval(2711, o is IEmptyGen<int>, false);
+// Eval(2712, o is IEmptyGen<int>[], false);
+// Eval(2713, o is INotEmptyGen<int>, false);
+// Eval(2714, o is INotEmptyGen<int>[], false);
Eval(2715, o is SimpleDelegate, false);
Eval(2716, o is SimpleDelegate[], false);
- Eval(2717, o is GenericDelegate<int>, false);
- Eval(2718, o is GenericDelegate<int>[], false);
+// Eval(2717, o is GenericDelegate<int>, false);
+// Eval(2718, o is GenericDelegate<int>[], false);
Eval(2719, o is EmptyClass, false);
Eval(2720, o is EmptyClass[], false);
Eval(2721, o is NotEmptyClass, false);
Eval(2722, o is NotEmptyClass[], false);
- Eval(2723, o is EmptyClassGen<int>, false);
- Eval(2724, o is EmptyClassGen<int>[], false);
- Eval(2725, o is NotEmptyClassGen<Guid>, false);
- Eval(2726, o is NotEmptyClassGen<Guid>[], false);
- Eval(2727, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2728, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2723, o is EmptyClassGen<int>, false);
+// Eval(2724, o is EmptyClassGen<int>[], false);
+// Eval(2725, o is NotEmptyClassGen<Guid>, false);
+// Eval(2726, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2727, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2728, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2729, o is NestedClass, false);
Eval(2730, o is NestedClass[], false);
- Eval(2731, o is NestedClassGen<Decimal>, false);
- Eval(2732, o is NestedClassGen<Decimal>[], false);
+// Eval(2731, o is NestedClassGen<Decimal>, false);
+// Eval(2732, o is NestedClassGen<Decimal>[], false);
Eval(2733, o is ImplementOneInterfaceC, false);
Eval(2734, o is ImplementOneInterfaceC[], false);
Eval(2735, o is ImplementTwoInterfaceC, false);
Eval(2736, o is ImplementTwoInterfaceC[], false);
- Eval(2737, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2738, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2739, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2740, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2741, o is ImplementAllInterfaceC<int>, false);
- Eval(2742, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2737, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2738, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2739, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2740, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2741, o is ImplementAllInterfaceC<int>, false);
+// Eval(2742, o is ImplementAllInterfaceC<int>[], false);
Eval(2743, o is SealedClass, false);
Eval(2744, o is SealedClass[], false);
}
@@ -2728,26 +2728,26 @@ internal class Program
Eval(2750, o is NotEmptyStruct[], false);
Eval(2751, o is NotEmptyStruct?, false);
Eval(2752, o is NotEmptyStruct?[], false);
- Eval(2753, o is EmptyStructGen<int>, false);
- Eval(2754, o is EmptyStructGen<int>[], false);
- Eval(2755, o is EmptyStructGen<int>?, false);
- Eval(2756, o is EmptyStructGen<int>?[], false);
- Eval(2757, o is NotEmptyStructGen<Guid>, false);
- Eval(2758, o is NotEmptyStructGen<Guid>[], false);
- Eval(2759, o is NotEmptyStructGen<Guid>?, false);
- Eval(2760, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2761, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2762, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2763, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2764, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2753, o is EmptyStructGen<int>, false);
+// Eval(2754, o is EmptyStructGen<int>[], false);
+// Eval(2755, o is EmptyStructGen<int>?, false);
+// Eval(2756, o is EmptyStructGen<int>?[], false);
+// Eval(2757, o is NotEmptyStructGen<Guid>, false);
+// Eval(2758, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2759, o is NotEmptyStructGen<Guid>?, false);
+// Eval(2760, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2761, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2762, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2763, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2764, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2765, o is NestedStruct, false);
Eval(2766, o is NestedStruct[], false);
Eval(2767, o is NestedStruct?, false);
Eval(2768, o is NestedStruct?[], false);
- Eval(2769, o is NestedStructGen<Decimal>, false);
- Eval(2770, o is NestedStructGen<Decimal>[], false);
- Eval(2771, o is NestedStructGen<Decimal>?, false);
- Eval(2772, o is NestedStructGen<Decimal>?[], false);
+// Eval(2769, o is NestedStructGen<Decimal>, false);
+// Eval(2770, o is NestedStructGen<Decimal>[], false);
+// Eval(2771, o is NestedStructGen<Decimal>?, false);
+// Eval(2772, o is NestedStructGen<Decimal>?[], false);
Eval(2773, o is ExplicitFieldOffsetStruct, false);
Eval(2774, o is ExplicitFieldOffsetStruct[], false);
Eval(2775, o is ExplicitFieldOffsetStruct?, false);
@@ -2764,18 +2764,18 @@ internal class Program
Eval(2794, o is ImplementTwoInterface[], false);
Eval(2795, o is ImplementTwoInterface?, false);
Eval(2796, o is ImplementTwoInterface?[], false);
- Eval(2797, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2798, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2799, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2800, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2801, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2802, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2803, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(2804, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(2805, o is ImplementAllInterface<int>, false);
- Eval(2806, o is ImplementAllInterface<int>[], false);
- Eval(2807, o is ImplementAllInterface<int>?, false);
- Eval(2808, o is ImplementAllInterface<int>?[], false);
+// Eval(2797, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2798, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2799, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2800, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2801, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2802, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2803, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(2804, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(2805, o is ImplementAllInterface<int>, false);
+// Eval(2806, o is ImplementAllInterface<int>[], false);
+// Eval(2807, o is ImplementAllInterface<int>?, false);
+// Eval(2808, o is ImplementAllInterface<int>?[], false);
Eval(2809, o is IntE, false);
Eval(2810, o is IntE[], false);
Eval(2811, o is IntE?, false);
@@ -2874,38 +2874,38 @@ internal class Program
Eval(2904, o is IEmpty[], false);
Eval(2905, o is INotEmpty, false);
Eval(2906, o is INotEmpty[], false);
- Eval(2907, o is IEmptyGen<int>, false);
- Eval(2908, o is IEmptyGen<int>[], false);
- Eval(2909, o is INotEmptyGen<int>, false);
- Eval(2910, o is INotEmptyGen<int>[], false);
+// Eval(2907, o is IEmptyGen<int>, false);
+// Eval(2908, o is IEmptyGen<int>[], false);
+// Eval(2909, o is INotEmptyGen<int>, false);
+// Eval(2910, o is INotEmptyGen<int>[], false);
Eval(2911, o is SimpleDelegate, false);
Eval(2912, o is SimpleDelegate[], false);
- Eval(2913, o is GenericDelegate<int>, false);
- Eval(2914, o is GenericDelegate<int>[], false);
+// Eval(2913, o is GenericDelegate<int>, false);
+// Eval(2914, o is GenericDelegate<int>[], false);
Eval(2915, o is EmptyClass, false);
Eval(2916, o is EmptyClass[], false);
Eval(2917, o is NotEmptyClass, false);
Eval(2918, o is NotEmptyClass[], false);
- Eval(2919, o is EmptyClassGen<int>, false);
- Eval(2920, o is EmptyClassGen<int>[], false);
- Eval(2921, o is NotEmptyClassGen<Guid>, false);
- Eval(2922, o is NotEmptyClassGen<Guid>[], false);
- Eval(2923, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(2924, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(2919, o is EmptyClassGen<int>, false);
+// Eval(2920, o is EmptyClassGen<int>[], false);
+// Eval(2921, o is NotEmptyClassGen<Guid>, false);
+// Eval(2922, o is NotEmptyClassGen<Guid>[], false);
+// Eval(2923, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(2924, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(2925, o is NestedClass, false);
Eval(2926, o is NestedClass[], false);
- Eval(2927, o is NestedClassGen<Decimal>, false);
- Eval(2928, o is NestedClassGen<Decimal>[], false);
+// Eval(2927, o is NestedClassGen<Decimal>, false);
+// Eval(2928, o is NestedClassGen<Decimal>[], false);
Eval(2929, o is ImplementOneInterfaceC, false);
Eval(2930, o is ImplementOneInterfaceC[], false);
Eval(2931, o is ImplementTwoInterfaceC, false);
Eval(2932, o is ImplementTwoInterfaceC[], false);
- Eval(2933, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(2934, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(2935, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(2936, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(2937, o is ImplementAllInterfaceC<int>, false);
- Eval(2938, o is ImplementAllInterfaceC<int>[], false);
+// Eval(2933, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(2934, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(2935, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(2936, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(2937, o is ImplementAllInterfaceC<int>, false);
+// Eval(2938, o is ImplementAllInterfaceC<int>[], false);
Eval(2939, o is SealedClass, false);
Eval(2940, o is SealedClass[], false);
}
@@ -2923,26 +2923,26 @@ internal class Program
Eval(2946, o is NotEmptyStruct[], false);
Eval(2947, o is NotEmptyStruct?, false);
Eval(2948, o is NotEmptyStruct?[], false);
- Eval(2949, o is EmptyStructGen<int>, false);
- Eval(2950, o is EmptyStructGen<int>[], false);
- Eval(2951, o is EmptyStructGen<int>?, false);
- Eval(2952, o is EmptyStructGen<int>?[], false);
- Eval(2953, o is NotEmptyStructGen<Guid>, false);
- Eval(2954, o is NotEmptyStructGen<Guid>[], false);
- Eval(2955, o is NotEmptyStructGen<Guid>?, false);
- Eval(2956, o is NotEmptyStructGen<Guid>?[], false);
- Eval(2957, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(2958, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(2959, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(2960, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(2949, o is EmptyStructGen<int>, false);
+// Eval(2950, o is EmptyStructGen<int>[], false);
+// Eval(2951, o is EmptyStructGen<int>?, false);
+// Eval(2952, o is EmptyStructGen<int>?[], false);
+// Eval(2953, o is NotEmptyStructGen<Guid>, false);
+// Eval(2954, o is NotEmptyStructGen<Guid>[], false);
+// Eval(2955, o is NotEmptyStructGen<Guid>?, false);
+// Eval(2956, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(2957, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(2958, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(2959, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(2960, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(2961, o is NestedStruct, true);
Eval(2962, o is NestedStruct[], false);
Eval(2963, o is NestedStruct?, true);
Eval(2964, o is NestedStruct?[], false);
- Eval(2965, o is NestedStructGen<Decimal>, false);
- Eval(2966, o is NestedStructGen<Decimal>[], false);
- Eval(2967, o is NestedStructGen<Decimal>?, false);
- Eval(2968, o is NestedStructGen<Decimal>?[], false);
+// Eval(2965, o is NestedStructGen<Decimal>, false);
+// Eval(2966, o is NestedStructGen<Decimal>[], false);
+// Eval(2967, o is NestedStructGen<Decimal>?, false);
+// Eval(2968, o is NestedStructGen<Decimal>?[], false);
Eval(2969, o is ExplicitFieldOffsetStruct, false);
Eval(2970, o is ExplicitFieldOffsetStruct[], false);
Eval(2971, o is ExplicitFieldOffsetStruct?, false);
@@ -2959,18 +2959,18 @@ internal class Program
Eval(2990, o is ImplementTwoInterface[], false);
Eval(2991, o is ImplementTwoInterface?, false);
Eval(2992, o is ImplementTwoInterface?[], false);
- Eval(2993, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(2994, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(2995, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(2996, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(2997, o is ImplementTwoInterfaceGen<int>, false);
- Eval(2998, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(2999, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3000, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3001, o is ImplementAllInterface<int>, false);
- Eval(3002, o is ImplementAllInterface<int>[], false);
- Eval(3003, o is ImplementAllInterface<int>?, false);
- Eval(3004, o is ImplementAllInterface<int>?[], false);
+// Eval(2993, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(2994, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(2995, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(2996, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(2997, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(2998, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(2999, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3000, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3001, o is ImplementAllInterface<int>, false);
+// Eval(3002, o is ImplementAllInterface<int>[], false);
+// Eval(3003, o is ImplementAllInterface<int>?, false);
+// Eval(3004, o is ImplementAllInterface<int>?[], false);
Eval(3005, o is IntE, false);
Eval(3006, o is IntE[], false);
Eval(3007, o is IntE?, false);
@@ -3069,38 +3069,38 @@ internal class Program
Eval(3100, o is IEmpty[], false);
Eval(3101, o is INotEmpty, false);
Eval(3102, o is INotEmpty[], false);
- Eval(3103, o is IEmptyGen<int>, false);
- Eval(3104, o is IEmptyGen<int>[], false);
- Eval(3105, o is INotEmptyGen<int>, false);
- Eval(3106, o is INotEmptyGen<int>[], false);
+// Eval(3103, o is IEmptyGen<int>, false);
+// Eval(3104, o is IEmptyGen<int>[], false);
+// Eval(3105, o is INotEmptyGen<int>, false);
+// Eval(3106, o is INotEmptyGen<int>[], false);
Eval(3107, o is SimpleDelegate, false);
Eval(3108, o is SimpleDelegate[], false);
- Eval(3109, o is GenericDelegate<int>, false);
- Eval(3110, o is GenericDelegate<int>[], false);
+// Eval(3109, o is GenericDelegate<int>, false);
+// Eval(3110, o is GenericDelegate<int>[], false);
Eval(3111, o is EmptyClass, false);
Eval(3112, o is EmptyClass[], false);
Eval(3113, o is NotEmptyClass, false);
Eval(3114, o is NotEmptyClass[], false);
- Eval(3115, o is EmptyClassGen<int>, false);
- Eval(3116, o is EmptyClassGen<int>[], false);
- Eval(3117, o is NotEmptyClassGen<Guid>, false);
- Eval(3118, o is NotEmptyClassGen<Guid>[], false);
- Eval(3119, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3120, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3115, o is EmptyClassGen<int>, false);
+// Eval(3116, o is EmptyClassGen<int>[], false);
+// Eval(3117, o is NotEmptyClassGen<Guid>, false);
+// Eval(3118, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3119, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3120, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3121, o is NestedClass, false);
Eval(3122, o is NestedClass[], false);
- Eval(3123, o is NestedClassGen<Decimal>, false);
- Eval(3124, o is NestedClassGen<Decimal>[], false);
+// Eval(3123, o is NestedClassGen<Decimal>, false);
+// Eval(3124, o is NestedClassGen<Decimal>[], false);
Eval(3125, o is ImplementOneInterfaceC, false);
Eval(3126, o is ImplementOneInterfaceC[], false);
Eval(3127, o is ImplementTwoInterfaceC, false);
Eval(3128, o is ImplementTwoInterfaceC[], false);
- Eval(3129, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3130, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3131, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3132, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3133, o is ImplementAllInterfaceC<int>, false);
- Eval(3134, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3129, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3130, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3131, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3132, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3133, o is ImplementAllInterfaceC<int>, false);
+// Eval(3134, o is ImplementAllInterfaceC<int>[], false);
Eval(3135, o is SealedClass, false);
Eval(3136, o is SealedClass[], false);
}
@@ -3115,26 +3115,26 @@ internal class Program
Eval(3142, o is NotEmptyStruct[], false);
Eval(3143, o is NotEmptyStruct?, false);
Eval(3144, o is NotEmptyStruct?[], false);
- Eval(3145, o is EmptyStructGen<int>, false);
- Eval(3146, o is EmptyStructGen<int>[], false);
- Eval(3147, o is EmptyStructGen<int>?, false);
- Eval(3148, o is EmptyStructGen<int>?[], false);
- Eval(3149, o is NotEmptyStructGen<Guid>, false);
- Eval(3150, o is NotEmptyStructGen<Guid>[], false);
- Eval(3151, o is NotEmptyStructGen<Guid>?, false);
- Eval(3152, o is NotEmptyStructGen<Guid>?[], false);
- Eval(3153, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3154, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3155, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3156, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3145, o is EmptyStructGen<int>, false);
+// Eval(3146, o is EmptyStructGen<int>[], false);
+// Eval(3147, o is EmptyStructGen<int>?, false);
+// Eval(3148, o is EmptyStructGen<int>?[], false);
+// Eval(3149, o is NotEmptyStructGen<Guid>, false);
+// Eval(3150, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3151, o is NotEmptyStructGen<Guid>?, false);
+// Eval(3152, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(3153, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3154, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3155, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3156, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3157, o is NestedStruct, true);
Eval(3158, o is NestedStruct[], false);
Eval(3159, o is NestedStruct?, true);
Eval(3160, o is NestedStruct?[], false);
- Eval(3161, o is NestedStructGen<Decimal>, false);
- Eval(3162, o is NestedStructGen<Decimal>[], false);
- Eval(3163, o is NestedStructGen<Decimal>?, false);
- Eval(3164, o is NestedStructGen<Decimal>?[], false);
+// Eval(3161, o is NestedStructGen<Decimal>, false);
+// Eval(3162, o is NestedStructGen<Decimal>[], false);
+// Eval(3163, o is NestedStructGen<Decimal>?, false);
+// Eval(3164, o is NestedStructGen<Decimal>?[], false);
Eval(3165, o is ExplicitFieldOffsetStruct, false);
Eval(3166, o is ExplicitFieldOffsetStruct[], false);
Eval(3167, o is ExplicitFieldOffsetStruct?, false);
@@ -3151,18 +3151,18 @@ internal class Program
Eval(3186, o is ImplementTwoInterface[], false);
Eval(3187, o is ImplementTwoInterface?, false);
Eval(3188, o is ImplementTwoInterface?[], false);
- Eval(3189, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3190, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3191, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3192, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3193, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3194, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3195, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3196, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3197, o is ImplementAllInterface<int>, false);
- Eval(3198, o is ImplementAllInterface<int>[], false);
- Eval(3199, o is ImplementAllInterface<int>?, false);
- Eval(3200, o is ImplementAllInterface<int>?[], false);
+// Eval(3189, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3190, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3191, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3192, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3193, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3194, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3195, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3196, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3197, o is ImplementAllInterface<int>, false);
+// Eval(3198, o is ImplementAllInterface<int>[], false);
+// Eval(3199, o is ImplementAllInterface<int>?, false);
+// Eval(3200, o is ImplementAllInterface<int>?[], false);
Eval(3201, o is IntE, false);
Eval(3202, o is IntE[], false);
Eval(3203, o is IntE?, false);
@@ -3261,38 +3261,38 @@ internal class Program
Eval(3296, o is IEmpty[], false);
Eval(3297, o is INotEmpty, false);
Eval(3298, o is INotEmpty[], false);
- Eval(3299, o is IEmptyGen<int>, false);
- Eval(3300, o is IEmptyGen<int>[], false);
- Eval(3301, o is INotEmptyGen<int>, false);
- Eval(3302, o is INotEmptyGen<int>[], false);
+// Eval(3299, o is IEmptyGen<int>, false);
+// Eval(3300, o is IEmptyGen<int>[], false);
+// Eval(3301, o is INotEmptyGen<int>, false);
+// Eval(3302, o is INotEmptyGen<int>[], false);
Eval(3303, o is SimpleDelegate, false);
Eval(3304, o is SimpleDelegate[], false);
- Eval(3305, o is GenericDelegate<int>, false);
- Eval(3306, o is GenericDelegate<int>[], false);
+// Eval(3305, o is GenericDelegate<int>, false);
+// Eval(3306, o is GenericDelegate<int>[], false);
Eval(3307, o is EmptyClass, false);
Eval(3308, o is EmptyClass[], false);
Eval(3309, o is NotEmptyClass, false);
Eval(3310, o is NotEmptyClass[], false);
- Eval(3311, o is EmptyClassGen<int>, false);
- Eval(3312, o is EmptyClassGen<int>[], false);
- Eval(3313, o is NotEmptyClassGen<Guid>, false);
- Eval(3314, o is NotEmptyClassGen<Guid>[], false);
- Eval(3315, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3316, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3311, o is EmptyClassGen<int>, false);
+// Eval(3312, o is EmptyClassGen<int>[], false);
+// Eval(3313, o is NotEmptyClassGen<Guid>, false);
+// Eval(3314, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3315, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3316, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3317, o is NestedClass, false);
Eval(3318, o is NestedClass[], false);
- Eval(3319, o is NestedClassGen<Decimal>, false);
- Eval(3320, o is NestedClassGen<Decimal>[], false);
+// Eval(3319, o is NestedClassGen<Decimal>, false);
+// Eval(3320, o is NestedClassGen<Decimal>[], false);
Eval(3321, o is ImplementOneInterfaceC, false);
Eval(3322, o is ImplementOneInterfaceC[], false);
Eval(3323, o is ImplementTwoInterfaceC, false);
Eval(3324, o is ImplementTwoInterfaceC[], false);
- Eval(3325, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3326, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3327, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3328, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3329, o is ImplementAllInterfaceC<int>, false);
- Eval(3330, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3325, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3326, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3327, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3328, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3329, o is ImplementAllInterfaceC<int>, false);
+// Eval(3330, o is ImplementAllInterfaceC<int>[], false);
Eval(3331, o is SealedClass, false);
Eval(3332, o is SealedClass[], false);
}
@@ -3307,26 +3307,26 @@ internal class Program
Eval(3338, o is NotEmptyStruct[], false);
Eval(3339, o is NotEmptyStruct?, false);
Eval(3340, o is NotEmptyStruct?[], false);
- Eval(3341, o is EmptyStructGen<int>, false);
- Eval(3342, o is EmptyStructGen<int>[], false);
- Eval(3343, o is EmptyStructGen<int>?, false);
- Eval(3344, o is EmptyStructGen<int>?[], false);
- Eval(3345, o is NotEmptyStructGen<Guid>, false);
- Eval(3346, o is NotEmptyStructGen<Guid>[], false);
- Eval(3347, o is NotEmptyStructGen<Guid>?, false);
- Eval(3348, o is NotEmptyStructGen<Guid>?[], false);
- Eval(3349, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3350, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3351, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3352, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3341, o is EmptyStructGen<int>, false);
+// Eval(3342, o is EmptyStructGen<int>[], false);
+// Eval(3343, o is EmptyStructGen<int>?, false);
+// Eval(3344, o is EmptyStructGen<int>?[], false);
+// Eval(3345, o is NotEmptyStructGen<Guid>, false);
+// Eval(3346, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3347, o is NotEmptyStructGen<Guid>?, false);
+// Eval(3348, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(3349, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3350, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3351, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3352, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3353, o is NestedStruct, false);
Eval(3354, o is NestedStruct[], false);
Eval(3355, o is NestedStruct?, false);
Eval(3356, o is NestedStruct?[], false);
- Eval(3357, o is NestedStructGen<Decimal>, false);
- Eval(3358, o is NestedStructGen<Decimal>[], false);
- Eval(3359, o is NestedStructGen<Decimal>?, false);
- Eval(3360, o is NestedStructGen<Decimal>?[], false);
+// Eval(3357, o is NestedStructGen<Decimal>, false);
+// Eval(3358, o is NestedStructGen<Decimal>[], false);
+// Eval(3359, o is NestedStructGen<Decimal>?, false);
+// Eval(3360, o is NestedStructGen<Decimal>?[], false);
Eval(3361, o is ExplicitFieldOffsetStruct, false);
Eval(3362, o is ExplicitFieldOffsetStruct[], false);
Eval(3363, o is ExplicitFieldOffsetStruct?, false);
@@ -3343,18 +3343,18 @@ internal class Program
Eval(3382, o is ImplementTwoInterface[], false);
Eval(3383, o is ImplementTwoInterface?, false);
Eval(3384, o is ImplementTwoInterface?[], false);
- Eval(3385, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3386, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3387, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3388, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3389, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3390, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3391, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3392, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3393, o is ImplementAllInterface<int>, false);
- Eval(3394, o is ImplementAllInterface<int>[], false);
- Eval(3395, o is ImplementAllInterface<int>?, false);
- Eval(3396, o is ImplementAllInterface<int>?[], false);
+// Eval(3385, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3386, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3387, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3388, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3389, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3390, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3391, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3392, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3393, o is ImplementAllInterface<int>, false);
+// Eval(3394, o is ImplementAllInterface<int>[], false);
+// Eval(3395, o is ImplementAllInterface<int>?, false);
+// Eval(3396, o is ImplementAllInterface<int>?[], false);
Eval(3397, o is IntE, false);
Eval(3398, o is IntE[], false);
Eval(3399, o is IntE?, false);
@@ -3453,38 +3453,38 @@ internal class Program
Eval(3492, o is IEmpty[], false);
Eval(3493, o is INotEmpty, false);
Eval(3494, o is INotEmpty[], false);
- Eval(3495, o is IEmptyGen<int>, false);
- Eval(3496, o is IEmptyGen<int>[], false);
- Eval(3497, o is INotEmptyGen<int>, false);
- Eval(3498, o is INotEmptyGen<int>[], false);
+// Eval(3495, o is IEmptyGen<int>, false);
+// Eval(3496, o is IEmptyGen<int>[], false);
+// Eval(3497, o is INotEmptyGen<int>, false);
+// Eval(3498, o is INotEmptyGen<int>[], false);
Eval(3499, o is SimpleDelegate, false);
Eval(3500, o is SimpleDelegate[], false);
- Eval(3501, o is GenericDelegate<int>, false);
- Eval(3502, o is GenericDelegate<int>[], false);
+// Eval(3501, o is GenericDelegate<int>, false);
+// Eval(3502, o is GenericDelegate<int>[], false);
Eval(3503, o is EmptyClass, false);
Eval(3504, o is EmptyClass[], false);
Eval(3505, o is NotEmptyClass, false);
Eval(3506, o is NotEmptyClass[], false);
- Eval(3507, o is EmptyClassGen<int>, false);
- Eval(3508, o is EmptyClassGen<int>[], false);
- Eval(3509, o is NotEmptyClassGen<Guid>, false);
- Eval(3510, o is NotEmptyClassGen<Guid>[], false);
- Eval(3511, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3512, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3507, o is EmptyClassGen<int>, false);
+// Eval(3508, o is EmptyClassGen<int>[], false);
+// Eval(3509, o is NotEmptyClassGen<Guid>, false);
+// Eval(3510, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3511, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3512, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3513, o is NestedClass, false);
Eval(3514, o is NestedClass[], false);
- Eval(3515, o is NestedClassGen<Decimal>, false);
- Eval(3516, o is NestedClassGen<Decimal>[], false);
+// Eval(3515, o is NestedClassGen<Decimal>, false);
+// Eval(3516, o is NestedClassGen<Decimal>[], false);
Eval(3517, o is ImplementOneInterfaceC, false);
Eval(3518, o is ImplementOneInterfaceC[], false);
Eval(3519, o is ImplementTwoInterfaceC, false);
Eval(3520, o is ImplementTwoInterfaceC[], false);
- Eval(3521, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3522, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3523, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3524, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3525, o is ImplementAllInterfaceC<int>, false);
- Eval(3526, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3521, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3522, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3523, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3524, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3525, o is ImplementAllInterfaceC<int>, false);
+// Eval(3526, o is ImplementAllInterfaceC<int>[], false);
Eval(3527, o is SealedClass, false);
Eval(3528, o is SealedClass[], false);
}
@@ -3502,26 +3502,26 @@ internal class Program
Eval(3534, o is NotEmptyStruct[], false);
Eval(3535, o is NotEmptyStruct?, false);
Eval(3536, o is NotEmptyStruct?[], false);
- Eval(3537, o is EmptyStructGen<int>, false);
- Eval(3538, o is EmptyStructGen<int>[], false);
- Eval(3539, o is EmptyStructGen<int>?, false);
- Eval(3540, o is EmptyStructGen<int>?[], false);
- Eval(3541, o is NotEmptyStructGen<Guid>, false);
- Eval(3542, o is NotEmptyStructGen<Guid>[], false);
- Eval(3543, o is NotEmptyStructGen<Guid>?, false);
- Eval(3544, o is NotEmptyStructGen<Guid>?[], false);
- Eval(3545, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3546, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3547, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3548, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3537, o is EmptyStructGen<int>, false);
+// Eval(3538, o is EmptyStructGen<int>[], false);
+// Eval(3539, o is EmptyStructGen<int>?, false);
+// Eval(3540, o is EmptyStructGen<int>?[], false);
+// Eval(3541, o is NotEmptyStructGen<Guid>, false);
+// Eval(3542, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3543, o is NotEmptyStructGen<Guid>?, false);
+// Eval(3544, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(3545, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3546, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3547, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3548, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3549, o is NestedStruct, false);
Eval(3550, o is NestedStruct[], false);
Eval(3551, o is NestedStruct?, false);
Eval(3552, o is NestedStruct?[], false);
- Eval(3553, o is NestedStructGen<Decimal>, true);
- Eval(3554, o is NestedStructGen<Decimal>[], false);
- Eval(3555, o is NestedStructGen<Decimal>?, true);
- Eval(3556, o is NestedStructGen<Decimal>?[], false);
+// Eval(3553, o is NestedStructGen<Decimal>, true);
+// Eval(3554, o is NestedStructGen<Decimal>[], false);
+// Eval(3555, o is NestedStructGen<Decimal>?, true);
+// Eval(3556, o is NestedStructGen<Decimal>?[], false);
Eval(3557, o is ExplicitFieldOffsetStruct, false);
Eval(3558, o is ExplicitFieldOffsetStruct[], false);
Eval(3559, o is ExplicitFieldOffsetStruct?, false);
@@ -3538,18 +3538,18 @@ internal class Program
Eval(3578, o is ImplementTwoInterface[], false);
Eval(3579, o is ImplementTwoInterface?, false);
Eval(3580, o is ImplementTwoInterface?[], false);
- Eval(3581, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3582, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3583, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3584, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3585, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3586, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3587, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3588, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3589, o is ImplementAllInterface<int>, false);
- Eval(3590, o is ImplementAllInterface<int>[], false);
- Eval(3591, o is ImplementAllInterface<int>?, false);
- Eval(3592, o is ImplementAllInterface<int>?[], false);
+// Eval(3581, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3582, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3583, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3584, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3585, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3586, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3587, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3588, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3589, o is ImplementAllInterface<int>, false);
+// Eval(3590, o is ImplementAllInterface<int>[], false);
+// Eval(3591, o is ImplementAllInterface<int>?, false);
+// Eval(3592, o is ImplementAllInterface<int>?[], false);
Eval(3593, o is IntE, false);
Eval(3594, o is IntE[], false);
Eval(3595, o is IntE?, false);
@@ -3648,38 +3648,38 @@ internal class Program
Eval(3688, o is IEmpty[], false);
Eval(3689, o is INotEmpty, false);
Eval(3690, o is INotEmpty[], false);
- Eval(3691, o is IEmptyGen<int>, false);
- Eval(3692, o is IEmptyGen<int>[], false);
- Eval(3693, o is INotEmptyGen<int>, false);
- Eval(3694, o is INotEmptyGen<int>[], false);
+// Eval(3691, o is IEmptyGen<int>, false);
+// Eval(3692, o is IEmptyGen<int>[], false);
+// Eval(3693, o is INotEmptyGen<int>, false);
+// Eval(3694, o is INotEmptyGen<int>[], false);
Eval(3695, o is SimpleDelegate, false);
Eval(3696, o is SimpleDelegate[], false);
- Eval(3697, o is GenericDelegate<int>, false);
- Eval(3698, o is GenericDelegate<int>[], false);
+// Eval(3697, o is GenericDelegate<int>, false);
+// Eval(3698, o is GenericDelegate<int>[], false);
Eval(3699, o is EmptyClass, false);
Eval(3700, o is EmptyClass[], false);
Eval(3701, o is NotEmptyClass, false);
Eval(3702, o is NotEmptyClass[], false);
- Eval(3703, o is EmptyClassGen<int>, false);
- Eval(3704, o is EmptyClassGen<int>[], false);
- Eval(3705, o is NotEmptyClassGen<Guid>, false);
- Eval(3706, o is NotEmptyClassGen<Guid>[], false);
- Eval(3707, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3708, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3703, o is EmptyClassGen<int>, false);
+// Eval(3704, o is EmptyClassGen<int>[], false);
+// Eval(3705, o is NotEmptyClassGen<Guid>, false);
+// Eval(3706, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3707, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3708, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3709, o is NestedClass, false);
Eval(3710, o is NestedClass[], false);
- Eval(3711, o is NestedClassGen<Decimal>, false);
- Eval(3712, o is NestedClassGen<Decimal>[], false);
+// Eval(3711, o is NestedClassGen<Decimal>, false);
+// Eval(3712, o is NestedClassGen<Decimal>[], false);
Eval(3713, o is ImplementOneInterfaceC, false);
Eval(3714, o is ImplementOneInterfaceC[], false);
Eval(3715, o is ImplementTwoInterfaceC, false);
Eval(3716, o is ImplementTwoInterfaceC[], false);
- Eval(3717, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3718, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3719, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3720, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3721, o is ImplementAllInterfaceC<int>, false);
- Eval(3722, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3717, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3718, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3719, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3720, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3721, o is ImplementAllInterfaceC<int>, false);
+// Eval(3722, o is ImplementAllInterfaceC<int>[], false);
Eval(3723, o is SealedClass, false);
Eval(3724, o is SealedClass[], false);
}
@@ -3694,26 +3694,26 @@ internal class Program
Eval(3730, o is NotEmptyStruct[], false);
Eval(3731, o is NotEmptyStruct?, false);
Eval(3732, o is NotEmptyStruct?[], false);
- Eval(3733, o is EmptyStructGen<int>, false);
- Eval(3734, o is EmptyStructGen<int>[], false);
- Eval(3735, o is EmptyStructGen<int>?, false);
- Eval(3736, o is EmptyStructGen<int>?[], false);
- Eval(3737, o is NotEmptyStructGen<Guid>, false);
- Eval(3738, o is NotEmptyStructGen<Guid>[], false);
- Eval(3739, o is NotEmptyStructGen<Guid>?, false);
- Eval(3740, o is NotEmptyStructGen<Guid>?[], false);
- Eval(3741, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3742, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3743, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3744, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3733, o is EmptyStructGen<int>, false);
+// Eval(3734, o is EmptyStructGen<int>[], false);
+// Eval(3735, o is EmptyStructGen<int>?, false);
+// Eval(3736, o is EmptyStructGen<int>?[], false);
+// Eval(3737, o is NotEmptyStructGen<Guid>, false);
+// Eval(3738, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3739, o is NotEmptyStructGen<Guid>?, false);
+// Eval(3740, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(3741, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3742, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3743, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3744, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3745, o is NestedStruct, false);
Eval(3746, o is NestedStruct[], false);
Eval(3747, o is NestedStruct?, false);
Eval(3748, o is NestedStruct?[], false);
- Eval(3749, o is NestedStructGen<Decimal>, true);
- Eval(3750, o is NestedStructGen<Decimal>[], false);
- Eval(3751, o is NestedStructGen<Decimal>?, true);
- Eval(3752, o is NestedStructGen<Decimal>?[], false);
+// Eval(3749, o is NestedStructGen<Decimal>, true);
+// Eval(3750, o is NestedStructGen<Decimal>[], false);
+// Eval(3751, o is NestedStructGen<Decimal>?, true);
+// Eval(3752, o is NestedStructGen<Decimal>?[], false);
Eval(3753, o is ExplicitFieldOffsetStruct, false);
Eval(3754, o is ExplicitFieldOffsetStruct[], false);
Eval(3755, o is ExplicitFieldOffsetStruct?, false);
@@ -3730,18 +3730,18 @@ internal class Program
Eval(3774, o is ImplementTwoInterface[], false);
Eval(3775, o is ImplementTwoInterface?, false);
Eval(3776, o is ImplementTwoInterface?[], false);
- Eval(3777, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3778, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3779, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3780, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3781, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3782, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3783, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3784, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3785, o is ImplementAllInterface<int>, false);
- Eval(3786, o is ImplementAllInterface<int>[], false);
- Eval(3787, o is ImplementAllInterface<int>?, false);
- Eval(3788, o is ImplementAllInterface<int>?[], false);
+// Eval(3777, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3778, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3779, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3780, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3781, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3782, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3783, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3784, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3785, o is ImplementAllInterface<int>, false);
+// Eval(3786, o is ImplementAllInterface<int>[], false);
+// Eval(3787, o is ImplementAllInterface<int>?, false);
+// Eval(3788, o is ImplementAllInterface<int>?[], false);
Eval(3789, o is IntE, false);
Eval(3790, o is IntE[], false);
Eval(3791, o is IntE?, false);
@@ -3840,38 +3840,38 @@ internal class Program
Eval(3884, o is IEmpty[], false);
Eval(3885, o is INotEmpty, false);
Eval(3886, o is INotEmpty[], false);
- Eval(3887, o is IEmptyGen<int>, false);
- Eval(3888, o is IEmptyGen<int>[], false);
- Eval(3889, o is INotEmptyGen<int>, false);
- Eval(3890, o is INotEmptyGen<int>[], false);
+// Eval(3887, o is IEmptyGen<int>, false);
+// Eval(3888, o is IEmptyGen<int>[], false);
+// Eval(3889, o is INotEmptyGen<int>, false);
+// Eval(3890, o is INotEmptyGen<int>[], false);
Eval(3891, o is SimpleDelegate, false);
Eval(3892, o is SimpleDelegate[], false);
- Eval(3893, o is GenericDelegate<int>, false);
- Eval(3894, o is GenericDelegate<int>[], false);
+// Eval(3893, o is GenericDelegate<int>, false);
+// Eval(3894, o is GenericDelegate<int>[], false);
Eval(3895, o is EmptyClass, false);
Eval(3896, o is EmptyClass[], false);
Eval(3897, o is NotEmptyClass, false);
Eval(3898, o is NotEmptyClass[], false);
- Eval(3899, o is EmptyClassGen<int>, false);
- Eval(3900, o is EmptyClassGen<int>[], false);
- Eval(3901, o is NotEmptyClassGen<Guid>, false);
- Eval(3902, o is NotEmptyClassGen<Guid>[], false);
- Eval(3903, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(3904, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(3899, o is EmptyClassGen<int>, false);
+// Eval(3900, o is EmptyClassGen<int>[], false);
+// Eval(3901, o is NotEmptyClassGen<Guid>, false);
+// Eval(3902, o is NotEmptyClassGen<Guid>[], false);
+// Eval(3903, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(3904, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(3905, o is NestedClass, false);
Eval(3906, o is NestedClass[], false);
- Eval(3907, o is NestedClassGen<Decimal>, false);
- Eval(3908, o is NestedClassGen<Decimal>[], false);
+// Eval(3907, o is NestedClassGen<Decimal>, false);
+// Eval(3908, o is NestedClassGen<Decimal>[], false);
Eval(3909, o is ImplementOneInterfaceC, false);
Eval(3910, o is ImplementOneInterfaceC[], false);
Eval(3911, o is ImplementTwoInterfaceC, false);
Eval(3912, o is ImplementTwoInterfaceC[], false);
- Eval(3913, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(3914, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(3915, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(3916, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(3917, o is ImplementAllInterfaceC<int>, false);
- Eval(3918, o is ImplementAllInterfaceC<int>[], false);
+// Eval(3913, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(3914, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(3915, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(3916, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(3917, o is ImplementAllInterfaceC<int>, false);
+// Eval(3918, o is ImplementAllInterfaceC<int>[], false);
Eval(3919, o is SealedClass, false);
Eval(3920, o is SealedClass[], false);
}
@@ -3886,26 +3886,26 @@ internal class Program
Eval(3926, o is NotEmptyStruct[], false);
Eval(3927, o is NotEmptyStruct?, false);
Eval(3928, o is NotEmptyStruct?[], false);
- Eval(3929, o is EmptyStructGen<int>, false);
- Eval(3930, o is EmptyStructGen<int>[], false);
- Eval(3931, o is EmptyStructGen<int>?, false);
- Eval(3932, o is EmptyStructGen<int>?[], false);
- Eval(3933, o is NotEmptyStructGen<Guid>, false);
- Eval(3934, o is NotEmptyStructGen<Guid>[], false);
- Eval(3935, o is NotEmptyStructGen<Guid>?, false);
- Eval(3936, o is NotEmptyStructGen<Guid>?[], false);
- Eval(3937, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(3938, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(3939, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(3940, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(3929, o is EmptyStructGen<int>, false);
+// Eval(3930, o is EmptyStructGen<int>[], false);
+// Eval(3931, o is EmptyStructGen<int>?, false);
+// Eval(3932, o is EmptyStructGen<int>?[], false);
+// Eval(3933, o is NotEmptyStructGen<Guid>, false);
+// Eval(3934, o is NotEmptyStructGen<Guid>[], false);
+// Eval(3935, o is NotEmptyStructGen<Guid>?, false);
+// Eval(3936, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(3937, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(3938, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(3939, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(3940, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(3941, o is NestedStruct, false);
Eval(3942, o is NestedStruct[], false);
Eval(3943, o is NestedStruct?, false);
Eval(3944, o is NestedStruct?[], false);
- Eval(3945, o is NestedStructGen<Decimal>, false);
- Eval(3946, o is NestedStructGen<Decimal>[], false);
- Eval(3947, o is NestedStructGen<Decimal>?, false);
- Eval(3948, o is NestedStructGen<Decimal>?[], false);
+// Eval(3945, o is NestedStructGen<Decimal>, false);
+// Eval(3946, o is NestedStructGen<Decimal>[], false);
+// Eval(3947, o is NestedStructGen<Decimal>?, false);
+// Eval(3948, o is NestedStructGen<Decimal>?[], false);
Eval(3949, o is ExplicitFieldOffsetStruct, false);
Eval(3950, o is ExplicitFieldOffsetStruct[], false);
Eval(3951, o is ExplicitFieldOffsetStruct?, false);
@@ -3922,18 +3922,18 @@ internal class Program
Eval(3970, o is ImplementTwoInterface[], false);
Eval(3971, o is ImplementTwoInterface?, false);
Eval(3972, o is ImplementTwoInterface?[], false);
- Eval(3973, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(3974, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(3975, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(3976, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(3977, o is ImplementTwoInterfaceGen<int>, false);
- Eval(3978, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(3979, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(3980, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(3981, o is ImplementAllInterface<int>, false);
- Eval(3982, o is ImplementAllInterface<int>[], false);
- Eval(3983, o is ImplementAllInterface<int>?, false);
- Eval(3984, o is ImplementAllInterface<int>?[], false);
+// Eval(3973, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(3974, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(3975, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(3976, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(3977, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(3978, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(3979, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(3980, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(3981, o is ImplementAllInterface<int>, false);
+// Eval(3982, o is ImplementAllInterface<int>[], false);
+// Eval(3983, o is ImplementAllInterface<int>?, false);
+// Eval(3984, o is ImplementAllInterface<int>?[], false);
Eval(3985, o is IntE, false);
Eval(3986, o is IntE[], false);
Eval(3987, o is IntE?, false);
@@ -4032,38 +4032,38 @@ internal class Program
Eval(4080, o is IEmpty[], false);
Eval(4081, o is INotEmpty, false);
Eval(4082, o is INotEmpty[], false);
- Eval(4083, o is IEmptyGen<int>, false);
- Eval(4084, o is IEmptyGen<int>[], false);
- Eval(4085, o is INotEmptyGen<int>, false);
- Eval(4086, o is INotEmptyGen<int>[], false);
+// Eval(4083, o is IEmptyGen<int>, false);
+// Eval(4084, o is IEmptyGen<int>[], false);
+// Eval(4085, o is INotEmptyGen<int>, false);
+// Eval(4086, o is INotEmptyGen<int>[], false);
Eval(4087, o is SimpleDelegate, false);
Eval(4088, o is SimpleDelegate[], false);
- Eval(4089, o is GenericDelegate<int>, false);
- Eval(4090, o is GenericDelegate<int>[], false);
+// Eval(4089, o is GenericDelegate<int>, false);
+// Eval(4090, o is GenericDelegate<int>[], false);
Eval(4091, o is EmptyClass, false);
Eval(4092, o is EmptyClass[], false);
Eval(4093, o is NotEmptyClass, false);
Eval(4094, o is NotEmptyClass[], false);
- Eval(4095, o is EmptyClassGen<int>, false);
- Eval(4096, o is EmptyClassGen<int>[], false);
- Eval(4097, o is NotEmptyClassGen<Guid>, false);
- Eval(4098, o is NotEmptyClassGen<Guid>[], false);
- Eval(4099, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4100, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4095, o is EmptyClassGen<int>, false);
+// Eval(4096, o is EmptyClassGen<int>[], false);
+// Eval(4097, o is NotEmptyClassGen<Guid>, false);
+// Eval(4098, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4099, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4100, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4101, o is NestedClass, false);
Eval(4102, o is NestedClass[], false);
- Eval(4103, o is NestedClassGen<Decimal>, false);
- Eval(4104, o is NestedClassGen<Decimal>[], false);
+// Eval(4103, o is NestedClassGen<Decimal>, false);
+// Eval(4104, o is NestedClassGen<Decimal>[], false);
Eval(4105, o is ImplementOneInterfaceC, false);
Eval(4106, o is ImplementOneInterfaceC[], false);
Eval(4107, o is ImplementTwoInterfaceC, false);
Eval(4108, o is ImplementTwoInterfaceC[], false);
- Eval(4109, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4110, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4111, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4112, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4113, o is ImplementAllInterfaceC<int>, false);
- Eval(4114, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4109, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4110, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4111, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4112, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4113, o is ImplementAllInterfaceC<int>, false);
+// Eval(4114, o is ImplementAllInterfaceC<int>[], false);
Eval(4115, o is SealedClass, false);
Eval(4116, o is SealedClass[], false);
}
@@ -4081,26 +4081,26 @@ internal class Program
Eval(4122, o is NotEmptyStruct[], false);
Eval(4123, o is NotEmptyStruct?, false);
Eval(4124, o is NotEmptyStruct?[], false);
- Eval(4125, o is EmptyStructGen<int>, false);
- Eval(4126, o is EmptyStructGen<int>[], false);
- Eval(4127, o is EmptyStructGen<int>?, false);
- Eval(4128, o is EmptyStructGen<int>?[], false);
- Eval(4129, o is NotEmptyStructGen<Guid>, false);
- Eval(4130, o is NotEmptyStructGen<Guid>[], false);
- Eval(4131, o is NotEmptyStructGen<Guid>?, false);
- Eval(4132, o is NotEmptyStructGen<Guid>?[], false);
- Eval(4133, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4134, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4135, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4136, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4125, o is EmptyStructGen<int>, false);
+// Eval(4126, o is EmptyStructGen<int>[], false);
+// Eval(4127, o is EmptyStructGen<int>?, false);
+// Eval(4128, o is EmptyStructGen<int>?[], false);
+// Eval(4129, o is NotEmptyStructGen<Guid>, false);
+// Eval(4130, o is NotEmptyStructGen<Guid>[], false);
+// Eval(4131, o is NotEmptyStructGen<Guid>?, false);
+// Eval(4132, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(4133, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4134, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4135, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4136, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4137, o is NestedStruct, false);
Eval(4138, o is NestedStruct[], false);
Eval(4139, o is NestedStruct?, false);
Eval(4140, o is NestedStruct?[], false);
- Eval(4141, o is NestedStructGen<Decimal>, false);
- Eval(4142, o is NestedStructGen<Decimal>[], false);
- Eval(4143, o is NestedStructGen<Decimal>?, false);
- Eval(4144, o is NestedStructGen<Decimal>?[], false);
+// Eval(4141, o is NestedStructGen<Decimal>, false);
+// Eval(4142, o is NestedStructGen<Decimal>[], false);
+// Eval(4143, o is NestedStructGen<Decimal>?, false);
+// Eval(4144, o is NestedStructGen<Decimal>?[], false);
Eval(4145, o is ExplicitFieldOffsetStruct, true);
Eval(4146, o is ExplicitFieldOffsetStruct[], false);
Eval(4147, o is ExplicitFieldOffsetStruct?, true);
@@ -4117,18 +4117,18 @@ internal class Program
Eval(4166, o is ImplementTwoInterface[], false);
Eval(4167, o is ImplementTwoInterface?, false);
Eval(4168, o is ImplementTwoInterface?[], false);
- Eval(4169, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4170, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4171, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4172, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4173, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4174, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4175, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4176, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4177, o is ImplementAllInterface<int>, false);
- Eval(4178, o is ImplementAllInterface<int>[], false);
- Eval(4179, o is ImplementAllInterface<int>?, false);
- Eval(4180, o is ImplementAllInterface<int>?[], false);
+// Eval(4169, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4170, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4171, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4172, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4173, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4174, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4175, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4176, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4177, o is ImplementAllInterface<int>, false);
+// Eval(4178, o is ImplementAllInterface<int>[], false);
+// Eval(4179, o is ImplementAllInterface<int>?, false);
+// Eval(4180, o is ImplementAllInterface<int>?[], false);
Eval(4181, o is IntE, false);
Eval(4182, o is IntE[], false);
Eval(4183, o is IntE?, false);
@@ -4227,38 +4227,38 @@ internal class Program
Eval(4276, o is IEmpty[], false);
Eval(4277, o is INotEmpty, false);
Eval(4278, o is INotEmpty[], false);
- Eval(4279, o is IEmptyGen<int>, false);
- Eval(4280, o is IEmptyGen<int>[], false);
- Eval(4281, o is INotEmptyGen<int>, false);
- Eval(4282, o is INotEmptyGen<int>[], false);
+// Eval(4279, o is IEmptyGen<int>, false);
+// Eval(4280, o is IEmptyGen<int>[], false);
+// Eval(4281, o is INotEmptyGen<int>, false);
+// Eval(4282, o is INotEmptyGen<int>[], false);
Eval(4283, o is SimpleDelegate, false);
Eval(4284, o is SimpleDelegate[], false);
- Eval(4285, o is GenericDelegate<int>, false);
- Eval(4286, o is GenericDelegate<int>[], false);
+// Eval(4285, o is GenericDelegate<int>, false);
+// Eval(4286, o is GenericDelegate<int>[], false);
Eval(4287, o is EmptyClass, false);
Eval(4288, o is EmptyClass[], false);
Eval(4289, o is NotEmptyClass, false);
Eval(4290, o is NotEmptyClass[], false);
- Eval(4291, o is EmptyClassGen<int>, false);
- Eval(4292, o is EmptyClassGen<int>[], false);
- Eval(4293, o is NotEmptyClassGen<Guid>, false);
- Eval(4294, o is NotEmptyClassGen<Guid>[], false);
- Eval(4295, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4296, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4291, o is EmptyClassGen<int>, false);
+// Eval(4292, o is EmptyClassGen<int>[], false);
+// Eval(4293, o is NotEmptyClassGen<Guid>, false);
+// Eval(4294, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4295, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4296, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4297, o is NestedClass, false);
Eval(4298, o is NestedClass[], false);
- Eval(4299, o is NestedClassGen<Decimal>, false);
- Eval(4300, o is NestedClassGen<Decimal>[], false);
+// Eval(4299, o is NestedClassGen<Decimal>, false);
+// Eval(4300, o is NestedClassGen<Decimal>[], false);
Eval(4301, o is ImplementOneInterfaceC, false);
Eval(4302, o is ImplementOneInterfaceC[], false);
Eval(4303, o is ImplementTwoInterfaceC, false);
Eval(4304, o is ImplementTwoInterfaceC[], false);
- Eval(4305, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4306, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4307, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4308, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4309, o is ImplementAllInterfaceC<int>, false);
- Eval(4310, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4305, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4306, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4307, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4308, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4309, o is ImplementAllInterfaceC<int>, false);
+// Eval(4310, o is ImplementAllInterfaceC<int>[], false);
Eval(4311, o is SealedClass, false);
Eval(4312, o is SealedClass[], false);
}
@@ -4273,26 +4273,26 @@ internal class Program
Eval(4318, o is NotEmptyStruct[], false);
Eval(4319, o is NotEmptyStruct?, false);
Eval(4320, o is NotEmptyStruct?[], false);
- Eval(4321, o is EmptyStructGen<int>, false);
- Eval(4322, o is EmptyStructGen<int>[], false);
- Eval(4323, o is EmptyStructGen<int>?, false);
- Eval(4324, o is EmptyStructGen<int>?[], false);
- Eval(4325, o is NotEmptyStructGen<Guid>, false);
- Eval(4326, o is NotEmptyStructGen<Guid>[], false);
- Eval(4327, o is NotEmptyStructGen<Guid>?, false);
- Eval(4328, o is NotEmptyStructGen<Guid>?[], false);
- Eval(4329, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4330, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4331, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4332, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4321, o is EmptyStructGen<int>, false);
+// Eval(4322, o is EmptyStructGen<int>[], false);
+// Eval(4323, o is EmptyStructGen<int>?, false);
+// Eval(4324, o is EmptyStructGen<int>?[], false);
+// Eval(4325, o is NotEmptyStructGen<Guid>, false);
+// Eval(4326, o is NotEmptyStructGen<Guid>[], false);
+// Eval(4327, o is NotEmptyStructGen<Guid>?, false);
+// Eval(4328, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(4329, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4330, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4331, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4332, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4333, o is NestedStruct, false);
Eval(4334, o is NestedStruct[], false);
Eval(4335, o is NestedStruct?, false);
Eval(4336, o is NestedStruct?[], false);
- Eval(4337, o is NestedStructGen<Decimal>, false);
- Eval(4338, o is NestedStructGen<Decimal>[], false);
- Eval(4339, o is NestedStructGen<Decimal>?, false);
- Eval(4340, o is NestedStructGen<Decimal>?[], false);
+// Eval(4337, o is NestedStructGen<Decimal>, false);
+// Eval(4338, o is NestedStructGen<Decimal>[], false);
+// Eval(4339, o is NestedStructGen<Decimal>?, false);
+// Eval(4340, o is NestedStructGen<Decimal>?[], false);
Eval(4341, o is ExplicitFieldOffsetStruct, true);
Eval(4342, o is ExplicitFieldOffsetStruct[], false);
Eval(4343, o is ExplicitFieldOffsetStruct?, true);
@@ -4309,18 +4309,18 @@ internal class Program
Eval(4362, o is ImplementTwoInterface[], false);
Eval(4363, o is ImplementTwoInterface?, false);
Eval(4364, o is ImplementTwoInterface?[], false);
- Eval(4365, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4366, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4367, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4368, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4369, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4370, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4371, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4372, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4373, o is ImplementAllInterface<int>, false);
- Eval(4374, o is ImplementAllInterface<int>[], false);
- Eval(4375, o is ImplementAllInterface<int>?, false);
- Eval(4376, o is ImplementAllInterface<int>?[], false);
+// Eval(4365, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4366, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4367, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4368, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4369, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4370, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4371, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4372, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4373, o is ImplementAllInterface<int>, false);
+// Eval(4374, o is ImplementAllInterface<int>[], false);
+// Eval(4375, o is ImplementAllInterface<int>?, false);
+// Eval(4376, o is ImplementAllInterface<int>?[], false);
Eval(4377, o is IntE, false);
Eval(4378, o is IntE[], false);
Eval(4379, o is IntE?, false);
@@ -4419,38 +4419,38 @@ internal class Program
Eval(4472, o is IEmpty[], false);
Eval(4473, o is INotEmpty, false);
Eval(4474, o is INotEmpty[], false);
- Eval(4475, o is IEmptyGen<int>, false);
- Eval(4476, o is IEmptyGen<int>[], false);
- Eval(4477, o is INotEmptyGen<int>, false);
- Eval(4478, o is INotEmptyGen<int>[], false);
+// Eval(4475, o is IEmptyGen<int>, false);
+// Eval(4476, o is IEmptyGen<int>[], false);
+// Eval(4477, o is INotEmptyGen<int>, false);
+// Eval(4478, o is INotEmptyGen<int>[], false);
Eval(4479, o is SimpleDelegate, false);
Eval(4480, o is SimpleDelegate[], false);
- Eval(4481, o is GenericDelegate<int>, false);
- Eval(4482, o is GenericDelegate<int>[], false);
+// Eval(4481, o is GenericDelegate<int>, false);
+// Eval(4482, o is GenericDelegate<int>[], false);
Eval(4483, o is EmptyClass, false);
Eval(4484, o is EmptyClass[], false);
Eval(4485, o is NotEmptyClass, false);
Eval(4486, o is NotEmptyClass[], false);
- Eval(4487, o is EmptyClassGen<int>, false);
- Eval(4488, o is EmptyClassGen<int>[], false);
- Eval(4489, o is NotEmptyClassGen<Guid>, false);
- Eval(4490, o is NotEmptyClassGen<Guid>[], false);
- Eval(4491, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4492, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4487, o is EmptyClassGen<int>, false);
+// Eval(4488, o is EmptyClassGen<int>[], false);
+// Eval(4489, o is NotEmptyClassGen<Guid>, false);
+// Eval(4490, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4491, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4492, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4493, o is NestedClass, false);
Eval(4494, o is NestedClass[], false);
- Eval(4495, o is NestedClassGen<Decimal>, false);
- Eval(4496, o is NestedClassGen<Decimal>[], false);
+// Eval(4495, o is NestedClassGen<Decimal>, false);
+// Eval(4496, o is NestedClassGen<Decimal>[], false);
Eval(4497, o is ImplementOneInterfaceC, false);
Eval(4498, o is ImplementOneInterfaceC[], false);
Eval(4499, o is ImplementTwoInterfaceC, false);
Eval(4500, o is ImplementTwoInterfaceC[], false);
- Eval(4501, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4502, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4503, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4504, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4505, o is ImplementAllInterfaceC<int>, false);
- Eval(4506, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4501, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4502, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4503, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4504, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4505, o is ImplementAllInterfaceC<int>, false);
+// Eval(4506, o is ImplementAllInterfaceC<int>[], false);
Eval(4507, o is SealedClass, false);
Eval(4508, o is SealedClass[], false);
}
@@ -4465,26 +4465,26 @@ internal class Program
Eval(4514, o is NotEmptyStruct[], false);
Eval(4515, o is NotEmptyStruct?, false);
Eval(4516, o is NotEmptyStruct?[], false);
- Eval(4517, o is EmptyStructGen<int>, false);
- Eval(4518, o is EmptyStructGen<int>[], false);
- Eval(4519, o is EmptyStructGen<int>?, false);
- Eval(4520, o is EmptyStructGen<int>?[], false);
- Eval(4521, o is NotEmptyStructGen<Guid>, false);
- Eval(4522, o is NotEmptyStructGen<Guid>[], false);
- Eval(4523, o is NotEmptyStructGen<Guid>?, false);
- Eval(4524, o is NotEmptyStructGen<Guid>?[], false);
- Eval(4525, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(4526, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(4527, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(4528, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(4517, o is EmptyStructGen<int>, false);
+// Eval(4518, o is EmptyStructGen<int>[], false);
+// Eval(4519, o is EmptyStructGen<int>?, false);
+// Eval(4520, o is EmptyStructGen<int>?[], false);
+// Eval(4521, o is NotEmptyStructGen<Guid>, false);
+// Eval(4522, o is NotEmptyStructGen<Guid>[], false);
+// Eval(4523, o is NotEmptyStructGen<Guid>?, false);
+// Eval(4524, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(4525, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(4526, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(4527, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(4528, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(4529, o is NestedStruct, false);
Eval(4530, o is NestedStruct[], false);
Eval(4531, o is NestedStruct?, false);
Eval(4532, o is NestedStruct?[], false);
- Eval(4533, o is NestedStructGen<Decimal>, false);
- Eval(4534, o is NestedStructGen<Decimal>[], false);
- Eval(4535, o is NestedStructGen<Decimal>?, false);
- Eval(4536, o is NestedStructGen<Decimal>?[], false);
+// Eval(4533, o is NestedStructGen<Decimal>, false);
+// Eval(4534, o is NestedStructGen<Decimal>[], false);
+// Eval(4535, o is NestedStructGen<Decimal>?, false);
+// Eval(4536, o is NestedStructGen<Decimal>?[], false);
Eval(4537, o is ExplicitFieldOffsetStruct, false);
Eval(4538, o is ExplicitFieldOffsetStruct[], false);
Eval(4539, o is ExplicitFieldOffsetStruct?, false);
@@ -4501,18 +4501,18 @@ internal class Program
Eval(4558, o is ImplementTwoInterface[], false);
Eval(4559, o is ImplementTwoInterface?, false);
Eval(4560, o is ImplementTwoInterface?[], false);
- Eval(4561, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(4562, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(4563, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(4564, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(4565, o is ImplementTwoInterfaceGen<int>, false);
- Eval(4566, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(4567, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(4568, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(4569, o is ImplementAllInterface<int>, false);
- Eval(4570, o is ImplementAllInterface<int>[], false);
- Eval(4571, o is ImplementAllInterface<int>?, false);
- Eval(4572, o is ImplementAllInterface<int>?[], false);
+// Eval(4561, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(4562, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(4563, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(4564, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(4565, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(4566, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(4567, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(4568, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(4569, o is ImplementAllInterface<int>, false);
+// Eval(4570, o is ImplementAllInterface<int>[], false);
+// Eval(4571, o is ImplementAllInterface<int>?, false);
+// Eval(4572, o is ImplementAllInterface<int>?[], false);
Eval(4573, o is IntE, false);
Eval(4574, o is IntE[], false);
Eval(4575, o is IntE?, false);
@@ -4611,38 +4611,38 @@ internal class Program
Eval(4668, o is IEmpty[], false);
Eval(4669, o is INotEmpty, false);
Eval(4670, o is INotEmpty[], false);
- Eval(4671, o is IEmptyGen<int>, false);
- Eval(4672, o is IEmptyGen<int>[], false);
- Eval(4673, o is INotEmptyGen<int>, false);
- Eval(4674, o is INotEmptyGen<int>[], false);
+// Eval(4671, o is IEmptyGen<int>, false);
+// Eval(4672, o is IEmptyGen<int>[], false);
+// Eval(4673, o is INotEmptyGen<int>, false);
+// Eval(4674, o is INotEmptyGen<int>[], false);
Eval(4675, o is SimpleDelegate, false);
Eval(4676, o is SimpleDelegate[], false);
- Eval(4677, o is GenericDelegate<int>, false);
- Eval(4678, o is GenericDelegate<int>[], false);
+// Eval(4677, o is GenericDelegate<int>, false);
+// Eval(4678, o is GenericDelegate<int>[], false);
Eval(4679, o is EmptyClass, false);
Eval(4680, o is EmptyClass[], false);
Eval(4681, o is NotEmptyClass, false);
Eval(4682, o is NotEmptyClass[], false);
- Eval(4683, o is EmptyClassGen<int>, false);
- Eval(4684, o is EmptyClassGen<int>[], false);
- Eval(4685, o is NotEmptyClassGen<Guid>, false);
- Eval(4686, o is NotEmptyClassGen<Guid>[], false);
- Eval(4687, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(4688, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(4683, o is EmptyClassGen<int>, false);
+// Eval(4684, o is EmptyClassGen<int>[], false);
+// Eval(4685, o is NotEmptyClassGen<Guid>, false);
+// Eval(4686, o is NotEmptyClassGen<Guid>[], false);
+// Eval(4687, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(4688, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(4689, o is NestedClass, false);
Eval(4690, o is NestedClass[], false);
- Eval(4691, o is NestedClassGen<Decimal>, false);
- Eval(4692, o is NestedClassGen<Decimal>[], false);
+// Eval(4691, o is NestedClassGen<Decimal>, false);
+// Eval(4692, o is NestedClassGen<Decimal>[], false);
Eval(4693, o is ImplementOneInterfaceC, false);
Eval(4694, o is ImplementOneInterfaceC[], false);
Eval(4695, o is ImplementTwoInterfaceC, false);
Eval(4696, o is ImplementTwoInterfaceC[], false);
- Eval(4697, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(4698, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(4699, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(4700, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(4701, o is ImplementAllInterfaceC<int>, false);
- Eval(4702, o is ImplementAllInterfaceC<int>[], false);
+// Eval(4697, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(4698, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(4699, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(4700, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(4701, o is ImplementAllInterfaceC<int>, false);
+// Eval(4702, o is ImplementAllInterfaceC<int>[], false);
Eval(4703, o is SealedClass, false);
Eval(4704, o is SealedClass[], false);
}
@@ -4660,26 +4660,26 @@ internal class Program
Eval(5886, o is NotEmptyStruct[], false);
Eval(5887, o is NotEmptyStruct?, false);
Eval(5888, o is NotEmptyStruct?[], false);
- Eval(5889, o is EmptyStructGen<int>, false);
- Eval(5890, o is EmptyStructGen<int>[], false);
- Eval(5891, o is EmptyStructGen<int>?, false);
- Eval(5892, o is EmptyStructGen<int>?[], false);
- Eval(5893, o is NotEmptyStructGen<Guid>, false);
- Eval(5894, o is NotEmptyStructGen<Guid>[], false);
- Eval(5895, o is NotEmptyStructGen<Guid>?, false);
- Eval(5896, o is NotEmptyStructGen<Guid>?[], false);
- Eval(5897, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(5898, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(5899, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(5900, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(5889, o is EmptyStructGen<int>, false);
+// Eval(5890, o is EmptyStructGen<int>[], false);
+// Eval(5891, o is EmptyStructGen<int>?, false);
+// Eval(5892, o is EmptyStructGen<int>?[], false);
+// Eval(5893, o is NotEmptyStructGen<Guid>, false);
+// Eval(5894, o is NotEmptyStructGen<Guid>[], false);
+// Eval(5895, o is NotEmptyStructGen<Guid>?, false);
+// Eval(5896, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(5897, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(5898, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(5899, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(5900, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(5901, o is NestedStruct, false);
Eval(5902, o is NestedStruct[], false);
Eval(5903, o is NestedStruct?, false);
Eval(5904, o is NestedStruct?[], false);
- Eval(5905, o is NestedStructGen<Decimal>, false);
- Eval(5906, o is NestedStructGen<Decimal>[], false);
- Eval(5907, o is NestedStructGen<Decimal>?, false);
- Eval(5908, o is NestedStructGen<Decimal>?[], false);
+// Eval(5905, o is NestedStructGen<Decimal>, false);
+// Eval(5906, o is NestedStructGen<Decimal>[], false);
+// Eval(5907, o is NestedStructGen<Decimal>?, false);
+// Eval(5908, o is NestedStructGen<Decimal>?[], false);
Eval(5909, o is ExplicitFieldOffsetStruct, false);
Eval(5910, o is ExplicitFieldOffsetStruct[], false);
Eval(5911, o is ExplicitFieldOffsetStruct?, false);
@@ -4696,18 +4696,18 @@ internal class Program
Eval(5930, o is ImplementTwoInterface[], false);
Eval(5931, o is ImplementTwoInterface?, false);
Eval(5932, o is ImplementTwoInterface?[], false);
- Eval(5933, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(5934, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(5935, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(5936, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(5937, o is ImplementTwoInterfaceGen<int>, false);
- Eval(5938, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(5939, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(5940, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(5941, o is ImplementAllInterface<int>, false);
- Eval(5942, o is ImplementAllInterface<int>[], false);
- Eval(5943, o is ImplementAllInterface<int>?, false);
- Eval(5944, o is ImplementAllInterface<int>?[], false);
+// Eval(5933, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(5934, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(5935, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(5936, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(5937, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(5938, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(5939, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(5940, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(5941, o is ImplementAllInterface<int>, false);
+// Eval(5942, o is ImplementAllInterface<int>[], false);
+// Eval(5943, o is ImplementAllInterface<int>?, false);
+// Eval(5944, o is ImplementAllInterface<int>?[], false);
Eval(5945, o is IntE, false);
Eval(5946, o is IntE[], false);
Eval(5947, o is IntE?, false);
@@ -4806,38 +4806,38 @@ internal class Program
Eval(6040, o is IEmpty[], false);
Eval(6041, o is INotEmpty, false);
Eval(6042, o is INotEmpty[], false);
- Eval(6043, o is IEmptyGen<int>, false);
- Eval(6044, o is IEmptyGen<int>[], false);
- Eval(6045, o is INotEmptyGen<int>, false);
- Eval(6046, o is INotEmptyGen<int>[], false);
+// Eval(6043, o is IEmptyGen<int>, false);
+// Eval(6044, o is IEmptyGen<int>[], false);
+// Eval(6045, o is INotEmptyGen<int>, false);
+// Eval(6046, o is INotEmptyGen<int>[], false);
Eval(6047, o is SimpleDelegate, false);
Eval(6048, o is SimpleDelegate[], false);
- Eval(6049, o is GenericDelegate<int>, false);
- Eval(6050, o is GenericDelegate<int>[], false);
+// Eval(6049, o is GenericDelegate<int>, false);
+// Eval(6050, o is GenericDelegate<int>[], false);
Eval(6051, o is EmptyClass, false);
Eval(6052, o is EmptyClass[], false);
Eval(6053, o is NotEmptyClass, false);
Eval(6054, o is NotEmptyClass[], false);
- Eval(6055, o is EmptyClassGen<int>, false);
- Eval(6056, o is EmptyClassGen<int>[], false);
- Eval(6057, o is NotEmptyClassGen<Guid>, false);
- Eval(6058, o is NotEmptyClassGen<Guid>[], false);
- Eval(6059, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6060, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6055, o is EmptyClassGen<int>, false);
+// Eval(6056, o is EmptyClassGen<int>[], false);
+// Eval(6057, o is NotEmptyClassGen<Guid>, false);
+// Eval(6058, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6059, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6060, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6061, o is NestedClass, false);
Eval(6062, o is NestedClass[], false);
- Eval(6063, o is NestedClassGen<Decimal>, false);
- Eval(6064, o is NestedClassGen<Decimal>[], false);
+// Eval(6063, o is NestedClassGen<Decimal>, false);
+// Eval(6064, o is NestedClassGen<Decimal>[], false);
Eval(6065, o is ImplementOneInterfaceC, false);
Eval(6066, o is ImplementOneInterfaceC[], false);
Eval(6067, o is ImplementTwoInterfaceC, false);
Eval(6068, o is ImplementTwoInterfaceC[], false);
- Eval(6069, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6070, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6071, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6072, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6073, o is ImplementAllInterfaceC<int>, false);
- Eval(6074, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6069, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6070, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6071, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6072, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6073, o is ImplementAllInterfaceC<int>, false);
+// Eval(6074, o is ImplementAllInterfaceC<int>[], false);
Eval(6075, o is SealedClass, false);
Eval(6076, o is SealedClass[], false);
}
@@ -4852,26 +4852,26 @@ internal class Program
Eval(6082, o is NotEmptyStruct[], false);
Eval(6083, o is NotEmptyStruct?, false);
Eval(6084, o is NotEmptyStruct?[], false);
- Eval(6085, o is EmptyStructGen<int>, false);
- Eval(6086, o is EmptyStructGen<int>[], false);
- Eval(6087, o is EmptyStructGen<int>?, false);
- Eval(6088, o is EmptyStructGen<int>?[], false);
- Eval(6089, o is NotEmptyStructGen<Guid>, false);
- Eval(6090, o is NotEmptyStructGen<Guid>[], false);
- Eval(6091, o is NotEmptyStructGen<Guid>?, false);
- Eval(6092, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6093, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6094, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6095, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6096, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6085, o is EmptyStructGen<int>, false);
+// Eval(6086, o is EmptyStructGen<int>[], false);
+// Eval(6087, o is EmptyStructGen<int>?, false);
+// Eval(6088, o is EmptyStructGen<int>?[], false);
+// Eval(6089, o is NotEmptyStructGen<Guid>, false);
+// Eval(6090, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6091, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6092, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6093, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6094, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6095, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6096, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6097, o is NestedStruct, false);
Eval(6098, o is NestedStruct[], false);
Eval(6099, o is NestedStruct?, false);
Eval(6100, o is NestedStruct?[], false);
- Eval(6101, o is NestedStructGen<Decimal>, false);
- Eval(6102, o is NestedStructGen<Decimal>[], false);
- Eval(6103, o is NestedStructGen<Decimal>?, false);
- Eval(6104, o is NestedStructGen<Decimal>?[], false);
+// Eval(6101, o is NestedStructGen<Decimal>, false);
+// Eval(6102, o is NestedStructGen<Decimal>[], false);
+// Eval(6103, o is NestedStructGen<Decimal>?, false);
+// Eval(6104, o is NestedStructGen<Decimal>?[], false);
Eval(6105, o is ExplicitFieldOffsetStruct, false);
Eval(6106, o is ExplicitFieldOffsetStruct[], false);
Eval(6107, o is ExplicitFieldOffsetStruct?, false);
@@ -4888,18 +4888,18 @@ internal class Program
Eval(6126, o is ImplementTwoInterface[], false);
Eval(6127, o is ImplementTwoInterface?, false);
Eval(6128, o is ImplementTwoInterface?[], false);
- Eval(6129, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6130, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6131, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6132, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6133, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6134, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6135, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6136, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6137, o is ImplementAllInterface<int>, false);
- Eval(6138, o is ImplementAllInterface<int>[], false);
- Eval(6139, o is ImplementAllInterface<int>?, false);
- Eval(6140, o is ImplementAllInterface<int>?[], false);
+// Eval(6129, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6130, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6131, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6132, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6133, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6134, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6135, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6136, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6137, o is ImplementAllInterface<int>, false);
+// Eval(6138, o is ImplementAllInterface<int>[], false);
+// Eval(6139, o is ImplementAllInterface<int>?, false);
+// Eval(6140, o is ImplementAllInterface<int>?[], false);
Eval(6141, o is IntE, false);
Eval(6142, o is IntE[], false);
Eval(6143, o is IntE?, false);
@@ -4998,38 +4998,38 @@ internal class Program
Eval(6236, o is IEmpty[], false);
Eval(6237, o is INotEmpty, false);
Eval(6238, o is INotEmpty[], false);
- Eval(6239, o is IEmptyGen<int>, false);
- Eval(6240, o is IEmptyGen<int>[], false);
- Eval(6241, o is INotEmptyGen<int>, false);
- Eval(6242, o is INotEmptyGen<int>[], false);
+// Eval(6239, o is IEmptyGen<int>, false);
+// Eval(6240, o is IEmptyGen<int>[], false);
+// Eval(6241, o is INotEmptyGen<int>, false);
+// Eval(6242, o is INotEmptyGen<int>[], false);
Eval(6243, o is SimpleDelegate, false);
Eval(6244, o is SimpleDelegate[], false);
- Eval(6245, o is GenericDelegate<int>, false);
- Eval(6246, o is GenericDelegate<int>[], false);
+// Eval(6245, o is GenericDelegate<int>, false);
+// Eval(6246, o is GenericDelegate<int>[], false);
Eval(6247, o is EmptyClass, false);
Eval(6248, o is EmptyClass[], false);
Eval(6249, o is NotEmptyClass, false);
Eval(6250, o is NotEmptyClass[], false);
- Eval(6251, o is EmptyClassGen<int>, false);
- Eval(6252, o is EmptyClassGen<int>[], false);
- Eval(6253, o is NotEmptyClassGen<Guid>, false);
- Eval(6254, o is NotEmptyClassGen<Guid>[], false);
- Eval(6255, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6256, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6251, o is EmptyClassGen<int>, false);
+// Eval(6252, o is EmptyClassGen<int>[], false);
+// Eval(6253, o is NotEmptyClassGen<Guid>, false);
+// Eval(6254, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6255, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6256, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6257, o is NestedClass, false);
Eval(6258, o is NestedClass[], false);
- Eval(6259, o is NestedClassGen<Decimal>, false);
- Eval(6260, o is NestedClassGen<Decimal>[], false);
+// Eval(6259, o is NestedClassGen<Decimal>, false);
+// Eval(6260, o is NestedClassGen<Decimal>[], false);
Eval(6261, o is ImplementOneInterfaceC, false);
Eval(6262, o is ImplementOneInterfaceC[], false);
Eval(6263, o is ImplementTwoInterfaceC, false);
Eval(6264, o is ImplementTwoInterfaceC[], false);
- Eval(6265, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6266, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6267, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6268, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6269, o is ImplementAllInterfaceC<int>, false);
- Eval(6270, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6265, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6266, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6267, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6268, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6269, o is ImplementAllInterfaceC<int>, false);
+// Eval(6270, o is ImplementAllInterfaceC<int>[], false);
Eval(6271, o is SealedClass, false);
Eval(6272, o is SealedClass[], false);
}
@@ -5044,26 +5044,26 @@ internal class Program
Eval(6278, o is NotEmptyStruct[], false);
Eval(6279, o is NotEmptyStruct?, false);
Eval(6280, o is NotEmptyStruct?[], false);
- Eval(6281, o is EmptyStructGen<int>, false);
- Eval(6282, o is EmptyStructGen<int>[], false);
- Eval(6283, o is EmptyStructGen<int>?, false);
- Eval(6284, o is EmptyStructGen<int>?[], false);
- Eval(6285, o is NotEmptyStructGen<Guid>, false);
- Eval(6286, o is NotEmptyStructGen<Guid>[], false);
- Eval(6287, o is NotEmptyStructGen<Guid>?, false);
- Eval(6288, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6289, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6290, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6291, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6292, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6281, o is EmptyStructGen<int>, false);
+// Eval(6282, o is EmptyStructGen<int>[], false);
+// Eval(6283, o is EmptyStructGen<int>?, false);
+// Eval(6284, o is EmptyStructGen<int>?[], false);
+// Eval(6285, o is NotEmptyStructGen<Guid>, false);
+// Eval(6286, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6287, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6288, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6289, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6290, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6291, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6292, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6293, o is NestedStruct, false);
Eval(6294, o is NestedStruct[], false);
Eval(6295, o is NestedStruct?, false);
Eval(6296, o is NestedStruct?[], false);
- Eval(6297, o is NestedStructGen<Decimal>, false);
- Eval(6298, o is NestedStructGen<Decimal>[], false);
- Eval(6299, o is NestedStructGen<Decimal>?, false);
- Eval(6300, o is NestedStructGen<Decimal>?[], false);
+// Eval(6297, o is NestedStructGen<Decimal>, false);
+// Eval(6298, o is NestedStructGen<Decimal>[], false);
+// Eval(6299, o is NestedStructGen<Decimal>?, false);
+// Eval(6300, o is NestedStructGen<Decimal>?[], false);
Eval(6301, o is ExplicitFieldOffsetStruct, false);
Eval(6302, o is ExplicitFieldOffsetStruct[], false);
Eval(6303, o is ExplicitFieldOffsetStruct?, false);
@@ -5080,18 +5080,18 @@ internal class Program
Eval(6322, o is ImplementTwoInterface[], false);
Eval(6323, o is ImplementTwoInterface?, false);
Eval(6324, o is ImplementTwoInterface?[], false);
- Eval(6325, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6326, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6327, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6328, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6329, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6330, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6331, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6332, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6333, o is ImplementAllInterface<int>, false);
- Eval(6334, o is ImplementAllInterface<int>[], false);
- Eval(6335, o is ImplementAllInterface<int>?, false);
- Eval(6336, o is ImplementAllInterface<int>?[], false);
+// Eval(6325, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6326, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6327, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6328, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6329, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6330, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6331, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6332, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6333, o is ImplementAllInterface<int>, false);
+// Eval(6334, o is ImplementAllInterface<int>[], false);
+// Eval(6335, o is ImplementAllInterface<int>?, false);
+// Eval(6336, o is ImplementAllInterface<int>?[], false);
Eval(6337, o is IntE, false);
Eval(6338, o is IntE[], false);
Eval(6339, o is IntE?, false);
@@ -5190,38 +5190,38 @@ internal class Program
Eval(6432, o is IEmpty[], false);
Eval(6433, o is INotEmpty, false);
Eval(6434, o is INotEmpty[], false);
- Eval(6435, o is IEmptyGen<int>, false);
- Eval(6436, o is IEmptyGen<int>[], false);
- Eval(6437, o is INotEmptyGen<int>, false);
- Eval(6438, o is INotEmptyGen<int>[], false);
+// Eval(6435, o is IEmptyGen<int>, false);
+// Eval(6436, o is IEmptyGen<int>[], false);
+// Eval(6437, o is INotEmptyGen<int>, false);
+// Eval(6438, o is INotEmptyGen<int>[], false);
Eval(6439, o is SimpleDelegate, false);
Eval(6440, o is SimpleDelegate[], false);
- Eval(6441, o is GenericDelegate<int>, false);
- Eval(6442, o is GenericDelegate<int>[], false);
+// Eval(6441, o is GenericDelegate<int>, false);
+// Eval(6442, o is GenericDelegate<int>[], false);
Eval(6443, o is EmptyClass, false);
Eval(6444, o is EmptyClass[], false);
Eval(6445, o is NotEmptyClass, false);
Eval(6446, o is NotEmptyClass[], false);
- Eval(6447, o is EmptyClassGen<int>, false);
- Eval(6448, o is EmptyClassGen<int>[], false);
- Eval(6449, o is NotEmptyClassGen<Guid>, false);
- Eval(6450, o is NotEmptyClassGen<Guid>[], false);
- Eval(6451, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6452, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6447, o is EmptyClassGen<int>, false);
+// Eval(6448, o is EmptyClassGen<int>[], false);
+// Eval(6449, o is NotEmptyClassGen<Guid>, false);
+// Eval(6450, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6451, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6452, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6453, o is NestedClass, false);
Eval(6454, o is NestedClass[], false);
- Eval(6455, o is NestedClassGen<Decimal>, false);
- Eval(6456, o is NestedClassGen<Decimal>[], false);
+// Eval(6455, o is NestedClassGen<Decimal>, false);
+// Eval(6456, o is NestedClassGen<Decimal>[], false);
Eval(6457, o is ImplementOneInterfaceC, false);
Eval(6458, o is ImplementOneInterfaceC[], false);
Eval(6459, o is ImplementTwoInterfaceC, false);
Eval(6460, o is ImplementTwoInterfaceC[], false);
- Eval(6461, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6462, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6463, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6464, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6465, o is ImplementAllInterfaceC<int>, false);
- Eval(6466, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6461, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6462, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6463, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6464, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6465, o is ImplementAllInterfaceC<int>, false);
+// Eval(6466, o is ImplementAllInterfaceC<int>[], false);
Eval(6467, o is SealedClass, false);
Eval(6468, o is SealedClass[], false);
}
@@ -5239,26 +5239,26 @@ internal class Program
Eval(6474, o is NotEmptyStruct[], false);
Eval(6475, o is NotEmptyStruct?, false);
Eval(6476, o is NotEmptyStruct?[], false);
- Eval(6477, o is EmptyStructGen<int>, false);
- Eval(6478, o is EmptyStructGen<int>[], false);
- Eval(6479, o is EmptyStructGen<int>?, false);
- Eval(6480, o is EmptyStructGen<int>?[], false);
- Eval(6481, o is NotEmptyStructGen<Guid>, false);
- Eval(6482, o is NotEmptyStructGen<Guid>[], false);
- Eval(6483, o is NotEmptyStructGen<Guid>?, false);
- Eval(6484, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6485, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6486, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6487, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6488, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6477, o is EmptyStructGen<int>, false);
+// Eval(6478, o is EmptyStructGen<int>[], false);
+// Eval(6479, o is EmptyStructGen<int>?, false);
+// Eval(6480, o is EmptyStructGen<int>?[], false);
+// Eval(6481, o is NotEmptyStructGen<Guid>, false);
+// Eval(6482, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6483, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6484, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6485, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6486, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6487, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6488, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6489, o is NestedStruct, false);
Eval(6490, o is NestedStruct[], false);
Eval(6491, o is NestedStruct?, false);
Eval(6492, o is NestedStruct?[], false);
- Eval(6493, o is NestedStructGen<Decimal>, false);
- Eval(6494, o is NestedStructGen<Decimal>[], false);
- Eval(6495, o is NestedStructGen<Decimal>?, false);
- Eval(6496, o is NestedStructGen<Decimal>?[], false);
+// Eval(6493, o is NestedStructGen<Decimal>, false);
+// Eval(6494, o is NestedStructGen<Decimal>[], false);
+// Eval(6495, o is NestedStructGen<Decimal>?, false);
+// Eval(6496, o is NestedStructGen<Decimal>?[], false);
Eval(6497, o is ExplicitFieldOffsetStruct, false);
Eval(6498, o is ExplicitFieldOffsetStruct[], false);
Eval(6499, o is ExplicitFieldOffsetStruct?, false);
@@ -5275,18 +5275,18 @@ internal class Program
Eval(6518, o is ImplementTwoInterface[], false);
Eval(6519, o is ImplementTwoInterface?, false);
Eval(6520, o is ImplementTwoInterface?[], false);
- Eval(6521, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6522, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6523, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6524, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6525, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6526, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6527, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6528, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6529, o is ImplementAllInterface<int>, false);
- Eval(6530, o is ImplementAllInterface<int>[], false);
- Eval(6531, o is ImplementAllInterface<int>?, false);
- Eval(6532, o is ImplementAllInterface<int>?[], false);
+// Eval(6521, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6522, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6523, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6524, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6525, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6526, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6527, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6528, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6529, o is ImplementAllInterface<int>, false);
+// Eval(6530, o is ImplementAllInterface<int>[], false);
+// Eval(6531, o is ImplementAllInterface<int>?, false);
+// Eval(6532, o is ImplementAllInterface<int>?[], false);
Eval(6533, o is IntE, false);
Eval(6534, o is IntE[], false);
Eval(6535, o is IntE?, false);
@@ -5385,38 +5385,38 @@ internal class Program
Eval(6628, o is IEmpty[], false);
Eval(6629, o is INotEmpty, false);
Eval(6630, o is INotEmpty[], false);
- Eval(6631, o is IEmptyGen<int>, false);
- Eval(6632, o is IEmptyGen<int>[], false);
- Eval(6633, o is INotEmptyGen<int>, false);
- Eval(6634, o is INotEmptyGen<int>[], false);
+// Eval(6631, o is IEmptyGen<int>, false);
+// Eval(6632, o is IEmptyGen<int>[], false);
+// Eval(6633, o is INotEmptyGen<int>, false);
+// Eval(6634, o is INotEmptyGen<int>[], false);
Eval(6635, o is SimpleDelegate, false);
Eval(6636, o is SimpleDelegate[], false);
- Eval(6637, o is GenericDelegate<int>, false);
- Eval(6638, o is GenericDelegate<int>[], false);
+// Eval(6637, o is GenericDelegate<int>, false);
+// Eval(6638, o is GenericDelegate<int>[], false);
Eval(6639, o is EmptyClass, false);
Eval(6640, o is EmptyClass[], false);
Eval(6641, o is NotEmptyClass, false);
Eval(6642, o is NotEmptyClass[], false);
- Eval(6643, o is EmptyClassGen<int>, false);
- Eval(6644, o is EmptyClassGen<int>[], false);
- Eval(6645, o is NotEmptyClassGen<Guid>, false);
- Eval(6646, o is NotEmptyClassGen<Guid>[], false);
- Eval(6647, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6648, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6643, o is EmptyClassGen<int>, false);
+// Eval(6644, o is EmptyClassGen<int>[], false);
+// Eval(6645, o is NotEmptyClassGen<Guid>, false);
+// Eval(6646, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6647, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6648, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6649, o is NestedClass, false);
Eval(6650, o is NestedClass[], false);
- Eval(6651, o is NestedClassGen<Decimal>, false);
- Eval(6652, o is NestedClassGen<Decimal>[], false);
+// Eval(6651, o is NestedClassGen<Decimal>, false);
+// Eval(6652, o is NestedClassGen<Decimal>[], false);
Eval(6653, o is ImplementOneInterfaceC, false);
Eval(6654, o is ImplementOneInterfaceC[], false);
Eval(6655, o is ImplementTwoInterfaceC, false);
Eval(6656, o is ImplementTwoInterfaceC[], false);
- Eval(6657, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6658, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6659, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6660, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6661, o is ImplementAllInterfaceC<int>, false);
- Eval(6662, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6657, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6658, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6659, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6660, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6661, o is ImplementAllInterfaceC<int>, false);
+// Eval(6662, o is ImplementAllInterfaceC<int>[], false);
Eval(6663, o is SealedClass, false);
Eval(6664, o is SealedClass[], false);
}
@@ -5431,26 +5431,26 @@ internal class Program
Eval(6670, o is NotEmptyStruct[], false);
Eval(6671, o is NotEmptyStruct?, false);
Eval(6672, o is NotEmptyStruct?[], false);
- Eval(6673, o is EmptyStructGen<int>, false);
- Eval(6674, o is EmptyStructGen<int>[], false);
- Eval(6675, o is EmptyStructGen<int>?, false);
- Eval(6676, o is EmptyStructGen<int>?[], false);
- Eval(6677, o is NotEmptyStructGen<Guid>, false);
- Eval(6678, o is NotEmptyStructGen<Guid>[], false);
- Eval(6679, o is NotEmptyStructGen<Guid>?, false);
- Eval(6680, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6681, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6682, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6683, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6684, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6673, o is EmptyStructGen<int>, false);
+// Eval(6674, o is EmptyStructGen<int>[], false);
+// Eval(6675, o is EmptyStructGen<int>?, false);
+// Eval(6676, o is EmptyStructGen<int>?[], false);
+// Eval(6677, o is NotEmptyStructGen<Guid>, false);
+// Eval(6678, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6679, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6680, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6681, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6682, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6683, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6684, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6685, o is NestedStruct, false);
Eval(6686, o is NestedStruct[], false);
Eval(6687, o is NestedStruct?, false);
Eval(6688, o is NestedStruct?[], false);
- Eval(6689, o is NestedStructGen<Decimal>, false);
- Eval(6690, o is NestedStructGen<Decimal>[], false);
- Eval(6691, o is NestedStructGen<Decimal>?, false);
- Eval(6692, o is NestedStructGen<Decimal>?[], false);
+// Eval(6689, o is NestedStructGen<Decimal>, false);
+// Eval(6690, o is NestedStructGen<Decimal>[], false);
+// Eval(6691, o is NestedStructGen<Decimal>?, false);
+// Eval(6692, o is NestedStructGen<Decimal>?[], false);
Eval(6693, o is ExplicitFieldOffsetStruct, false);
Eval(6694, o is ExplicitFieldOffsetStruct[], false);
Eval(6695, o is ExplicitFieldOffsetStruct?, false);
@@ -5467,18 +5467,18 @@ internal class Program
Eval(6714, o is ImplementTwoInterface[], false);
Eval(6715, o is ImplementTwoInterface?, false);
Eval(6716, o is ImplementTwoInterface?[], false);
- Eval(6717, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6718, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6719, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6720, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6721, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6722, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6723, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6724, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6725, o is ImplementAllInterface<int>, false);
- Eval(6726, o is ImplementAllInterface<int>[], false);
- Eval(6727, o is ImplementAllInterface<int>?, false);
- Eval(6728, o is ImplementAllInterface<int>?[], false);
+// Eval(6717, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6718, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6719, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6720, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6721, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6722, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6723, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6724, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6725, o is ImplementAllInterface<int>, false);
+// Eval(6726, o is ImplementAllInterface<int>[], false);
+// Eval(6727, o is ImplementAllInterface<int>?, false);
+// Eval(6728, o is ImplementAllInterface<int>?[], false);
Eval(6729, o is IntE, false);
Eval(6730, o is IntE[], false);
Eval(6731, o is IntE?, false);
@@ -5577,38 +5577,38 @@ internal class Program
Eval(6824, o is IEmpty[], false);
Eval(6825, o is INotEmpty, false);
Eval(6826, o is INotEmpty[], false);
- Eval(6827, o is IEmptyGen<int>, false);
- Eval(6828, o is IEmptyGen<int>[], false);
- Eval(6829, o is INotEmptyGen<int>, false);
- Eval(6830, o is INotEmptyGen<int>[], false);
+// Eval(6827, o is IEmptyGen<int>, false);
+// Eval(6828, o is IEmptyGen<int>[], false);
+// Eval(6829, o is INotEmptyGen<int>, false);
+// Eval(6830, o is INotEmptyGen<int>[], false);
Eval(6831, o is SimpleDelegate, false);
Eval(6832, o is SimpleDelegate[], false);
- Eval(6833, o is GenericDelegate<int>, false);
- Eval(6834, o is GenericDelegate<int>[], false);
+// Eval(6833, o is GenericDelegate<int>, false);
+// Eval(6834, o is GenericDelegate<int>[], false);
Eval(6835, o is EmptyClass, false);
Eval(6836, o is EmptyClass[], false);
Eval(6837, o is NotEmptyClass, false);
Eval(6838, o is NotEmptyClass[], false);
- Eval(6839, o is EmptyClassGen<int>, false);
- Eval(6840, o is EmptyClassGen<int>[], false);
- Eval(6841, o is NotEmptyClassGen<Guid>, false);
- Eval(6842, o is NotEmptyClassGen<Guid>[], false);
- Eval(6843, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(6844, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(6839, o is EmptyClassGen<int>, false);
+// Eval(6840, o is EmptyClassGen<int>[], false);
+// Eval(6841, o is NotEmptyClassGen<Guid>, false);
+// Eval(6842, o is NotEmptyClassGen<Guid>[], false);
+// Eval(6843, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(6844, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(6845, o is NestedClass, false);
Eval(6846, o is NestedClass[], false);
- Eval(6847, o is NestedClassGen<Decimal>, false);
- Eval(6848, o is NestedClassGen<Decimal>[], false);
+// Eval(6847, o is NestedClassGen<Decimal>, false);
+// Eval(6848, o is NestedClassGen<Decimal>[], false);
Eval(6849, o is ImplementOneInterfaceC, false);
Eval(6850, o is ImplementOneInterfaceC[], false);
Eval(6851, o is ImplementTwoInterfaceC, false);
Eval(6852, o is ImplementTwoInterfaceC[], false);
- Eval(6853, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(6854, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(6855, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(6856, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(6857, o is ImplementAllInterfaceC<int>, false);
- Eval(6858, o is ImplementAllInterfaceC<int>[], false);
+// Eval(6853, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(6854, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(6855, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(6856, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(6857, o is ImplementAllInterfaceC<int>, false);
+// Eval(6858, o is ImplementAllInterfaceC<int>[], false);
Eval(6859, o is SealedClass, false);
Eval(6860, o is SealedClass[], false);
}
@@ -5623,26 +5623,26 @@ internal class Program
Eval(6866, o is NotEmptyStruct[], false);
Eval(6867, o is NotEmptyStruct?, false);
Eval(6868, o is NotEmptyStruct?[], false);
- Eval(6869, o is EmptyStructGen<int>, false);
- Eval(6870, o is EmptyStructGen<int>[], false);
- Eval(6871, o is EmptyStructGen<int>?, false);
- Eval(6872, o is EmptyStructGen<int>?[], false);
- Eval(6873, o is NotEmptyStructGen<Guid>, false);
- Eval(6874, o is NotEmptyStructGen<Guid>[], false);
- Eval(6875, o is NotEmptyStructGen<Guid>?, false);
- Eval(6876, o is NotEmptyStructGen<Guid>?[], false);
- Eval(6877, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(6878, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(6879, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(6880, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(6869, o is EmptyStructGen<int>, false);
+// Eval(6870, o is EmptyStructGen<int>[], false);
+// Eval(6871, o is EmptyStructGen<int>?, false);
+// Eval(6872, o is EmptyStructGen<int>?[], false);
+// Eval(6873, o is NotEmptyStructGen<Guid>, false);
+// Eval(6874, o is NotEmptyStructGen<Guid>[], false);
+// Eval(6875, o is NotEmptyStructGen<Guid>?, false);
+// Eval(6876, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(6877, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(6878, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(6879, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(6880, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(6881, o is NestedStruct, false);
Eval(6882, o is NestedStruct[], false);
Eval(6883, o is NestedStruct?, false);
Eval(6884, o is NestedStruct?[], false);
- Eval(6885, o is NestedStructGen<Decimal>, false);
- Eval(6886, o is NestedStructGen<Decimal>[], false);
- Eval(6887, o is NestedStructGen<Decimal>?, false);
- Eval(6888, o is NestedStructGen<Decimal>?[], false);
+// Eval(6885, o is NestedStructGen<Decimal>, false);
+// Eval(6886, o is NestedStructGen<Decimal>[], false);
+// Eval(6887, o is NestedStructGen<Decimal>?, false);
+// Eval(6888, o is NestedStructGen<Decimal>?[], false);
Eval(6889, o is ExplicitFieldOffsetStruct, false);
Eval(6890, o is ExplicitFieldOffsetStruct[], false);
Eval(6891, o is ExplicitFieldOffsetStruct?, false);
@@ -5659,18 +5659,18 @@ internal class Program
Eval(6910, o is ImplementTwoInterface[], false);
Eval(6911, o is ImplementTwoInterface?, false);
Eval(6912, o is ImplementTwoInterface?[], false);
- Eval(6913, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(6914, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(6915, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(6916, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(6917, o is ImplementTwoInterfaceGen<int>, false);
- Eval(6918, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(6919, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(6920, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(6921, o is ImplementAllInterface<int>, false);
- Eval(6922, o is ImplementAllInterface<int>[], false);
- Eval(6923, o is ImplementAllInterface<int>?, false);
- Eval(6924, o is ImplementAllInterface<int>?[], false);
+// Eval(6913, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(6914, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(6915, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(6916, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(6917, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(6918, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(6919, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(6920, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(6921, o is ImplementAllInterface<int>, false);
+// Eval(6922, o is ImplementAllInterface<int>[], false);
+// Eval(6923, o is ImplementAllInterface<int>?, false);
+// Eval(6924, o is ImplementAllInterface<int>?[], false);
Eval(6925, o is IntE, false);
Eval(6926, o is IntE[], false);
Eval(6927, o is IntE?, false);
@@ -5769,38 +5769,38 @@ internal class Program
Eval(7020, o is IEmpty[], false);
Eval(7021, o is INotEmpty, false);
Eval(7022, o is INotEmpty[], false);
- Eval(7023, o is IEmptyGen<int>, false);
- Eval(7024, o is IEmptyGen<int>[], false);
- Eval(7025, o is INotEmptyGen<int>, false);
- Eval(7026, o is INotEmptyGen<int>[], false);
+// Eval(7023, o is IEmptyGen<int>, false);
+// Eval(7024, o is IEmptyGen<int>[], false);
+// Eval(7025, o is INotEmptyGen<int>, false);
+// Eval(7026, o is INotEmptyGen<int>[], false);
Eval(7027, o is SimpleDelegate, false);
Eval(7028, o is SimpleDelegate[], false);
- Eval(7029, o is GenericDelegate<int>, false);
- Eval(7030, o is GenericDelegate<int>[], false);
+// Eval(7029, o is GenericDelegate<int>, false);
+// Eval(7030, o is GenericDelegate<int>[], false);
Eval(7031, o is EmptyClass, false);
Eval(7032, o is EmptyClass[], false);
Eval(7033, o is NotEmptyClass, false);
Eval(7034, o is NotEmptyClass[], false);
- Eval(7035, o is EmptyClassGen<int>, false);
- Eval(7036, o is EmptyClassGen<int>[], false);
- Eval(7037, o is NotEmptyClassGen<Guid>, false);
- Eval(7038, o is NotEmptyClassGen<Guid>[], false);
- Eval(7039, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7040, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7035, o is EmptyClassGen<int>, false);
+// Eval(7036, o is EmptyClassGen<int>[], false);
+// Eval(7037, o is NotEmptyClassGen<Guid>, false);
+// Eval(7038, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7039, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7040, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7041, o is NestedClass, false);
Eval(7042, o is NestedClass[], false);
- Eval(7043, o is NestedClassGen<Decimal>, false);
- Eval(7044, o is NestedClassGen<Decimal>[], false);
+// Eval(7043, o is NestedClassGen<Decimal>, false);
+// Eval(7044, o is NestedClassGen<Decimal>[], false);
Eval(7045, o is ImplementOneInterfaceC, false);
Eval(7046, o is ImplementOneInterfaceC[], false);
Eval(7047, o is ImplementTwoInterfaceC, false);
Eval(7048, o is ImplementTwoInterfaceC[], false);
- Eval(7049, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7050, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7051, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7052, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7053, o is ImplementAllInterfaceC<int>, false);
- Eval(7054, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7049, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7050, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7051, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7052, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7053, o is ImplementAllInterfaceC<int>, false);
+// Eval(7054, o is ImplementAllInterfaceC<int>[], false);
Eval(7055, o is SealedClass, false);
Eval(7056, o is SealedClass[], false);
}
@@ -5818,26 +5818,26 @@ internal class Program
Eval(7062, o is NotEmptyStruct[], false);
Eval(7063, o is NotEmptyStruct?, false);
Eval(7064, o is NotEmptyStruct?[], false);
- Eval(7065, o is EmptyStructGen<int>, false);
- Eval(7066, o is EmptyStructGen<int>[], false);
- Eval(7067, o is EmptyStructGen<int>?, false);
- Eval(7068, o is EmptyStructGen<int>?[], false);
- Eval(7069, o is NotEmptyStructGen<Guid>, false);
- Eval(7070, o is NotEmptyStructGen<Guid>[], false);
- Eval(7071, o is NotEmptyStructGen<Guid>?, false);
- Eval(7072, o is NotEmptyStructGen<Guid>?[], false);
- Eval(7073, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7074, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7075, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7076, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7065, o is EmptyStructGen<int>, false);
+// Eval(7066, o is EmptyStructGen<int>[], false);
+// Eval(7067, o is EmptyStructGen<int>?, false);
+// Eval(7068, o is EmptyStructGen<int>?[], false);
+// Eval(7069, o is NotEmptyStructGen<Guid>, false);
+// Eval(7070, o is NotEmptyStructGen<Guid>[], false);
+// Eval(7071, o is NotEmptyStructGen<Guid>?, false);
+// Eval(7072, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(7073, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7074, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7075, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7076, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7077, o is NestedStruct, false);
Eval(7078, o is NestedStruct[], false);
Eval(7079, o is NestedStruct?, false);
Eval(7080, o is NestedStruct?[], false);
- Eval(7081, o is NestedStructGen<Decimal>, false);
- Eval(7082, o is NestedStructGen<Decimal>[], false);
- Eval(7083, o is NestedStructGen<Decimal>?, false);
- Eval(7084, o is NestedStructGen<Decimal>?[], false);
+// Eval(7081, o is NestedStructGen<Decimal>, false);
+// Eval(7082, o is NestedStructGen<Decimal>[], false);
+// Eval(7083, o is NestedStructGen<Decimal>?, false);
+// Eval(7084, o is NestedStructGen<Decimal>?[], false);
Eval(7085, o is ExplicitFieldOffsetStruct, false);
Eval(7086, o is ExplicitFieldOffsetStruct[], false);
Eval(7087, o is ExplicitFieldOffsetStruct?, false);
@@ -5854,18 +5854,18 @@ internal class Program
Eval(7106, o is ImplementTwoInterface[], false);
Eval(7107, o is ImplementTwoInterface?, true);
Eval(7108, o is ImplementTwoInterface?[], false);
- Eval(7109, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7110, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7111, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7112, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7113, o is ImplementTwoInterfaceGen<int>, false);
- Eval(7114, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(7115, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(7116, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7117, o is ImplementAllInterface<int>, false);
- Eval(7118, o is ImplementAllInterface<int>[], false);
- Eval(7119, o is ImplementAllInterface<int>?, false);
- Eval(7120, o is ImplementAllInterface<int>?[], false);
+// Eval(7109, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7110, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7111, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7112, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7113, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(7114, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7115, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7116, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7117, o is ImplementAllInterface<int>, false);
+// Eval(7118, o is ImplementAllInterface<int>[], false);
+// Eval(7119, o is ImplementAllInterface<int>?, false);
+// Eval(7120, o is ImplementAllInterface<int>?[], false);
Eval(7121, o is IntE, false);
Eval(7122, o is IntE[], false);
Eval(7123, o is IntE?, false);
@@ -5964,38 +5964,38 @@ internal class Program
Eval(7216, o is IEmpty[], false);
Eval(7217, o is INotEmpty, true);
Eval(7218, o is INotEmpty[], false);
- Eval(7219, o is IEmptyGen<int>, false);
- Eval(7220, o is IEmptyGen<int>[], false);
- Eval(7221, o is INotEmptyGen<int>, false);
- Eval(7222, o is INotEmptyGen<int>[], false);
+// Eval(7219, o is IEmptyGen<int>, false);
+// Eval(7220, o is IEmptyGen<int>[], false);
+// Eval(7221, o is INotEmptyGen<int>, false);
+// Eval(7222, o is INotEmptyGen<int>[], false);
Eval(7223, o is SimpleDelegate, false);
Eval(7224, o is SimpleDelegate[], false);
- Eval(7225, o is GenericDelegate<int>, false);
- Eval(7226, o is GenericDelegate<int>[], false);
+// Eval(7225, o is GenericDelegate<int>, false);
+// Eval(7226, o is GenericDelegate<int>[], false);
Eval(7227, o is EmptyClass, false);
Eval(7228, o is EmptyClass[], false);
Eval(7229, o is NotEmptyClass, false);
Eval(7230, o is NotEmptyClass[], false);
- Eval(7231, o is EmptyClassGen<int>, false);
- Eval(7232, o is EmptyClassGen<int>[], false);
- Eval(7233, o is NotEmptyClassGen<Guid>, false);
- Eval(7234, o is NotEmptyClassGen<Guid>[], false);
- Eval(7235, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7236, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7231, o is EmptyClassGen<int>, false);
+// Eval(7232, o is EmptyClassGen<int>[], false);
+// Eval(7233, o is NotEmptyClassGen<Guid>, false);
+// Eval(7234, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7235, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7236, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7237, o is NestedClass, false);
Eval(7238, o is NestedClass[], false);
- Eval(7239, o is NestedClassGen<Decimal>, false);
- Eval(7240, o is NestedClassGen<Decimal>[], false);
+// Eval(7239, o is NestedClassGen<Decimal>, false);
+// Eval(7240, o is NestedClassGen<Decimal>[], false);
Eval(7241, o is ImplementOneInterfaceC, false);
Eval(7242, o is ImplementOneInterfaceC[], false);
Eval(7243, o is ImplementTwoInterfaceC, false);
Eval(7244, o is ImplementTwoInterfaceC[], false);
- Eval(7245, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7246, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7247, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7248, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7249, o is ImplementAllInterfaceC<int>, false);
- Eval(7250, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7245, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7246, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7247, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7248, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7249, o is ImplementAllInterfaceC<int>, false);
+// Eval(7250, o is ImplementAllInterfaceC<int>[], false);
Eval(7251, o is SealedClass, false);
Eval(7252, o is SealedClass[], false);
}
@@ -6010,26 +6010,26 @@ internal class Program
Eval(7258, o is NotEmptyStruct[], false);
Eval(7259, o is NotEmptyStruct?, false);
Eval(7260, o is NotEmptyStruct?[], false);
- Eval(7261, o is EmptyStructGen<int>, false);
- Eval(7262, o is EmptyStructGen<int>[], false);
- Eval(7263, o is EmptyStructGen<int>?, false);
- Eval(7264, o is EmptyStructGen<int>?[], false);
- Eval(7265, o is NotEmptyStructGen<Guid>, false);
- Eval(7266, o is NotEmptyStructGen<Guid>[], false);
- Eval(7267, o is NotEmptyStructGen<Guid>?, false);
- Eval(7268, o is NotEmptyStructGen<Guid>?[], false);
- Eval(7269, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7270, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7271, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7272, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7261, o is EmptyStructGen<int>, false);
+// Eval(7262, o is EmptyStructGen<int>[], false);
+// Eval(7263, o is EmptyStructGen<int>?, false);
+// Eval(7264, o is EmptyStructGen<int>?[], false);
+// Eval(7265, o is NotEmptyStructGen<Guid>, false);
+// Eval(7266, o is NotEmptyStructGen<Guid>[], false);
+// Eval(7267, o is NotEmptyStructGen<Guid>?, false);
+// Eval(7268, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(7269, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7270, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7271, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7272, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7273, o is NestedStruct, false);
Eval(7274, o is NestedStruct[], false);
Eval(7275, o is NestedStruct?, false);
Eval(7276, o is NestedStruct?[], false);
- Eval(7277, o is NestedStructGen<Decimal>, false);
- Eval(7278, o is NestedStructGen<Decimal>[], false);
- Eval(7279, o is NestedStructGen<Decimal>?, false);
- Eval(7280, o is NestedStructGen<Decimal>?[], false);
+// Eval(7277, o is NestedStructGen<Decimal>, false);
+// Eval(7278, o is NestedStructGen<Decimal>[], false);
+// Eval(7279, o is NestedStructGen<Decimal>?, false);
+// Eval(7280, o is NestedStructGen<Decimal>?[], false);
Eval(7281, o is ExplicitFieldOffsetStruct, false);
Eval(7282, o is ExplicitFieldOffsetStruct[], false);
Eval(7283, o is ExplicitFieldOffsetStruct?, false);
@@ -6046,18 +6046,18 @@ internal class Program
Eval(7302, o is ImplementTwoInterface[], false);
Eval(7303, o is ImplementTwoInterface?, true);
Eval(7304, o is ImplementTwoInterface?[], false);
- Eval(7305, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7306, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7307, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7308, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7309, o is ImplementTwoInterfaceGen<int>, false);
- Eval(7310, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(7311, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(7312, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7313, o is ImplementAllInterface<int>, false);
- Eval(7314, o is ImplementAllInterface<int>[], false);
- Eval(7315, o is ImplementAllInterface<int>?, false);
- Eval(7316, o is ImplementAllInterface<int>?[], false);
+// Eval(7305, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7306, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7307, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7308, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7309, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(7310, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7311, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7312, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7313, o is ImplementAllInterface<int>, false);
+// Eval(7314, o is ImplementAllInterface<int>[], false);
+// Eval(7315, o is ImplementAllInterface<int>?, false);
+// Eval(7316, o is ImplementAllInterface<int>?[], false);
Eval(7317, o is IntE, false);
Eval(7318, o is IntE[], false);
Eval(7319, o is IntE?, false);
@@ -6156,38 +6156,38 @@ internal class Program
Eval(7412, o is IEmpty[], false);
Eval(7413, o is INotEmpty, true);
Eval(7414, o is INotEmpty[], false);
- Eval(7415, o is IEmptyGen<int>, false);
- Eval(7416, o is IEmptyGen<int>[], false);
- Eval(7417, o is INotEmptyGen<int>, false);
- Eval(7418, o is INotEmptyGen<int>[], false);
+// Eval(7415, o is IEmptyGen<int>, false);
+// Eval(7416, o is IEmptyGen<int>[], false);
+// Eval(7417, o is INotEmptyGen<int>, false);
+// Eval(7418, o is INotEmptyGen<int>[], false);
Eval(7419, o is SimpleDelegate, false);
Eval(7420, o is SimpleDelegate[], false);
- Eval(7421, o is GenericDelegate<int>, false);
- Eval(7422, o is GenericDelegate<int>[], false);
+// Eval(7421, o is GenericDelegate<int>, false);
+// Eval(7422, o is GenericDelegate<int>[], false);
Eval(7423, o is EmptyClass, false);
Eval(7424, o is EmptyClass[], false);
Eval(7425, o is NotEmptyClass, false);
Eval(7426, o is NotEmptyClass[], false);
- Eval(7427, o is EmptyClassGen<int>, false);
- Eval(7428, o is EmptyClassGen<int>[], false);
- Eval(7429, o is NotEmptyClassGen<Guid>, false);
- Eval(7430, o is NotEmptyClassGen<Guid>[], false);
- Eval(7431, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7432, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7427, o is EmptyClassGen<int>, false);
+// Eval(7428, o is EmptyClassGen<int>[], false);
+// Eval(7429, o is NotEmptyClassGen<Guid>, false);
+// Eval(7430, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7431, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7432, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7433, o is NestedClass, false);
Eval(7434, o is NestedClass[], false);
- Eval(7435, o is NestedClassGen<Decimal>, false);
- Eval(7436, o is NestedClassGen<Decimal>[], false);
+// Eval(7435, o is NestedClassGen<Decimal>, false);
+// Eval(7436, o is NestedClassGen<Decimal>[], false);
Eval(7437, o is ImplementOneInterfaceC, false);
Eval(7438, o is ImplementOneInterfaceC[], false);
Eval(7439, o is ImplementTwoInterfaceC, false);
Eval(7440, o is ImplementTwoInterfaceC[], false);
- Eval(7441, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7442, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7443, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7444, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7445, o is ImplementAllInterfaceC<int>, false);
- Eval(7446, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7441, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7442, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7443, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7444, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7445, o is ImplementAllInterfaceC<int>, false);
+// Eval(7446, o is ImplementAllInterfaceC<int>[], false);
Eval(7447, o is SealedClass, false);
Eval(7448, o is SealedClass[], false);
}
@@ -6202,26 +6202,26 @@ internal class Program
Eval(7454, o is NotEmptyStruct[], false);
Eval(7455, o is NotEmptyStruct?, false);
Eval(7456, o is NotEmptyStruct?[], false);
- Eval(7457, o is EmptyStructGen<int>, false);
- Eval(7458, o is EmptyStructGen<int>[], false);
- Eval(7459, o is EmptyStructGen<int>?, false);
- Eval(7460, o is EmptyStructGen<int>?[], false);
- Eval(7461, o is NotEmptyStructGen<Guid>, false);
- Eval(7462, o is NotEmptyStructGen<Guid>[], false);
- Eval(7463, o is NotEmptyStructGen<Guid>?, false);
- Eval(7464, o is NotEmptyStructGen<Guid>?[], false);
- Eval(7465, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7466, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7467, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7468, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7457, o is EmptyStructGen<int>, false);
+// Eval(7458, o is EmptyStructGen<int>[], false);
+// Eval(7459, o is EmptyStructGen<int>?, false);
+// Eval(7460, o is EmptyStructGen<int>?[], false);
+// Eval(7461, o is NotEmptyStructGen<Guid>, false);
+// Eval(7462, o is NotEmptyStructGen<Guid>[], false);
+// Eval(7463, o is NotEmptyStructGen<Guid>?, false);
+// Eval(7464, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(7465, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7466, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7467, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7468, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7469, o is NestedStruct, false);
Eval(7470, o is NestedStruct[], false);
Eval(7471, o is NestedStruct?, false);
Eval(7472, o is NestedStruct?[], false);
- Eval(7473, o is NestedStructGen<Decimal>, false);
- Eval(7474, o is NestedStructGen<Decimal>[], false);
- Eval(7475, o is NestedStructGen<Decimal>?, false);
- Eval(7476, o is NestedStructGen<Decimal>?[], false);
+// Eval(7473, o is NestedStructGen<Decimal>, false);
+// Eval(7474, o is NestedStructGen<Decimal>[], false);
+// Eval(7475, o is NestedStructGen<Decimal>?, false);
+// Eval(7476, o is NestedStructGen<Decimal>?[], false);
Eval(7477, o is ExplicitFieldOffsetStruct, false);
Eval(7478, o is ExplicitFieldOffsetStruct[], false);
Eval(7479, o is ExplicitFieldOffsetStruct?, false);
@@ -6238,18 +6238,18 @@ internal class Program
Eval(7498, o is ImplementTwoInterface[], false);
Eval(7499, o is ImplementTwoInterface?, false);
Eval(7500, o is ImplementTwoInterface?[], false);
- Eval(7501, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(7502, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7503, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(7504, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7505, o is ImplementTwoInterfaceGen<int>, false);
- Eval(7506, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(7507, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(7508, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7509, o is ImplementAllInterface<int>, false);
- Eval(7510, o is ImplementAllInterface<int>[], false);
- Eval(7511, o is ImplementAllInterface<int>?, false);
- Eval(7512, o is ImplementAllInterface<int>?[], false);
+// Eval(7501, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(7502, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7503, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(7504, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7505, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(7506, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7507, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7508, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7509, o is ImplementAllInterface<int>, false);
+// Eval(7510, o is ImplementAllInterface<int>[], false);
+// Eval(7511, o is ImplementAllInterface<int>?, false);
+// Eval(7512, o is ImplementAllInterface<int>?[], false);
Eval(7513, o is IntE, false);
Eval(7514, o is IntE[], false);
Eval(7515, o is IntE?, false);
@@ -6348,38 +6348,38 @@ internal class Program
Eval(7608, o is IEmpty[], false);
Eval(7609, o is INotEmpty, false);
Eval(7610, o is INotEmpty[], false);
- Eval(7611, o is IEmptyGen<int>, false);
- Eval(7612, o is IEmptyGen<int>[], false);
- Eval(7613, o is INotEmptyGen<int>, false);
- Eval(7614, o is INotEmptyGen<int>[], false);
+// Eval(7611, o is IEmptyGen<int>, false);
+// Eval(7612, o is IEmptyGen<int>[], false);
+// Eval(7613, o is INotEmptyGen<int>, false);
+// Eval(7614, o is INotEmptyGen<int>[], false);
Eval(7615, o is SimpleDelegate, false);
Eval(7616, o is SimpleDelegate[], false);
- Eval(7617, o is GenericDelegate<int>, false);
- Eval(7618, o is GenericDelegate<int>[], false);
+// Eval(7617, o is GenericDelegate<int>, false);
+// Eval(7618, o is GenericDelegate<int>[], false);
Eval(7619, o is EmptyClass, false);
Eval(7620, o is EmptyClass[], false);
Eval(7621, o is NotEmptyClass, false);
Eval(7622, o is NotEmptyClass[], false);
- Eval(7623, o is EmptyClassGen<int>, false);
- Eval(7624, o is EmptyClassGen<int>[], false);
- Eval(7625, o is NotEmptyClassGen<Guid>, false);
- Eval(7626, o is NotEmptyClassGen<Guid>[], false);
- Eval(7627, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7628, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7623, o is EmptyClassGen<int>, false);
+// Eval(7624, o is EmptyClassGen<int>[], false);
+// Eval(7625, o is NotEmptyClassGen<Guid>, false);
+// Eval(7626, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7627, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7628, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7629, o is NestedClass, false);
Eval(7630, o is NestedClass[], false);
- Eval(7631, o is NestedClassGen<Decimal>, false);
- Eval(7632, o is NestedClassGen<Decimal>[], false);
+// Eval(7631, o is NestedClassGen<Decimal>, false);
+// Eval(7632, o is NestedClassGen<Decimal>[], false);
Eval(7633, o is ImplementOneInterfaceC, false);
Eval(7634, o is ImplementOneInterfaceC[], false);
Eval(7635, o is ImplementTwoInterfaceC, false);
Eval(7636, o is ImplementTwoInterfaceC[], false);
- Eval(7637, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7638, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7639, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7640, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7641, o is ImplementAllInterfaceC<int>, false);
- Eval(7642, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7637, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7638, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7639, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7640, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7641, o is ImplementAllInterfaceC<int>, false);
+// Eval(7642, o is ImplementAllInterfaceC<int>[], false);
Eval(7643, o is SealedClass, false);
Eval(7644, o is SealedClass[], false);
}
@@ -6397,26 +6397,26 @@ internal class Program
Eval(7650, o is NotEmptyStruct[], false);
Eval(7651, o is NotEmptyStruct?, false);
Eval(7652, o is NotEmptyStruct?[], false);
- Eval(7653, o is EmptyStructGen<int>, false);
- Eval(7654, o is EmptyStructGen<int>[], false);
- Eval(7655, o is EmptyStructGen<int>?, false);
- Eval(7656, o is EmptyStructGen<int>?[], false);
- Eval(7657, o is NotEmptyStructGen<Guid>, false);
- Eval(7658, o is NotEmptyStructGen<Guid>[], false);
- Eval(7659, o is NotEmptyStructGen<Guid>?, false);
- Eval(7660, o is NotEmptyStructGen<Guid>?[], false);
- Eval(7661, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7662, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7663, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7664, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7653, o is EmptyStructGen<int>, false);
+// Eval(7654, o is EmptyStructGen<int>[], false);
+// Eval(7655, o is EmptyStructGen<int>?, false);
+// Eval(7656, o is EmptyStructGen<int>?[], false);
+// Eval(7657, o is NotEmptyStructGen<Guid>, false);
+// Eval(7658, o is NotEmptyStructGen<Guid>[], false);
+// Eval(7659, o is NotEmptyStructGen<Guid>?, false);
+// Eval(7660, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(7661, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7662, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7663, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7664, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7665, o is NestedStruct, false);
Eval(7666, o is NestedStruct[], false);
Eval(7667, o is NestedStruct?, false);
Eval(7668, o is NestedStruct?[], false);
- Eval(7669, o is NestedStructGen<Decimal>, false);
- Eval(7670, o is NestedStructGen<Decimal>[], false);
- Eval(7671, o is NestedStructGen<Decimal>?, false);
- Eval(7672, o is NestedStructGen<Decimal>?[], false);
+// Eval(7669, o is NestedStructGen<Decimal>, false);
+// Eval(7670, o is NestedStructGen<Decimal>[], false);
+// Eval(7671, o is NestedStructGen<Decimal>?, false);
+// Eval(7672, o is NestedStructGen<Decimal>?[], false);
Eval(7673, o is ExplicitFieldOffsetStruct, false);
Eval(7674, o is ExplicitFieldOffsetStruct[], false);
Eval(7675, o is ExplicitFieldOffsetStruct?, false);
@@ -6433,18 +6433,18 @@ internal class Program
Eval(7694, o is ImplementTwoInterface[], false);
Eval(7695, o is ImplementTwoInterface?, false);
Eval(7696, o is ImplementTwoInterface?[], false);
- Eval(7697, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(7698, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7699, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(7700, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7701, o is ImplementTwoInterfaceGen<int>, false);
- Eval(7702, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(7703, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(7704, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7705, o is ImplementAllInterface<int>, false);
- Eval(7706, o is ImplementAllInterface<int>[], false);
- Eval(7707, o is ImplementAllInterface<int>?, false);
- Eval(7708, o is ImplementAllInterface<int>?[], false);
+// Eval(7697, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(7698, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7699, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(7700, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7701, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(7702, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7703, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7704, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7705, o is ImplementAllInterface<int>, false);
+// Eval(7706, o is ImplementAllInterface<int>[], false);
+// Eval(7707, o is ImplementAllInterface<int>?, false);
+// Eval(7708, o is ImplementAllInterface<int>?[], false);
Eval(7709, o is IntE, false);
Eval(7710, o is IntE[], false);
Eval(7711, o is IntE?, false);
@@ -6543,38 +6543,38 @@ internal class Program
Eval(7804, o is IEmpty[], false);
Eval(7805, o is INotEmpty, false);
Eval(7806, o is INotEmpty[], false);
- Eval(7807, o is IEmptyGen<int>, false);
- Eval(7808, o is IEmptyGen<int>[], false);
- Eval(7809, o is INotEmptyGen<int>, false);
- Eval(7810, o is INotEmptyGen<int>[], false);
+// Eval(7807, o is IEmptyGen<int>, false);
+// Eval(7808, o is IEmptyGen<int>[], false);
+// Eval(7809, o is INotEmptyGen<int>, false);
+// Eval(7810, o is INotEmptyGen<int>[], false);
Eval(7811, o is SimpleDelegate, false);
Eval(7812, o is SimpleDelegate[], false);
- Eval(7813, o is GenericDelegate<int>, false);
- Eval(7814, o is GenericDelegate<int>[], false);
+// Eval(7813, o is GenericDelegate<int>, false);
+// Eval(7814, o is GenericDelegate<int>[], false);
Eval(7815, o is EmptyClass, false);
Eval(7816, o is EmptyClass[], false);
Eval(7817, o is NotEmptyClass, false);
Eval(7818, o is NotEmptyClass[], false);
- Eval(7819, o is EmptyClassGen<int>, false);
- Eval(7820, o is EmptyClassGen<int>[], false);
- Eval(7821, o is NotEmptyClassGen<Guid>, false);
- Eval(7822, o is NotEmptyClassGen<Guid>[], false);
- Eval(7823, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(7824, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(7819, o is EmptyClassGen<int>, false);
+// Eval(7820, o is EmptyClassGen<int>[], false);
+// Eval(7821, o is NotEmptyClassGen<Guid>, false);
+// Eval(7822, o is NotEmptyClassGen<Guid>[], false);
+// Eval(7823, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(7824, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(7825, o is NestedClass, false);
Eval(7826, o is NestedClass[], false);
- Eval(7827, o is NestedClassGen<Decimal>, false);
- Eval(7828, o is NestedClassGen<Decimal>[], false);
+// Eval(7827, o is NestedClassGen<Decimal>, false);
+// Eval(7828, o is NestedClassGen<Decimal>[], false);
Eval(7829, o is ImplementOneInterfaceC, false);
Eval(7830, o is ImplementOneInterfaceC[], false);
Eval(7831, o is ImplementTwoInterfaceC, false);
Eval(7832, o is ImplementTwoInterfaceC[], false);
- Eval(7833, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(7834, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(7835, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(7836, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(7837, o is ImplementAllInterfaceC<int>, false);
- Eval(7838, o is ImplementAllInterfaceC<int>[], false);
+// Eval(7833, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(7834, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(7835, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(7836, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(7837, o is ImplementAllInterfaceC<int>, false);
+// Eval(7838, o is ImplementAllInterfaceC<int>[], false);
Eval(7839, o is SealedClass, false);
Eval(7840, o is SealedClass[], false);
}
@@ -6589,26 +6589,26 @@ internal class Program
Eval(7846, o is NotEmptyStruct[], false);
Eval(7847, o is NotEmptyStruct?, false);
Eval(7848, o is NotEmptyStruct?[], false);
- Eval(7849, o is EmptyStructGen<int>, false);
- Eval(7850, o is EmptyStructGen<int>[], false);
- Eval(7851, o is EmptyStructGen<int>?, false);
- Eval(7852, o is EmptyStructGen<int>?[], false);
- Eval(7853, o is NotEmptyStructGen<Guid>, false);
- Eval(7854, o is NotEmptyStructGen<Guid>[], false);
- Eval(7855, o is NotEmptyStructGen<Guid>?, false);
- Eval(7856, o is NotEmptyStructGen<Guid>?[], false);
- Eval(7857, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(7858, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(7859, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(7860, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(7849, o is EmptyStructGen<int>, false);
+// Eval(7850, o is EmptyStructGen<int>[], false);
+// Eval(7851, o is EmptyStructGen<int>?, false);
+// Eval(7852, o is EmptyStructGen<int>?[], false);
+// Eval(7853, o is NotEmptyStructGen<Guid>, false);
+// Eval(7854, o is NotEmptyStructGen<Guid>[], false);
+// Eval(7855, o is NotEmptyStructGen<Guid>?, false);
+// Eval(7856, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(7857, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(7858, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(7859, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(7860, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(7861, o is NestedStruct, false);
Eval(7862, o is NestedStruct[], false);
Eval(7863, o is NestedStruct?, false);
Eval(7864, o is NestedStruct?[], false);
- Eval(7865, o is NestedStructGen<Decimal>, false);
- Eval(7866, o is NestedStructGen<Decimal>[], false);
- Eval(7867, o is NestedStructGen<Decimal>?, false);
- Eval(7868, o is NestedStructGen<Decimal>?[], false);
+// Eval(7865, o is NestedStructGen<Decimal>, false);
+// Eval(7866, o is NestedStructGen<Decimal>[], false);
+// Eval(7867, o is NestedStructGen<Decimal>?, false);
+// Eval(7868, o is NestedStructGen<Decimal>?[], false);
Eval(7869, o is ExplicitFieldOffsetStruct, false);
Eval(7870, o is ExplicitFieldOffsetStruct[], false);
Eval(7871, o is ExplicitFieldOffsetStruct?, false);
@@ -6625,18 +6625,18 @@ internal class Program
Eval(7890, o is ImplementTwoInterface[], false);
Eval(7891, o is ImplementTwoInterface?, false);
Eval(7892, o is ImplementTwoInterface?[], false);
- Eval(7893, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
- Eval(7894, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(7895, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
- Eval(7896, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(7897, o is ImplementTwoInterfaceGen<int>, false);
- Eval(7898, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(7899, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(7900, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(7901, o is ImplementAllInterface<int>, false);
- Eval(7902, o is ImplementAllInterface<int>[], false);
- Eval(7903, o is ImplementAllInterface<int>?, false);
- Eval(7904, o is ImplementAllInterface<int>?[], false);
+// Eval(7893, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, true);
+// Eval(7894, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(7895, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, true);
+// Eval(7896, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(7897, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(7898, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(7899, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(7900, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(7901, o is ImplementAllInterface<int>, false);
+// Eval(7902, o is ImplementAllInterface<int>[], false);
+// Eval(7903, o is ImplementAllInterface<int>?, false);
+// Eval(7904, o is ImplementAllInterface<int>?[], false);
Eval(7905, o is IntE, false);
Eval(7906, o is IntE[], false);
Eval(7907, o is IntE?, false);
@@ -6735,38 +6735,38 @@ internal class Program
Eval(8000, o is IEmpty[], false);
Eval(8001, o is INotEmpty, false);
Eval(8002, o is INotEmpty[], false);
- Eval(8003, o is IEmptyGen<int>, false);
- Eval(8004, o is IEmptyGen<int>[], false);
- Eval(8005, o is INotEmptyGen<int>, false);
- Eval(8006, o is INotEmptyGen<int>[], false);
+// Eval(8003, o is IEmptyGen<int>, false);
+// Eval(8004, o is IEmptyGen<int>[], false);
+// Eval(8005, o is INotEmptyGen<int>, false);
+// Eval(8006, o is INotEmptyGen<int>[], false);
Eval(8007, o is SimpleDelegate, false);
Eval(8008, o is SimpleDelegate[], false);
- Eval(8009, o is GenericDelegate<int>, false);
- Eval(8010, o is GenericDelegate<int>[], false);
+// Eval(8009, o is GenericDelegate<int>, false);
+// Eval(8010, o is GenericDelegate<int>[], false);
Eval(8011, o is EmptyClass, false);
Eval(8012, o is EmptyClass[], false);
Eval(8013, o is NotEmptyClass, false);
Eval(8014, o is NotEmptyClass[], false);
- Eval(8015, o is EmptyClassGen<int>, false);
- Eval(8016, o is EmptyClassGen<int>[], false);
- Eval(8017, o is NotEmptyClassGen<Guid>, false);
- Eval(8018, o is NotEmptyClassGen<Guid>[], false);
- Eval(8019, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(8020, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8015, o is EmptyClassGen<int>, false);
+// Eval(8016, o is EmptyClassGen<int>[], false);
+// Eval(8017, o is NotEmptyClassGen<Guid>, false);
+// Eval(8018, o is NotEmptyClassGen<Guid>[], false);
+// Eval(8019, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8020, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(8021, o is NestedClass, false);
Eval(8022, o is NestedClass[], false);
- Eval(8023, o is NestedClassGen<Decimal>, false);
- Eval(8024, o is NestedClassGen<Decimal>[], false);
+// Eval(8023, o is NestedClassGen<Decimal>, false);
+// Eval(8024, o is NestedClassGen<Decimal>[], false);
Eval(8025, o is ImplementOneInterfaceC, false);
Eval(8026, o is ImplementOneInterfaceC[], false);
Eval(8027, o is ImplementTwoInterfaceC, false);
Eval(8028, o is ImplementTwoInterfaceC[], false);
- Eval(8029, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8030, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8031, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(8032, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8033, o is ImplementAllInterfaceC<int>, false);
- Eval(8034, o is ImplementAllInterfaceC<int>[], false);
+// Eval(8029, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8030, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8031, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8032, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8033, o is ImplementAllInterfaceC<int>, false);
+// Eval(8034, o is ImplementAllInterfaceC<int>[], false);
Eval(8035, o is SealedClass, false);
Eval(8036, o is SealedClass[], false);
}
@@ -6781,26 +6781,26 @@ internal class Program
Eval(8042, o is NotEmptyStruct[], false);
Eval(8043, o is NotEmptyStruct?, false);
Eval(8044, o is NotEmptyStruct?[], false);
- Eval(8045, o is EmptyStructGen<int>, false);
- Eval(8046, o is EmptyStructGen<int>[], false);
- Eval(8047, o is EmptyStructGen<int>?, false);
- Eval(8048, o is EmptyStructGen<int>?[], false);
- Eval(8049, o is NotEmptyStructGen<Guid>, false);
- Eval(8050, o is NotEmptyStructGen<Guid>[], false);
- Eval(8051, o is NotEmptyStructGen<Guid>?, false);
- Eval(8052, o is NotEmptyStructGen<Guid>?[], false);
- Eval(8053, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8054, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8055, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8056, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8045, o is EmptyStructGen<int>, false);
+// Eval(8046, o is EmptyStructGen<int>[], false);
+// Eval(8047, o is EmptyStructGen<int>?, false);
+// Eval(8048, o is EmptyStructGen<int>?[], false);
+// Eval(8049, o is NotEmptyStructGen<Guid>, false);
+// Eval(8050, o is NotEmptyStructGen<Guid>[], false);
+// Eval(8051, o is NotEmptyStructGen<Guid>?, false);
+// Eval(8052, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(8053, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8054, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8055, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8056, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8057, o is NestedStruct, false);
Eval(8058, o is NestedStruct[], false);
Eval(8059, o is NestedStruct?, false);
Eval(8060, o is NestedStruct?[], false);
- Eval(8061, o is NestedStructGen<Decimal>, false);
- Eval(8062, o is NestedStructGen<Decimal>[], false);
- Eval(8063, o is NestedStructGen<Decimal>?, false);
- Eval(8064, o is NestedStructGen<Decimal>?[], false);
+// Eval(8061, o is NestedStructGen<Decimal>, false);
+// Eval(8062, o is NestedStructGen<Decimal>[], false);
+// Eval(8063, o is NestedStructGen<Decimal>?, false);
+// Eval(8064, o is NestedStructGen<Decimal>?[], false);
Eval(8065, o is ExplicitFieldOffsetStruct, false);
Eval(8066, o is ExplicitFieldOffsetStruct[], false);
Eval(8067, o is ExplicitFieldOffsetStruct?, false);
@@ -6817,18 +6817,18 @@ internal class Program
Eval(8086, o is ImplementTwoInterface[], false);
Eval(8087, o is ImplementTwoInterface?, false);
Eval(8088, o is ImplementTwoInterface?[], false);
- Eval(8089, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8090, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8091, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8092, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8093, o is ImplementTwoInterfaceGen<int>, false);
- Eval(8094, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(8095, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(8096, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8097, o is ImplementAllInterface<int>, false);
- Eval(8098, o is ImplementAllInterface<int>[], false);
- Eval(8099, o is ImplementAllInterface<int>?, false);
- Eval(8100, o is ImplementAllInterface<int>?[], false);
+// Eval(8089, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8090, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8091, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8092, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8093, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(8094, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8095, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(8096, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8097, o is ImplementAllInterface<int>, false);
+// Eval(8098, o is ImplementAllInterface<int>[], false);
+// Eval(8099, o is ImplementAllInterface<int>?, false);
+// Eval(8100, o is ImplementAllInterface<int>?[], false);
Eval(8101, o is IntE, false);
Eval(8102, o is IntE[], false);
Eval(8103, o is IntE?, false);
@@ -6927,38 +6927,38 @@ internal class Program
Eval(8196, o is IEmpty[], false);
Eval(8197, o is INotEmpty, false);
Eval(8198, o is INotEmpty[], false);
- Eval(8199, o is IEmptyGen<int>, false);
- Eval(8200, o is IEmptyGen<int>[], false);
- Eval(8201, o is INotEmptyGen<int>, false);
- Eval(8202, o is INotEmptyGen<int>[], false);
+// Eval(8199, o is IEmptyGen<int>, false);
+// Eval(8200, o is IEmptyGen<int>[], false);
+// Eval(8201, o is INotEmptyGen<int>, false);
+// Eval(8202, o is INotEmptyGen<int>[], false);
Eval(8203, o is SimpleDelegate, false);
Eval(8204, o is SimpleDelegate[], false);
- Eval(8205, o is GenericDelegate<int>, false);
- Eval(8206, o is GenericDelegate<int>[], false);
+// Eval(8205, o is GenericDelegate<int>, false);
+// Eval(8206, o is GenericDelegate<int>[], false);
Eval(8207, o is EmptyClass, false);
Eval(8208, o is EmptyClass[], false);
Eval(8209, o is NotEmptyClass, false);
Eval(8210, o is NotEmptyClass[], false);
- Eval(8211, o is EmptyClassGen<int>, false);
- Eval(8212, o is EmptyClassGen<int>[], false);
- Eval(8213, o is NotEmptyClassGen<Guid>, false);
- Eval(8214, o is NotEmptyClassGen<Guid>[], false);
- Eval(8215, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(8216, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8211, o is EmptyClassGen<int>, false);
+// Eval(8212, o is EmptyClassGen<int>[], false);
+// Eval(8213, o is NotEmptyClassGen<Guid>, false);
+// Eval(8214, o is NotEmptyClassGen<Guid>[], false);
+// Eval(8215, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8216, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(8217, o is NestedClass, false);
Eval(8218, o is NestedClass[], false);
- Eval(8219, o is NestedClassGen<Decimal>, false);
- Eval(8220, o is NestedClassGen<Decimal>[], false);
+// Eval(8219, o is NestedClassGen<Decimal>, false);
+// Eval(8220, o is NestedClassGen<Decimal>[], false);
Eval(8221, o is ImplementOneInterfaceC, false);
Eval(8222, o is ImplementOneInterfaceC[], false);
Eval(8223, o is ImplementTwoInterfaceC, false);
Eval(8224, o is ImplementTwoInterfaceC[], false);
- Eval(8225, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8226, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8227, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(8228, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8229, o is ImplementAllInterfaceC<int>, false);
- Eval(8230, o is ImplementAllInterfaceC<int>[], false);
+// Eval(8225, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8226, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8227, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8228, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8229, o is ImplementAllInterfaceC<int>, false);
+// Eval(8230, o is ImplementAllInterfaceC<int>[], false);
Eval(8231, o is SealedClass, false);
Eval(8232, o is SealedClass[], false);
}
@@ -6976,26 +6976,26 @@ internal class Program
Eval(8238, o is NotEmptyStruct[], false);
Eval(8239, o is NotEmptyStruct?, false);
Eval(8240, o is NotEmptyStruct?[], false);
- Eval(8241, o is EmptyStructGen<int>, false);
- Eval(8242, o is EmptyStructGen<int>[], false);
- Eval(8243, o is EmptyStructGen<int>?, false);
- Eval(8244, o is EmptyStructGen<int>?[], false);
- Eval(8245, o is NotEmptyStructGen<Guid>, false);
- Eval(8246, o is NotEmptyStructGen<Guid>[], false);
- Eval(8247, o is NotEmptyStructGen<Guid>?, false);
- Eval(8248, o is NotEmptyStructGen<Guid>?[], false);
- Eval(8249, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8250, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8251, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8252, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8241, o is EmptyStructGen<int>, false);
+// Eval(8242, o is EmptyStructGen<int>[], false);
+// Eval(8243, o is EmptyStructGen<int>?, false);
+// Eval(8244, o is EmptyStructGen<int>?[], false);
+// Eval(8245, o is NotEmptyStructGen<Guid>, false);
+// Eval(8246, o is NotEmptyStructGen<Guid>[], false);
+// Eval(8247, o is NotEmptyStructGen<Guid>?, false);
+// Eval(8248, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(8249, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8250, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8251, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8252, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8253, o is NestedStruct, false);
Eval(8254, o is NestedStruct[], false);
Eval(8255, o is NestedStruct?, false);
Eval(8256, o is NestedStruct?[], false);
- Eval(8257, o is NestedStructGen<Decimal>, false);
- Eval(8258, o is NestedStructGen<Decimal>[], false);
- Eval(8259, o is NestedStructGen<Decimal>?, false);
- Eval(8260, o is NestedStructGen<Decimal>?[], false);
+// Eval(8257, o is NestedStructGen<Decimal>, false);
+// Eval(8258, o is NestedStructGen<Decimal>[], false);
+// Eval(8259, o is NestedStructGen<Decimal>?, false);
+// Eval(8260, o is NestedStructGen<Decimal>?[], false);
Eval(8261, o is ExplicitFieldOffsetStruct, false);
Eval(8262, o is ExplicitFieldOffsetStruct[], false);
Eval(8263, o is ExplicitFieldOffsetStruct?, false);
@@ -7012,18 +7012,18 @@ internal class Program
Eval(8282, o is ImplementTwoInterface[], false);
Eval(8283, o is ImplementTwoInterface?, false);
Eval(8284, o is ImplementTwoInterface?[], false);
- Eval(8285, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8286, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8287, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8288, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8289, o is ImplementTwoInterfaceGen<int>, true);
- Eval(8290, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(8291, o is ImplementTwoInterfaceGen<int>?, true);
- Eval(8292, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8293, o is ImplementAllInterface<int>, false);
- Eval(8294, o is ImplementAllInterface<int>[], false);
- Eval(8295, o is ImplementAllInterface<int>?, false);
- Eval(8296, o is ImplementAllInterface<int>?[], false);
+// Eval(8285, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8286, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8287, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8288, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8289, o is ImplementTwoInterfaceGen<int>, true);
+// Eval(8290, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8291, o is ImplementTwoInterfaceGen<int>?, true);
+// Eval(8292, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8293, o is ImplementAllInterface<int>, false);
+// Eval(8294, o is ImplementAllInterface<int>[], false);
+// Eval(8295, o is ImplementAllInterface<int>?, false);
+// Eval(8296, o is ImplementAllInterface<int>?[], false);
Eval(8297, o is IntE, false);
Eval(8298, o is IntE[], false);
Eval(8299, o is IntE?, false);
@@ -7122,38 +7122,38 @@ internal class Program
Eval(8392, o is IEmpty[], false);
Eval(8393, o is INotEmpty, false);
Eval(8394, o is INotEmpty[], false);
- Eval(8395, o is IEmptyGen<int>, true);
- Eval(8396, o is IEmptyGen<int>[], false);
- Eval(8397, o is INotEmptyGen<int>, true);
- Eval(8398, o is INotEmptyGen<int>[], false);
+// Eval(8395, o is IEmptyGen<int>, true);
+// Eval(8396, o is IEmptyGen<int>[], false);
+// Eval(8397, o is INotEmptyGen<int>, true);
+// Eval(8398, o is INotEmptyGen<int>[], false);
Eval(8399, o is SimpleDelegate, false);
Eval(8400, o is SimpleDelegate[], false);
- Eval(8401, o is GenericDelegate<int>, false);
- Eval(8402, o is GenericDelegate<int>[], false);
+// Eval(8401, o is GenericDelegate<int>, false);
+// Eval(8402, o is GenericDelegate<int>[], false);
Eval(8403, o is EmptyClass, false);
Eval(8404, o is EmptyClass[], false);
Eval(8405, o is NotEmptyClass, false);
Eval(8406, o is NotEmptyClass[], false);
- Eval(8407, o is EmptyClassGen<int>, false);
- Eval(8408, o is EmptyClassGen<int>[], false);
- Eval(8409, o is NotEmptyClassGen<Guid>, false);
- Eval(8410, o is NotEmptyClassGen<Guid>[], false);
- Eval(8411, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(8412, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8407, o is EmptyClassGen<int>, false);
+// Eval(8408, o is EmptyClassGen<int>[], false);
+// Eval(8409, o is NotEmptyClassGen<Guid>, false);
+// Eval(8410, o is NotEmptyClassGen<Guid>[], false);
+// Eval(8411, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8412, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(8413, o is NestedClass, false);
Eval(8414, o is NestedClass[], false);
- Eval(8415, o is NestedClassGen<Decimal>, false);
- Eval(8416, o is NestedClassGen<Decimal>[], false);
+// Eval(8415, o is NestedClassGen<Decimal>, false);
+// Eval(8416, o is NestedClassGen<Decimal>[], false);
Eval(8417, o is ImplementOneInterfaceC, false);
Eval(8418, o is ImplementOneInterfaceC[], false);
Eval(8419, o is ImplementTwoInterfaceC, false);
Eval(8420, o is ImplementTwoInterfaceC[], false);
- Eval(8421, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8422, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8423, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(8424, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8425, o is ImplementAllInterfaceC<int>, false);
- Eval(8426, o is ImplementAllInterfaceC<int>[], false);
+// Eval(8421, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8422, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8423, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8424, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8425, o is ImplementAllInterfaceC<int>, false);
+// Eval(8426, o is ImplementAllInterfaceC<int>[], false);
Eval(8427, o is SealedClass, false);
Eval(8428, o is SealedClass[], false);
}
@@ -7168,26 +7168,26 @@ internal class Program
Eval(8434, o is NotEmptyStruct[], false);
Eval(8435, o is NotEmptyStruct?, false);
Eval(8436, o is NotEmptyStruct?[], false);
- Eval(8437, o is EmptyStructGen<int>, false);
- Eval(8438, o is EmptyStructGen<int>[], false);
- Eval(8439, o is EmptyStructGen<int>?, false);
- Eval(8440, o is EmptyStructGen<int>?[], false);
- Eval(8441, o is NotEmptyStructGen<Guid>, false);
- Eval(8442, o is NotEmptyStructGen<Guid>[], false);
- Eval(8443, o is NotEmptyStructGen<Guid>?, false);
- Eval(8444, o is NotEmptyStructGen<Guid>?[], false);
- Eval(8445, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8446, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8447, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8448, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8437, o is EmptyStructGen<int>, false);
+// Eval(8438, o is EmptyStructGen<int>[], false);
+// Eval(8439, o is EmptyStructGen<int>?, false);
+// Eval(8440, o is EmptyStructGen<int>?[], false);
+// Eval(8441, o is NotEmptyStructGen<Guid>, false);
+// Eval(8442, o is NotEmptyStructGen<Guid>[], false);
+// Eval(8443, o is NotEmptyStructGen<Guid>?, false);
+// Eval(8444, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(8445, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8446, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8447, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8448, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8449, o is NestedStruct, false);
Eval(8450, o is NestedStruct[], false);
Eval(8451, o is NestedStruct?, false);
Eval(8452, o is NestedStruct?[], false);
- Eval(8453, o is NestedStructGen<Decimal>, false);
- Eval(8454, o is NestedStructGen<Decimal>[], false);
- Eval(8455, o is NestedStructGen<Decimal>?, false);
- Eval(8456, o is NestedStructGen<Decimal>?[], false);
+// Eval(8453, o is NestedStructGen<Decimal>, false);
+// Eval(8454, o is NestedStructGen<Decimal>[], false);
+// Eval(8455, o is NestedStructGen<Decimal>?, false);
+// Eval(8456, o is NestedStructGen<Decimal>?[], false);
Eval(8457, o is ExplicitFieldOffsetStruct, false);
Eval(8458, o is ExplicitFieldOffsetStruct[], false);
Eval(8459, o is ExplicitFieldOffsetStruct?, false);
@@ -7204,18 +7204,18 @@ internal class Program
Eval(8478, o is ImplementTwoInterface[], false);
Eval(8479, o is ImplementTwoInterface?, false);
Eval(8480, o is ImplementTwoInterface?[], false);
- Eval(8481, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8482, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8483, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8484, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8485, o is ImplementTwoInterfaceGen<int>, true);
- Eval(8486, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(8487, o is ImplementTwoInterfaceGen<int>?, true);
- Eval(8488, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8489, o is ImplementAllInterface<int>, false);
- Eval(8490, o is ImplementAllInterface<int>[], false);
- Eval(8491, o is ImplementAllInterface<int>?, false);
- Eval(8492, o is ImplementAllInterface<int>?[], false);
+// Eval(8481, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8482, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8483, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8484, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8485, o is ImplementTwoInterfaceGen<int>, true);
+// Eval(8486, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8487, o is ImplementTwoInterfaceGen<int>?, true);
+// Eval(8488, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8489, o is ImplementAllInterface<int>, false);
+// Eval(8490, o is ImplementAllInterface<int>[], false);
+// Eval(8491, o is ImplementAllInterface<int>?, false);
+// Eval(8492, o is ImplementAllInterface<int>?[], false);
Eval(8493, o is IntE, false);
Eval(8494, o is IntE[], false);
Eval(8495, o is IntE?, false);
@@ -7314,38 +7314,38 @@ internal class Program
Eval(8588, o is IEmpty[], false);
Eval(8589, o is INotEmpty, false);
Eval(8590, o is INotEmpty[], false);
- Eval(8591, o is IEmptyGen<int>, true);
- Eval(8592, o is IEmptyGen<int>[], false);
- Eval(8593, o is INotEmptyGen<int>, true);
- Eval(8594, o is INotEmptyGen<int>[], false);
+// Eval(8591, o is IEmptyGen<int>, true);
+// Eval(8592, o is IEmptyGen<int>[], false);
+// Eval(8593, o is INotEmptyGen<int>, true);
+// Eval(8594, o is INotEmptyGen<int>[], false);
Eval(8595, o is SimpleDelegate, false);
Eval(8596, o is SimpleDelegate[], false);
- Eval(8597, o is GenericDelegate<int>, false);
- Eval(8598, o is GenericDelegate<int>[], false);
+// Eval(8597, o is GenericDelegate<int>, false);
+// Eval(8598, o is GenericDelegate<int>[], false);
Eval(8599, o is EmptyClass, false);
Eval(8600, o is EmptyClass[], false);
Eval(8601, o is NotEmptyClass, false);
Eval(8602, o is NotEmptyClass[], false);
- Eval(8603, o is EmptyClassGen<int>, false);
- Eval(8604, o is EmptyClassGen<int>[], false);
- Eval(8605, o is NotEmptyClassGen<Guid>, false);
- Eval(8606, o is NotEmptyClassGen<Guid>[], false);
- Eval(8607, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(8608, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8603, o is EmptyClassGen<int>, false);
+// Eval(8604, o is EmptyClassGen<int>[], false);
+// Eval(8605, o is NotEmptyClassGen<Guid>, false);
+// Eval(8606, o is NotEmptyClassGen<Guid>[], false);
+// Eval(8607, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8608, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(8609, o is NestedClass, false);
Eval(8610, o is NestedClass[], false);
- Eval(8611, o is NestedClassGen<Decimal>, false);
- Eval(8612, o is NestedClassGen<Decimal>[], false);
+// Eval(8611, o is NestedClassGen<Decimal>, false);
+// Eval(8612, o is NestedClassGen<Decimal>[], false);
Eval(8613, o is ImplementOneInterfaceC, false);
Eval(8614, o is ImplementOneInterfaceC[], false);
Eval(8615, o is ImplementTwoInterfaceC, false);
Eval(8616, o is ImplementTwoInterfaceC[], false);
- Eval(8617, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8618, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8619, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(8620, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8621, o is ImplementAllInterfaceC<int>, false);
- Eval(8622, o is ImplementAllInterfaceC<int>[], false);
+// Eval(8617, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8618, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8619, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8620, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8621, o is ImplementAllInterfaceC<int>, false);
+// Eval(8622, o is ImplementAllInterfaceC<int>[], false);
Eval(8623, o is SealedClass, false);
Eval(8624, o is SealedClass[], false);
}
@@ -7360,26 +7360,26 @@ internal class Program
Eval(8630, o is NotEmptyStruct[], false);
Eval(8631, o is NotEmptyStruct?, false);
Eval(8632, o is NotEmptyStruct?[], false);
- Eval(8633, o is EmptyStructGen<int>, false);
- Eval(8634, o is EmptyStructGen<int>[], false);
- Eval(8635, o is EmptyStructGen<int>?, false);
- Eval(8636, o is EmptyStructGen<int>?[], false);
- Eval(8637, o is NotEmptyStructGen<Guid>, false);
- Eval(8638, o is NotEmptyStructGen<Guid>[], false);
- Eval(8639, o is NotEmptyStructGen<Guid>?, false);
- Eval(8640, o is NotEmptyStructGen<Guid>?[], false);
- Eval(8641, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8642, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8643, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8644, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8633, o is EmptyStructGen<int>, false);
+// Eval(8634, o is EmptyStructGen<int>[], false);
+// Eval(8635, o is EmptyStructGen<int>?, false);
+// Eval(8636, o is EmptyStructGen<int>?[], false);
+// Eval(8637, o is NotEmptyStructGen<Guid>, false);
+// Eval(8638, o is NotEmptyStructGen<Guid>[], false);
+// Eval(8639, o is NotEmptyStructGen<Guid>?, false);
+// Eval(8640, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(8641, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8642, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8643, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8644, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8645, o is NestedStruct, false);
Eval(8646, o is NestedStruct[], false);
Eval(8647, o is NestedStruct?, false);
Eval(8648, o is NestedStruct?[], false);
- Eval(8649, o is NestedStructGen<Decimal>, false);
- Eval(8650, o is NestedStructGen<Decimal>[], false);
- Eval(8651, o is NestedStructGen<Decimal>?, false);
- Eval(8652, o is NestedStructGen<Decimal>?[], false);
+// Eval(8649, o is NestedStructGen<Decimal>, false);
+// Eval(8650, o is NestedStructGen<Decimal>[], false);
+// Eval(8651, o is NestedStructGen<Decimal>?, false);
+// Eval(8652, o is NestedStructGen<Decimal>?[], false);
Eval(8653, o is ExplicitFieldOffsetStruct, false);
Eval(8654, o is ExplicitFieldOffsetStruct[], false);
Eval(8655, o is ExplicitFieldOffsetStruct?, false);
@@ -7396,18 +7396,18 @@ internal class Program
Eval(8674, o is ImplementTwoInterface[], false);
Eval(8675, o is ImplementTwoInterface?, false);
Eval(8676, o is ImplementTwoInterface?[], false);
- Eval(8677, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8678, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8679, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8680, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8681, o is ImplementTwoInterfaceGen<int>, false);
- Eval(8682, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(8683, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(8684, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8685, o is ImplementAllInterface<int>, false);
- Eval(8686, o is ImplementAllInterface<int>[], false);
- Eval(8687, o is ImplementAllInterface<int>?, false);
- Eval(8688, o is ImplementAllInterface<int>?[], false);
+// Eval(8677, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8678, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8679, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8680, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8681, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(8682, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8683, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(8684, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8685, o is ImplementAllInterface<int>, false);
+// Eval(8686, o is ImplementAllInterface<int>[], false);
+// Eval(8687, o is ImplementAllInterface<int>?, false);
+// Eval(8688, o is ImplementAllInterface<int>?[], false);
Eval(8689, o is IntE, false);
Eval(8690, o is IntE[], false);
Eval(8691, o is IntE?, false);
@@ -7506,38 +7506,38 @@ internal class Program
Eval(8784, o is IEmpty[], false);
Eval(8785, o is INotEmpty, false);
Eval(8786, o is INotEmpty[], false);
- Eval(8787, o is IEmptyGen<int>, false);
- Eval(8788, o is IEmptyGen<int>[], false);
- Eval(8789, o is INotEmptyGen<int>, false);
- Eval(8790, o is INotEmptyGen<int>[], false);
+// Eval(8787, o is IEmptyGen<int>, false);
+// Eval(8788, o is IEmptyGen<int>[], false);
+// Eval(8789, o is INotEmptyGen<int>, false);
+// Eval(8790, o is INotEmptyGen<int>[], false);
Eval(8791, o is SimpleDelegate, false);
Eval(8792, o is SimpleDelegate[], false);
- Eval(8793, o is GenericDelegate<int>, false);
- Eval(8794, o is GenericDelegate<int>[], false);
+// Eval(8793, o is GenericDelegate<int>, false);
+// Eval(8794, o is GenericDelegate<int>[], false);
Eval(8795, o is EmptyClass, false);
Eval(8796, o is EmptyClass[], false);
Eval(8797, o is NotEmptyClass, false);
Eval(8798, o is NotEmptyClass[], false);
- Eval(8799, o is EmptyClassGen<int>, false);
- Eval(8800, o is EmptyClassGen<int>[], false);
- Eval(8801, o is NotEmptyClassGen<Guid>, false);
- Eval(8802, o is NotEmptyClassGen<Guid>[], false);
- Eval(8803, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(8804, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8799, o is EmptyClassGen<int>, false);
+// Eval(8800, o is EmptyClassGen<int>[], false);
+// Eval(8801, o is NotEmptyClassGen<Guid>, false);
+// Eval(8802, o is NotEmptyClassGen<Guid>[], false);
+// Eval(8803, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(8804, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(8805, o is NestedClass, false);
Eval(8806, o is NestedClass[], false);
- Eval(8807, o is NestedClassGen<Decimal>, false);
- Eval(8808, o is NestedClassGen<Decimal>[], false);
+// Eval(8807, o is NestedClassGen<Decimal>, false);
+// Eval(8808, o is NestedClassGen<Decimal>[], false);
Eval(8809, o is ImplementOneInterfaceC, false);
Eval(8810, o is ImplementOneInterfaceC[], false);
Eval(8811, o is ImplementTwoInterfaceC, false);
Eval(8812, o is ImplementTwoInterfaceC[], false);
- Eval(8813, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(8814, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(8815, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(8816, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(8817, o is ImplementAllInterfaceC<int>, false);
- Eval(8818, o is ImplementAllInterfaceC<int>[], false);
+// Eval(8813, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(8814, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(8815, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(8816, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(8817, o is ImplementAllInterfaceC<int>, false);
+// Eval(8818, o is ImplementAllInterfaceC<int>[], false);
Eval(8819, o is SealedClass, false);
Eval(8820, o is SealedClass[], false);
}
@@ -7555,26 +7555,26 @@ internal class Program
Eval(8826, o is NotEmptyStruct[], false);
Eval(8827, o is NotEmptyStruct?, false);
Eval(8828, o is NotEmptyStruct?[], false);
- Eval(8829, o is EmptyStructGen<int>, false);
- Eval(8830, o is EmptyStructGen<int>[], false);
- Eval(8831, o is EmptyStructGen<int>?, false);
- Eval(8832, o is EmptyStructGen<int>?[], false);
- Eval(8833, o is NotEmptyStructGen<Guid>, false);
- Eval(8834, o is NotEmptyStructGen<Guid>[], false);
- Eval(8835, o is NotEmptyStructGen<Guid>?, false);
- Eval(8836, o is NotEmptyStructGen<Guid>?[], false);
- Eval(8837, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(8838, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(8839, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(8840, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(8829, o is EmptyStructGen<int>, false);
+// Eval(8830, o is EmptyStructGen<int>[], false);
+// Eval(8831, o is EmptyStructGen<int>?, false);
+// Eval(8832, o is EmptyStructGen<int>?[], false);
+// Eval(8833, o is NotEmptyStructGen<Guid>, false);
+// Eval(8834, o is NotEmptyStructGen<Guid>[], false);
+// Eval(8835, o is NotEmptyStructGen<Guid>?, false);
+// Eval(8836, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(8837, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(8838, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(8839, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(8840, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(8841, o is NestedStruct, false);
Eval(8842, o is NestedStruct[], false);
Eval(8843, o is NestedStruct?, false);
Eval(8844, o is NestedStruct?[], false);
- Eval(8845, o is NestedStructGen<Decimal>, false);
- Eval(8846, o is NestedStructGen<Decimal>[], false);
- Eval(8847, o is NestedStructGen<Decimal>?, false);
- Eval(8848, o is NestedStructGen<Decimal>?[], false);
+// Eval(8845, o is NestedStructGen<Decimal>, false);
+// Eval(8846, o is NestedStructGen<Decimal>[], false);
+// Eval(8847, o is NestedStructGen<Decimal>?, false);
+// Eval(8848, o is NestedStructGen<Decimal>?[], false);
Eval(8849, o is ExplicitFieldOffsetStruct, false);
Eval(8850, o is ExplicitFieldOffsetStruct[], false);
Eval(8851, o is ExplicitFieldOffsetStruct?, false);
@@ -7591,18 +7591,18 @@ internal class Program
Eval(8870, o is ImplementTwoInterface[], false);
Eval(8871, o is ImplementTwoInterface?, false);
Eval(8872, o is ImplementTwoInterface?[], false);
- Eval(8873, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(8874, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(8875, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(8876, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(8877, o is ImplementTwoInterfaceGen<int>, false);
- Eval(8878, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(8879, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(8880, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(8881, o is ImplementAllInterface<int>, true);
- Eval(8882, o is ImplementAllInterface<int>[], false);
- Eval(8883, o is ImplementAllInterface<int>?, true);
- Eval(8884, o is ImplementAllInterface<int>?[], false);
+// Eval(8873, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(8874, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(8875, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(8876, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(8877, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(8878, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(8879, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(8880, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(8881, o is ImplementAllInterface<int>, true);
+// Eval(8882, o is ImplementAllInterface<int>[], false);
+// Eval(8883, o is ImplementAllInterface<int>?, true);
+// Eval(8884, o is ImplementAllInterface<int>?[], false);
Eval(8885, o is IntE, false);
Eval(8886, o is IntE[], false);
Eval(8887, o is IntE?, false);
@@ -7701,38 +7701,38 @@ internal class Program
Eval(8980, o is IEmpty[], false);
Eval(8981, o is INotEmpty, true);
Eval(8982, o is INotEmpty[], false);
- Eval(8983, o is IEmptyGen<int>, true);
- Eval(8984, o is IEmptyGen<int>[], false);
- Eval(8985, o is INotEmptyGen<int>, true);
- Eval(8986, o is INotEmptyGen<int>[], false);
+// Eval(8983, o is IEmptyGen<int>, true);
+// Eval(8984, o is IEmptyGen<int>[], false);
+// Eval(8985, o is INotEmptyGen<int>, true);
+// Eval(8986, o is INotEmptyGen<int>[], false);
Eval(8987, o is SimpleDelegate, false);
Eval(8988, o is SimpleDelegate[], false);
- Eval(8989, o is GenericDelegate<int>, false);
- Eval(8990, o is GenericDelegate<int>[], false);
+// Eval(8989, o is GenericDelegate<int>, false);
+// Eval(8990, o is GenericDelegate<int>[], false);
Eval(8991, o is EmptyClass, false);
Eval(8992, o is EmptyClass[], false);
Eval(8993, o is NotEmptyClass, false);
Eval(8994, o is NotEmptyClass[], false);
- Eval(8995, o is EmptyClassGen<int>, false);
- Eval(8996, o is EmptyClassGen<int>[], false);
- Eval(8997, o is NotEmptyClassGen<Guid>, false);
- Eval(8998, o is NotEmptyClassGen<Guid>[], false);
- Eval(8999, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(9000, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(8995, o is EmptyClassGen<int>, false);
+// Eval(8996, o is EmptyClassGen<int>[], false);
+// Eval(8997, o is NotEmptyClassGen<Guid>, false);
+// Eval(8998, o is NotEmptyClassGen<Guid>[], false);
+// Eval(8999, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9000, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(9001, o is NestedClass, false);
Eval(9002, o is NestedClass[], false);
- Eval(9003, o is NestedClassGen<Decimal>, false);
- Eval(9004, o is NestedClassGen<Decimal>[], false);
+// Eval(9003, o is NestedClassGen<Decimal>, false);
+// Eval(9004, o is NestedClassGen<Decimal>[], false);
Eval(9005, o is ImplementOneInterfaceC, false);
Eval(9006, o is ImplementOneInterfaceC[], false);
Eval(9007, o is ImplementTwoInterfaceC, false);
Eval(9008, o is ImplementTwoInterfaceC[], false);
- Eval(9009, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9010, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9011, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(9012, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9013, o is ImplementAllInterfaceC<int>, false);
- Eval(9014, o is ImplementAllInterfaceC<int>[], false);
+// Eval(9009, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9010, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9011, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9012, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9013, o is ImplementAllInterfaceC<int>, false);
+// Eval(9014, o is ImplementAllInterfaceC<int>[], false);
Eval(9015, o is SealedClass, false);
Eval(9016, o is SealedClass[], false);
}
@@ -7747,26 +7747,26 @@ internal class Program
Eval(9022, o is NotEmptyStruct[], false);
Eval(9023, o is NotEmptyStruct?, false);
Eval(9024, o is NotEmptyStruct?[], false);
- Eval(9025, o is EmptyStructGen<int>, false);
- Eval(9026, o is EmptyStructGen<int>[], false);
- Eval(9027, o is EmptyStructGen<int>?, false);
- Eval(9028, o is EmptyStructGen<int>?[], false);
- Eval(9029, o is NotEmptyStructGen<Guid>, false);
- Eval(9030, o is NotEmptyStructGen<Guid>[], false);
- Eval(9031, o is NotEmptyStructGen<Guid>?, false);
- Eval(9032, o is NotEmptyStructGen<Guid>?[], false);
- Eval(9033, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9034, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9035, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9036, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9025, o is EmptyStructGen<int>, false);
+// Eval(9026, o is EmptyStructGen<int>[], false);
+// Eval(9027, o is EmptyStructGen<int>?, false);
+// Eval(9028, o is EmptyStructGen<int>?[], false);
+// Eval(9029, o is NotEmptyStructGen<Guid>, false);
+// Eval(9030, o is NotEmptyStructGen<Guid>[], false);
+// Eval(9031, o is NotEmptyStructGen<Guid>?, false);
+// Eval(9032, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(9033, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9034, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9035, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9036, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9037, o is NestedStruct, false);
Eval(9038, o is NestedStruct[], false);
Eval(9039, o is NestedStruct?, false);
Eval(9040, o is NestedStruct?[], false);
- Eval(9041, o is NestedStructGen<Decimal>, false);
- Eval(9042, o is NestedStructGen<Decimal>[], false);
- Eval(9043, o is NestedStructGen<Decimal>?, false);
- Eval(9044, o is NestedStructGen<Decimal>?[], false);
+// Eval(9041, o is NestedStructGen<Decimal>, false);
+// Eval(9042, o is NestedStructGen<Decimal>[], false);
+// Eval(9043, o is NestedStructGen<Decimal>?, false);
+// Eval(9044, o is NestedStructGen<Decimal>?[], false);
Eval(9045, o is ExplicitFieldOffsetStruct, false);
Eval(9046, o is ExplicitFieldOffsetStruct[], false);
Eval(9047, o is ExplicitFieldOffsetStruct?, false);
@@ -7783,18 +7783,18 @@ internal class Program
Eval(9066, o is ImplementTwoInterface[], false);
Eval(9067, o is ImplementTwoInterface?, false);
Eval(9068, o is ImplementTwoInterface?[], false);
- Eval(9069, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9070, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9071, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9072, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9073, o is ImplementTwoInterfaceGen<int>, false);
- Eval(9074, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(9075, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(9076, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9077, o is ImplementAllInterface<int>, true);
- Eval(9078, o is ImplementAllInterface<int>[], false);
- Eval(9079, o is ImplementAllInterface<int>?, true);
- Eval(9080, o is ImplementAllInterface<int>?[], false);
+// Eval(9069, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9070, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9071, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9072, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9073, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(9074, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9075, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9076, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9077, o is ImplementAllInterface<int>, true);
+// Eval(9078, o is ImplementAllInterface<int>[], false);
+// Eval(9079, o is ImplementAllInterface<int>?, true);
+// Eval(9080, o is ImplementAllInterface<int>?[], false);
Eval(9081, o is IntE, false);
Eval(9082, o is IntE[], false);
Eval(9083, o is IntE?, false);
@@ -7893,38 +7893,38 @@ internal class Program
Eval(9176, o is IEmpty[], false);
Eval(9177, o is INotEmpty, true);
Eval(9178, o is INotEmpty[], false);
- Eval(9179, o is IEmptyGen<int>, true);
- Eval(9180, o is IEmptyGen<int>[], false);
- Eval(9181, o is INotEmptyGen<int>, true);
- Eval(9182, o is INotEmptyGen<int>[], false);
+// Eval(9179, o is IEmptyGen<int>, true);
+// Eval(9180, o is IEmptyGen<int>[], false);
+// Eval(9181, o is INotEmptyGen<int>, true);
+// Eval(9182, o is INotEmptyGen<int>[], false);
Eval(9183, o is SimpleDelegate, false);
Eval(9184, o is SimpleDelegate[], false);
- Eval(9185, o is GenericDelegate<int>, false);
- Eval(9186, o is GenericDelegate<int>[], false);
+// Eval(9185, o is GenericDelegate<int>, false);
+// Eval(9186, o is GenericDelegate<int>[], false);
Eval(9187, o is EmptyClass, false);
Eval(9188, o is EmptyClass[], false);
Eval(9189, o is NotEmptyClass, false);
Eval(9190, o is NotEmptyClass[], false);
- Eval(9191, o is EmptyClassGen<int>, false);
- Eval(9192, o is EmptyClassGen<int>[], false);
- Eval(9193, o is NotEmptyClassGen<Guid>, false);
- Eval(9194, o is NotEmptyClassGen<Guid>[], false);
- Eval(9195, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(9196, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9191, o is EmptyClassGen<int>, false);
+// Eval(9192, o is EmptyClassGen<int>[], false);
+// Eval(9193, o is NotEmptyClassGen<Guid>, false);
+// Eval(9194, o is NotEmptyClassGen<Guid>[], false);
+// Eval(9195, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9196, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(9197, o is NestedClass, false);
Eval(9198, o is NestedClass[], false);
- Eval(9199, o is NestedClassGen<Decimal>, false);
- Eval(9200, o is NestedClassGen<Decimal>[], false);
+// Eval(9199, o is NestedClassGen<Decimal>, false);
+// Eval(9200, o is NestedClassGen<Decimal>[], false);
Eval(9201, o is ImplementOneInterfaceC, false);
Eval(9202, o is ImplementOneInterfaceC[], false);
Eval(9203, o is ImplementTwoInterfaceC, false);
Eval(9204, o is ImplementTwoInterfaceC[], false);
- Eval(9205, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9206, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9207, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(9208, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9209, o is ImplementAllInterfaceC<int>, false);
- Eval(9210, o is ImplementAllInterfaceC<int>[], false);
+// Eval(9205, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9206, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9207, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9208, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9209, o is ImplementAllInterfaceC<int>, false);
+// Eval(9210, o is ImplementAllInterfaceC<int>[], false);
Eval(9211, o is SealedClass, false);
Eval(9212, o is SealedClass[], false);
}
@@ -7939,26 +7939,26 @@ internal class Program
Eval(9218, o is NotEmptyStruct[], false);
Eval(9219, o is NotEmptyStruct?, false);
Eval(9220, o is NotEmptyStruct?[], false);
- Eval(9221, o is EmptyStructGen<int>, false);
- Eval(9222, o is EmptyStructGen<int>[], false);
- Eval(9223, o is EmptyStructGen<int>?, false);
- Eval(9224, o is EmptyStructGen<int>?[], false);
- Eval(9225, o is NotEmptyStructGen<Guid>, false);
- Eval(9226, o is NotEmptyStructGen<Guid>[], false);
- Eval(9227, o is NotEmptyStructGen<Guid>?, false);
- Eval(9228, o is NotEmptyStructGen<Guid>?[], false);
- Eval(9229, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9230, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9231, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9232, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9221, o is EmptyStructGen<int>, false);
+// Eval(9222, o is EmptyStructGen<int>[], false);
+// Eval(9223, o is EmptyStructGen<int>?, false);
+// Eval(9224, o is EmptyStructGen<int>?[], false);
+// Eval(9225, o is NotEmptyStructGen<Guid>, false);
+// Eval(9226, o is NotEmptyStructGen<Guid>[], false);
+// Eval(9227, o is NotEmptyStructGen<Guid>?, false);
+// Eval(9228, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(9229, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9230, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9231, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9232, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9233, o is NestedStruct, false);
Eval(9234, o is NestedStruct[], false);
Eval(9235, o is NestedStruct?, false);
Eval(9236, o is NestedStruct?[], false);
- Eval(9237, o is NestedStructGen<Decimal>, false);
- Eval(9238, o is NestedStructGen<Decimal>[], false);
- Eval(9239, o is NestedStructGen<Decimal>?, false);
- Eval(9240, o is NestedStructGen<Decimal>?[], false);
+// Eval(9237, o is NestedStructGen<Decimal>, false);
+// Eval(9238, o is NestedStructGen<Decimal>[], false);
+// Eval(9239, o is NestedStructGen<Decimal>?, false);
+// Eval(9240, o is NestedStructGen<Decimal>?[], false);
Eval(9241, o is ExplicitFieldOffsetStruct, false);
Eval(9242, o is ExplicitFieldOffsetStruct[], false);
Eval(9243, o is ExplicitFieldOffsetStruct?, false);
@@ -7975,18 +7975,18 @@ internal class Program
Eval(9262, o is ImplementTwoInterface[], false);
Eval(9263, o is ImplementTwoInterface?, false);
Eval(9264, o is ImplementTwoInterface?[], false);
- Eval(9265, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9266, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9267, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9268, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9269, o is ImplementTwoInterfaceGen<int>, false);
- Eval(9270, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(9271, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(9272, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9273, o is ImplementAllInterface<int>, false);
- Eval(9274, o is ImplementAllInterface<int>[], false);
- Eval(9275, o is ImplementAllInterface<int>?, false);
- Eval(9276, o is ImplementAllInterface<int>?[], false);
+// Eval(9265, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9266, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9267, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9268, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9269, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(9270, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9271, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9272, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9273, o is ImplementAllInterface<int>, false);
+// Eval(9274, o is ImplementAllInterface<int>[], false);
+// Eval(9275, o is ImplementAllInterface<int>?, false);
+// Eval(9276, o is ImplementAllInterface<int>?[], false);
Eval(9277, o is IntE, false);
Eval(9278, o is IntE[], false);
Eval(9279, o is IntE?, false);
@@ -8085,38 +8085,38 @@ internal class Program
Eval(9372, o is IEmpty[], false);
Eval(9373, o is INotEmpty, false);
Eval(9374, o is INotEmpty[], false);
- Eval(9375, o is IEmptyGen<int>, false);
- Eval(9376, o is IEmptyGen<int>[], false);
- Eval(9377, o is INotEmptyGen<int>, false);
- Eval(9378, o is INotEmptyGen<int>[], false);
+// Eval(9375, o is IEmptyGen<int>, false);
+// Eval(9376, o is IEmptyGen<int>[], false);
+// Eval(9377, o is INotEmptyGen<int>, false);
+// Eval(9378, o is INotEmptyGen<int>[], false);
Eval(9379, o is SimpleDelegate, false);
Eval(9380, o is SimpleDelegate[], false);
- Eval(9381, o is GenericDelegate<int>, false);
- Eval(9382, o is GenericDelegate<int>[], false);
+// Eval(9381, o is GenericDelegate<int>, false);
+// Eval(9382, o is GenericDelegate<int>[], false);
Eval(9383, o is EmptyClass, false);
Eval(9384, o is EmptyClass[], false);
Eval(9385, o is NotEmptyClass, false);
Eval(9386, o is NotEmptyClass[], false);
- Eval(9387, o is EmptyClassGen<int>, false);
- Eval(9388, o is EmptyClassGen<int>[], false);
- Eval(9389, o is NotEmptyClassGen<Guid>, false);
- Eval(9390, o is NotEmptyClassGen<Guid>[], false);
- Eval(9391, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(9392, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9387, o is EmptyClassGen<int>, false);
+// Eval(9388, o is EmptyClassGen<int>[], false);
+// Eval(9389, o is NotEmptyClassGen<Guid>, false);
+// Eval(9390, o is NotEmptyClassGen<Guid>[], false);
+// Eval(9391, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9392, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(9393, o is NestedClass, false);
Eval(9394, o is NestedClass[], false);
- Eval(9395, o is NestedClassGen<Decimal>, false);
- Eval(9396, o is NestedClassGen<Decimal>[], false);
+// Eval(9395, o is NestedClassGen<Decimal>, false);
+// Eval(9396, o is NestedClassGen<Decimal>[], false);
Eval(9397, o is ImplementOneInterfaceC, false);
Eval(9398, o is ImplementOneInterfaceC[], false);
Eval(9399, o is ImplementTwoInterfaceC, false);
Eval(9400, o is ImplementTwoInterfaceC[], false);
- Eval(9401, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9402, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9403, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(9404, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9405, o is ImplementAllInterfaceC<int>, false);
- Eval(9406, o is ImplementAllInterfaceC<int>[], false);
+// Eval(9401, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9402, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9403, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9404, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9405, o is ImplementAllInterfaceC<int>, false);
+// Eval(9406, o is ImplementAllInterfaceC<int>[], false);
Eval(9407, o is SealedClass, false);
Eval(9408, o is SealedClass[], false);
}
@@ -8134,26 +8134,26 @@ internal class Program
Eval(9414, o is NotEmptyStruct[], false);
Eval(9415, o is NotEmptyStruct?, false);
Eval(9416, o is NotEmptyStruct?[], false);
- Eval(9417, o is EmptyStructGen<int>, false);
- Eval(9418, o is EmptyStructGen<int>[], false);
- Eval(9419, o is EmptyStructGen<int>?, false);
- Eval(9420, o is EmptyStructGen<int>?[], false);
- Eval(9421, o is NotEmptyStructGen<Guid>, false);
- Eval(9422, o is NotEmptyStructGen<Guid>[], false);
- Eval(9423, o is NotEmptyStructGen<Guid>?, false);
- Eval(9424, o is NotEmptyStructGen<Guid>?[], false);
- Eval(9425, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9426, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9427, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9428, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9417, o is EmptyStructGen<int>, false);
+// Eval(9418, o is EmptyStructGen<int>[], false);
+// Eval(9419, o is EmptyStructGen<int>?, false);
+// Eval(9420, o is EmptyStructGen<int>?[], false);
+// Eval(9421, o is NotEmptyStructGen<Guid>, false);
+// Eval(9422, o is NotEmptyStructGen<Guid>[], false);
+// Eval(9423, o is NotEmptyStructGen<Guid>?, false);
+// Eval(9424, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(9425, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9426, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9427, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9428, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9429, o is NestedStruct, false);
Eval(9430, o is NestedStruct[], false);
Eval(9431, o is NestedStruct?, false);
Eval(9432, o is NestedStruct?[], false);
- Eval(9433, o is NestedStructGen<Decimal>, false);
- Eval(9434, o is NestedStructGen<Decimal>[], false);
- Eval(9435, o is NestedStructGen<Decimal>?, false);
- Eval(9436, o is NestedStructGen<Decimal>?[], false);
+// Eval(9433, o is NestedStructGen<Decimal>, false);
+// Eval(9434, o is NestedStructGen<Decimal>[], false);
+// Eval(9435, o is NestedStructGen<Decimal>?, false);
+// Eval(9436, o is NestedStructGen<Decimal>?[], false);
Eval(9437, o is ExplicitFieldOffsetStruct, false);
Eval(9438, o is ExplicitFieldOffsetStruct[], false);
Eval(9439, o is ExplicitFieldOffsetStruct?, false);
@@ -8170,18 +8170,18 @@ internal class Program
Eval(9458, o is ImplementTwoInterface[], false);
Eval(9459, o is ImplementTwoInterface?, false);
Eval(9460, o is ImplementTwoInterface?[], false);
- Eval(9461, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9462, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9463, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9464, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9465, o is ImplementTwoInterfaceGen<int>, false);
- Eval(9466, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(9467, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(9468, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9469, o is ImplementAllInterface<int>, false);
- Eval(9470, o is ImplementAllInterface<int>[], false);
- Eval(9471, o is ImplementAllInterface<int>?, false);
- Eval(9472, o is ImplementAllInterface<int>?[], false);
+// Eval(9461, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9462, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9463, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9464, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9465, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(9466, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9467, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9468, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9469, o is ImplementAllInterface<int>, false);
+// Eval(9470, o is ImplementAllInterface<int>[], false);
+// Eval(9471, o is ImplementAllInterface<int>?, false);
+// Eval(9472, o is ImplementAllInterface<int>?[], false);
Eval(9473, o is IntE, true);
Eval(9474, o is IntE[], false);
Eval(9475, o is IntE?, true);
@@ -8280,38 +8280,38 @@ internal class Program
Eval(9568, o is IEmpty[], false);
Eval(9569, o is INotEmpty, false);
Eval(9570, o is INotEmpty[], false);
- Eval(9571, o is IEmptyGen<int>, false);
- Eval(9572, o is IEmptyGen<int>[], false);
- Eval(9573, o is INotEmptyGen<int>, false);
- Eval(9574, o is INotEmptyGen<int>[], false);
+// Eval(9571, o is IEmptyGen<int>, false);
+// Eval(9572, o is IEmptyGen<int>[], false);
+// Eval(9573, o is INotEmptyGen<int>, false);
+// Eval(9574, o is INotEmptyGen<int>[], false);
Eval(9575, o is SimpleDelegate, false);
Eval(9576, o is SimpleDelegate[], false);
- Eval(9577, o is GenericDelegate<int>, false);
- Eval(9578, o is GenericDelegate<int>[], false);
+// Eval(9577, o is GenericDelegate<int>, false);
+// Eval(9578, o is GenericDelegate<int>[], false);
Eval(9579, o is EmptyClass, false);
Eval(9580, o is EmptyClass[], false);
Eval(9581, o is NotEmptyClass, false);
Eval(9582, o is NotEmptyClass[], false);
- Eval(9583, o is EmptyClassGen<int>, false);
- Eval(9584, o is EmptyClassGen<int>[], false);
- Eval(9585, o is NotEmptyClassGen<Guid>, false);
- Eval(9586, o is NotEmptyClassGen<Guid>[], false);
- Eval(9587, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(9588, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9583, o is EmptyClassGen<int>, false);
+// Eval(9584, o is EmptyClassGen<int>[], false);
+// Eval(9585, o is NotEmptyClassGen<Guid>, false);
+// Eval(9586, o is NotEmptyClassGen<Guid>[], false);
+// Eval(9587, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9588, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(9589, o is NestedClass, false);
Eval(9590, o is NestedClass[], false);
- Eval(9591, o is NestedClassGen<Decimal>, false);
- Eval(9592, o is NestedClassGen<Decimal>[], false);
+// Eval(9591, o is NestedClassGen<Decimal>, false);
+// Eval(9592, o is NestedClassGen<Decimal>[], false);
Eval(9593, o is ImplementOneInterfaceC, false);
Eval(9594, o is ImplementOneInterfaceC[], false);
Eval(9595, o is ImplementTwoInterfaceC, false);
Eval(9596, o is ImplementTwoInterfaceC[], false);
- Eval(9597, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9598, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9599, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(9600, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9601, o is ImplementAllInterfaceC<int>, false);
- Eval(9602, o is ImplementAllInterfaceC<int>[], false);
+// Eval(9597, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9598, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9599, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9600, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9601, o is ImplementAllInterfaceC<int>, false);
+// Eval(9602, o is ImplementAllInterfaceC<int>[], false);
Eval(9603, o is SealedClass, false);
Eval(9604, o is SealedClass[], false);
}
@@ -8326,26 +8326,26 @@ internal class Program
Eval(9610, o is NotEmptyStruct[], false);
Eval(9611, o is NotEmptyStruct?, false);
Eval(9612, o is NotEmptyStruct?[], false);
- Eval(9613, o is EmptyStructGen<int>, false);
- Eval(9614, o is EmptyStructGen<int>[], false);
- Eval(9615, o is EmptyStructGen<int>?, false);
- Eval(9616, o is EmptyStructGen<int>?[], false);
- Eval(9617, o is NotEmptyStructGen<Guid>, false);
- Eval(9618, o is NotEmptyStructGen<Guid>[], false);
- Eval(9619, o is NotEmptyStructGen<Guid>?, false);
- Eval(9620, o is NotEmptyStructGen<Guid>?[], false);
- Eval(9621, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9622, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9623, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9624, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9613, o is EmptyStructGen<int>, false);
+// Eval(9614, o is EmptyStructGen<int>[], false);
+// Eval(9615, o is EmptyStructGen<int>?, false);
+// Eval(9616, o is EmptyStructGen<int>?[], false);
+// Eval(9617, o is NotEmptyStructGen<Guid>, false);
+// Eval(9618, o is NotEmptyStructGen<Guid>[], false);
+// Eval(9619, o is NotEmptyStructGen<Guid>?, false);
+// Eval(9620, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(9621, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9622, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9623, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9624, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9625, o is NestedStruct, false);
Eval(9626, o is NestedStruct[], false);
Eval(9627, o is NestedStruct?, false);
Eval(9628, o is NestedStruct?[], false);
- Eval(9629, o is NestedStructGen<Decimal>, false);
- Eval(9630, o is NestedStructGen<Decimal>[], false);
- Eval(9631, o is NestedStructGen<Decimal>?, false);
- Eval(9632, o is NestedStructGen<Decimal>?[], false);
+// Eval(9629, o is NestedStructGen<Decimal>, false);
+// Eval(9630, o is NestedStructGen<Decimal>[], false);
+// Eval(9631, o is NestedStructGen<Decimal>?, false);
+// Eval(9632, o is NestedStructGen<Decimal>?[], false);
Eval(9633, o is ExplicitFieldOffsetStruct, false);
Eval(9634, o is ExplicitFieldOffsetStruct[], false);
Eval(9635, o is ExplicitFieldOffsetStruct?, false);
@@ -8362,18 +8362,18 @@ internal class Program
Eval(9654, o is ImplementTwoInterface[], false);
Eval(9655, o is ImplementTwoInterface?, false);
Eval(9656, o is ImplementTwoInterface?[], false);
- Eval(9657, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9658, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9659, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9660, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9661, o is ImplementTwoInterfaceGen<int>, false);
- Eval(9662, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(9663, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(9664, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9665, o is ImplementAllInterface<int>, false);
- Eval(9666, o is ImplementAllInterface<int>[], false);
- Eval(9667, o is ImplementAllInterface<int>?, false);
- Eval(9668, o is ImplementAllInterface<int>?[], false);
+// Eval(9657, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9658, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9659, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9660, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9661, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(9662, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9663, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9664, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9665, o is ImplementAllInterface<int>, false);
+// Eval(9666, o is ImplementAllInterface<int>[], false);
+// Eval(9667, o is ImplementAllInterface<int>?, false);
+// Eval(9668, o is ImplementAllInterface<int>?[], false);
Eval(9669, o is IntE, true);
Eval(9670, o is IntE[], false);
Eval(9671, o is IntE?, true);
@@ -8472,38 +8472,38 @@ internal class Program
Eval(9764, o is IEmpty[], false);
Eval(9765, o is INotEmpty, false);
Eval(9766, o is INotEmpty[], false);
- Eval(9767, o is IEmptyGen<int>, false);
- Eval(9768, o is IEmptyGen<int>[], false);
- Eval(9769, o is INotEmptyGen<int>, false);
- Eval(9770, o is INotEmptyGen<int>[], false);
+// Eval(9767, o is IEmptyGen<int>, false);
+// Eval(9768, o is IEmptyGen<int>[], false);
+// Eval(9769, o is INotEmptyGen<int>, false);
+// Eval(9770, o is INotEmptyGen<int>[], false);
Eval(9771, o is SimpleDelegate, false);
Eval(9772, o is SimpleDelegate[], false);
- Eval(9773, o is GenericDelegate<int>, false);
- Eval(9774, o is GenericDelegate<int>[], false);
+// Eval(9773, o is GenericDelegate<int>, false);
+// Eval(9774, o is GenericDelegate<int>[], false);
Eval(9775, o is EmptyClass, false);
Eval(9776, o is EmptyClass[], false);
Eval(9777, o is NotEmptyClass, false);
Eval(9778, o is NotEmptyClass[], false);
- Eval(9779, o is EmptyClassGen<int>, false);
- Eval(9780, o is EmptyClassGen<int>[], false);
- Eval(9781, o is NotEmptyClassGen<Guid>, false);
- Eval(9782, o is NotEmptyClassGen<Guid>[], false);
- Eval(9783, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(9784, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9779, o is EmptyClassGen<int>, false);
+// Eval(9780, o is EmptyClassGen<int>[], false);
+// Eval(9781, o is NotEmptyClassGen<Guid>, false);
+// Eval(9782, o is NotEmptyClassGen<Guid>[], false);
+// Eval(9783, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9784, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(9785, o is NestedClass, false);
Eval(9786, o is NestedClass[], false);
- Eval(9787, o is NestedClassGen<Decimal>, false);
- Eval(9788, o is NestedClassGen<Decimal>[], false);
+// Eval(9787, o is NestedClassGen<Decimal>, false);
+// Eval(9788, o is NestedClassGen<Decimal>[], false);
Eval(9789, o is ImplementOneInterfaceC, false);
Eval(9790, o is ImplementOneInterfaceC[], false);
Eval(9791, o is ImplementTwoInterfaceC, false);
Eval(9792, o is ImplementTwoInterfaceC[], false);
- Eval(9793, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9794, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9795, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(9796, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9797, o is ImplementAllInterfaceC<int>, false);
- Eval(9798, o is ImplementAllInterfaceC<int>[], false);
+// Eval(9793, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9794, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9795, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9796, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9797, o is ImplementAllInterfaceC<int>, false);
+// Eval(9798, o is ImplementAllInterfaceC<int>[], false);
Eval(9799, o is SealedClass, false);
Eval(9800, o is SealedClass[], false);
}
@@ -8518,26 +8518,26 @@ internal class Program
Eval(9806, o is NotEmptyStruct[], false);
Eval(9807, o is NotEmptyStruct?, false);
Eval(9808, o is NotEmptyStruct?[], false);
- Eval(9809, o is EmptyStructGen<int>, false);
- Eval(9810, o is EmptyStructGen<int>[], false);
- Eval(9811, o is EmptyStructGen<int>?, false);
- Eval(9812, o is EmptyStructGen<int>?[], false);
- Eval(9813, o is NotEmptyStructGen<Guid>, false);
- Eval(9814, o is NotEmptyStructGen<Guid>[], false);
- Eval(9815, o is NotEmptyStructGen<Guid>?, false);
- Eval(9816, o is NotEmptyStructGen<Guid>?[], false);
- Eval(9817, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(9818, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(9819, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(9820, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(9809, o is EmptyStructGen<int>, false);
+// Eval(9810, o is EmptyStructGen<int>[], false);
+// Eval(9811, o is EmptyStructGen<int>?, false);
+// Eval(9812, o is EmptyStructGen<int>?[], false);
+// Eval(9813, o is NotEmptyStructGen<Guid>, false);
+// Eval(9814, o is NotEmptyStructGen<Guid>[], false);
+// Eval(9815, o is NotEmptyStructGen<Guid>?, false);
+// Eval(9816, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(9817, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(9818, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(9819, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(9820, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(9821, o is NestedStruct, false);
Eval(9822, o is NestedStruct[], false);
Eval(9823, o is NestedStruct?, false);
Eval(9824, o is NestedStruct?[], false);
- Eval(9825, o is NestedStructGen<Decimal>, false);
- Eval(9826, o is NestedStructGen<Decimal>[], false);
- Eval(9827, o is NestedStructGen<Decimal>?, false);
- Eval(9828, o is NestedStructGen<Decimal>?[], false);
+// Eval(9825, o is NestedStructGen<Decimal>, false);
+// Eval(9826, o is NestedStructGen<Decimal>[], false);
+// Eval(9827, o is NestedStructGen<Decimal>?, false);
+// Eval(9828, o is NestedStructGen<Decimal>?[], false);
Eval(9829, o is ExplicitFieldOffsetStruct, false);
Eval(9830, o is ExplicitFieldOffsetStruct[], false);
Eval(9831, o is ExplicitFieldOffsetStruct?, false);
@@ -8554,18 +8554,18 @@ internal class Program
Eval(9850, o is ImplementTwoInterface[], false);
Eval(9851, o is ImplementTwoInterface?, false);
Eval(9852, o is ImplementTwoInterface?[], false);
- Eval(9853, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(9854, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(9855, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(9856, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(9857, o is ImplementTwoInterfaceGen<int>, false);
- Eval(9858, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(9859, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(9860, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(9861, o is ImplementAllInterface<int>, false);
- Eval(9862, o is ImplementAllInterface<int>[], false);
- Eval(9863, o is ImplementAllInterface<int>?, false);
- Eval(9864, o is ImplementAllInterface<int>?[], false);
+// Eval(9853, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(9854, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(9855, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(9856, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(9857, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(9858, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(9859, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(9860, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(9861, o is ImplementAllInterface<int>, false);
+// Eval(9862, o is ImplementAllInterface<int>[], false);
+// Eval(9863, o is ImplementAllInterface<int>?, false);
+// Eval(9864, o is ImplementAllInterface<int>?[], false);
Eval(9865, o is IntE, false);
Eval(9866, o is IntE[], false);
Eval(9867, o is IntE?, false);
@@ -8664,38 +8664,38 @@ internal class Program
Eval(9960, o is IEmpty[], false);
Eval(9961, o is INotEmpty, false);
Eval(9962, o is INotEmpty[], false);
- Eval(9963, o is IEmptyGen<int>, false);
- Eval(9964, o is IEmptyGen<int>[], false);
- Eval(9965, o is INotEmptyGen<int>, false);
- Eval(9966, o is INotEmptyGen<int>[], false);
+// Eval(9963, o is IEmptyGen<int>, false);
+// Eval(9964, o is IEmptyGen<int>[], false);
+// Eval(9965, o is INotEmptyGen<int>, false);
+// Eval(9966, o is INotEmptyGen<int>[], false);
Eval(9967, o is SimpleDelegate, false);
Eval(9968, o is SimpleDelegate[], false);
- Eval(9969, o is GenericDelegate<int>, false);
- Eval(9970, o is GenericDelegate<int>[], false);
+// Eval(9969, o is GenericDelegate<int>, false);
+// Eval(9970, o is GenericDelegate<int>[], false);
Eval(9971, o is EmptyClass, false);
Eval(9972, o is EmptyClass[], false);
Eval(9973, o is NotEmptyClass, false);
Eval(9974, o is NotEmptyClass[], false);
- Eval(9975, o is EmptyClassGen<int>, false);
- Eval(9976, o is EmptyClassGen<int>[], false);
- Eval(9977, o is NotEmptyClassGen<Guid>, false);
- Eval(9978, o is NotEmptyClassGen<Guid>[], false);
- Eval(9979, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(9980, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(9975, o is EmptyClassGen<int>, false);
+// Eval(9976, o is EmptyClassGen<int>[], false);
+// Eval(9977, o is NotEmptyClassGen<Guid>, false);
+// Eval(9978, o is NotEmptyClassGen<Guid>[], false);
+// Eval(9979, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(9980, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(9981, o is NestedClass, false);
Eval(9982, o is NestedClass[], false);
- Eval(9983, o is NestedClassGen<Decimal>, false);
- Eval(9984, o is NestedClassGen<Decimal>[], false);
+// Eval(9983, o is NestedClassGen<Decimal>, false);
+// Eval(9984, o is NestedClassGen<Decimal>[], false);
Eval(9985, o is ImplementOneInterfaceC, false);
Eval(9986, o is ImplementOneInterfaceC[], false);
Eval(9987, o is ImplementTwoInterfaceC, false);
Eval(9988, o is ImplementTwoInterfaceC[], false);
- Eval(9989, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(9990, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(9991, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(9992, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(9993, o is ImplementAllInterfaceC<int>, false);
- Eval(9994, o is ImplementAllInterfaceC<int>[], false);
+// Eval(9989, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(9990, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(9991, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(9992, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(9993, o is ImplementAllInterfaceC<int>, false);
+// Eval(9994, o is ImplementAllInterfaceC<int>[], false);
Eval(9995, o is SealedClass, false);
Eval(9996, o is SealedClass[], false);
}
@@ -8713,26 +8713,26 @@ internal class Program
Eval(10002, o is NotEmptyStruct[], false);
Eval(10003, o is NotEmptyStruct?, false);
Eval(10004, o is NotEmptyStruct?[], false);
- Eval(10005, o is EmptyStructGen<int>, false);
- Eval(10006, o is EmptyStructGen<int>[], false);
- Eval(10007, o is EmptyStructGen<int>?, false);
- Eval(10008, o is EmptyStructGen<int>?[], false);
- Eval(10009, o is NotEmptyStructGen<Guid>, false);
- Eval(10010, o is NotEmptyStructGen<Guid>[], false);
- Eval(10011, o is NotEmptyStructGen<Guid>?, false);
- Eval(10012, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10013, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10014, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10015, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10016, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10005, o is EmptyStructGen<int>, false);
+// Eval(10006, o is EmptyStructGen<int>[], false);
+// Eval(10007, o is EmptyStructGen<int>?, false);
+// Eval(10008, o is EmptyStructGen<int>?[], false);
+// Eval(10009, o is NotEmptyStructGen<Guid>, false);
+// Eval(10010, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10011, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10012, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10013, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10014, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10015, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10016, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10017, o is NestedStruct, false);
Eval(10018, o is NestedStruct[], false);
Eval(10019, o is NestedStruct?, false);
Eval(10020, o is NestedStruct?[], false);
- Eval(10021, o is NestedStructGen<Decimal>, false);
- Eval(10022, o is NestedStructGen<Decimal>[], false);
- Eval(10023, o is NestedStructGen<Decimal>?, false);
- Eval(10024, o is NestedStructGen<Decimal>?[], false);
+// Eval(10021, o is NestedStructGen<Decimal>, false);
+// Eval(10022, o is NestedStructGen<Decimal>[], false);
+// Eval(10023, o is NestedStructGen<Decimal>?, false);
+// Eval(10024, o is NestedStructGen<Decimal>?[], false);
Eval(10025, o is ExplicitFieldOffsetStruct, false);
Eval(10026, o is ExplicitFieldOffsetStruct[], false);
Eval(10027, o is ExplicitFieldOffsetStruct?, false);
@@ -8749,18 +8749,18 @@ internal class Program
Eval(10046, o is ImplementTwoInterface[], false);
Eval(10047, o is ImplementTwoInterface?, false);
Eval(10048, o is ImplementTwoInterface?[], false);
- Eval(10049, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10050, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10051, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10052, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10053, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10054, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10055, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10056, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10057, o is ImplementAllInterface<int>, false);
- Eval(10058, o is ImplementAllInterface<int>[], false);
- Eval(10059, o is ImplementAllInterface<int>?, false);
- Eval(10060, o is ImplementAllInterface<int>?[], false);
+// Eval(10049, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10050, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10051, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10052, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10053, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10054, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10055, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10056, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10057, o is ImplementAllInterface<int>, false);
+// Eval(10058, o is ImplementAllInterface<int>[], false);
+// Eval(10059, o is ImplementAllInterface<int>?, false);
+// Eval(10060, o is ImplementAllInterface<int>?[], false);
Eval(10061, o is IntE, false);
Eval(10062, o is IntE[], false);
Eval(10063, o is IntE?, false);
@@ -8859,38 +8859,38 @@ internal class Program
Eval(10156, o is IEmpty[], false);
Eval(10157, o is INotEmpty, false);
Eval(10158, o is INotEmpty[], false);
- Eval(10159, o is IEmptyGen<int>, false);
- Eval(10160, o is IEmptyGen<int>[], false);
- Eval(10161, o is INotEmptyGen<int>, false);
- Eval(10162, o is INotEmptyGen<int>[], false);
+// Eval(10159, o is IEmptyGen<int>, false);
+// Eval(10160, o is IEmptyGen<int>[], false);
+// Eval(10161, o is INotEmptyGen<int>, false);
+// Eval(10162, o is INotEmptyGen<int>[], false);
Eval(10163, o is SimpleDelegate, false);
Eval(10164, o is SimpleDelegate[], false);
- Eval(10165, o is GenericDelegate<int>, false);
- Eval(10166, o is GenericDelegate<int>[], false);
+// Eval(10165, o is GenericDelegate<int>, false);
+// Eval(10166, o is GenericDelegate<int>[], false);
Eval(10167, o is EmptyClass, false);
Eval(10168, o is EmptyClass[], false);
Eval(10169, o is NotEmptyClass, false);
Eval(10170, o is NotEmptyClass[], false);
- Eval(10171, o is EmptyClassGen<int>, false);
- Eval(10172, o is EmptyClassGen<int>[], false);
- Eval(10173, o is NotEmptyClassGen<Guid>, false);
- Eval(10174, o is NotEmptyClassGen<Guid>[], false);
- Eval(10175, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10176, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10171, o is EmptyClassGen<int>, false);
+// Eval(10172, o is EmptyClassGen<int>[], false);
+// Eval(10173, o is NotEmptyClassGen<Guid>, false);
+// Eval(10174, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10175, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10176, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10177, o is NestedClass, false);
Eval(10178, o is NestedClass[], false);
- Eval(10179, o is NestedClassGen<Decimal>, false);
- Eval(10180, o is NestedClassGen<Decimal>[], false);
+// Eval(10179, o is NestedClassGen<Decimal>, false);
+// Eval(10180, o is NestedClassGen<Decimal>[], false);
Eval(10181, o is ImplementOneInterfaceC, false);
Eval(10182, o is ImplementOneInterfaceC[], false);
Eval(10183, o is ImplementTwoInterfaceC, false);
Eval(10184, o is ImplementTwoInterfaceC[], false);
- Eval(10185, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10186, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10187, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10188, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10189, o is ImplementAllInterfaceC<int>, false);
- Eval(10190, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10185, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10186, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10187, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10188, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10189, o is ImplementAllInterfaceC<int>, false);
+// Eval(10190, o is ImplementAllInterfaceC<int>[], false);
Eval(10191, o is SealedClass, false);
Eval(10192, o is SealedClass[], false);
}
@@ -8905,26 +8905,26 @@ internal class Program
Eval(10198, o is NotEmptyStruct[], false);
Eval(10199, o is NotEmptyStruct?, false);
Eval(10200, o is NotEmptyStruct?[], false);
- Eval(10201, o is EmptyStructGen<int>, false);
- Eval(10202, o is EmptyStructGen<int>[], false);
- Eval(10203, o is EmptyStructGen<int>?, false);
- Eval(10204, o is EmptyStructGen<int>?[], false);
- Eval(10205, o is NotEmptyStructGen<Guid>, false);
- Eval(10206, o is NotEmptyStructGen<Guid>[], false);
- Eval(10207, o is NotEmptyStructGen<Guid>?, false);
- Eval(10208, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10209, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10210, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10211, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10212, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10201, o is EmptyStructGen<int>, false);
+// Eval(10202, o is EmptyStructGen<int>[], false);
+// Eval(10203, o is EmptyStructGen<int>?, false);
+// Eval(10204, o is EmptyStructGen<int>?[], false);
+// Eval(10205, o is NotEmptyStructGen<Guid>, false);
+// Eval(10206, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10207, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10208, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10209, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10210, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10211, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10212, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10213, o is NestedStruct, false);
Eval(10214, o is NestedStruct[], false);
Eval(10215, o is NestedStruct?, false);
Eval(10216, o is NestedStruct?[], false);
- Eval(10217, o is NestedStructGen<Decimal>, false);
- Eval(10218, o is NestedStructGen<Decimal>[], false);
- Eval(10219, o is NestedStructGen<Decimal>?, false);
- Eval(10220, o is NestedStructGen<Decimal>?[], false);
+// Eval(10217, o is NestedStructGen<Decimal>, false);
+// Eval(10218, o is NestedStructGen<Decimal>[], false);
+// Eval(10219, o is NestedStructGen<Decimal>?, false);
+// Eval(10220, o is NestedStructGen<Decimal>?[], false);
Eval(10221, o is ExplicitFieldOffsetStruct, false);
Eval(10222, o is ExplicitFieldOffsetStruct[], false);
Eval(10223, o is ExplicitFieldOffsetStruct?, false);
@@ -8941,18 +8941,18 @@ internal class Program
Eval(10242, o is ImplementTwoInterface[], false);
Eval(10243, o is ImplementTwoInterface?, false);
Eval(10244, o is ImplementTwoInterface?[], false);
- Eval(10245, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10246, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10247, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10248, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10249, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10250, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10251, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10252, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10253, o is ImplementAllInterface<int>, false);
- Eval(10254, o is ImplementAllInterface<int>[], false);
- Eval(10255, o is ImplementAllInterface<int>?, false);
- Eval(10256, o is ImplementAllInterface<int>?[], false);
+// Eval(10245, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10246, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10247, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10248, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10249, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10250, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10251, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10252, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10253, o is ImplementAllInterface<int>, false);
+// Eval(10254, o is ImplementAllInterface<int>[], false);
+// Eval(10255, o is ImplementAllInterface<int>?, false);
+// Eval(10256, o is ImplementAllInterface<int>?[], false);
Eval(10257, o is IntE, false);
Eval(10258, o is IntE[], false);
Eval(10259, o is IntE?, false);
@@ -9051,38 +9051,38 @@ internal class Program
Eval(10352, o is IEmpty[], false);
Eval(10353, o is INotEmpty, false);
Eval(10354, o is INotEmpty[], false);
- Eval(10355, o is IEmptyGen<int>, false);
- Eval(10356, o is IEmptyGen<int>[], false);
- Eval(10357, o is INotEmptyGen<int>, false);
- Eval(10358, o is INotEmptyGen<int>[], false);
+// Eval(10355, o is IEmptyGen<int>, false);
+// Eval(10356, o is IEmptyGen<int>[], false);
+// Eval(10357, o is INotEmptyGen<int>, false);
+// Eval(10358, o is INotEmptyGen<int>[], false);
Eval(10359, o is SimpleDelegate, false);
Eval(10360, o is SimpleDelegate[], false);
- Eval(10361, o is GenericDelegate<int>, false);
- Eval(10362, o is GenericDelegate<int>[], false);
+// Eval(10361, o is GenericDelegate<int>, false);
+// Eval(10362, o is GenericDelegate<int>[], false);
Eval(10363, o is EmptyClass, false);
Eval(10364, o is EmptyClass[], false);
Eval(10365, o is NotEmptyClass, false);
Eval(10366, o is NotEmptyClass[], false);
- Eval(10367, o is EmptyClassGen<int>, false);
- Eval(10368, o is EmptyClassGen<int>[], false);
- Eval(10369, o is NotEmptyClassGen<Guid>, false);
- Eval(10370, o is NotEmptyClassGen<Guid>[], false);
- Eval(10371, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10372, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10367, o is EmptyClassGen<int>, false);
+// Eval(10368, o is EmptyClassGen<int>[], false);
+// Eval(10369, o is NotEmptyClassGen<Guid>, false);
+// Eval(10370, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10371, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10372, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10373, o is NestedClass, false);
Eval(10374, o is NestedClass[], false);
- Eval(10375, o is NestedClassGen<Decimal>, false);
- Eval(10376, o is NestedClassGen<Decimal>[], false);
+// Eval(10375, o is NestedClassGen<Decimal>, false);
+// Eval(10376, o is NestedClassGen<Decimal>[], false);
Eval(10377, o is ImplementOneInterfaceC, false);
Eval(10378, o is ImplementOneInterfaceC[], false);
Eval(10379, o is ImplementTwoInterfaceC, false);
Eval(10380, o is ImplementTwoInterfaceC[], false);
- Eval(10381, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10382, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10383, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10384, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10385, o is ImplementAllInterfaceC<int>, false);
- Eval(10386, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10381, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10382, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10383, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10384, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10385, o is ImplementAllInterfaceC<int>, false);
+// Eval(10386, o is ImplementAllInterfaceC<int>[], false);
Eval(10387, o is SealedClass, false);
Eval(10388, o is SealedClass[], false);
}
@@ -9097,26 +9097,26 @@ internal class Program
Eval(10394, o is NotEmptyStruct[], false);
Eval(10395, o is NotEmptyStruct?, false);
Eval(10396, o is NotEmptyStruct?[], false);
- Eval(10397, o is EmptyStructGen<int>, false);
- Eval(10398, o is EmptyStructGen<int>[], false);
- Eval(10399, o is EmptyStructGen<int>?, false);
- Eval(10400, o is EmptyStructGen<int>?[], false);
- Eval(10401, o is NotEmptyStructGen<Guid>, false);
- Eval(10402, o is NotEmptyStructGen<Guid>[], false);
- Eval(10403, o is NotEmptyStructGen<Guid>?, false);
- Eval(10404, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10405, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10406, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10407, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10408, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10397, o is EmptyStructGen<int>, false);
+// Eval(10398, o is EmptyStructGen<int>[], false);
+// Eval(10399, o is EmptyStructGen<int>?, false);
+// Eval(10400, o is EmptyStructGen<int>?[], false);
+// Eval(10401, o is NotEmptyStructGen<Guid>, false);
+// Eval(10402, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10403, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10404, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10405, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10406, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10407, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10408, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10409, o is NestedStruct, false);
Eval(10410, o is NestedStruct[], false);
Eval(10411, o is NestedStruct?, false);
Eval(10412, o is NestedStruct?[], false);
- Eval(10413, o is NestedStructGen<Decimal>, false);
- Eval(10414, o is NestedStructGen<Decimal>[], false);
- Eval(10415, o is NestedStructGen<Decimal>?, false);
- Eval(10416, o is NestedStructGen<Decimal>?[], false);
+// Eval(10413, o is NestedStructGen<Decimal>, false);
+// Eval(10414, o is NestedStructGen<Decimal>[], false);
+// Eval(10415, o is NestedStructGen<Decimal>?, false);
+// Eval(10416, o is NestedStructGen<Decimal>?[], false);
Eval(10417, o is ExplicitFieldOffsetStruct, false);
Eval(10418, o is ExplicitFieldOffsetStruct[], false);
Eval(10419, o is ExplicitFieldOffsetStruct?, false);
@@ -9133,18 +9133,18 @@ internal class Program
Eval(10438, o is ImplementTwoInterface[], false);
Eval(10439, o is ImplementTwoInterface?, false);
Eval(10440, o is ImplementTwoInterface?[], false);
- Eval(10441, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10442, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10443, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10444, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10445, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10446, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10447, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10448, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10449, o is ImplementAllInterface<int>, false);
- Eval(10450, o is ImplementAllInterface<int>[], false);
- Eval(10451, o is ImplementAllInterface<int>?, false);
- Eval(10452, o is ImplementAllInterface<int>?[], false);
+// Eval(10441, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10442, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10443, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10444, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10445, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10446, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10447, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10448, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10449, o is ImplementAllInterface<int>, false);
+// Eval(10450, o is ImplementAllInterface<int>[], false);
+// Eval(10451, o is ImplementAllInterface<int>?, false);
+// Eval(10452, o is ImplementAllInterface<int>?[], false);
Eval(10453, o is IntE, false);
Eval(10454, o is IntE[], false);
Eval(10455, o is IntE?, false);
@@ -9243,38 +9243,38 @@ internal class Program
Eval(10548, o is IEmpty[], false);
Eval(10549, o is INotEmpty, false);
Eval(10550, o is INotEmpty[], false);
- Eval(10551, o is IEmptyGen<int>, false);
- Eval(10552, o is IEmptyGen<int>[], false);
- Eval(10553, o is INotEmptyGen<int>, false);
- Eval(10554, o is INotEmptyGen<int>[], false);
+// Eval(10551, o is IEmptyGen<int>, false);
+// Eval(10552, o is IEmptyGen<int>[], false);
+// Eval(10553, o is INotEmptyGen<int>, false);
+// Eval(10554, o is INotEmptyGen<int>[], false);
Eval(10555, o is SimpleDelegate, false);
Eval(10556, o is SimpleDelegate[], false);
- Eval(10557, o is GenericDelegate<int>, false);
- Eval(10558, o is GenericDelegate<int>[], false);
+// Eval(10557, o is GenericDelegate<int>, false);
+// Eval(10558, o is GenericDelegate<int>[], false);
Eval(10559, o is EmptyClass, false);
Eval(10560, o is EmptyClass[], false);
Eval(10561, o is NotEmptyClass, false);
Eval(10562, o is NotEmptyClass[], false);
- Eval(10563, o is EmptyClassGen<int>, false);
- Eval(10564, o is EmptyClassGen<int>[], false);
- Eval(10565, o is NotEmptyClassGen<Guid>, false);
- Eval(10566, o is NotEmptyClassGen<Guid>[], false);
- Eval(10567, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10568, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10563, o is EmptyClassGen<int>, false);
+// Eval(10564, o is EmptyClassGen<int>[], false);
+// Eval(10565, o is NotEmptyClassGen<Guid>, false);
+// Eval(10566, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10567, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10568, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10569, o is NestedClass, false);
Eval(10570, o is NestedClass[], false);
- Eval(10571, o is NestedClassGen<Decimal>, false);
- Eval(10572, o is NestedClassGen<Decimal>[], false);
+// Eval(10571, o is NestedClassGen<Decimal>, false);
+// Eval(10572, o is NestedClassGen<Decimal>[], false);
Eval(10573, o is ImplementOneInterfaceC, false);
Eval(10574, o is ImplementOneInterfaceC[], false);
Eval(10575, o is ImplementTwoInterfaceC, false);
Eval(10576, o is ImplementTwoInterfaceC[], false);
- Eval(10577, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10578, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10579, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10580, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10581, o is ImplementAllInterfaceC<int>, false);
- Eval(10582, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10577, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10578, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10579, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10580, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10581, o is ImplementAllInterfaceC<int>, false);
+// Eval(10582, o is ImplementAllInterfaceC<int>[], false);
Eval(10583, o is SealedClass, false);
Eval(10584, o is SealedClass[], false);
}
@@ -9292,26 +9292,26 @@ internal class Program
Eval(10590, o is NotEmptyStruct[], false);
Eval(10591, o is NotEmptyStruct?, false);
Eval(10592, o is NotEmptyStruct?[], false);
- Eval(10593, o is EmptyStructGen<int>, false);
- Eval(10594, o is EmptyStructGen<int>[], false);
- Eval(10595, o is EmptyStructGen<int>?, false);
- Eval(10596, o is EmptyStructGen<int>?[], false);
- Eval(10597, o is NotEmptyStructGen<Guid>, false);
- Eval(10598, o is NotEmptyStructGen<Guid>[], false);
- Eval(10599, o is NotEmptyStructGen<Guid>?, false);
- Eval(10600, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10601, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10602, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10603, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10604, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10593, o is EmptyStructGen<int>, false);
+// Eval(10594, o is EmptyStructGen<int>[], false);
+// Eval(10595, o is EmptyStructGen<int>?, false);
+// Eval(10596, o is EmptyStructGen<int>?[], false);
+// Eval(10597, o is NotEmptyStructGen<Guid>, false);
+// Eval(10598, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10599, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10600, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10601, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10602, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10603, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10604, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10605, o is NestedStruct, false);
Eval(10606, o is NestedStruct[], false);
Eval(10607, o is NestedStruct?, false);
Eval(10608, o is NestedStruct?[], false);
- Eval(10609, o is NestedStructGen<Decimal>, false);
- Eval(10610, o is NestedStructGen<Decimal>[], false);
- Eval(10611, o is NestedStructGen<Decimal>?, false);
- Eval(10612, o is NestedStructGen<Decimal>?[], false);
+// Eval(10609, o is NestedStructGen<Decimal>, false);
+// Eval(10610, o is NestedStructGen<Decimal>[], false);
+// Eval(10611, o is NestedStructGen<Decimal>?, false);
+// Eval(10612, o is NestedStructGen<Decimal>?[], false);
Eval(10613, o is ExplicitFieldOffsetStruct, false);
Eval(10614, o is ExplicitFieldOffsetStruct[], false);
Eval(10615, o is ExplicitFieldOffsetStruct?, false);
@@ -9328,18 +9328,18 @@ internal class Program
Eval(10634, o is ImplementTwoInterface[], false);
Eval(10635, o is ImplementTwoInterface?, false);
Eval(10636, o is ImplementTwoInterface?[], false);
- Eval(10637, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10638, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10639, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10640, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10641, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10642, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10643, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10644, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10645, o is ImplementAllInterface<int>, false);
- Eval(10646, o is ImplementAllInterface<int>[], false);
- Eval(10647, o is ImplementAllInterface<int>?, false);
- Eval(10648, o is ImplementAllInterface<int>?[], false);
+// Eval(10637, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10638, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10639, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10640, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10641, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10642, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10643, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10644, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10645, o is ImplementAllInterface<int>, false);
+// Eval(10646, o is ImplementAllInterface<int>[], false);
+// Eval(10647, o is ImplementAllInterface<int>?, false);
+// Eval(10648, o is ImplementAllInterface<int>?[], false);
Eval(10649, o is IntE, false);
Eval(10650, o is IntE[], false);
Eval(10651, o is IntE?, false);
@@ -9438,38 +9438,38 @@ internal class Program
Eval(10744, o is IEmpty[], false);
Eval(10745, o is INotEmpty, false);
Eval(10746, o is INotEmpty[], false);
- Eval(10747, o is IEmptyGen<int>, false);
- Eval(10748, o is IEmptyGen<int>[], false);
- Eval(10749, o is INotEmptyGen<int>, false);
- Eval(10750, o is INotEmptyGen<int>[], false);
+// Eval(10747, o is IEmptyGen<int>, false);
+// Eval(10748, o is IEmptyGen<int>[], false);
+// Eval(10749, o is INotEmptyGen<int>, false);
+// Eval(10750, o is INotEmptyGen<int>[], false);
Eval(10751, o is SimpleDelegate, false);
Eval(10752, o is SimpleDelegate[], false);
- Eval(10753, o is GenericDelegate<int>, false);
- Eval(10754, o is GenericDelegate<int>[], false);
+// Eval(10753, o is GenericDelegate<int>, false);
+// Eval(10754, o is GenericDelegate<int>[], false);
Eval(10755, o is EmptyClass, false);
Eval(10756, o is EmptyClass[], false);
Eval(10757, o is NotEmptyClass, false);
Eval(10758, o is NotEmptyClass[], false);
- Eval(10759, o is EmptyClassGen<int>, false);
- Eval(10760, o is EmptyClassGen<int>[], false);
- Eval(10761, o is NotEmptyClassGen<Guid>, false);
- Eval(10762, o is NotEmptyClassGen<Guid>[], false);
- Eval(10763, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10764, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10759, o is EmptyClassGen<int>, false);
+// Eval(10760, o is EmptyClassGen<int>[], false);
+// Eval(10761, o is NotEmptyClassGen<Guid>, false);
+// Eval(10762, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10763, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10764, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10765, o is NestedClass, false);
Eval(10766, o is NestedClass[], false);
- Eval(10767, o is NestedClassGen<Decimal>, false);
- Eval(10768, o is NestedClassGen<Decimal>[], false);
+// Eval(10767, o is NestedClassGen<Decimal>, false);
+// Eval(10768, o is NestedClassGen<Decimal>[], false);
Eval(10769, o is ImplementOneInterfaceC, false);
Eval(10770, o is ImplementOneInterfaceC[], false);
Eval(10771, o is ImplementTwoInterfaceC, false);
Eval(10772, o is ImplementTwoInterfaceC[], false);
- Eval(10773, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10774, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10775, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10776, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10777, o is ImplementAllInterfaceC<int>, false);
- Eval(10778, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10773, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10774, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10775, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10776, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10777, o is ImplementAllInterfaceC<int>, false);
+// Eval(10778, o is ImplementAllInterfaceC<int>[], false);
Eval(10779, o is SealedClass, false);
Eval(10780, o is SealedClass[], false);
}
@@ -9484,26 +9484,26 @@ internal class Program
Eval(10786, o is NotEmptyStruct[], false);
Eval(10787, o is NotEmptyStruct?, false);
Eval(10788, o is NotEmptyStruct?[], false);
- Eval(10789, o is EmptyStructGen<int>, false);
- Eval(10790, o is EmptyStructGen<int>[], false);
- Eval(10791, o is EmptyStructGen<int>?, false);
- Eval(10792, o is EmptyStructGen<int>?[], false);
- Eval(10793, o is NotEmptyStructGen<Guid>, false);
- Eval(10794, o is NotEmptyStructGen<Guid>[], false);
- Eval(10795, o is NotEmptyStructGen<Guid>?, false);
- Eval(10796, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10797, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10798, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10799, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10800, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10789, o is EmptyStructGen<int>, false);
+// Eval(10790, o is EmptyStructGen<int>[], false);
+// Eval(10791, o is EmptyStructGen<int>?, false);
+// Eval(10792, o is EmptyStructGen<int>?[], false);
+// Eval(10793, o is NotEmptyStructGen<Guid>, false);
+// Eval(10794, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10795, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10796, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10797, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10798, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10799, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10800, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10801, o is NestedStruct, false);
Eval(10802, o is NestedStruct[], false);
Eval(10803, o is NestedStruct?, false);
Eval(10804, o is NestedStruct?[], false);
- Eval(10805, o is NestedStructGen<Decimal>, false);
- Eval(10806, o is NestedStructGen<Decimal>[], false);
- Eval(10807, o is NestedStructGen<Decimal>?, false);
- Eval(10808, o is NestedStructGen<Decimal>?[], false);
+// Eval(10805, o is NestedStructGen<Decimal>, false);
+// Eval(10806, o is NestedStructGen<Decimal>[], false);
+// Eval(10807, o is NestedStructGen<Decimal>?, false);
+// Eval(10808, o is NestedStructGen<Decimal>?[], false);
Eval(10809, o is ExplicitFieldOffsetStruct, false);
Eval(10810, o is ExplicitFieldOffsetStruct[], false);
Eval(10811, o is ExplicitFieldOffsetStruct?, false);
@@ -9520,18 +9520,18 @@ internal class Program
Eval(10830, o is ImplementTwoInterface[], false);
Eval(10831, o is ImplementTwoInterface?, false);
Eval(10832, o is ImplementTwoInterface?[], false);
- Eval(10833, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(10834, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(10835, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(10836, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(10837, o is ImplementTwoInterfaceGen<int>, false);
- Eval(10838, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(10839, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(10840, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(10841, o is ImplementAllInterface<int>, false);
- Eval(10842, o is ImplementAllInterface<int>[], false);
- Eval(10843, o is ImplementAllInterface<int>?, false);
- Eval(10844, o is ImplementAllInterface<int>?[], false);
+// Eval(10833, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(10834, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(10835, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(10836, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(10837, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(10838, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(10839, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(10840, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(10841, o is ImplementAllInterface<int>, false);
+// Eval(10842, o is ImplementAllInterface<int>[], false);
+// Eval(10843, o is ImplementAllInterface<int>?, false);
+// Eval(10844, o is ImplementAllInterface<int>?[], false);
Eval(10845, o is IntE, false);
Eval(10846, o is IntE[], false);
Eval(10847, o is IntE?, false);
@@ -9630,38 +9630,38 @@ internal class Program
Eval(10940, o is IEmpty[], false);
Eval(10941, o is INotEmpty, false);
Eval(10942, o is INotEmpty[], false);
- Eval(10943, o is IEmptyGen<int>, false);
- Eval(10944, o is IEmptyGen<int>[], false);
- Eval(10945, o is INotEmptyGen<int>, false);
- Eval(10946, o is INotEmptyGen<int>[], false);
+// Eval(10943, o is IEmptyGen<int>, false);
+// Eval(10944, o is IEmptyGen<int>[], false);
+// Eval(10945, o is INotEmptyGen<int>, false);
+// Eval(10946, o is INotEmptyGen<int>[], false);
Eval(10947, o is SimpleDelegate, false);
Eval(10948, o is SimpleDelegate[], false);
- Eval(10949, o is GenericDelegate<int>, false);
- Eval(10950, o is GenericDelegate<int>[], false);
+// Eval(10949, o is GenericDelegate<int>, false);
+// Eval(10950, o is GenericDelegate<int>[], false);
Eval(10951, o is EmptyClass, false);
Eval(10952, o is EmptyClass[], false);
Eval(10953, o is NotEmptyClass, false);
Eval(10954, o is NotEmptyClass[], false);
- Eval(10955, o is EmptyClassGen<int>, false);
- Eval(10956, o is EmptyClassGen<int>[], false);
- Eval(10957, o is NotEmptyClassGen<Guid>, false);
- Eval(10958, o is NotEmptyClassGen<Guid>[], false);
- Eval(10959, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(10960, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(10955, o is EmptyClassGen<int>, false);
+// Eval(10956, o is EmptyClassGen<int>[], false);
+// Eval(10957, o is NotEmptyClassGen<Guid>, false);
+// Eval(10958, o is NotEmptyClassGen<Guid>[], false);
+// Eval(10959, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(10960, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(10961, o is NestedClass, false);
Eval(10962, o is NestedClass[], false);
- Eval(10963, o is NestedClassGen<Decimal>, false);
- Eval(10964, o is NestedClassGen<Decimal>[], false);
+// Eval(10963, o is NestedClassGen<Decimal>, false);
+// Eval(10964, o is NestedClassGen<Decimal>[], false);
Eval(10965, o is ImplementOneInterfaceC, false);
Eval(10966, o is ImplementOneInterfaceC[], false);
Eval(10967, o is ImplementTwoInterfaceC, false);
Eval(10968, o is ImplementTwoInterfaceC[], false);
- Eval(10969, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(10970, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(10971, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(10972, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(10973, o is ImplementAllInterfaceC<int>, false);
- Eval(10974, o is ImplementAllInterfaceC<int>[], false);
+// Eval(10969, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(10970, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(10971, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(10972, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(10973, o is ImplementAllInterfaceC<int>, false);
+// Eval(10974, o is ImplementAllInterfaceC<int>[], false);
Eval(10975, o is SealedClass, false);
Eval(10976, o is SealedClass[], false);
}
@@ -9676,26 +9676,26 @@ internal class Program
Eval(10982, o is NotEmptyStruct[], false);
Eval(10983, o is NotEmptyStruct?, false);
Eval(10984, o is NotEmptyStruct?[], false);
- Eval(10985, o is EmptyStructGen<int>, false);
- Eval(10986, o is EmptyStructGen<int>[], false);
- Eval(10987, o is EmptyStructGen<int>?, false);
- Eval(10988, o is EmptyStructGen<int>?[], false);
- Eval(10989, o is NotEmptyStructGen<Guid>, false);
- Eval(10990, o is NotEmptyStructGen<Guid>[], false);
- Eval(10991, o is NotEmptyStructGen<Guid>?, false);
- Eval(10992, o is NotEmptyStructGen<Guid>?[], false);
- Eval(10993, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(10994, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(10995, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(10996, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(10985, o is EmptyStructGen<int>, false);
+// Eval(10986, o is EmptyStructGen<int>[], false);
+// Eval(10987, o is EmptyStructGen<int>?, false);
+// Eval(10988, o is EmptyStructGen<int>?[], false);
+// Eval(10989, o is NotEmptyStructGen<Guid>, false);
+// Eval(10990, o is NotEmptyStructGen<Guid>[], false);
+// Eval(10991, o is NotEmptyStructGen<Guid>?, false);
+// Eval(10992, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(10993, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(10994, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(10995, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(10996, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(10997, o is NestedStruct, false);
Eval(10998, o is NestedStruct[], false);
Eval(10999, o is NestedStruct?, false);
Eval(11000, o is NestedStruct?[], false);
- Eval(11001, o is NestedStructGen<Decimal>, false);
- Eval(11002, o is NestedStructGen<Decimal>[], false);
- Eval(11003, o is NestedStructGen<Decimal>?, false);
- Eval(11004, o is NestedStructGen<Decimal>?[], false);
+// Eval(11001, o is NestedStructGen<Decimal>, false);
+// Eval(11002, o is NestedStructGen<Decimal>[], false);
+// Eval(11003, o is NestedStructGen<Decimal>?, false);
+// Eval(11004, o is NestedStructGen<Decimal>?[], false);
Eval(11005, o is ExplicitFieldOffsetStruct, false);
Eval(11006, o is ExplicitFieldOffsetStruct[], false);
Eval(11007, o is ExplicitFieldOffsetStruct?, false);
@@ -9712,18 +9712,18 @@ internal class Program
Eval(11026, o is ImplementTwoInterface[], false);
Eval(11027, o is ImplementTwoInterface?, false);
Eval(11028, o is ImplementTwoInterface?[], false);
- Eval(11029, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11030, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11031, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11032, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11033, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11034, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11035, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11036, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11037, o is ImplementAllInterface<int>, false);
- Eval(11038, o is ImplementAllInterface<int>[], false);
- Eval(11039, o is ImplementAllInterface<int>?, false);
- Eval(11040, o is ImplementAllInterface<int>?[], false);
+// Eval(11029, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11030, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11031, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11032, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11033, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11034, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11035, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11036, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11037, o is ImplementAllInterface<int>, false);
+// Eval(11038, o is ImplementAllInterface<int>[], false);
+// Eval(11039, o is ImplementAllInterface<int>?, false);
+// Eval(11040, o is ImplementAllInterface<int>?[], false);
Eval(11041, o is IntE, false);
Eval(11042, o is IntE[], false);
Eval(11043, o is IntE?, false);
@@ -9822,38 +9822,38 @@ internal class Program
Eval(11136, o is IEmpty[], false);
Eval(11137, o is INotEmpty, false);
Eval(11138, o is INotEmpty[], false);
- Eval(11139, o is IEmptyGen<int>, false);
- Eval(11140, o is IEmptyGen<int>[], false);
- Eval(11141, o is INotEmptyGen<int>, false);
- Eval(11142, o is INotEmptyGen<int>[], false);
+// Eval(11139, o is IEmptyGen<int>, false);
+// Eval(11140, o is IEmptyGen<int>[], false);
+// Eval(11141, o is INotEmptyGen<int>, false);
+// Eval(11142, o is INotEmptyGen<int>[], false);
Eval(11143, o is SimpleDelegate, false);
Eval(11144, o is SimpleDelegate[], false);
- Eval(11145, o is GenericDelegate<int>, false);
- Eval(11146, o is GenericDelegate<int>[], false);
+// Eval(11145, o is GenericDelegate<int>, false);
+// Eval(11146, o is GenericDelegate<int>[], false);
Eval(11147, o is EmptyClass, false);
Eval(11148, o is EmptyClass[], false);
Eval(11149, o is NotEmptyClass, false);
Eval(11150, o is NotEmptyClass[], false);
- Eval(11151, o is EmptyClassGen<int>, false);
- Eval(11152, o is EmptyClassGen<int>[], false);
- Eval(11153, o is NotEmptyClassGen<Guid>, false);
- Eval(11154, o is NotEmptyClassGen<Guid>[], false);
- Eval(11155, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11156, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11151, o is EmptyClassGen<int>, false);
+// Eval(11152, o is EmptyClassGen<int>[], false);
+// Eval(11153, o is NotEmptyClassGen<Guid>, false);
+// Eval(11154, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11155, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11156, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11157, o is NestedClass, false);
Eval(11158, o is NestedClass[], false);
- Eval(11159, o is NestedClassGen<Decimal>, false);
- Eval(11160, o is NestedClassGen<Decimal>[], false);
+// Eval(11159, o is NestedClassGen<Decimal>, false);
+// Eval(11160, o is NestedClassGen<Decimal>[], false);
Eval(11161, o is ImplementOneInterfaceC, false);
Eval(11162, o is ImplementOneInterfaceC[], false);
Eval(11163, o is ImplementTwoInterfaceC, false);
Eval(11164, o is ImplementTwoInterfaceC[], false);
- Eval(11165, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11166, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11167, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11168, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11169, o is ImplementAllInterfaceC<int>, false);
- Eval(11170, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11165, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11166, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11167, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11168, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11169, o is ImplementAllInterfaceC<int>, false);
+// Eval(11170, o is ImplementAllInterfaceC<int>[], false);
Eval(11171, o is SealedClass, false);
Eval(11172, o is SealedClass[], false);
}
@@ -9871,26 +9871,26 @@ internal class Program
Eval(11178, o is NotEmptyStruct[], false);
Eval(11179, o is NotEmptyStruct?, false);
Eval(11180, o is NotEmptyStruct?[], false);
- Eval(11181, o is EmptyStructGen<int>, false);
- Eval(11182, o is EmptyStructGen<int>[], false);
- Eval(11183, o is EmptyStructGen<int>?, false);
- Eval(11184, o is EmptyStructGen<int>?[], false);
- Eval(11185, o is NotEmptyStructGen<Guid>, false);
- Eval(11186, o is NotEmptyStructGen<Guid>[], false);
- Eval(11187, o is NotEmptyStructGen<Guid>?, false);
- Eval(11188, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11189, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11190, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11191, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11192, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11181, o is EmptyStructGen<int>, false);
+// Eval(11182, o is EmptyStructGen<int>[], false);
+// Eval(11183, o is EmptyStructGen<int>?, false);
+// Eval(11184, o is EmptyStructGen<int>?[], false);
+// Eval(11185, o is NotEmptyStructGen<Guid>, false);
+// Eval(11186, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11187, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11188, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11189, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11190, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11191, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11192, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11193, o is NestedStruct, false);
Eval(11194, o is NestedStruct[], false);
Eval(11195, o is NestedStruct?, false);
Eval(11196, o is NestedStruct?[], false);
- Eval(11197, o is NestedStructGen<Decimal>, false);
- Eval(11198, o is NestedStructGen<Decimal>[], false);
- Eval(11199, o is NestedStructGen<Decimal>?, false);
- Eval(11200, o is NestedStructGen<Decimal>?[], false);
+// Eval(11197, o is NestedStructGen<Decimal>, false);
+// Eval(11198, o is NestedStructGen<Decimal>[], false);
+// Eval(11199, o is NestedStructGen<Decimal>?, false);
+// Eval(11200, o is NestedStructGen<Decimal>?[], false);
Eval(11201, o is ExplicitFieldOffsetStruct, false);
Eval(11202, o is ExplicitFieldOffsetStruct[], false);
Eval(11203, o is ExplicitFieldOffsetStruct?, false);
@@ -9907,18 +9907,18 @@ internal class Program
Eval(11222, o is ImplementTwoInterface[], false);
Eval(11223, o is ImplementTwoInterface?, false);
Eval(11224, o is ImplementTwoInterface?[], false);
- Eval(11225, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11226, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11227, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11228, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11229, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11230, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11231, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11232, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11233, o is ImplementAllInterface<int>, false);
- Eval(11234, o is ImplementAllInterface<int>[], false);
- Eval(11235, o is ImplementAllInterface<int>?, false);
- Eval(11236, o is ImplementAllInterface<int>?[], false);
+// Eval(11225, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11226, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11227, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11228, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11229, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11230, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11231, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11232, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11233, o is ImplementAllInterface<int>, false);
+// Eval(11234, o is ImplementAllInterface<int>[], false);
+// Eval(11235, o is ImplementAllInterface<int>?, false);
+// Eval(11236, o is ImplementAllInterface<int>?[], false);
Eval(11237, o is IntE, false);
Eval(11238, o is IntE[], false);
Eval(11239, o is IntE?, false);
@@ -10017,38 +10017,38 @@ internal class Program
Eval(11332, o is IEmpty[], false);
Eval(11333, o is INotEmpty, false);
Eval(11334, o is INotEmpty[], false);
- Eval(11335, o is IEmptyGen<int>, false);
- Eval(11336, o is IEmptyGen<int>[], false);
- Eval(11337, o is INotEmptyGen<int>, false);
- Eval(11338, o is INotEmptyGen<int>[], false);
+// Eval(11335, o is IEmptyGen<int>, false);
+// Eval(11336, o is IEmptyGen<int>[], false);
+// Eval(11337, o is INotEmptyGen<int>, false);
+// Eval(11338, o is INotEmptyGen<int>[], false);
Eval(11339, o is SimpleDelegate, false);
Eval(11340, o is SimpleDelegate[], false);
- Eval(11341, o is GenericDelegate<int>, false);
- Eval(11342, o is GenericDelegate<int>[], false);
+// Eval(11341, o is GenericDelegate<int>, false);
+// Eval(11342, o is GenericDelegate<int>[], false);
Eval(11343, o is EmptyClass, false);
Eval(11344, o is EmptyClass[], false);
Eval(11345, o is NotEmptyClass, false);
Eval(11346, o is NotEmptyClass[], false);
- Eval(11347, o is EmptyClassGen<int>, false);
- Eval(11348, o is EmptyClassGen<int>[], false);
- Eval(11349, o is NotEmptyClassGen<Guid>, false);
- Eval(11350, o is NotEmptyClassGen<Guid>[], false);
- Eval(11351, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11352, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11347, o is EmptyClassGen<int>, false);
+// Eval(11348, o is EmptyClassGen<int>[], false);
+// Eval(11349, o is NotEmptyClassGen<Guid>, false);
+// Eval(11350, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11351, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11352, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11353, o is NestedClass, false);
Eval(11354, o is NestedClass[], false);
- Eval(11355, o is NestedClassGen<Decimal>, false);
- Eval(11356, o is NestedClassGen<Decimal>[], false);
+// Eval(11355, o is NestedClassGen<Decimal>, false);
+// Eval(11356, o is NestedClassGen<Decimal>[], false);
Eval(11357, o is ImplementOneInterfaceC, false);
Eval(11358, o is ImplementOneInterfaceC[], false);
Eval(11359, o is ImplementTwoInterfaceC, false);
Eval(11360, o is ImplementTwoInterfaceC[], false);
- Eval(11361, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11362, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11363, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11364, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11365, o is ImplementAllInterfaceC<int>, false);
- Eval(11366, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11361, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11362, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11363, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11364, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11365, o is ImplementAllInterfaceC<int>, false);
+// Eval(11366, o is ImplementAllInterfaceC<int>[], false);
Eval(11367, o is SealedClass, false);
Eval(11368, o is SealedClass[], false);
}
@@ -10063,26 +10063,26 @@ internal class Program
Eval(11374, o is NotEmptyStruct[], false);
Eval(11375, o is NotEmptyStruct?, false);
Eval(11376, o is NotEmptyStruct?[], false);
- Eval(11377, o is EmptyStructGen<int>, false);
- Eval(11378, o is EmptyStructGen<int>[], false);
- Eval(11379, o is EmptyStructGen<int>?, false);
- Eval(11380, o is EmptyStructGen<int>?[], false);
- Eval(11381, o is NotEmptyStructGen<Guid>, false);
- Eval(11382, o is NotEmptyStructGen<Guid>[], false);
- Eval(11383, o is NotEmptyStructGen<Guid>?, false);
- Eval(11384, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11385, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11386, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11387, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11388, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11377, o is EmptyStructGen<int>, false);
+// Eval(11378, o is EmptyStructGen<int>[], false);
+// Eval(11379, o is EmptyStructGen<int>?, false);
+// Eval(11380, o is EmptyStructGen<int>?[], false);
+// Eval(11381, o is NotEmptyStructGen<Guid>, false);
+// Eval(11382, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11383, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11384, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11385, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11386, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11387, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11388, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11389, o is NestedStruct, false);
Eval(11390, o is NestedStruct[], false);
Eval(11391, o is NestedStruct?, false);
Eval(11392, o is NestedStruct?[], false);
- Eval(11393, o is NestedStructGen<Decimal>, false);
- Eval(11394, o is NestedStructGen<Decimal>[], false);
- Eval(11395, o is NestedStructGen<Decimal>?, false);
- Eval(11396, o is NestedStructGen<Decimal>?[], false);
+// Eval(11393, o is NestedStructGen<Decimal>, false);
+// Eval(11394, o is NestedStructGen<Decimal>[], false);
+// Eval(11395, o is NestedStructGen<Decimal>?, false);
+// Eval(11396, o is NestedStructGen<Decimal>?[], false);
Eval(11397, o is ExplicitFieldOffsetStruct, false);
Eval(11398, o is ExplicitFieldOffsetStruct[], false);
Eval(11399, o is ExplicitFieldOffsetStruct?, false);
@@ -10099,18 +10099,18 @@ internal class Program
Eval(11418, o is ImplementTwoInterface[], false);
Eval(11419, o is ImplementTwoInterface?, false);
Eval(11420, o is ImplementTwoInterface?[], false);
- Eval(11421, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11422, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11423, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11424, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11425, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11426, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11427, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11428, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11429, o is ImplementAllInterface<int>, false);
- Eval(11430, o is ImplementAllInterface<int>[], false);
- Eval(11431, o is ImplementAllInterface<int>?, false);
- Eval(11432, o is ImplementAllInterface<int>?[], false);
+// Eval(11421, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11422, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11423, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11424, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11425, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11426, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11427, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11428, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11429, o is ImplementAllInterface<int>, false);
+// Eval(11430, o is ImplementAllInterface<int>[], false);
+// Eval(11431, o is ImplementAllInterface<int>?, false);
+// Eval(11432, o is ImplementAllInterface<int>?[], false);
Eval(11433, o is IntE, false);
Eval(11434, o is IntE[], false);
Eval(11435, o is IntE?, false);
@@ -10209,38 +10209,38 @@ internal class Program
Eval(11528, o is IEmpty[], false);
Eval(11529, o is INotEmpty, false);
Eval(11530, o is INotEmpty[], false);
- Eval(11531, o is IEmptyGen<int>, false);
- Eval(11532, o is IEmptyGen<int>[], false);
- Eval(11533, o is INotEmptyGen<int>, false);
- Eval(11534, o is INotEmptyGen<int>[], false);
+// Eval(11531, o is IEmptyGen<int>, false);
+// Eval(11532, o is IEmptyGen<int>[], false);
+// Eval(11533, o is INotEmptyGen<int>, false);
+// Eval(11534, o is INotEmptyGen<int>[], false);
Eval(11535, o is SimpleDelegate, false);
Eval(11536, o is SimpleDelegate[], false);
- Eval(11537, o is GenericDelegate<int>, false);
- Eval(11538, o is GenericDelegate<int>[], false);
+// Eval(11537, o is GenericDelegate<int>, false);
+// Eval(11538, o is GenericDelegate<int>[], false);
Eval(11539, o is EmptyClass, false);
Eval(11540, o is EmptyClass[], false);
Eval(11541, o is NotEmptyClass, false);
Eval(11542, o is NotEmptyClass[], false);
- Eval(11543, o is EmptyClassGen<int>, false);
- Eval(11544, o is EmptyClassGen<int>[], false);
- Eval(11545, o is NotEmptyClassGen<Guid>, false);
- Eval(11546, o is NotEmptyClassGen<Guid>[], false);
- Eval(11547, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11548, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11543, o is EmptyClassGen<int>, false);
+// Eval(11544, o is EmptyClassGen<int>[], false);
+// Eval(11545, o is NotEmptyClassGen<Guid>, false);
+// Eval(11546, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11547, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11548, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11549, o is NestedClass, false);
Eval(11550, o is NestedClass[], false);
- Eval(11551, o is NestedClassGen<Decimal>, false);
- Eval(11552, o is NestedClassGen<Decimal>[], false);
+// Eval(11551, o is NestedClassGen<Decimal>, false);
+// Eval(11552, o is NestedClassGen<Decimal>[], false);
Eval(11553, o is ImplementOneInterfaceC, false);
Eval(11554, o is ImplementOneInterfaceC[], false);
Eval(11555, o is ImplementTwoInterfaceC, false);
Eval(11556, o is ImplementTwoInterfaceC[], false);
- Eval(11557, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11558, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11559, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11560, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11561, o is ImplementAllInterfaceC<int>, false);
- Eval(11562, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11557, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11558, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11559, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11560, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11561, o is ImplementAllInterfaceC<int>, false);
+// Eval(11562, o is ImplementAllInterfaceC<int>[], false);
Eval(11563, o is SealedClass, false);
Eval(11564, o is SealedClass[], false);
}
@@ -10255,26 +10255,26 @@ internal class Program
Eval(11570, o is NotEmptyStruct[], false);
Eval(11571, o is NotEmptyStruct?, false);
Eval(11572, o is NotEmptyStruct?[], false);
- Eval(11573, o is EmptyStructGen<int>, false);
- Eval(11574, o is EmptyStructGen<int>[], false);
- Eval(11575, o is EmptyStructGen<int>?, false);
- Eval(11576, o is EmptyStructGen<int>?[], false);
- Eval(11577, o is NotEmptyStructGen<Guid>, false);
- Eval(11578, o is NotEmptyStructGen<Guid>[], false);
- Eval(11579, o is NotEmptyStructGen<Guid>?, false);
- Eval(11580, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11581, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11582, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11583, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11584, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11573, o is EmptyStructGen<int>, false);
+// Eval(11574, o is EmptyStructGen<int>[], false);
+// Eval(11575, o is EmptyStructGen<int>?, false);
+// Eval(11576, o is EmptyStructGen<int>?[], false);
+// Eval(11577, o is NotEmptyStructGen<Guid>, false);
+// Eval(11578, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11579, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11580, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11581, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11582, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11583, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11584, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11585, o is NestedStruct, false);
Eval(11586, o is NestedStruct[], false);
Eval(11587, o is NestedStruct?, false);
Eval(11588, o is NestedStruct?[], false);
- Eval(11589, o is NestedStructGen<Decimal>, false);
- Eval(11590, o is NestedStructGen<Decimal>[], false);
- Eval(11591, o is NestedStructGen<Decimal>?, false);
- Eval(11592, o is NestedStructGen<Decimal>?[], false);
+// Eval(11589, o is NestedStructGen<Decimal>, false);
+// Eval(11590, o is NestedStructGen<Decimal>[], false);
+// Eval(11591, o is NestedStructGen<Decimal>?, false);
+// Eval(11592, o is NestedStructGen<Decimal>?[], false);
Eval(11593, o is ExplicitFieldOffsetStruct, false);
Eval(11594, o is ExplicitFieldOffsetStruct[], false);
Eval(11595, o is ExplicitFieldOffsetStruct?, false);
@@ -10291,18 +10291,18 @@ internal class Program
Eval(11614, o is ImplementTwoInterface[], false);
Eval(11615, o is ImplementTwoInterface?, false);
Eval(11616, o is ImplementTwoInterface?[], false);
- Eval(11617, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11618, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11619, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11620, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11621, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11622, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11623, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11624, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11625, o is ImplementAllInterface<int>, false);
- Eval(11626, o is ImplementAllInterface<int>[], false);
- Eval(11627, o is ImplementAllInterface<int>?, false);
- Eval(11628, o is ImplementAllInterface<int>?[], false);
+// Eval(11617, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11618, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11619, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11620, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11621, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11622, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11623, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11624, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11625, o is ImplementAllInterface<int>, false);
+// Eval(11626, o is ImplementAllInterface<int>[], false);
+// Eval(11627, o is ImplementAllInterface<int>?, false);
+// Eval(11628, o is ImplementAllInterface<int>?[], false);
Eval(11629, o is IntE, false);
Eval(11630, o is IntE[], false);
Eval(11631, o is IntE?, false);
@@ -10401,38 +10401,38 @@ internal class Program
Eval(11724, o is IEmpty[], false);
Eval(11725, o is INotEmpty, false);
Eval(11726, o is INotEmpty[], false);
- Eval(11727, o is IEmptyGen<int>, false);
- Eval(11728, o is IEmptyGen<int>[], false);
- Eval(11729, o is INotEmptyGen<int>, false);
- Eval(11730, o is INotEmptyGen<int>[], false);
+// Eval(11727, o is IEmptyGen<int>, false);
+// Eval(11728, o is IEmptyGen<int>[], false);
+// Eval(11729, o is INotEmptyGen<int>, false);
+// Eval(11730, o is INotEmptyGen<int>[], false);
Eval(11731, o is SimpleDelegate, false);
Eval(11732, o is SimpleDelegate[], false);
- Eval(11733, o is GenericDelegate<int>, false);
- Eval(11734, o is GenericDelegate<int>[], false);
+// Eval(11733, o is GenericDelegate<int>, false);
+// Eval(11734, o is GenericDelegate<int>[], false);
Eval(11735, o is EmptyClass, false);
Eval(11736, o is EmptyClass[], false);
Eval(11737, o is NotEmptyClass, false);
Eval(11738, o is NotEmptyClass[], false);
- Eval(11739, o is EmptyClassGen<int>, false);
- Eval(11740, o is EmptyClassGen<int>[], false);
- Eval(11741, o is NotEmptyClassGen<Guid>, false);
- Eval(11742, o is NotEmptyClassGen<Guid>[], false);
- Eval(11743, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11744, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11739, o is EmptyClassGen<int>, false);
+// Eval(11740, o is EmptyClassGen<int>[], false);
+// Eval(11741, o is NotEmptyClassGen<Guid>, false);
+// Eval(11742, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11743, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11744, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11745, o is NestedClass, false);
Eval(11746, o is NestedClass[], false);
- Eval(11747, o is NestedClassGen<Decimal>, false);
- Eval(11748, o is NestedClassGen<Decimal>[], false);
+// Eval(11747, o is NestedClassGen<Decimal>, false);
+// Eval(11748, o is NestedClassGen<Decimal>[], false);
Eval(11749, o is ImplementOneInterfaceC, false);
Eval(11750, o is ImplementOneInterfaceC[], false);
Eval(11751, o is ImplementTwoInterfaceC, false);
Eval(11752, o is ImplementTwoInterfaceC[], false);
- Eval(11753, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11754, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11755, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11756, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11757, o is ImplementAllInterfaceC<int>, false);
- Eval(11758, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11753, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11754, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11755, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11756, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11757, o is ImplementAllInterfaceC<int>, false);
+// Eval(11758, o is ImplementAllInterfaceC<int>[], false);
Eval(11759, o is SealedClass, false);
Eval(11760, o is SealedClass[], false);
}
@@ -10450,26 +10450,26 @@ internal class Program
Eval(11766, o is NotEmptyStruct[], false);
Eval(11767, o is NotEmptyStruct?, false);
Eval(11768, o is NotEmptyStruct?[], false);
- Eval(11769, o is EmptyStructGen<int>, false);
- Eval(11770, o is EmptyStructGen<int>[], false);
- Eval(11771, o is EmptyStructGen<int>?, false);
- Eval(11772, o is EmptyStructGen<int>?[], false);
- Eval(11773, o is NotEmptyStructGen<Guid>, false);
- Eval(11774, o is NotEmptyStructGen<Guid>[], false);
- Eval(11775, o is NotEmptyStructGen<Guid>?, false);
- Eval(11776, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11777, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11778, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11779, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11780, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11769, o is EmptyStructGen<int>, false);
+// Eval(11770, o is EmptyStructGen<int>[], false);
+// Eval(11771, o is EmptyStructGen<int>?, false);
+// Eval(11772, o is EmptyStructGen<int>?[], false);
+// Eval(11773, o is NotEmptyStructGen<Guid>, false);
+// Eval(11774, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11775, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11776, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11777, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11778, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11779, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11780, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11781, o is NestedStruct, false);
Eval(11782, o is NestedStruct[], false);
Eval(11783, o is NestedStruct?, false);
Eval(11784, o is NestedStruct?[], false);
- Eval(11785, o is NestedStructGen<Decimal>, false);
- Eval(11786, o is NestedStructGen<Decimal>[], false);
- Eval(11787, o is NestedStructGen<Decimal>?, false);
- Eval(11788, o is NestedStructGen<Decimal>?[], false);
+// Eval(11785, o is NestedStructGen<Decimal>, false);
+// Eval(11786, o is NestedStructGen<Decimal>[], false);
+// Eval(11787, o is NestedStructGen<Decimal>?, false);
+// Eval(11788, o is NestedStructGen<Decimal>?[], false);
Eval(11789, o is ExplicitFieldOffsetStruct, false);
Eval(11790, o is ExplicitFieldOffsetStruct[], false);
Eval(11791, o is ExplicitFieldOffsetStruct?, false);
@@ -10486,18 +10486,18 @@ internal class Program
Eval(11810, o is ImplementTwoInterface[], false);
Eval(11811, o is ImplementTwoInterface?, false);
Eval(11812, o is ImplementTwoInterface?[], false);
- Eval(11813, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(11814, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(11815, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(11816, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(11817, o is ImplementTwoInterfaceGen<int>, false);
- Eval(11818, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(11819, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(11820, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(11821, o is ImplementAllInterface<int>, false);
- Eval(11822, o is ImplementAllInterface<int>[], false);
- Eval(11823, o is ImplementAllInterface<int>?, false);
- Eval(11824, o is ImplementAllInterface<int>?[], false);
+// Eval(11813, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(11814, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(11815, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(11816, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(11817, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(11818, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(11819, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(11820, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(11821, o is ImplementAllInterface<int>, false);
+// Eval(11822, o is ImplementAllInterface<int>[], false);
+// Eval(11823, o is ImplementAllInterface<int>?, false);
+// Eval(11824, o is ImplementAllInterface<int>?[], false);
Eval(11825, o is IntE, false);
Eval(11826, o is IntE[], false);
Eval(11827, o is IntE?, false);
@@ -10596,38 +10596,38 @@ internal class Program
Eval(11920, o is IEmpty[], false);
Eval(11921, o is INotEmpty, false);
Eval(11922, o is INotEmpty[], false);
- Eval(11923, o is IEmptyGen<int>, false);
- Eval(11924, o is IEmptyGen<int>[], false);
- Eval(11925, o is INotEmptyGen<int>, false);
- Eval(11926, o is INotEmptyGen<int>[], false);
+// Eval(11923, o is IEmptyGen<int>, false);
+// Eval(11924, o is IEmptyGen<int>[], false);
+// Eval(11925, o is INotEmptyGen<int>, false);
+// Eval(11926, o is INotEmptyGen<int>[], false);
Eval(11927, o is SimpleDelegate, false);
Eval(11928, o is SimpleDelegate[], false);
- Eval(11929, o is GenericDelegate<int>, false);
- Eval(11930, o is GenericDelegate<int>[], false);
+// Eval(11929, o is GenericDelegate<int>, false);
+// Eval(11930, o is GenericDelegate<int>[], false);
Eval(11931, o is EmptyClass, false);
Eval(11932, o is EmptyClass[], false);
Eval(11933, o is NotEmptyClass, false);
Eval(11934, o is NotEmptyClass[], false);
- Eval(11935, o is EmptyClassGen<int>, false);
- Eval(11936, o is EmptyClassGen<int>[], false);
- Eval(11937, o is NotEmptyClassGen<Guid>, false);
- Eval(11938, o is NotEmptyClassGen<Guid>[], false);
- Eval(11939, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(11940, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(11935, o is EmptyClassGen<int>, false);
+// Eval(11936, o is EmptyClassGen<int>[], false);
+// Eval(11937, o is NotEmptyClassGen<Guid>, false);
+// Eval(11938, o is NotEmptyClassGen<Guid>[], false);
+// Eval(11939, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(11940, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(11941, o is NestedClass, false);
Eval(11942, o is NestedClass[], false);
- Eval(11943, o is NestedClassGen<Decimal>, false);
- Eval(11944, o is NestedClassGen<Decimal>[], false);
+// Eval(11943, o is NestedClassGen<Decimal>, false);
+// Eval(11944, o is NestedClassGen<Decimal>[], false);
Eval(11945, o is ImplementOneInterfaceC, false);
Eval(11946, o is ImplementOneInterfaceC[], false);
Eval(11947, o is ImplementTwoInterfaceC, false);
Eval(11948, o is ImplementTwoInterfaceC[], false);
- Eval(11949, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(11950, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(11951, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(11952, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(11953, o is ImplementAllInterfaceC<int>, false);
- Eval(11954, o is ImplementAllInterfaceC<int>[], false);
+// Eval(11949, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(11950, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(11951, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(11952, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(11953, o is ImplementAllInterfaceC<int>, false);
+// Eval(11954, o is ImplementAllInterfaceC<int>[], false);
Eval(11955, o is SealedClass, false);
Eval(11956, o is SealedClass[], false);
}
@@ -10642,26 +10642,26 @@ internal class Program
Eval(11962, o is NotEmptyStruct[], false);
Eval(11963, o is NotEmptyStruct?, false);
Eval(11964, o is NotEmptyStruct?[], false);
- Eval(11965, o is EmptyStructGen<int>, false);
- Eval(11966, o is EmptyStructGen<int>[], false);
- Eval(11967, o is EmptyStructGen<int>?, false);
- Eval(11968, o is EmptyStructGen<int>?[], false);
- Eval(11969, o is NotEmptyStructGen<Guid>, false);
- Eval(11970, o is NotEmptyStructGen<Guid>[], false);
- Eval(11971, o is NotEmptyStructGen<Guid>?, false);
- Eval(11972, o is NotEmptyStructGen<Guid>?[], false);
- Eval(11973, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(11974, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(11975, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(11976, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(11965, o is EmptyStructGen<int>, false);
+// Eval(11966, o is EmptyStructGen<int>[], false);
+// Eval(11967, o is EmptyStructGen<int>?, false);
+// Eval(11968, o is EmptyStructGen<int>?[], false);
+// Eval(11969, o is NotEmptyStructGen<Guid>, false);
+// Eval(11970, o is NotEmptyStructGen<Guid>[], false);
+// Eval(11971, o is NotEmptyStructGen<Guid>?, false);
+// Eval(11972, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(11973, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(11974, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(11975, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(11976, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(11977, o is NestedStruct, false);
Eval(11978, o is NestedStruct[], false);
Eval(11979, o is NestedStruct?, false);
Eval(11980, o is NestedStruct?[], false);
- Eval(11981, o is NestedStructGen<Decimal>, false);
- Eval(11982, o is NestedStructGen<Decimal>[], false);
- Eval(11983, o is NestedStructGen<Decimal>?, false);
- Eval(11984, o is NestedStructGen<Decimal>?[], false);
+// Eval(11981, o is NestedStructGen<Decimal>, false);
+// Eval(11982, o is NestedStructGen<Decimal>[], false);
+// Eval(11983, o is NestedStructGen<Decimal>?, false);
+// Eval(11984, o is NestedStructGen<Decimal>?[], false);
Eval(11985, o is ExplicitFieldOffsetStruct, false);
Eval(11986, o is ExplicitFieldOffsetStruct[], false);
Eval(11987, o is ExplicitFieldOffsetStruct?, false);
@@ -10678,18 +10678,18 @@ internal class Program
Eval(12006, o is ImplementTwoInterface[], false);
Eval(12007, o is ImplementTwoInterface?, false);
Eval(12008, o is ImplementTwoInterface?[], false);
- Eval(12009, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12010, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12011, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12012, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12013, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12014, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12015, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12016, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12017, o is ImplementAllInterface<int>, false);
- Eval(12018, o is ImplementAllInterface<int>[], false);
- Eval(12019, o is ImplementAllInterface<int>?, false);
- Eval(12020, o is ImplementAllInterface<int>?[], false);
+// Eval(12009, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12010, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12011, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12012, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12013, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12014, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12015, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12016, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12017, o is ImplementAllInterface<int>, false);
+// Eval(12018, o is ImplementAllInterface<int>[], false);
+// Eval(12019, o is ImplementAllInterface<int>?, false);
+// Eval(12020, o is ImplementAllInterface<int>?[], false);
Eval(12021, o is IntE, false);
Eval(12022, o is IntE[], false);
Eval(12023, o is IntE?, false);
@@ -10788,38 +10788,38 @@ internal class Program
Eval(12116, o is IEmpty[], false);
Eval(12117, o is INotEmpty, false);
Eval(12118, o is INotEmpty[], false);
- Eval(12119, o is IEmptyGen<int>, false);
- Eval(12120, o is IEmptyGen<int>[], false);
- Eval(12121, o is INotEmptyGen<int>, false);
- Eval(12122, o is INotEmptyGen<int>[], false);
+// Eval(12119, o is IEmptyGen<int>, false);
+// Eval(12120, o is IEmptyGen<int>[], false);
+// Eval(12121, o is INotEmptyGen<int>, false);
+// Eval(12122, o is INotEmptyGen<int>[], false);
Eval(12123, o is SimpleDelegate, false);
Eval(12124, o is SimpleDelegate[], false);
- Eval(12125, o is GenericDelegate<int>, false);
- Eval(12126, o is GenericDelegate<int>[], false);
+// Eval(12125, o is GenericDelegate<int>, false);
+// Eval(12126, o is GenericDelegate<int>[], false);
Eval(12127, o is EmptyClass, false);
Eval(12128, o is EmptyClass[], false);
Eval(12129, o is NotEmptyClass, false);
Eval(12130, o is NotEmptyClass[], false);
- Eval(12131, o is EmptyClassGen<int>, false);
- Eval(12132, o is EmptyClassGen<int>[], false);
- Eval(12133, o is NotEmptyClassGen<Guid>, false);
- Eval(12134, o is NotEmptyClassGen<Guid>[], false);
- Eval(12135, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12136, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12131, o is EmptyClassGen<int>, false);
+// Eval(12132, o is EmptyClassGen<int>[], false);
+// Eval(12133, o is NotEmptyClassGen<Guid>, false);
+// Eval(12134, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12135, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12136, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12137, o is NestedClass, false);
Eval(12138, o is NestedClass[], false);
- Eval(12139, o is NestedClassGen<Decimal>, false);
- Eval(12140, o is NestedClassGen<Decimal>[], false);
+// Eval(12139, o is NestedClassGen<Decimal>, false);
+// Eval(12140, o is NestedClassGen<Decimal>[], false);
Eval(12141, o is ImplementOneInterfaceC, false);
Eval(12142, o is ImplementOneInterfaceC[], false);
Eval(12143, o is ImplementTwoInterfaceC, false);
Eval(12144, o is ImplementTwoInterfaceC[], false);
- Eval(12145, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12146, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12147, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12148, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12149, o is ImplementAllInterfaceC<int>, false);
- Eval(12150, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12145, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12146, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12147, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12148, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12149, o is ImplementAllInterfaceC<int>, false);
+// Eval(12150, o is ImplementAllInterfaceC<int>[], false);
Eval(12151, o is SealedClass, false);
Eval(12152, o is SealedClass[], false);
}
@@ -10834,26 +10834,26 @@ internal class Program
Eval(12158, o is NotEmptyStruct[], false);
Eval(12159, o is NotEmptyStruct?, false);
Eval(12160, o is NotEmptyStruct?[], false);
- Eval(12161, o is EmptyStructGen<int>, false);
- Eval(12162, o is EmptyStructGen<int>[], false);
- Eval(12163, o is EmptyStructGen<int>?, false);
- Eval(12164, o is EmptyStructGen<int>?[], false);
- Eval(12165, o is NotEmptyStructGen<Guid>, false);
- Eval(12166, o is NotEmptyStructGen<Guid>[], false);
- Eval(12167, o is NotEmptyStructGen<Guid>?, false);
- Eval(12168, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12169, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12170, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12171, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12172, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12161, o is EmptyStructGen<int>, false);
+// Eval(12162, o is EmptyStructGen<int>[], false);
+// Eval(12163, o is EmptyStructGen<int>?, false);
+// Eval(12164, o is EmptyStructGen<int>?[], false);
+// Eval(12165, o is NotEmptyStructGen<Guid>, false);
+// Eval(12166, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12167, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12168, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12169, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12170, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12171, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12172, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12173, o is NestedStruct, false);
Eval(12174, o is NestedStruct[], false);
Eval(12175, o is NestedStruct?, false);
Eval(12176, o is NestedStruct?[], false);
- Eval(12177, o is NestedStructGen<Decimal>, false);
- Eval(12178, o is NestedStructGen<Decimal>[], false);
- Eval(12179, o is NestedStructGen<Decimal>?, false);
- Eval(12180, o is NestedStructGen<Decimal>?[], false);
+// Eval(12177, o is NestedStructGen<Decimal>, false);
+// Eval(12178, o is NestedStructGen<Decimal>[], false);
+// Eval(12179, o is NestedStructGen<Decimal>?, false);
+// Eval(12180, o is NestedStructGen<Decimal>?[], false);
Eval(12181, o is ExplicitFieldOffsetStruct, false);
Eval(12182, o is ExplicitFieldOffsetStruct[], false);
Eval(12183, o is ExplicitFieldOffsetStruct?, false);
@@ -10870,18 +10870,18 @@ internal class Program
Eval(12202, o is ImplementTwoInterface[], false);
Eval(12203, o is ImplementTwoInterface?, false);
Eval(12204, o is ImplementTwoInterface?[], false);
- Eval(12205, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12206, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12207, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12208, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12209, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12210, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12211, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12212, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12213, o is ImplementAllInterface<int>, false);
- Eval(12214, o is ImplementAllInterface<int>[], false);
- Eval(12215, o is ImplementAllInterface<int>?, false);
- Eval(12216, o is ImplementAllInterface<int>?[], false);
+// Eval(12205, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12206, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12207, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12208, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12209, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12210, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12211, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12212, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12213, o is ImplementAllInterface<int>, false);
+// Eval(12214, o is ImplementAllInterface<int>[], false);
+// Eval(12215, o is ImplementAllInterface<int>?, false);
+// Eval(12216, o is ImplementAllInterface<int>?[], false);
Eval(12217, o is IntE, false);
Eval(12218, o is IntE[], false);
Eval(12219, o is IntE?, false);
@@ -10980,38 +10980,38 @@ internal class Program
Eval(12312, o is IEmpty[], false);
Eval(12313, o is INotEmpty, false);
Eval(12314, o is INotEmpty[], false);
- Eval(12315, o is IEmptyGen<int>, false);
- Eval(12316, o is IEmptyGen<int>[], false);
- Eval(12317, o is INotEmptyGen<int>, false);
- Eval(12318, o is INotEmptyGen<int>[], false);
+// Eval(12315, o is IEmptyGen<int>, false);
+// Eval(12316, o is IEmptyGen<int>[], false);
+// Eval(12317, o is INotEmptyGen<int>, false);
+// Eval(12318, o is INotEmptyGen<int>[], false);
Eval(12319, o is SimpleDelegate, false);
Eval(12320, o is SimpleDelegate[], false);
- Eval(12321, o is GenericDelegate<int>, false);
- Eval(12322, o is GenericDelegate<int>[], false);
+// Eval(12321, o is GenericDelegate<int>, false);
+// Eval(12322, o is GenericDelegate<int>[], false);
Eval(12323, o is EmptyClass, false);
Eval(12324, o is EmptyClass[], false);
Eval(12325, o is NotEmptyClass, false);
Eval(12326, o is NotEmptyClass[], false);
- Eval(12327, o is EmptyClassGen<int>, false);
- Eval(12328, o is EmptyClassGen<int>[], false);
- Eval(12329, o is NotEmptyClassGen<Guid>, false);
- Eval(12330, o is NotEmptyClassGen<Guid>[], false);
- Eval(12331, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12332, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12327, o is EmptyClassGen<int>, false);
+// Eval(12328, o is EmptyClassGen<int>[], false);
+// Eval(12329, o is NotEmptyClassGen<Guid>, false);
+// Eval(12330, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12331, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12332, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12333, o is NestedClass, false);
Eval(12334, o is NestedClass[], false);
- Eval(12335, o is NestedClassGen<Decimal>, false);
- Eval(12336, o is NestedClassGen<Decimal>[], false);
+// Eval(12335, o is NestedClassGen<Decimal>, false);
+// Eval(12336, o is NestedClassGen<Decimal>[], false);
Eval(12337, o is ImplementOneInterfaceC, false);
Eval(12338, o is ImplementOneInterfaceC[], false);
Eval(12339, o is ImplementTwoInterfaceC, false);
Eval(12340, o is ImplementTwoInterfaceC[], false);
- Eval(12341, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12342, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12343, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12344, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12345, o is ImplementAllInterfaceC<int>, false);
- Eval(12346, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12341, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12342, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12343, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12344, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12345, o is ImplementAllInterfaceC<int>, false);
+// Eval(12346, o is ImplementAllInterfaceC<int>[], false);
Eval(12347, o is SealedClass, false);
Eval(12348, o is SealedClass[], false);
}
@@ -11029,26 +11029,26 @@ internal class Program
Eval(12354, o is NotEmptyStruct[], false);
Eval(12355, o is NotEmptyStruct?, false);
Eval(12356, o is NotEmptyStruct?[], false);
- Eval(12357, o is EmptyStructGen<int>, false);
- Eval(12358, o is EmptyStructGen<int>[], false);
- Eval(12359, o is EmptyStructGen<int>?, false);
- Eval(12360, o is EmptyStructGen<int>?[], false);
- Eval(12361, o is NotEmptyStructGen<Guid>, false);
- Eval(12362, o is NotEmptyStructGen<Guid>[], false);
- Eval(12363, o is NotEmptyStructGen<Guid>?, false);
- Eval(12364, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12365, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12366, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12367, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12368, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12357, o is EmptyStructGen<int>, false);
+// Eval(12358, o is EmptyStructGen<int>[], false);
+// Eval(12359, o is EmptyStructGen<int>?, false);
+// Eval(12360, o is EmptyStructGen<int>?[], false);
+// Eval(12361, o is NotEmptyStructGen<Guid>, false);
+// Eval(12362, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12363, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12364, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12365, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12366, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12367, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12368, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12369, o is NestedStruct, false);
Eval(12370, o is NestedStruct[], false);
Eval(12371, o is NestedStruct?, false);
Eval(12372, o is NestedStruct?[], false);
- Eval(12373, o is NestedStructGen<Decimal>, false);
- Eval(12374, o is NestedStructGen<Decimal>[], false);
- Eval(12375, o is NestedStructGen<Decimal>?, false);
- Eval(12376, o is NestedStructGen<Decimal>?[], false);
+// Eval(12373, o is NestedStructGen<Decimal>, false);
+// Eval(12374, o is NestedStructGen<Decimal>[], false);
+// Eval(12375, o is NestedStructGen<Decimal>?, false);
+// Eval(12376, o is NestedStructGen<Decimal>?[], false);
Eval(12377, o is ExplicitFieldOffsetStruct, false);
Eval(12378, o is ExplicitFieldOffsetStruct[], false);
Eval(12379, o is ExplicitFieldOffsetStruct?, false);
@@ -11065,18 +11065,18 @@ internal class Program
Eval(12398, o is ImplementTwoInterface[], false);
Eval(12399, o is ImplementTwoInterface?, false);
Eval(12400, o is ImplementTwoInterface?[], false);
- Eval(12401, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12402, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12403, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12404, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12405, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12406, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12407, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12408, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12409, o is ImplementAllInterface<int>, false);
- Eval(12410, o is ImplementAllInterface<int>[], false);
- Eval(12411, o is ImplementAllInterface<int>?, false);
- Eval(12412, o is ImplementAllInterface<int>?[], false);
+// Eval(12401, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12402, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12403, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12404, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12405, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12406, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12407, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12408, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12409, o is ImplementAllInterface<int>, false);
+// Eval(12410, o is ImplementAllInterface<int>[], false);
+// Eval(12411, o is ImplementAllInterface<int>?, false);
+// Eval(12412, o is ImplementAllInterface<int>?[], false);
Eval(12413, o is IntE, false);
Eval(12414, o is IntE[], false);
Eval(12415, o is IntE?, false);
@@ -11175,38 +11175,38 @@ internal class Program
Eval(12508, o is IEmpty[], false);
Eval(12509, o is INotEmpty, false);
Eval(12510, o is INotEmpty[], false);
- Eval(12511, o is IEmptyGen<int>, false);
- Eval(12512, o is IEmptyGen<int>[], false);
- Eval(12513, o is INotEmptyGen<int>, false);
- Eval(12514, o is INotEmptyGen<int>[], false);
+// Eval(12511, o is IEmptyGen<int>, false);
+// Eval(12512, o is IEmptyGen<int>[], false);
+// Eval(12513, o is INotEmptyGen<int>, false);
+// Eval(12514, o is INotEmptyGen<int>[], false);
Eval(12515, o is SimpleDelegate, false);
Eval(12516, o is SimpleDelegate[], false);
- Eval(12517, o is GenericDelegate<int>, false);
- Eval(12518, o is GenericDelegate<int>[], false);
+// Eval(12517, o is GenericDelegate<int>, false);
+// Eval(12518, o is GenericDelegate<int>[], false);
Eval(12519, o is EmptyClass, false);
Eval(12520, o is EmptyClass[], false);
Eval(12521, o is NotEmptyClass, false);
Eval(12522, o is NotEmptyClass[], false);
- Eval(12523, o is EmptyClassGen<int>, false);
- Eval(12524, o is EmptyClassGen<int>[], false);
- Eval(12525, o is NotEmptyClassGen<Guid>, false);
- Eval(12526, o is NotEmptyClassGen<Guid>[], false);
- Eval(12527, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12528, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12523, o is EmptyClassGen<int>, false);
+// Eval(12524, o is EmptyClassGen<int>[], false);
+// Eval(12525, o is NotEmptyClassGen<Guid>, false);
+// Eval(12526, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12527, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12528, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12529, o is NestedClass, false);
Eval(12530, o is NestedClass[], false);
- Eval(12531, o is NestedClassGen<Decimal>, false);
- Eval(12532, o is NestedClassGen<Decimal>[], false);
+// Eval(12531, o is NestedClassGen<Decimal>, false);
+// Eval(12532, o is NestedClassGen<Decimal>[], false);
Eval(12533, o is ImplementOneInterfaceC, false);
Eval(12534, o is ImplementOneInterfaceC[], false);
Eval(12535, o is ImplementTwoInterfaceC, false);
Eval(12536, o is ImplementTwoInterfaceC[], false);
- Eval(12537, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12538, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12539, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12540, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12541, o is ImplementAllInterfaceC<int>, false);
- Eval(12542, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12537, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12538, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12539, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12540, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12541, o is ImplementAllInterfaceC<int>, false);
+// Eval(12542, o is ImplementAllInterfaceC<int>[], false);
Eval(12543, o is SealedClass, false);
Eval(12544, o is SealedClass[], false);
}
@@ -11221,26 +11221,26 @@ internal class Program
Eval(12550, o is NotEmptyStruct[], false);
Eval(12551, o is NotEmptyStruct?, false);
Eval(12552, o is NotEmptyStruct?[], false);
- Eval(12553, o is EmptyStructGen<int>, false);
- Eval(12554, o is EmptyStructGen<int>[], false);
- Eval(12555, o is EmptyStructGen<int>?, false);
- Eval(12556, o is EmptyStructGen<int>?[], false);
- Eval(12557, o is NotEmptyStructGen<Guid>, false);
- Eval(12558, o is NotEmptyStructGen<Guid>[], false);
- Eval(12559, o is NotEmptyStructGen<Guid>?, false);
- Eval(12560, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12561, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12562, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12563, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12564, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12553, o is EmptyStructGen<int>, false);
+// Eval(12554, o is EmptyStructGen<int>[], false);
+// Eval(12555, o is EmptyStructGen<int>?, false);
+// Eval(12556, o is EmptyStructGen<int>?[], false);
+// Eval(12557, o is NotEmptyStructGen<Guid>, false);
+// Eval(12558, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12559, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12560, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12561, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12562, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12563, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12564, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12565, o is NestedStruct, false);
Eval(12566, o is NestedStruct[], false);
Eval(12567, o is NestedStruct?, false);
Eval(12568, o is NestedStruct?[], false);
- Eval(12569, o is NestedStructGen<Decimal>, false);
- Eval(12570, o is NestedStructGen<Decimal>[], false);
- Eval(12571, o is NestedStructGen<Decimal>?, false);
- Eval(12572, o is NestedStructGen<Decimal>?[], false);
+// Eval(12569, o is NestedStructGen<Decimal>, false);
+// Eval(12570, o is NestedStructGen<Decimal>[], false);
+// Eval(12571, o is NestedStructGen<Decimal>?, false);
+// Eval(12572, o is NestedStructGen<Decimal>?[], false);
Eval(12573, o is ExplicitFieldOffsetStruct, false);
Eval(12574, o is ExplicitFieldOffsetStruct[], false);
Eval(12575, o is ExplicitFieldOffsetStruct?, false);
@@ -11257,18 +11257,18 @@ internal class Program
Eval(12594, o is ImplementTwoInterface[], false);
Eval(12595, o is ImplementTwoInterface?, false);
Eval(12596, o is ImplementTwoInterface?[], false);
- Eval(12597, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12598, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12599, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12600, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12601, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12602, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12603, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12604, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12605, o is ImplementAllInterface<int>, false);
- Eval(12606, o is ImplementAllInterface<int>[], false);
- Eval(12607, o is ImplementAllInterface<int>?, false);
- Eval(12608, o is ImplementAllInterface<int>?[], false);
+// Eval(12597, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12598, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12599, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12600, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12601, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12602, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12603, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12604, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12605, o is ImplementAllInterface<int>, false);
+// Eval(12606, o is ImplementAllInterface<int>[], false);
+// Eval(12607, o is ImplementAllInterface<int>?, false);
+// Eval(12608, o is ImplementAllInterface<int>?[], false);
Eval(12609, o is IntE, false);
Eval(12610, o is IntE[], false);
Eval(12611, o is IntE?, false);
@@ -11367,38 +11367,38 @@ internal class Program
Eval(12704, o is IEmpty[], false);
Eval(12705, o is INotEmpty, false);
Eval(12706, o is INotEmpty[], false);
- Eval(12707, o is IEmptyGen<int>, false);
- Eval(12708, o is IEmptyGen<int>[], false);
- Eval(12709, o is INotEmptyGen<int>, false);
- Eval(12710, o is INotEmptyGen<int>[], false);
+// Eval(12707, o is IEmptyGen<int>, false);
+// Eval(12708, o is IEmptyGen<int>[], false);
+// Eval(12709, o is INotEmptyGen<int>, false);
+// Eval(12710, o is INotEmptyGen<int>[], false);
Eval(12711, o is SimpleDelegate, false);
Eval(12712, o is SimpleDelegate[], false);
- Eval(12713, o is GenericDelegate<int>, false);
- Eval(12714, o is GenericDelegate<int>[], false);
+// Eval(12713, o is GenericDelegate<int>, false);
+// Eval(12714, o is GenericDelegate<int>[], false);
Eval(12715, o is EmptyClass, false);
Eval(12716, o is EmptyClass[], false);
Eval(12717, o is NotEmptyClass, false);
Eval(12718, o is NotEmptyClass[], false);
- Eval(12719, o is EmptyClassGen<int>, false);
- Eval(12720, o is EmptyClassGen<int>[], false);
- Eval(12721, o is NotEmptyClassGen<Guid>, false);
- Eval(12722, o is NotEmptyClassGen<Guid>[], false);
- Eval(12723, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12724, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12719, o is EmptyClassGen<int>, false);
+// Eval(12720, o is EmptyClassGen<int>[], false);
+// Eval(12721, o is NotEmptyClassGen<Guid>, false);
+// Eval(12722, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12723, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12724, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12725, o is NestedClass, false);
Eval(12726, o is NestedClass[], false);
- Eval(12727, o is NestedClassGen<Decimal>, false);
- Eval(12728, o is NestedClassGen<Decimal>[], false);
+// Eval(12727, o is NestedClassGen<Decimal>, false);
+// Eval(12728, o is NestedClassGen<Decimal>[], false);
Eval(12729, o is ImplementOneInterfaceC, false);
Eval(12730, o is ImplementOneInterfaceC[], false);
Eval(12731, o is ImplementTwoInterfaceC, false);
Eval(12732, o is ImplementTwoInterfaceC[], false);
- Eval(12733, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12734, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12735, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12736, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12737, o is ImplementAllInterfaceC<int>, false);
- Eval(12738, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12733, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12734, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12735, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12736, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12737, o is ImplementAllInterfaceC<int>, false);
+// Eval(12738, o is ImplementAllInterfaceC<int>[], false);
Eval(12739, o is SealedClass, false);
Eval(12740, o is SealedClass[], false);
}
@@ -11413,26 +11413,26 @@ internal class Program
Eval(12746, o is NotEmptyStruct[], false);
Eval(12747, o is NotEmptyStruct?, false);
Eval(12748, o is NotEmptyStruct?[], false);
- Eval(12749, o is EmptyStructGen<int>, false);
- Eval(12750, o is EmptyStructGen<int>[], false);
- Eval(12751, o is EmptyStructGen<int>?, false);
- Eval(12752, o is EmptyStructGen<int>?[], false);
- Eval(12753, o is NotEmptyStructGen<Guid>, false);
- Eval(12754, o is NotEmptyStructGen<Guid>[], false);
- Eval(12755, o is NotEmptyStructGen<Guid>?, false);
- Eval(12756, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12757, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12758, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12759, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12760, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12749, o is EmptyStructGen<int>, false);
+// Eval(12750, o is EmptyStructGen<int>[], false);
+// Eval(12751, o is EmptyStructGen<int>?, false);
+// Eval(12752, o is EmptyStructGen<int>?[], false);
+// Eval(12753, o is NotEmptyStructGen<Guid>, false);
+// Eval(12754, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12755, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12756, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12757, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12758, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12759, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12760, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12761, o is NestedStruct, false);
Eval(12762, o is NestedStruct[], false);
Eval(12763, o is NestedStruct?, false);
Eval(12764, o is NestedStruct?[], false);
- Eval(12765, o is NestedStructGen<Decimal>, false);
- Eval(12766, o is NestedStructGen<Decimal>[], false);
- Eval(12767, o is NestedStructGen<Decimal>?, false);
- Eval(12768, o is NestedStructGen<Decimal>?[], false);
+// Eval(12765, o is NestedStructGen<Decimal>, false);
+// Eval(12766, o is NestedStructGen<Decimal>[], false);
+// Eval(12767, o is NestedStructGen<Decimal>?, false);
+// Eval(12768, o is NestedStructGen<Decimal>?[], false);
Eval(12769, o is ExplicitFieldOffsetStruct, false);
Eval(12770, o is ExplicitFieldOffsetStruct[], false);
Eval(12771, o is ExplicitFieldOffsetStruct?, false);
@@ -11449,18 +11449,18 @@ internal class Program
Eval(12790, o is ImplementTwoInterface[], false);
Eval(12791, o is ImplementTwoInterface?, false);
Eval(12792, o is ImplementTwoInterface?[], false);
- Eval(12793, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12794, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12795, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12796, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12797, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12798, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12799, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12800, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12801, o is ImplementAllInterface<int>, false);
- Eval(12802, o is ImplementAllInterface<int>[], false);
- Eval(12803, o is ImplementAllInterface<int>?, false);
- Eval(12804, o is ImplementAllInterface<int>?[], false);
+// Eval(12793, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12794, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12795, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12796, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12797, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12798, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12799, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12800, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12801, o is ImplementAllInterface<int>, false);
+// Eval(12802, o is ImplementAllInterface<int>[], false);
+// Eval(12803, o is ImplementAllInterface<int>?, false);
+// Eval(12804, o is ImplementAllInterface<int>?[], false);
Eval(12805, o is IntE, false);
Eval(12806, o is IntE[], false);
Eval(12807, o is IntE?, false);
@@ -11559,38 +11559,38 @@ internal class Program
Eval(12900, o is IEmpty[], false);
Eval(12901, o is INotEmpty, false);
Eval(12902, o is INotEmpty[], false);
- Eval(12903, o is IEmptyGen<int>, false);
- Eval(12904, o is IEmptyGen<int>[], false);
- Eval(12905, o is INotEmptyGen<int>, false);
- Eval(12906, o is INotEmptyGen<int>[], false);
+// Eval(12903, o is IEmptyGen<int>, false);
+// Eval(12904, o is IEmptyGen<int>[], false);
+// Eval(12905, o is INotEmptyGen<int>, false);
+// Eval(12906, o is INotEmptyGen<int>[], false);
Eval(12907, o is SimpleDelegate, false);
Eval(12908, o is SimpleDelegate[], false);
- Eval(12909, o is GenericDelegate<int>, false);
- Eval(12910, o is GenericDelegate<int>[], false);
+// Eval(12909, o is GenericDelegate<int>, false);
+// Eval(12910, o is GenericDelegate<int>[], false);
Eval(12911, o is EmptyClass, false);
Eval(12912, o is EmptyClass[], false);
Eval(12913, o is NotEmptyClass, false);
Eval(12914, o is NotEmptyClass[], false);
- Eval(12915, o is EmptyClassGen<int>, false);
- Eval(12916, o is EmptyClassGen<int>[], false);
- Eval(12917, o is NotEmptyClassGen<Guid>, false);
- Eval(12918, o is NotEmptyClassGen<Guid>[], false);
- Eval(12919, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(12920, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(12915, o is EmptyClassGen<int>, false);
+// Eval(12916, o is EmptyClassGen<int>[], false);
+// Eval(12917, o is NotEmptyClassGen<Guid>, false);
+// Eval(12918, o is NotEmptyClassGen<Guid>[], false);
+// Eval(12919, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(12920, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(12921, o is NestedClass, false);
Eval(12922, o is NestedClass[], false);
- Eval(12923, o is NestedClassGen<Decimal>, false);
- Eval(12924, o is NestedClassGen<Decimal>[], false);
+// Eval(12923, o is NestedClassGen<Decimal>, false);
+// Eval(12924, o is NestedClassGen<Decimal>[], false);
Eval(12925, o is ImplementOneInterfaceC, false);
Eval(12926, o is ImplementOneInterfaceC[], false);
Eval(12927, o is ImplementTwoInterfaceC, false);
Eval(12928, o is ImplementTwoInterfaceC[], false);
- Eval(12929, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(12930, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(12931, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(12932, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(12933, o is ImplementAllInterfaceC<int>, false);
- Eval(12934, o is ImplementAllInterfaceC<int>[], false);
+// Eval(12929, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(12930, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(12931, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(12932, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(12933, o is ImplementAllInterfaceC<int>, false);
+// Eval(12934, o is ImplementAllInterfaceC<int>[], false);
Eval(12935, o is SealedClass, false);
Eval(12936, o is SealedClass[], false);
}
@@ -11608,26 +11608,26 @@ internal class Program
Eval(12942, o is NotEmptyStruct[], false);
Eval(12943, o is NotEmptyStruct?, false);
Eval(12944, o is NotEmptyStruct?[], false);
- Eval(12945, o is EmptyStructGen<int>, false);
- Eval(12946, o is EmptyStructGen<int>[], false);
- Eval(12947, o is EmptyStructGen<int>?, false);
- Eval(12948, o is EmptyStructGen<int>?[], false);
- Eval(12949, o is NotEmptyStructGen<Guid>, false);
- Eval(12950, o is NotEmptyStructGen<Guid>[], false);
- Eval(12951, o is NotEmptyStructGen<Guid>?, false);
- Eval(12952, o is NotEmptyStructGen<Guid>?[], false);
- Eval(12953, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(12954, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(12955, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(12956, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(12945, o is EmptyStructGen<int>, false);
+// Eval(12946, o is EmptyStructGen<int>[], false);
+// Eval(12947, o is EmptyStructGen<int>?, false);
+// Eval(12948, o is EmptyStructGen<int>?[], false);
+// Eval(12949, o is NotEmptyStructGen<Guid>, false);
+// Eval(12950, o is NotEmptyStructGen<Guid>[], false);
+// Eval(12951, o is NotEmptyStructGen<Guid>?, false);
+// Eval(12952, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(12953, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(12954, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(12955, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(12956, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(12957, o is NestedStruct, false);
Eval(12958, o is NestedStruct[], false);
Eval(12959, o is NestedStruct?, false);
Eval(12960, o is NestedStruct?[], false);
- Eval(12961, o is NestedStructGen<Decimal>, false);
- Eval(12962, o is NestedStructGen<Decimal>[], false);
- Eval(12963, o is NestedStructGen<Decimal>?, false);
- Eval(12964, o is NestedStructGen<Decimal>?[], false);
+// Eval(12961, o is NestedStructGen<Decimal>, false);
+// Eval(12962, o is NestedStructGen<Decimal>[], false);
+// Eval(12963, o is NestedStructGen<Decimal>?, false);
+// Eval(12964, o is NestedStructGen<Decimal>?[], false);
Eval(12965, o is ExplicitFieldOffsetStruct, false);
Eval(12966, o is ExplicitFieldOffsetStruct[], false);
Eval(12967, o is ExplicitFieldOffsetStruct?, false);
@@ -11644,18 +11644,18 @@ internal class Program
Eval(12986, o is ImplementTwoInterface[], false);
Eval(12987, o is ImplementTwoInterface?, false);
Eval(12988, o is ImplementTwoInterface?[], false);
- Eval(12989, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(12990, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(12991, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(12992, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(12993, o is ImplementTwoInterfaceGen<int>, false);
- Eval(12994, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(12995, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(12996, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(12997, o is ImplementAllInterface<int>, false);
- Eval(12998, o is ImplementAllInterface<int>[], false);
- Eval(12999, o is ImplementAllInterface<int>?, false);
- Eval(13000, o is ImplementAllInterface<int>?[], false);
+// Eval(12989, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(12990, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(12991, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(12992, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(12993, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(12994, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(12995, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(12996, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(12997, o is ImplementAllInterface<int>, false);
+// Eval(12998, o is ImplementAllInterface<int>[], false);
+// Eval(12999, o is ImplementAllInterface<int>?, false);
+// Eval(13000, o is ImplementAllInterface<int>?[], false);
Eval(13001, o is IntE, false);
Eval(13002, o is IntE[], false);
Eval(13003, o is IntE?, false);
@@ -11754,38 +11754,38 @@ internal class Program
Eval(13096, o is IEmpty[], false);
Eval(13097, o is INotEmpty, false);
Eval(13098, o is INotEmpty[], false);
- Eval(13099, o is IEmptyGen<int>, false);
- Eval(13100, o is IEmptyGen<int>[], false);
- Eval(13101, o is INotEmptyGen<int>, false);
- Eval(13102, o is INotEmptyGen<int>[], false);
+// Eval(13099, o is IEmptyGen<int>, false);
+// Eval(13100, o is IEmptyGen<int>[], false);
+// Eval(13101, o is INotEmptyGen<int>, false);
+// Eval(13102, o is INotEmptyGen<int>[], false);
Eval(13103, o is SimpleDelegate, false);
Eval(13104, o is SimpleDelegate[], false);
- Eval(13105, o is GenericDelegate<int>, false);
- Eval(13106, o is GenericDelegate<int>[], false);
+// Eval(13105, o is GenericDelegate<int>, false);
+// Eval(13106, o is GenericDelegate<int>[], false);
Eval(13107, o is EmptyClass, false);
Eval(13108, o is EmptyClass[], false);
Eval(13109, o is NotEmptyClass, false);
Eval(13110, o is NotEmptyClass[], false);
- Eval(13111, o is EmptyClassGen<int>, false);
- Eval(13112, o is EmptyClassGen<int>[], false);
- Eval(13113, o is NotEmptyClassGen<Guid>, false);
- Eval(13114, o is NotEmptyClassGen<Guid>[], false);
- Eval(13115, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13116, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13111, o is EmptyClassGen<int>, false);
+// Eval(13112, o is EmptyClassGen<int>[], false);
+// Eval(13113, o is NotEmptyClassGen<Guid>, false);
+// Eval(13114, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13115, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13116, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13117, o is NestedClass, false);
Eval(13118, o is NestedClass[], false);
- Eval(13119, o is NestedClassGen<Decimal>, false);
- Eval(13120, o is NestedClassGen<Decimal>[], false);
+// Eval(13119, o is NestedClassGen<Decimal>, false);
+// Eval(13120, o is NestedClassGen<Decimal>[], false);
Eval(13121, o is ImplementOneInterfaceC, false);
Eval(13122, o is ImplementOneInterfaceC[], false);
Eval(13123, o is ImplementTwoInterfaceC, false);
Eval(13124, o is ImplementTwoInterfaceC[], false);
- Eval(13125, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13126, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13127, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13128, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13129, o is ImplementAllInterfaceC<int>, false);
- Eval(13130, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13125, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13126, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13127, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13128, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13129, o is ImplementAllInterfaceC<int>, false);
+// Eval(13130, o is ImplementAllInterfaceC<int>[], false);
Eval(13131, o is SealedClass, false);
Eval(13132, o is SealedClass[], false);
}
@@ -11800,26 +11800,26 @@ internal class Program
Eval(13138, o is NotEmptyStruct[], false);
Eval(13139, o is NotEmptyStruct?, false);
Eval(13140, o is NotEmptyStruct?[], false);
- Eval(13141, o is EmptyStructGen<int>, false);
- Eval(13142, o is EmptyStructGen<int>[], false);
- Eval(13143, o is EmptyStructGen<int>?, false);
- Eval(13144, o is EmptyStructGen<int>?[], false);
- Eval(13145, o is NotEmptyStructGen<Guid>, false);
- Eval(13146, o is NotEmptyStructGen<Guid>[], false);
- Eval(13147, o is NotEmptyStructGen<Guid>?, false);
- Eval(13148, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13149, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13150, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13151, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13152, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13141, o is EmptyStructGen<int>, false);
+// Eval(13142, o is EmptyStructGen<int>[], false);
+// Eval(13143, o is EmptyStructGen<int>?, false);
+// Eval(13144, o is EmptyStructGen<int>?[], false);
+// Eval(13145, o is NotEmptyStructGen<Guid>, false);
+// Eval(13146, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13147, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13148, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13149, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13150, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13151, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13152, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13153, o is NestedStruct, false);
Eval(13154, o is NestedStruct[], false);
Eval(13155, o is NestedStruct?, false);
Eval(13156, o is NestedStruct?[], false);
- Eval(13157, o is NestedStructGen<Decimal>, false);
- Eval(13158, o is NestedStructGen<Decimal>[], false);
- Eval(13159, o is NestedStructGen<Decimal>?, false);
- Eval(13160, o is NestedStructGen<Decimal>?[], false);
+// Eval(13157, o is NestedStructGen<Decimal>, false);
+// Eval(13158, o is NestedStructGen<Decimal>[], false);
+// Eval(13159, o is NestedStructGen<Decimal>?, false);
+// Eval(13160, o is NestedStructGen<Decimal>?[], false);
Eval(13161, o is ExplicitFieldOffsetStruct, false);
Eval(13162, o is ExplicitFieldOffsetStruct[], false);
Eval(13163, o is ExplicitFieldOffsetStruct?, false);
@@ -11836,18 +11836,18 @@ internal class Program
Eval(13182, o is ImplementTwoInterface[], false);
Eval(13183, o is ImplementTwoInterface?, false);
Eval(13184, o is ImplementTwoInterface?[], false);
- Eval(13185, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13186, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13187, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13188, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13189, o is ImplementTwoInterfaceGen<int>, false);
- Eval(13190, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13191, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(13192, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13193, o is ImplementAllInterface<int>, false);
- Eval(13194, o is ImplementAllInterface<int>[], false);
- Eval(13195, o is ImplementAllInterface<int>?, false);
- Eval(13196, o is ImplementAllInterface<int>?[], false);
+// Eval(13185, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13186, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13187, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13188, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13189, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(13190, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13191, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13192, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13193, o is ImplementAllInterface<int>, false);
+// Eval(13194, o is ImplementAllInterface<int>[], false);
+// Eval(13195, o is ImplementAllInterface<int>?, false);
+// Eval(13196, o is ImplementAllInterface<int>?[], false);
Eval(13197, o is IntE, false);
Eval(13198, o is IntE[], false);
Eval(13199, o is IntE?, false);
@@ -11946,38 +11946,38 @@ internal class Program
Eval(13292, o is IEmpty[], false);
Eval(13293, o is INotEmpty, false);
Eval(13294, o is INotEmpty[], false);
- Eval(13295, o is IEmptyGen<int>, false);
- Eval(13296, o is IEmptyGen<int>[], false);
- Eval(13297, o is INotEmptyGen<int>, false);
- Eval(13298, o is INotEmptyGen<int>[], false);
+// Eval(13295, o is IEmptyGen<int>, false);
+// Eval(13296, o is IEmptyGen<int>[], false);
+// Eval(13297, o is INotEmptyGen<int>, false);
+// Eval(13298, o is INotEmptyGen<int>[], false);
Eval(13299, o is SimpleDelegate, false);
Eval(13300, o is SimpleDelegate[], false);
- Eval(13301, o is GenericDelegate<int>, false);
- Eval(13302, o is GenericDelegate<int>[], false);
+// Eval(13301, o is GenericDelegate<int>, false);
+// Eval(13302, o is GenericDelegate<int>[], false);
Eval(13303, o is EmptyClass, false);
Eval(13304, o is EmptyClass[], false);
Eval(13305, o is NotEmptyClass, false);
Eval(13306, o is NotEmptyClass[], false);
- Eval(13307, o is EmptyClassGen<int>, false);
- Eval(13308, o is EmptyClassGen<int>[], false);
- Eval(13309, o is NotEmptyClassGen<Guid>, false);
- Eval(13310, o is NotEmptyClassGen<Guid>[], false);
- Eval(13311, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13312, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13307, o is EmptyClassGen<int>, false);
+// Eval(13308, o is EmptyClassGen<int>[], false);
+// Eval(13309, o is NotEmptyClassGen<Guid>, false);
+// Eval(13310, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13311, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13312, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13313, o is NestedClass, false);
Eval(13314, o is NestedClass[], false);
- Eval(13315, o is NestedClassGen<Decimal>, false);
- Eval(13316, o is NestedClassGen<Decimal>[], false);
+// Eval(13315, o is NestedClassGen<Decimal>, false);
+// Eval(13316, o is NestedClassGen<Decimal>[], false);
Eval(13317, o is ImplementOneInterfaceC, false);
Eval(13318, o is ImplementOneInterfaceC[], false);
Eval(13319, o is ImplementTwoInterfaceC, false);
Eval(13320, o is ImplementTwoInterfaceC[], false);
- Eval(13321, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13322, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13323, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13324, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13325, o is ImplementAllInterfaceC<int>, false);
- Eval(13326, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13321, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13322, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13323, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13324, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13325, o is ImplementAllInterfaceC<int>, false);
+// Eval(13326, o is ImplementAllInterfaceC<int>[], false);
Eval(13327, o is SealedClass, false);
Eval(13328, o is SealedClass[], false);
}
@@ -11992,26 +11992,26 @@ internal class Program
Eval(13334, o is NotEmptyStruct[], false);
Eval(13335, o is NotEmptyStruct?, false);
Eval(13336, o is NotEmptyStruct?[], false);
- Eval(13337, o is EmptyStructGen<int>, false);
- Eval(13338, o is EmptyStructGen<int>[], false);
- Eval(13339, o is EmptyStructGen<int>?, false);
- Eval(13340, o is EmptyStructGen<int>?[], false);
- Eval(13341, o is NotEmptyStructGen<Guid>, false);
- Eval(13342, o is NotEmptyStructGen<Guid>[], false);
- Eval(13343, o is NotEmptyStructGen<Guid>?, false);
- Eval(13344, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13345, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13346, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13347, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13348, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13337, o is EmptyStructGen<int>, false);
+// Eval(13338, o is EmptyStructGen<int>[], false);
+// Eval(13339, o is EmptyStructGen<int>?, false);
+// Eval(13340, o is EmptyStructGen<int>?[], false);
+// Eval(13341, o is NotEmptyStructGen<Guid>, false);
+// Eval(13342, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13343, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13344, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13345, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13346, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13347, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13348, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13349, o is NestedStruct, false);
Eval(13350, o is NestedStruct[], false);
Eval(13351, o is NestedStruct?, false);
Eval(13352, o is NestedStruct?[], false);
- Eval(13353, o is NestedStructGen<Decimal>, false);
- Eval(13354, o is NestedStructGen<Decimal>[], false);
- Eval(13355, o is NestedStructGen<Decimal>?, false);
- Eval(13356, o is NestedStructGen<Decimal>?[], false);
+// Eval(13353, o is NestedStructGen<Decimal>, false);
+// Eval(13354, o is NestedStructGen<Decimal>[], false);
+// Eval(13355, o is NestedStructGen<Decimal>?, false);
+// Eval(13356, o is NestedStructGen<Decimal>?[], false);
Eval(13357, o is ExplicitFieldOffsetStruct, false);
Eval(13358, o is ExplicitFieldOffsetStruct[], false);
Eval(13359, o is ExplicitFieldOffsetStruct?, false);
@@ -12028,18 +12028,18 @@ internal class Program
Eval(13378, o is ImplementTwoInterface[], false);
Eval(13379, o is ImplementTwoInterface?, false);
Eval(13380, o is ImplementTwoInterface?[], false);
- Eval(13381, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13382, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13383, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13384, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13385, o is ImplementTwoInterfaceGen<int>, false);
- Eval(13386, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13387, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(13388, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13389, o is ImplementAllInterface<int>, false);
- Eval(13390, o is ImplementAllInterface<int>[], false);
- Eval(13391, o is ImplementAllInterface<int>?, false);
- Eval(13392, o is ImplementAllInterface<int>?[], false);
+// Eval(13381, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13382, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13383, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13384, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13385, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(13386, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13387, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13388, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13389, o is ImplementAllInterface<int>, false);
+// Eval(13390, o is ImplementAllInterface<int>[], false);
+// Eval(13391, o is ImplementAllInterface<int>?, false);
+// Eval(13392, o is ImplementAllInterface<int>?[], false);
Eval(13393, o is IntE, false);
Eval(13394, o is IntE[], false);
Eval(13395, o is IntE?, false);
@@ -12138,38 +12138,38 @@ internal class Program
Eval(13488, o is IEmpty[], false);
Eval(13489, o is INotEmpty, false);
Eval(13490, o is INotEmpty[], false);
- Eval(13491, o is IEmptyGen<int>, false);
- Eval(13492, o is IEmptyGen<int>[], false);
- Eval(13493, o is INotEmptyGen<int>, false);
- Eval(13494, o is INotEmptyGen<int>[], false);
+// Eval(13491, o is IEmptyGen<int>, false);
+// Eval(13492, o is IEmptyGen<int>[], false);
+// Eval(13493, o is INotEmptyGen<int>, false);
+// Eval(13494, o is INotEmptyGen<int>[], false);
Eval(13495, o is SimpleDelegate, false);
Eval(13496, o is SimpleDelegate[], false);
- Eval(13497, o is GenericDelegate<int>, false);
- Eval(13498, o is GenericDelegate<int>[], false);
+// Eval(13497, o is GenericDelegate<int>, false);
+// Eval(13498, o is GenericDelegate<int>[], false);
Eval(13499, o is EmptyClass, false);
Eval(13500, o is EmptyClass[], false);
Eval(13501, o is NotEmptyClass, false);
Eval(13502, o is NotEmptyClass[], false);
- Eval(13503, o is EmptyClassGen<int>, false);
- Eval(13504, o is EmptyClassGen<int>[], false);
- Eval(13505, o is NotEmptyClassGen<Guid>, false);
- Eval(13506, o is NotEmptyClassGen<Guid>[], false);
- Eval(13507, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13508, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13503, o is EmptyClassGen<int>, false);
+// Eval(13504, o is EmptyClassGen<int>[], false);
+// Eval(13505, o is NotEmptyClassGen<Guid>, false);
+// Eval(13506, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13507, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13508, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13509, o is NestedClass, false);
Eval(13510, o is NestedClass[], false);
- Eval(13511, o is NestedClassGen<Decimal>, false);
- Eval(13512, o is NestedClassGen<Decimal>[], false);
+// Eval(13511, o is NestedClassGen<Decimal>, false);
+// Eval(13512, o is NestedClassGen<Decimal>[], false);
Eval(13513, o is ImplementOneInterfaceC, false);
Eval(13514, o is ImplementOneInterfaceC[], false);
Eval(13515, o is ImplementTwoInterfaceC, false);
Eval(13516, o is ImplementTwoInterfaceC[], false);
- Eval(13517, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13518, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13519, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13520, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13521, o is ImplementAllInterfaceC<int>, false);
- Eval(13522, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13517, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13518, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13519, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13520, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13521, o is ImplementAllInterfaceC<int>, false);
+// Eval(13522, o is ImplementAllInterfaceC<int>[], false);
Eval(13523, o is SealedClass, false);
Eval(13524, o is SealedClass[], false);
}
@@ -12187,26 +12187,26 @@ internal class Program
Eval(13530, o is NotEmptyStruct[], false);
Eval(13531, o is NotEmptyStruct?, false);
Eval(13532, o is NotEmptyStruct?[], false);
- Eval(13533, o is EmptyStructGen<int>, false);
- Eval(13534, o is EmptyStructGen<int>[], false);
- Eval(13535, o is EmptyStructGen<int>?, false);
- Eval(13536, o is EmptyStructGen<int>?[], false);
- Eval(13537, o is NotEmptyStructGen<Guid>, false);
- Eval(13538, o is NotEmptyStructGen<Guid>[], false);
- Eval(13539, o is NotEmptyStructGen<Guid>?, false);
- Eval(13540, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13541, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13542, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13543, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13544, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13533, o is EmptyStructGen<int>, false);
+// Eval(13534, o is EmptyStructGen<int>[], false);
+// Eval(13535, o is EmptyStructGen<int>?, false);
+// Eval(13536, o is EmptyStructGen<int>?[], false);
+// Eval(13537, o is NotEmptyStructGen<Guid>, false);
+// Eval(13538, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13539, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13540, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13541, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13542, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13543, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13544, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13545, o is NestedStruct, false);
Eval(13546, o is NestedStruct[], false);
Eval(13547, o is NestedStruct?, false);
Eval(13548, o is NestedStruct?[], false);
- Eval(13549, o is NestedStructGen<Decimal>, false);
- Eval(13550, o is NestedStructGen<Decimal>[], false);
- Eval(13551, o is NestedStructGen<Decimal>?, false);
- Eval(13552, o is NestedStructGen<Decimal>?[], false);
+// Eval(13549, o is NestedStructGen<Decimal>, false);
+// Eval(13550, o is NestedStructGen<Decimal>[], false);
+// Eval(13551, o is NestedStructGen<Decimal>?, false);
+// Eval(13552, o is NestedStructGen<Decimal>?[], false);
Eval(13553, o is ExplicitFieldOffsetStruct, false);
Eval(13554, o is ExplicitFieldOffsetStruct[], false);
Eval(13555, o is ExplicitFieldOffsetStruct?, false);
@@ -12223,18 +12223,18 @@ internal class Program
Eval(13574, o is ImplementTwoInterface[], false);
Eval(13575, o is ImplementTwoInterface?, false);
Eval(13576, o is ImplementTwoInterface?[], false);
- Eval(13577, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13578, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13579, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13580, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13581, o is ImplementTwoInterfaceGen<int>, false);
- Eval(13582, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13583, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(13584, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13585, o is ImplementAllInterface<int>, false);
- Eval(13586, o is ImplementAllInterface<int>[], false);
- Eval(13587, o is ImplementAllInterface<int>?, false);
- Eval(13588, o is ImplementAllInterface<int>?[], false);
+// Eval(13577, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13578, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13579, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13580, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13581, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(13582, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13583, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13584, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13585, o is ImplementAllInterface<int>, false);
+// Eval(13586, o is ImplementAllInterface<int>[], false);
+// Eval(13587, o is ImplementAllInterface<int>?, false);
+// Eval(13588, o is ImplementAllInterface<int>?[], false);
Eval(13589, o is IntE, false);
Eval(13590, o is IntE[], false);
Eval(13591, o is IntE?, false);
@@ -12333,38 +12333,38 @@ internal class Program
Eval(13684, o is IEmpty[], false);
Eval(13685, o is INotEmpty, false);
Eval(13686, o is INotEmpty[], false);
- Eval(13687, o is IEmptyGen<int>, false);
- Eval(13688, o is IEmptyGen<int>[], false);
- Eval(13689, o is INotEmptyGen<int>, false);
- Eval(13690, o is INotEmptyGen<int>[], false);
+// Eval(13687, o is IEmptyGen<int>, false);
+// Eval(13688, o is IEmptyGen<int>[], false);
+// Eval(13689, o is INotEmptyGen<int>, false);
+// Eval(13690, o is INotEmptyGen<int>[], false);
Eval(13691, o is SimpleDelegate, false);
Eval(13692, o is SimpleDelegate[], false);
- Eval(13693, o is GenericDelegate<int>, false);
- Eval(13694, o is GenericDelegate<int>[], false);
+// Eval(13693, o is GenericDelegate<int>, false);
+// Eval(13694, o is GenericDelegate<int>[], false);
Eval(13695, o is EmptyClass, false);
Eval(13696, o is EmptyClass[], false);
Eval(13697, o is NotEmptyClass, false);
Eval(13698, o is NotEmptyClass[], false);
- Eval(13699, o is EmptyClassGen<int>, false);
- Eval(13700, o is EmptyClassGen<int>[], false);
- Eval(13701, o is NotEmptyClassGen<Guid>, false);
- Eval(13702, o is NotEmptyClassGen<Guid>[], false);
- Eval(13703, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13704, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13699, o is EmptyClassGen<int>, false);
+// Eval(13700, o is EmptyClassGen<int>[], false);
+// Eval(13701, o is NotEmptyClassGen<Guid>, false);
+// Eval(13702, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13703, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13704, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13705, o is NestedClass, false);
Eval(13706, o is NestedClass[], false);
- Eval(13707, o is NestedClassGen<Decimal>, false);
- Eval(13708, o is NestedClassGen<Decimal>[], false);
+// Eval(13707, o is NestedClassGen<Decimal>, false);
+// Eval(13708, o is NestedClassGen<Decimal>[], false);
Eval(13709, o is ImplementOneInterfaceC, false);
Eval(13710, o is ImplementOneInterfaceC[], false);
Eval(13711, o is ImplementTwoInterfaceC, false);
Eval(13712, o is ImplementTwoInterfaceC[], false);
- Eval(13713, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13714, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13715, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13716, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13717, o is ImplementAllInterfaceC<int>, false);
- Eval(13718, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13713, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13714, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13715, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13716, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13717, o is ImplementAllInterfaceC<int>, false);
+// Eval(13718, o is ImplementAllInterfaceC<int>[], false);
Eval(13719, o is SealedClass, false);
Eval(13720, o is SealedClass[], false);
}
@@ -12379,26 +12379,26 @@ internal class Program
Eval(13726, o is NotEmptyStruct[], false);
Eval(13727, o is NotEmptyStruct?, false);
Eval(13728, o is NotEmptyStruct?[], false);
- Eval(13729, o is EmptyStructGen<int>, false);
- Eval(13730, o is EmptyStructGen<int>[], false);
- Eval(13731, o is EmptyStructGen<int>?, false);
- Eval(13732, o is EmptyStructGen<int>?[], false);
- Eval(13733, o is NotEmptyStructGen<Guid>, false);
- Eval(13734, o is NotEmptyStructGen<Guid>[], false);
- Eval(13735, o is NotEmptyStructGen<Guid>?, false);
- Eval(13736, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13737, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13738, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13739, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13740, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13729, o is EmptyStructGen<int>, false);
+// Eval(13730, o is EmptyStructGen<int>[], false);
+// Eval(13731, o is EmptyStructGen<int>?, false);
+// Eval(13732, o is EmptyStructGen<int>?[], false);
+// Eval(13733, o is NotEmptyStructGen<Guid>, false);
+// Eval(13734, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13735, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13736, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13737, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13738, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13739, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13740, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13741, o is NestedStruct, false);
Eval(13742, o is NestedStruct[], false);
Eval(13743, o is NestedStruct?, false);
Eval(13744, o is NestedStruct?[], false);
- Eval(13745, o is NestedStructGen<Decimal>, false);
- Eval(13746, o is NestedStructGen<Decimal>[], false);
- Eval(13747, o is NestedStructGen<Decimal>?, false);
- Eval(13748, o is NestedStructGen<Decimal>?[], false);
+// Eval(13745, o is NestedStructGen<Decimal>, false);
+// Eval(13746, o is NestedStructGen<Decimal>[], false);
+// Eval(13747, o is NestedStructGen<Decimal>?, false);
+// Eval(13748, o is NestedStructGen<Decimal>?[], false);
Eval(13749, o is ExplicitFieldOffsetStruct, false);
Eval(13750, o is ExplicitFieldOffsetStruct[], false);
Eval(13751, o is ExplicitFieldOffsetStruct?, false);
@@ -12415,18 +12415,18 @@ internal class Program
Eval(13770, o is ImplementTwoInterface[], false);
Eval(13771, o is ImplementTwoInterface?, false);
Eval(13772, o is ImplementTwoInterface?[], false);
- Eval(13773, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13774, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13775, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13776, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13777, o is ImplementTwoInterfaceGen<int>, false);
- Eval(13778, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13779, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(13780, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13781, o is ImplementAllInterface<int>, false);
- Eval(13782, o is ImplementAllInterface<int>[], false);
- Eval(13783, o is ImplementAllInterface<int>?, false);
- Eval(13784, o is ImplementAllInterface<int>?[], false);
+// Eval(13773, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13774, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13775, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13776, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13777, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(13778, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13779, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13780, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13781, o is ImplementAllInterface<int>, false);
+// Eval(13782, o is ImplementAllInterface<int>[], false);
+// Eval(13783, o is ImplementAllInterface<int>?, false);
+// Eval(13784, o is ImplementAllInterface<int>?[], false);
Eval(13785, o is IntE, false);
Eval(13786, o is IntE[], false);
Eval(13787, o is IntE?, false);
@@ -12525,38 +12525,38 @@ internal class Program
Eval(13880, o is IEmpty[], false);
Eval(13881, o is INotEmpty, false);
Eval(13882, o is INotEmpty[], false);
- Eval(13883, o is IEmptyGen<int>, false);
- Eval(13884, o is IEmptyGen<int>[], false);
- Eval(13885, o is INotEmptyGen<int>, false);
- Eval(13886, o is INotEmptyGen<int>[], false);
+// Eval(13883, o is IEmptyGen<int>, false);
+// Eval(13884, o is IEmptyGen<int>[], false);
+// Eval(13885, o is INotEmptyGen<int>, false);
+// Eval(13886, o is INotEmptyGen<int>[], false);
Eval(13887, o is SimpleDelegate, false);
Eval(13888, o is SimpleDelegate[], false);
- Eval(13889, o is GenericDelegate<int>, false);
- Eval(13890, o is GenericDelegate<int>[], false);
+// Eval(13889, o is GenericDelegate<int>, false);
+// Eval(13890, o is GenericDelegate<int>[], false);
Eval(13891, o is EmptyClass, false);
Eval(13892, o is EmptyClass[], false);
Eval(13893, o is NotEmptyClass, false);
Eval(13894, o is NotEmptyClass[], false);
- Eval(13895, o is EmptyClassGen<int>, false);
- Eval(13896, o is EmptyClassGen<int>[], false);
- Eval(13897, o is NotEmptyClassGen<Guid>, false);
- Eval(13898, o is NotEmptyClassGen<Guid>[], false);
- Eval(13899, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(13900, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(13895, o is EmptyClassGen<int>, false);
+// Eval(13896, o is EmptyClassGen<int>[], false);
+// Eval(13897, o is NotEmptyClassGen<Guid>, false);
+// Eval(13898, o is NotEmptyClassGen<Guid>[], false);
+// Eval(13899, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(13900, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(13901, o is NestedClass, false);
Eval(13902, o is NestedClass[], false);
- Eval(13903, o is NestedClassGen<Decimal>, false);
- Eval(13904, o is NestedClassGen<Decimal>[], false);
+// Eval(13903, o is NestedClassGen<Decimal>, false);
+// Eval(13904, o is NestedClassGen<Decimal>[], false);
Eval(13905, o is ImplementOneInterfaceC, false);
Eval(13906, o is ImplementOneInterfaceC[], false);
Eval(13907, o is ImplementTwoInterfaceC, false);
Eval(13908, o is ImplementTwoInterfaceC[], false);
- Eval(13909, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(13910, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(13911, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(13912, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(13913, o is ImplementAllInterfaceC<int>, false);
- Eval(13914, o is ImplementAllInterfaceC<int>[], false);
+// Eval(13909, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(13910, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(13911, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(13912, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(13913, o is ImplementAllInterfaceC<int>, false);
+// Eval(13914, o is ImplementAllInterfaceC<int>[], false);
Eval(13915, o is SealedClass, false);
Eval(13916, o is SealedClass[], false);
}
@@ -12571,26 +12571,26 @@ internal class Program
Eval(13922, o is NotEmptyStruct[], false);
Eval(13923, o is NotEmptyStruct?, false);
Eval(13924, o is NotEmptyStruct?[], false);
- Eval(13925, o is EmptyStructGen<int>, false);
- Eval(13926, o is EmptyStructGen<int>[], false);
- Eval(13927, o is EmptyStructGen<int>?, false);
- Eval(13928, o is EmptyStructGen<int>?[], false);
- Eval(13929, o is NotEmptyStructGen<Guid>, false);
- Eval(13930, o is NotEmptyStructGen<Guid>[], false);
- Eval(13931, o is NotEmptyStructGen<Guid>?, false);
- Eval(13932, o is NotEmptyStructGen<Guid>?[], false);
- Eval(13933, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(13934, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(13935, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(13936, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(13925, o is EmptyStructGen<int>, false);
+// Eval(13926, o is EmptyStructGen<int>[], false);
+// Eval(13927, o is EmptyStructGen<int>?, false);
+// Eval(13928, o is EmptyStructGen<int>?[], false);
+// Eval(13929, o is NotEmptyStructGen<Guid>, false);
+// Eval(13930, o is NotEmptyStructGen<Guid>[], false);
+// Eval(13931, o is NotEmptyStructGen<Guid>?, false);
+// Eval(13932, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(13933, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(13934, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(13935, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(13936, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(13937, o is NestedStruct, false);
Eval(13938, o is NestedStruct[], false);
Eval(13939, o is NestedStruct?, false);
Eval(13940, o is NestedStruct?[], false);
- Eval(13941, o is NestedStructGen<Decimal>, false);
- Eval(13942, o is NestedStructGen<Decimal>[], false);
- Eval(13943, o is NestedStructGen<Decimal>?, false);
- Eval(13944, o is NestedStructGen<Decimal>?[], false);
+// Eval(13941, o is NestedStructGen<Decimal>, false);
+// Eval(13942, o is NestedStructGen<Decimal>[], false);
+// Eval(13943, o is NestedStructGen<Decimal>?, false);
+// Eval(13944, o is NestedStructGen<Decimal>?[], false);
Eval(13945, o is ExplicitFieldOffsetStruct, false);
Eval(13946, o is ExplicitFieldOffsetStruct[], false);
Eval(13947, o is ExplicitFieldOffsetStruct?, false);
@@ -12607,18 +12607,18 @@ internal class Program
Eval(13966, o is ImplementTwoInterface[], false);
Eval(13967, o is ImplementTwoInterface?, false);
Eval(13968, o is ImplementTwoInterface?[], false);
- Eval(13969, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(13970, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(13971, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(13972, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(13973, o is ImplementTwoInterfaceGen<int>, false);
- Eval(13974, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(13975, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(13976, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(13977, o is ImplementAllInterface<int>, false);
- Eval(13978, o is ImplementAllInterface<int>[], false);
- Eval(13979, o is ImplementAllInterface<int>?, false);
- Eval(13980, o is ImplementAllInterface<int>?[], false);
+// Eval(13969, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(13970, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(13971, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(13972, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(13973, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(13974, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(13975, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(13976, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(13977, o is ImplementAllInterface<int>, false);
+// Eval(13978, o is ImplementAllInterface<int>[], false);
+// Eval(13979, o is ImplementAllInterface<int>?, false);
+// Eval(13980, o is ImplementAllInterface<int>?[], false);
Eval(13981, o is IntE, false);
Eval(13982, o is IntE[], false);
Eval(13983, o is IntE?, false);
@@ -12717,38 +12717,38 @@ internal class Program
Eval(14076, o is IEmpty[], false);
Eval(14077, o is INotEmpty, false);
Eval(14078, o is INotEmpty[], false);
- Eval(14079, o is IEmptyGen<int>, false);
- Eval(14080, o is IEmptyGen<int>[], false);
- Eval(14081, o is INotEmptyGen<int>, false);
- Eval(14082, o is INotEmptyGen<int>[], false);
+// Eval(14079, o is IEmptyGen<int>, false);
+// Eval(14080, o is IEmptyGen<int>[], false);
+// Eval(14081, o is INotEmptyGen<int>, false);
+// Eval(14082, o is INotEmptyGen<int>[], false);
Eval(14083, o is SimpleDelegate, false);
Eval(14084, o is SimpleDelegate[], false);
- Eval(14085, o is GenericDelegate<int>, false);
- Eval(14086, o is GenericDelegate<int>[], false);
+// Eval(14085, o is GenericDelegate<int>, false);
+// Eval(14086, o is GenericDelegate<int>[], false);
Eval(14087, o is EmptyClass, false);
Eval(14088, o is EmptyClass[], false);
Eval(14089, o is NotEmptyClass, false);
Eval(14090, o is NotEmptyClass[], false);
- Eval(14091, o is EmptyClassGen<int>, false);
- Eval(14092, o is EmptyClassGen<int>[], false);
- Eval(14093, o is NotEmptyClassGen<Guid>, false);
- Eval(14094, o is NotEmptyClassGen<Guid>[], false);
- Eval(14095, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14096, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14091, o is EmptyClassGen<int>, false);
+// Eval(14092, o is EmptyClassGen<int>[], false);
+// Eval(14093, o is NotEmptyClassGen<Guid>, false);
+// Eval(14094, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14095, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14096, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14097, o is NestedClass, false);
Eval(14098, o is NestedClass[], false);
- Eval(14099, o is NestedClassGen<Decimal>, false);
- Eval(14100, o is NestedClassGen<Decimal>[], false);
+// Eval(14099, o is NestedClassGen<Decimal>, false);
+// Eval(14100, o is NestedClassGen<Decimal>[], false);
Eval(14101, o is ImplementOneInterfaceC, false);
Eval(14102, o is ImplementOneInterfaceC[], false);
Eval(14103, o is ImplementTwoInterfaceC, false);
Eval(14104, o is ImplementTwoInterfaceC[], false);
- Eval(14105, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14106, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14107, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14108, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14109, o is ImplementAllInterfaceC<int>, false);
- Eval(14110, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14105, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14106, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14107, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14108, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14109, o is ImplementAllInterfaceC<int>, false);
+// Eval(14110, o is ImplementAllInterfaceC<int>[], false);
Eval(14111, o is SealedClass, false);
Eval(14112, o is SealedClass[], false);
}
@@ -12766,26 +12766,26 @@ internal class Program
Eval(14118, o is NotEmptyStruct[], false);
Eval(14119, o is NotEmptyStruct?, false);
Eval(14120, o is NotEmptyStruct?[], false);
- Eval(14121, o is EmptyStructGen<int>, false);
- Eval(14122, o is EmptyStructGen<int>[], false);
- Eval(14123, o is EmptyStructGen<int>?, false);
- Eval(14124, o is EmptyStructGen<int>?[], false);
- Eval(14125, o is NotEmptyStructGen<Guid>, false);
- Eval(14126, o is NotEmptyStructGen<Guid>[], false);
- Eval(14127, o is NotEmptyStructGen<Guid>?, false);
- Eval(14128, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14129, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14130, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14131, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14132, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14121, o is EmptyStructGen<int>, false);
+// Eval(14122, o is EmptyStructGen<int>[], false);
+// Eval(14123, o is EmptyStructGen<int>?, false);
+// Eval(14124, o is EmptyStructGen<int>?[], false);
+// Eval(14125, o is NotEmptyStructGen<Guid>, false);
+// Eval(14126, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14127, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14128, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14129, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14130, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14131, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14132, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14133, o is NestedStruct, false);
Eval(14134, o is NestedStruct[], false);
Eval(14135, o is NestedStruct?, false);
Eval(14136, o is NestedStruct?[], false);
- Eval(14137, o is NestedStructGen<Decimal>, false);
- Eval(14138, o is NestedStructGen<Decimal>[], false);
- Eval(14139, o is NestedStructGen<Decimal>?, false);
- Eval(14140, o is NestedStructGen<Decimal>?[], false);
+// Eval(14137, o is NestedStructGen<Decimal>, false);
+// Eval(14138, o is NestedStructGen<Decimal>[], false);
+// Eval(14139, o is NestedStructGen<Decimal>?, false);
+// Eval(14140, o is NestedStructGen<Decimal>?[], false);
Eval(14141, o is ExplicitFieldOffsetStruct, false);
Eval(14142, o is ExplicitFieldOffsetStruct[], false);
Eval(14143, o is ExplicitFieldOffsetStruct?, false);
@@ -12802,18 +12802,18 @@ internal class Program
Eval(14162, o is ImplementTwoInterface[], false);
Eval(14163, o is ImplementTwoInterface?, false);
Eval(14164, o is ImplementTwoInterface?[], false);
- Eval(14165, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14166, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14167, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14168, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14169, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14170, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14171, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14172, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14173, o is ImplementAllInterface<int>, false);
- Eval(14174, o is ImplementAllInterface<int>[], false);
- Eval(14175, o is ImplementAllInterface<int>?, false);
- Eval(14176, o is ImplementAllInterface<int>?[], false);
+// Eval(14165, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14166, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14167, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14168, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14169, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14170, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14171, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14172, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14173, o is ImplementAllInterface<int>, false);
+// Eval(14174, o is ImplementAllInterface<int>[], false);
+// Eval(14175, o is ImplementAllInterface<int>?, false);
+// Eval(14176, o is ImplementAllInterface<int>?[], false);
Eval(14177, o is IntE, false);
Eval(14178, o is IntE[], false);
Eval(14179, o is IntE?, false);
@@ -12912,38 +12912,38 @@ internal class Program
Eval(14272, o is IEmpty[], false);
Eval(14273, o is INotEmpty, false);
Eval(14274, o is INotEmpty[], false);
- Eval(14275, o is IEmptyGen<int>, false);
- Eval(14276, o is IEmptyGen<int>[], false);
- Eval(14277, o is INotEmptyGen<int>, false);
- Eval(14278, o is INotEmptyGen<int>[], false);
+// Eval(14275, o is IEmptyGen<int>, false);
+// Eval(14276, o is IEmptyGen<int>[], false);
+// Eval(14277, o is INotEmptyGen<int>, false);
+// Eval(14278, o is INotEmptyGen<int>[], false);
Eval(14279, o is SimpleDelegate, false);
Eval(14280, o is SimpleDelegate[], false);
- Eval(14281, o is GenericDelegate<int>, false);
- Eval(14282, o is GenericDelegate<int>[], false);
+// Eval(14281, o is GenericDelegate<int>, false);
+// Eval(14282, o is GenericDelegate<int>[], false);
Eval(14283, o is EmptyClass, false);
Eval(14284, o is EmptyClass[], false);
Eval(14285, o is NotEmptyClass, false);
Eval(14286, o is NotEmptyClass[], false);
- Eval(14287, o is EmptyClassGen<int>, false);
- Eval(14288, o is EmptyClassGen<int>[], false);
- Eval(14289, o is NotEmptyClassGen<Guid>, false);
- Eval(14290, o is NotEmptyClassGen<Guid>[], false);
- Eval(14291, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14292, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14287, o is EmptyClassGen<int>, false);
+// Eval(14288, o is EmptyClassGen<int>[], false);
+// Eval(14289, o is NotEmptyClassGen<Guid>, false);
+// Eval(14290, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14291, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14292, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14293, o is NestedClass, false);
Eval(14294, o is NestedClass[], false);
- Eval(14295, o is NestedClassGen<Decimal>, false);
- Eval(14296, o is NestedClassGen<Decimal>[], false);
+// Eval(14295, o is NestedClassGen<Decimal>, false);
+// Eval(14296, o is NestedClassGen<Decimal>[], false);
Eval(14297, o is ImplementOneInterfaceC, false);
Eval(14298, o is ImplementOneInterfaceC[], false);
Eval(14299, o is ImplementTwoInterfaceC, false);
Eval(14300, o is ImplementTwoInterfaceC[], false);
- Eval(14301, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14302, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14303, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14304, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14305, o is ImplementAllInterfaceC<int>, false);
- Eval(14306, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14301, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14302, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14303, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14304, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14305, o is ImplementAllInterfaceC<int>, false);
+// Eval(14306, o is ImplementAllInterfaceC<int>[], false);
Eval(14307, o is SealedClass, false);
Eval(14308, o is SealedClass[], false);
}
@@ -12958,26 +12958,26 @@ internal class Program
Eval(14314, o is NotEmptyStruct[], false);
Eval(14315, o is NotEmptyStruct?, false);
Eval(14316, o is NotEmptyStruct?[], false);
- Eval(14317, o is EmptyStructGen<int>, false);
- Eval(14318, o is EmptyStructGen<int>[], false);
- Eval(14319, o is EmptyStructGen<int>?, false);
- Eval(14320, o is EmptyStructGen<int>?[], false);
- Eval(14321, o is NotEmptyStructGen<Guid>, false);
- Eval(14322, o is NotEmptyStructGen<Guid>[], false);
- Eval(14323, o is NotEmptyStructGen<Guid>?, false);
- Eval(14324, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14325, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14326, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14327, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14328, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14317, o is EmptyStructGen<int>, false);
+// Eval(14318, o is EmptyStructGen<int>[], false);
+// Eval(14319, o is EmptyStructGen<int>?, false);
+// Eval(14320, o is EmptyStructGen<int>?[], false);
+// Eval(14321, o is NotEmptyStructGen<Guid>, false);
+// Eval(14322, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14323, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14324, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14325, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14326, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14327, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14328, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14329, o is NestedStruct, false);
Eval(14330, o is NestedStruct[], false);
Eval(14331, o is NestedStruct?, false);
Eval(14332, o is NestedStruct?[], false);
- Eval(14333, o is NestedStructGen<Decimal>, false);
- Eval(14334, o is NestedStructGen<Decimal>[], false);
- Eval(14335, o is NestedStructGen<Decimal>?, false);
- Eval(14336, o is NestedStructGen<Decimal>?[], false);
+// Eval(14333, o is NestedStructGen<Decimal>, false);
+// Eval(14334, o is NestedStructGen<Decimal>[], false);
+// Eval(14335, o is NestedStructGen<Decimal>?, false);
+// Eval(14336, o is NestedStructGen<Decimal>?[], false);
Eval(14337, o is ExplicitFieldOffsetStruct, false);
Eval(14338, o is ExplicitFieldOffsetStruct[], false);
Eval(14339, o is ExplicitFieldOffsetStruct?, false);
@@ -12994,18 +12994,18 @@ internal class Program
Eval(14358, o is ImplementTwoInterface[], false);
Eval(14359, o is ImplementTwoInterface?, false);
Eval(14360, o is ImplementTwoInterface?[], false);
- Eval(14361, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14362, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14363, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14364, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14365, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14366, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14367, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14368, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14369, o is ImplementAllInterface<int>, false);
- Eval(14370, o is ImplementAllInterface<int>[], false);
- Eval(14371, o is ImplementAllInterface<int>?, false);
- Eval(14372, o is ImplementAllInterface<int>?[], false);
+// Eval(14361, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14362, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14363, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14364, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14365, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14366, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14367, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14368, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14369, o is ImplementAllInterface<int>, false);
+// Eval(14370, o is ImplementAllInterface<int>[], false);
+// Eval(14371, o is ImplementAllInterface<int>?, false);
+// Eval(14372, o is ImplementAllInterface<int>?[], false);
Eval(14373, o is IntE, false);
Eval(14374, o is IntE[], false);
Eval(14375, o is IntE?, false);
@@ -13104,38 +13104,38 @@ internal class Program
Eval(14468, o is IEmpty[], false);
Eval(14469, o is INotEmpty, false);
Eval(14470, o is INotEmpty[], false);
- Eval(14471, o is IEmptyGen<int>, false);
- Eval(14472, o is IEmptyGen<int>[], false);
- Eval(14473, o is INotEmptyGen<int>, false);
- Eval(14474, o is INotEmptyGen<int>[], false);
+// Eval(14471, o is IEmptyGen<int>, false);
+// Eval(14472, o is IEmptyGen<int>[], false);
+// Eval(14473, o is INotEmptyGen<int>, false);
+// Eval(14474, o is INotEmptyGen<int>[], false);
Eval(14475, o is SimpleDelegate, false);
Eval(14476, o is SimpleDelegate[], false);
- Eval(14477, o is GenericDelegate<int>, false);
- Eval(14478, o is GenericDelegate<int>[], false);
+// Eval(14477, o is GenericDelegate<int>, false);
+// Eval(14478, o is GenericDelegate<int>[], false);
Eval(14479, o is EmptyClass, false);
Eval(14480, o is EmptyClass[], false);
Eval(14481, o is NotEmptyClass, false);
Eval(14482, o is NotEmptyClass[], false);
- Eval(14483, o is EmptyClassGen<int>, false);
- Eval(14484, o is EmptyClassGen<int>[], false);
- Eval(14485, o is NotEmptyClassGen<Guid>, false);
- Eval(14486, o is NotEmptyClassGen<Guid>[], false);
- Eval(14487, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14488, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14483, o is EmptyClassGen<int>, false);
+// Eval(14484, o is EmptyClassGen<int>[], false);
+// Eval(14485, o is NotEmptyClassGen<Guid>, false);
+// Eval(14486, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14487, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14488, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14489, o is NestedClass, false);
Eval(14490, o is NestedClass[], false);
- Eval(14491, o is NestedClassGen<Decimal>, false);
- Eval(14492, o is NestedClassGen<Decimal>[], false);
+// Eval(14491, o is NestedClassGen<Decimal>, false);
+// Eval(14492, o is NestedClassGen<Decimal>[], false);
Eval(14493, o is ImplementOneInterfaceC, false);
Eval(14494, o is ImplementOneInterfaceC[], false);
Eval(14495, o is ImplementTwoInterfaceC, false);
Eval(14496, o is ImplementTwoInterfaceC[], false);
- Eval(14497, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14498, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14499, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14500, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14501, o is ImplementAllInterfaceC<int>, false);
- Eval(14502, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14497, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14498, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14499, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14500, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14501, o is ImplementAllInterfaceC<int>, false);
+// Eval(14502, o is ImplementAllInterfaceC<int>[], false);
Eval(14503, o is SealedClass, false);
Eval(14504, o is SealedClass[], false);
}
@@ -13150,26 +13150,26 @@ internal class Program
Eval(14510, o is NotEmptyStruct[], false);
Eval(14511, o is NotEmptyStruct?, false);
Eval(14512, o is NotEmptyStruct?[], false);
- Eval(14513, o is EmptyStructGen<int>, false);
- Eval(14514, o is EmptyStructGen<int>[], false);
- Eval(14515, o is EmptyStructGen<int>?, false);
- Eval(14516, o is EmptyStructGen<int>?[], false);
- Eval(14517, o is NotEmptyStructGen<Guid>, false);
- Eval(14518, o is NotEmptyStructGen<Guid>[], false);
- Eval(14519, o is NotEmptyStructGen<Guid>?, false);
- Eval(14520, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14521, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14522, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14523, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14524, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14513, o is EmptyStructGen<int>, false);
+// Eval(14514, o is EmptyStructGen<int>[], false);
+// Eval(14515, o is EmptyStructGen<int>?, false);
+// Eval(14516, o is EmptyStructGen<int>?[], false);
+// Eval(14517, o is NotEmptyStructGen<Guid>, false);
+// Eval(14518, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14519, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14520, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14521, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14522, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14523, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14524, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14525, o is NestedStruct, false);
Eval(14526, o is NestedStruct[], false);
Eval(14527, o is NestedStruct?, false);
Eval(14528, o is NestedStruct?[], false);
- Eval(14529, o is NestedStructGen<Decimal>, false);
- Eval(14530, o is NestedStructGen<Decimal>[], false);
- Eval(14531, o is NestedStructGen<Decimal>?, false);
- Eval(14532, o is NestedStructGen<Decimal>?[], false);
+// Eval(14529, o is NestedStructGen<Decimal>, false);
+// Eval(14530, o is NestedStructGen<Decimal>[], false);
+// Eval(14531, o is NestedStructGen<Decimal>?, false);
+// Eval(14532, o is NestedStructGen<Decimal>?[], false);
Eval(14533, o is ExplicitFieldOffsetStruct, false);
Eval(14534, o is ExplicitFieldOffsetStruct[], false);
Eval(14535, o is ExplicitFieldOffsetStruct?, false);
@@ -13186,18 +13186,18 @@ internal class Program
Eval(14554, o is ImplementTwoInterface[], false);
Eval(14555, o is ImplementTwoInterface?, false);
Eval(14556, o is ImplementTwoInterface?[], false);
- Eval(14557, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14558, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14559, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14560, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14561, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14562, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14563, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14564, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14565, o is ImplementAllInterface<int>, false);
- Eval(14566, o is ImplementAllInterface<int>[], false);
- Eval(14567, o is ImplementAllInterface<int>?, false);
- Eval(14568, o is ImplementAllInterface<int>?[], false);
+// Eval(14557, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14558, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14559, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14560, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14561, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14562, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14563, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14564, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14565, o is ImplementAllInterface<int>, false);
+// Eval(14566, o is ImplementAllInterface<int>[], false);
+// Eval(14567, o is ImplementAllInterface<int>?, false);
+// Eval(14568, o is ImplementAllInterface<int>?[], false);
Eval(14569, o is IntE, false);
Eval(14570, o is IntE[], false);
Eval(14571, o is IntE?, false);
@@ -13296,38 +13296,38 @@ internal class Program
Eval(14664, o is IEmpty[], false);
Eval(14665, o is INotEmpty, false);
Eval(14666, o is INotEmpty[], false);
- Eval(14667, o is IEmptyGen<int>, false);
- Eval(14668, o is IEmptyGen<int>[], false);
- Eval(14669, o is INotEmptyGen<int>, false);
- Eval(14670, o is INotEmptyGen<int>[], false);
+// Eval(14667, o is IEmptyGen<int>, false);
+// Eval(14668, o is IEmptyGen<int>[], false);
+// Eval(14669, o is INotEmptyGen<int>, false);
+// Eval(14670, o is INotEmptyGen<int>[], false);
Eval(14671, o is SimpleDelegate, false);
Eval(14672, o is SimpleDelegate[], false);
- Eval(14673, o is GenericDelegate<int>, false);
- Eval(14674, o is GenericDelegate<int>[], false);
+// Eval(14673, o is GenericDelegate<int>, false);
+// Eval(14674, o is GenericDelegate<int>[], false);
Eval(14675, o is EmptyClass, false);
Eval(14676, o is EmptyClass[], false);
Eval(14677, o is NotEmptyClass, false);
Eval(14678, o is NotEmptyClass[], false);
- Eval(14679, o is EmptyClassGen<int>, false);
- Eval(14680, o is EmptyClassGen<int>[], false);
- Eval(14681, o is NotEmptyClassGen<Guid>, false);
- Eval(14682, o is NotEmptyClassGen<Guid>[], false);
- Eval(14683, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14684, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14679, o is EmptyClassGen<int>, false);
+// Eval(14680, o is EmptyClassGen<int>[], false);
+// Eval(14681, o is NotEmptyClassGen<Guid>, false);
+// Eval(14682, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14683, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14684, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14685, o is NestedClass, false);
Eval(14686, o is NestedClass[], false);
- Eval(14687, o is NestedClassGen<Decimal>, false);
- Eval(14688, o is NestedClassGen<Decimal>[], false);
+// Eval(14687, o is NestedClassGen<Decimal>, false);
+// Eval(14688, o is NestedClassGen<Decimal>[], false);
Eval(14689, o is ImplementOneInterfaceC, false);
Eval(14690, o is ImplementOneInterfaceC[], false);
Eval(14691, o is ImplementTwoInterfaceC, false);
Eval(14692, o is ImplementTwoInterfaceC[], false);
- Eval(14693, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14694, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14695, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14696, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14697, o is ImplementAllInterfaceC<int>, false);
- Eval(14698, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14693, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14694, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14695, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14696, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14697, o is ImplementAllInterfaceC<int>, false);
+// Eval(14698, o is ImplementAllInterfaceC<int>[], false);
Eval(14699, o is SealedClass, false);
Eval(14700, o is SealedClass[], false);
}
@@ -13345,26 +13345,26 @@ internal class Program
Eval(14706, o is NotEmptyStruct[], false);
Eval(14707, o is NotEmptyStruct?, false);
Eval(14708, o is NotEmptyStruct?[], false);
- Eval(14709, o is EmptyStructGen<int>, false);
- Eval(14710, o is EmptyStructGen<int>[], false);
- Eval(14711, o is EmptyStructGen<int>?, false);
- Eval(14712, o is EmptyStructGen<int>?[], false);
- Eval(14713, o is NotEmptyStructGen<Guid>, false);
- Eval(14714, o is NotEmptyStructGen<Guid>[], false);
- Eval(14715, o is NotEmptyStructGen<Guid>?, false);
- Eval(14716, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14717, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14718, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14719, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14720, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14709, o is EmptyStructGen<int>, false);
+// Eval(14710, o is EmptyStructGen<int>[], false);
+// Eval(14711, o is EmptyStructGen<int>?, false);
+// Eval(14712, o is EmptyStructGen<int>?[], false);
+// Eval(14713, o is NotEmptyStructGen<Guid>, false);
+// Eval(14714, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14715, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14716, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14717, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14718, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14719, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14720, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14721, o is NestedStruct, false);
Eval(14722, o is NestedStruct[], false);
Eval(14723, o is NestedStruct?, false);
Eval(14724, o is NestedStruct?[], false);
- Eval(14725, o is NestedStructGen<Decimal>, false);
- Eval(14726, o is NestedStructGen<Decimal>[], false);
- Eval(14727, o is NestedStructGen<Decimal>?, false);
- Eval(14728, o is NestedStructGen<Decimal>?[], false);
+// Eval(14725, o is NestedStructGen<Decimal>, false);
+// Eval(14726, o is NestedStructGen<Decimal>[], false);
+// Eval(14727, o is NestedStructGen<Decimal>?, false);
+// Eval(14728, o is NestedStructGen<Decimal>?[], false);
Eval(14729, o is ExplicitFieldOffsetStruct, false);
Eval(14730, o is ExplicitFieldOffsetStruct[], false);
Eval(14731, o is ExplicitFieldOffsetStruct?, false);
@@ -13381,18 +13381,18 @@ internal class Program
Eval(14750, o is ImplementTwoInterface[], false);
Eval(14751, o is ImplementTwoInterface?, false);
Eval(14752, o is ImplementTwoInterface?[], false);
- Eval(14753, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14754, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14755, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14756, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14757, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14758, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14759, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14760, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14761, o is ImplementAllInterface<int>, false);
- Eval(14762, o is ImplementAllInterface<int>[], false);
- Eval(14763, o is ImplementAllInterface<int>?, false);
- Eval(14764, o is ImplementAllInterface<int>?[], false);
+// Eval(14753, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14754, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14755, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14756, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14757, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14758, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14759, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14760, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14761, o is ImplementAllInterface<int>, false);
+// Eval(14762, o is ImplementAllInterface<int>[], false);
+// Eval(14763, o is ImplementAllInterface<int>?, false);
+// Eval(14764, o is ImplementAllInterface<int>?[], false);
Eval(14765, o is IntE, false);
Eval(14766, o is IntE[], false);
Eval(14767, o is IntE?, false);
@@ -13491,38 +13491,38 @@ internal class Program
Eval(14860, o is IEmpty[], false);
Eval(14861, o is INotEmpty, false);
Eval(14862, o is INotEmpty[], false);
- Eval(14863, o is IEmptyGen<int>, false);
- Eval(14864, o is IEmptyGen<int>[], false);
- Eval(14865, o is INotEmptyGen<int>, false);
- Eval(14866, o is INotEmptyGen<int>[], false);
+// Eval(14863, o is IEmptyGen<int>, false);
+// Eval(14864, o is IEmptyGen<int>[], false);
+// Eval(14865, o is INotEmptyGen<int>, false);
+// Eval(14866, o is INotEmptyGen<int>[], false);
Eval(14867, o is SimpleDelegate, false);
Eval(14868, o is SimpleDelegate[], false);
- Eval(14869, o is GenericDelegate<int>, false);
- Eval(14870, o is GenericDelegate<int>[], false);
+// Eval(14869, o is GenericDelegate<int>, false);
+// Eval(14870, o is GenericDelegate<int>[], false);
Eval(14871, o is EmptyClass, false);
Eval(14872, o is EmptyClass[], false);
Eval(14873, o is NotEmptyClass, false);
Eval(14874, o is NotEmptyClass[], false);
- Eval(14875, o is EmptyClassGen<int>, false);
- Eval(14876, o is EmptyClassGen<int>[], false);
- Eval(14877, o is NotEmptyClassGen<Guid>, false);
- Eval(14878, o is NotEmptyClassGen<Guid>[], false);
- Eval(14879, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(14880, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(14875, o is EmptyClassGen<int>, false);
+// Eval(14876, o is EmptyClassGen<int>[], false);
+// Eval(14877, o is NotEmptyClassGen<Guid>, false);
+// Eval(14878, o is NotEmptyClassGen<Guid>[], false);
+// Eval(14879, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(14880, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(14881, o is NestedClass, false);
Eval(14882, o is NestedClass[], false);
- Eval(14883, o is NestedClassGen<Decimal>, false);
- Eval(14884, o is NestedClassGen<Decimal>[], false);
+// Eval(14883, o is NestedClassGen<Decimal>, false);
+// Eval(14884, o is NestedClassGen<Decimal>[], false);
Eval(14885, o is ImplementOneInterfaceC, false);
Eval(14886, o is ImplementOneInterfaceC[], false);
Eval(14887, o is ImplementTwoInterfaceC, false);
Eval(14888, o is ImplementTwoInterfaceC[], false);
- Eval(14889, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(14890, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(14891, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(14892, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(14893, o is ImplementAllInterfaceC<int>, false);
- Eval(14894, o is ImplementAllInterfaceC<int>[], false);
+// Eval(14889, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(14890, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(14891, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(14892, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(14893, o is ImplementAllInterfaceC<int>, false);
+// Eval(14894, o is ImplementAllInterfaceC<int>[], false);
Eval(14895, o is SealedClass, false);
Eval(14896, o is SealedClass[], false);
}
@@ -13537,26 +13537,26 @@ internal class Program
Eval(14902, o is NotEmptyStruct[], false);
Eval(14903, o is NotEmptyStruct?, false);
Eval(14904, o is NotEmptyStruct?[], false);
- Eval(14905, o is EmptyStructGen<int>, false);
- Eval(14906, o is EmptyStructGen<int>[], false);
- Eval(14907, o is EmptyStructGen<int>?, false);
- Eval(14908, o is EmptyStructGen<int>?[], false);
- Eval(14909, o is NotEmptyStructGen<Guid>, false);
- Eval(14910, o is NotEmptyStructGen<Guid>[], false);
- Eval(14911, o is NotEmptyStructGen<Guid>?, false);
- Eval(14912, o is NotEmptyStructGen<Guid>?[], false);
- Eval(14913, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(14914, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(14915, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(14916, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(14905, o is EmptyStructGen<int>, false);
+// Eval(14906, o is EmptyStructGen<int>[], false);
+// Eval(14907, o is EmptyStructGen<int>?, false);
+// Eval(14908, o is EmptyStructGen<int>?[], false);
+// Eval(14909, o is NotEmptyStructGen<Guid>, false);
+// Eval(14910, o is NotEmptyStructGen<Guid>[], false);
+// Eval(14911, o is NotEmptyStructGen<Guid>?, false);
+// Eval(14912, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(14913, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(14914, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(14915, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(14916, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(14917, o is NestedStruct, false);
Eval(14918, o is NestedStruct[], false);
Eval(14919, o is NestedStruct?, false);
Eval(14920, o is NestedStruct?[], false);
- Eval(14921, o is NestedStructGen<Decimal>, false);
- Eval(14922, o is NestedStructGen<Decimal>[], false);
- Eval(14923, o is NestedStructGen<Decimal>?, false);
- Eval(14924, o is NestedStructGen<Decimal>?[], false);
+// Eval(14921, o is NestedStructGen<Decimal>, false);
+// Eval(14922, o is NestedStructGen<Decimal>[], false);
+// Eval(14923, o is NestedStructGen<Decimal>?, false);
+// Eval(14924, o is NestedStructGen<Decimal>?[], false);
Eval(14925, o is ExplicitFieldOffsetStruct, false);
Eval(14926, o is ExplicitFieldOffsetStruct[], false);
Eval(14927, o is ExplicitFieldOffsetStruct?, false);
@@ -13573,18 +13573,18 @@ internal class Program
Eval(14946, o is ImplementTwoInterface[], false);
Eval(14947, o is ImplementTwoInterface?, false);
Eval(14948, o is ImplementTwoInterface?[], false);
- Eval(14949, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(14950, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(14951, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(14952, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(14953, o is ImplementTwoInterfaceGen<int>, false);
- Eval(14954, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(14955, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(14956, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(14957, o is ImplementAllInterface<int>, false);
- Eval(14958, o is ImplementAllInterface<int>[], false);
- Eval(14959, o is ImplementAllInterface<int>?, false);
- Eval(14960, o is ImplementAllInterface<int>?[], false);
+// Eval(14949, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(14950, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(14951, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(14952, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(14953, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(14954, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(14955, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(14956, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(14957, o is ImplementAllInterface<int>, false);
+// Eval(14958, o is ImplementAllInterface<int>[], false);
+// Eval(14959, o is ImplementAllInterface<int>?, false);
+// Eval(14960, o is ImplementAllInterface<int>?[], false);
Eval(14961, o is IntE, false);
Eval(14962, o is IntE[], false);
Eval(14963, o is IntE?, false);
@@ -13683,38 +13683,38 @@ internal class Program
Eval(15056, o is IEmpty[], false);
Eval(15057, o is INotEmpty, false);
Eval(15058, o is INotEmpty[], false);
- Eval(15059, o is IEmptyGen<int>, false);
- Eval(15060, o is IEmptyGen<int>[], false);
- Eval(15061, o is INotEmptyGen<int>, false);
- Eval(15062, o is INotEmptyGen<int>[], false);
+// Eval(15059, o is IEmptyGen<int>, false);
+// Eval(15060, o is IEmptyGen<int>[], false);
+// Eval(15061, o is INotEmptyGen<int>, false);
+// Eval(15062, o is INotEmptyGen<int>[], false);
Eval(15063, o is SimpleDelegate, false);
Eval(15064, o is SimpleDelegate[], false);
- Eval(15065, o is GenericDelegate<int>, false);
- Eval(15066, o is GenericDelegate<int>[], false);
+// Eval(15065, o is GenericDelegate<int>, false);
+// Eval(15066, o is GenericDelegate<int>[], false);
Eval(15067, o is EmptyClass, false);
Eval(15068, o is EmptyClass[], false);
Eval(15069, o is NotEmptyClass, false);
Eval(15070, o is NotEmptyClass[], false);
- Eval(15071, o is EmptyClassGen<int>, false);
- Eval(15072, o is EmptyClassGen<int>[], false);
- Eval(15073, o is NotEmptyClassGen<Guid>, false);
- Eval(15074, o is NotEmptyClassGen<Guid>[], false);
- Eval(15075, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15076, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15071, o is EmptyClassGen<int>, false);
+// Eval(15072, o is EmptyClassGen<int>[], false);
+// Eval(15073, o is NotEmptyClassGen<Guid>, false);
+// Eval(15074, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15075, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15076, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15077, o is NestedClass, false);
Eval(15078, o is NestedClass[], false);
- Eval(15079, o is NestedClassGen<Decimal>, false);
- Eval(15080, o is NestedClassGen<Decimal>[], false);
+// Eval(15079, o is NestedClassGen<Decimal>, false);
+// Eval(15080, o is NestedClassGen<Decimal>[], false);
Eval(15081, o is ImplementOneInterfaceC, false);
Eval(15082, o is ImplementOneInterfaceC[], false);
Eval(15083, o is ImplementTwoInterfaceC, false);
Eval(15084, o is ImplementTwoInterfaceC[], false);
- Eval(15085, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15086, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15087, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15088, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15089, o is ImplementAllInterfaceC<int>, false);
- Eval(15090, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15085, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15086, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15087, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15088, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15089, o is ImplementAllInterfaceC<int>, false);
+// Eval(15090, o is ImplementAllInterfaceC<int>[], false);
Eval(15091, o is SealedClass, false);
Eval(15092, o is SealedClass[], false);
}
@@ -13729,26 +13729,26 @@ internal class Program
Eval(15098, o is NotEmptyStruct[], false);
Eval(15099, o is NotEmptyStruct?, false);
Eval(15100, o is NotEmptyStruct?[], false);
- Eval(15101, o is EmptyStructGen<int>, false);
- Eval(15102, o is EmptyStructGen<int>[], false);
- Eval(15103, o is EmptyStructGen<int>?, false);
- Eval(15104, o is EmptyStructGen<int>?[], false);
- Eval(15105, o is NotEmptyStructGen<Guid>, false);
- Eval(15106, o is NotEmptyStructGen<Guid>[], false);
- Eval(15107, o is NotEmptyStructGen<Guid>?, false);
- Eval(15108, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15109, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15110, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15111, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15112, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15101, o is EmptyStructGen<int>, false);
+// Eval(15102, o is EmptyStructGen<int>[], false);
+// Eval(15103, o is EmptyStructGen<int>?, false);
+// Eval(15104, o is EmptyStructGen<int>?[], false);
+// Eval(15105, o is NotEmptyStructGen<Guid>, false);
+// Eval(15106, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15107, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15108, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15109, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15110, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15111, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15112, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15113, o is NestedStruct, false);
Eval(15114, o is NestedStruct[], false);
Eval(15115, o is NestedStruct?, false);
Eval(15116, o is NestedStruct?[], false);
- Eval(15117, o is NestedStructGen<Decimal>, false);
- Eval(15118, o is NestedStructGen<Decimal>[], false);
- Eval(15119, o is NestedStructGen<Decimal>?, false);
- Eval(15120, o is NestedStructGen<Decimal>?[], false);
+// Eval(15117, o is NestedStructGen<Decimal>, false);
+// Eval(15118, o is NestedStructGen<Decimal>[], false);
+// Eval(15119, o is NestedStructGen<Decimal>?, false);
+// Eval(15120, o is NestedStructGen<Decimal>?[], false);
Eval(15121, o is ExplicitFieldOffsetStruct, false);
Eval(15122, o is ExplicitFieldOffsetStruct[], false);
Eval(15123, o is ExplicitFieldOffsetStruct?, false);
@@ -13765,18 +13765,18 @@ internal class Program
Eval(15142, o is ImplementTwoInterface[], false);
Eval(15143, o is ImplementTwoInterface?, false);
Eval(15144, o is ImplementTwoInterface?[], false);
- Eval(15145, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15146, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15147, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15148, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15149, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15150, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15151, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15152, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15153, o is ImplementAllInterface<int>, false);
- Eval(15154, o is ImplementAllInterface<int>[], false);
- Eval(15155, o is ImplementAllInterface<int>?, false);
- Eval(15156, o is ImplementAllInterface<int>?[], false);
+// Eval(15145, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15146, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15147, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15148, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15149, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15150, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15151, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15152, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15153, o is ImplementAllInterface<int>, false);
+// Eval(15154, o is ImplementAllInterface<int>[], false);
+// Eval(15155, o is ImplementAllInterface<int>?, false);
+// Eval(15156, o is ImplementAllInterface<int>?[], false);
Eval(15157, o is IntE, false);
Eval(15158, o is IntE[], false);
Eval(15159, o is IntE?, false);
@@ -13875,38 +13875,38 @@ internal class Program
Eval(15252, o is IEmpty[], false);
Eval(15253, o is INotEmpty, false);
Eval(15254, o is INotEmpty[], false);
- Eval(15255, o is IEmptyGen<int>, false);
- Eval(15256, o is IEmptyGen<int>[], false);
- Eval(15257, o is INotEmptyGen<int>, false);
- Eval(15258, o is INotEmptyGen<int>[], false);
+// Eval(15255, o is IEmptyGen<int>, false);
+// Eval(15256, o is IEmptyGen<int>[], false);
+// Eval(15257, o is INotEmptyGen<int>, false);
+// Eval(15258, o is INotEmptyGen<int>[], false);
Eval(15259, o is SimpleDelegate, false);
Eval(15260, o is SimpleDelegate[], false);
- Eval(15261, o is GenericDelegate<int>, false);
- Eval(15262, o is GenericDelegate<int>[], false);
+// Eval(15261, o is GenericDelegate<int>, false);
+// Eval(15262, o is GenericDelegate<int>[], false);
Eval(15263, o is EmptyClass, false);
Eval(15264, o is EmptyClass[], false);
Eval(15265, o is NotEmptyClass, false);
Eval(15266, o is NotEmptyClass[], false);
- Eval(15267, o is EmptyClassGen<int>, false);
- Eval(15268, o is EmptyClassGen<int>[], false);
- Eval(15269, o is NotEmptyClassGen<Guid>, false);
- Eval(15270, o is NotEmptyClassGen<Guid>[], false);
- Eval(15271, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15272, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15267, o is EmptyClassGen<int>, false);
+// Eval(15268, o is EmptyClassGen<int>[], false);
+// Eval(15269, o is NotEmptyClassGen<Guid>, false);
+// Eval(15270, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15271, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15272, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15273, o is NestedClass, false);
Eval(15274, o is NestedClass[], false);
- Eval(15275, o is NestedClassGen<Decimal>, false);
- Eval(15276, o is NestedClassGen<Decimal>[], false);
+// Eval(15275, o is NestedClassGen<Decimal>, false);
+// Eval(15276, o is NestedClassGen<Decimal>[], false);
Eval(15277, o is ImplementOneInterfaceC, false);
Eval(15278, o is ImplementOneInterfaceC[], false);
Eval(15279, o is ImplementTwoInterfaceC, false);
Eval(15280, o is ImplementTwoInterfaceC[], false);
- Eval(15281, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15282, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15283, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15284, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15285, o is ImplementAllInterfaceC<int>, false);
- Eval(15286, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15281, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15282, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15283, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15284, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15285, o is ImplementAllInterfaceC<int>, false);
+// Eval(15286, o is ImplementAllInterfaceC<int>[], false);
Eval(15287, o is SealedClass, false);
Eval(15288, o is SealedClass[], false);
}
@@ -13924,26 +13924,26 @@ internal class Program
Eval(15294, o is NotEmptyStruct[], false);
Eval(15295, o is NotEmptyStruct?, false);
Eval(15296, o is NotEmptyStruct?[], false);
- Eval(15297, o is EmptyStructGen<int>, false);
- Eval(15298, o is EmptyStructGen<int>[], false);
- Eval(15299, o is EmptyStructGen<int>?, false);
- Eval(15300, o is EmptyStructGen<int>?[], false);
- Eval(15301, o is NotEmptyStructGen<Guid>, false);
- Eval(15302, o is NotEmptyStructGen<Guid>[], false);
- Eval(15303, o is NotEmptyStructGen<Guid>?, false);
- Eval(15304, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15305, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15306, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15307, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15308, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15297, o is EmptyStructGen<int>, false);
+// Eval(15298, o is EmptyStructGen<int>[], false);
+// Eval(15299, o is EmptyStructGen<int>?, false);
+// Eval(15300, o is EmptyStructGen<int>?[], false);
+// Eval(15301, o is NotEmptyStructGen<Guid>, false);
+// Eval(15302, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15303, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15304, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15305, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15306, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15307, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15308, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15309, o is NestedStruct, false);
Eval(15310, o is NestedStruct[], false);
Eval(15311, o is NestedStruct?, false);
Eval(15312, o is NestedStruct?[], false);
- Eval(15313, o is NestedStructGen<Decimal>, false);
- Eval(15314, o is NestedStructGen<Decimal>[], false);
- Eval(15315, o is NestedStructGen<Decimal>?, false);
- Eval(15316, o is NestedStructGen<Decimal>?[], false);
+// Eval(15313, o is NestedStructGen<Decimal>, false);
+// Eval(15314, o is NestedStructGen<Decimal>[], false);
+// Eval(15315, o is NestedStructGen<Decimal>?, false);
+// Eval(15316, o is NestedStructGen<Decimal>?[], false);
Eval(15317, o is ExplicitFieldOffsetStruct, false);
Eval(15318, o is ExplicitFieldOffsetStruct[], false);
Eval(15319, o is ExplicitFieldOffsetStruct?, false);
@@ -13960,18 +13960,18 @@ internal class Program
Eval(15338, o is ImplementTwoInterface[], false);
Eval(15339, o is ImplementTwoInterface?, false);
Eval(15340, o is ImplementTwoInterface?[], false);
- Eval(15341, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15342, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15343, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15344, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15345, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15346, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15347, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15348, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15349, o is ImplementAllInterface<int>, false);
- Eval(15350, o is ImplementAllInterface<int>[], false);
- Eval(15351, o is ImplementAllInterface<int>?, false);
- Eval(15352, o is ImplementAllInterface<int>?[], false);
+// Eval(15341, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15342, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15343, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15344, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15345, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15346, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15347, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15348, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15349, o is ImplementAllInterface<int>, false);
+// Eval(15350, o is ImplementAllInterface<int>[], false);
+// Eval(15351, o is ImplementAllInterface<int>?, false);
+// Eval(15352, o is ImplementAllInterface<int>?[], false);
Eval(15353, o is IntE, false);
Eval(15354, o is IntE[], false);
Eval(15355, o is IntE?, false);
@@ -14070,38 +14070,38 @@ internal class Program
Eval(15448, o is IEmpty[], false);
Eval(15449, o is INotEmpty, false);
Eval(15450, o is INotEmpty[], false);
- Eval(15451, o is IEmptyGen<int>, false);
- Eval(15452, o is IEmptyGen<int>[], false);
- Eval(15453, o is INotEmptyGen<int>, false);
- Eval(15454, o is INotEmptyGen<int>[], false);
+// Eval(15451, o is IEmptyGen<int>, false);
+// Eval(15452, o is IEmptyGen<int>[], false);
+// Eval(15453, o is INotEmptyGen<int>, false);
+// Eval(15454, o is INotEmptyGen<int>[], false);
Eval(15455, o is SimpleDelegate, false);
Eval(15456, o is SimpleDelegate[], false);
- Eval(15457, o is GenericDelegate<int>, false);
- Eval(15458, o is GenericDelegate<int>[], false);
+// Eval(15457, o is GenericDelegate<int>, false);
+// Eval(15458, o is GenericDelegate<int>[], false);
Eval(15459, o is EmptyClass, false);
Eval(15460, o is EmptyClass[], false);
Eval(15461, o is NotEmptyClass, false);
Eval(15462, o is NotEmptyClass[], false);
- Eval(15463, o is EmptyClassGen<int>, false);
- Eval(15464, o is EmptyClassGen<int>[], false);
- Eval(15465, o is NotEmptyClassGen<Guid>, false);
- Eval(15466, o is NotEmptyClassGen<Guid>[], false);
- Eval(15467, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15468, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15463, o is EmptyClassGen<int>, false);
+// Eval(15464, o is EmptyClassGen<int>[], false);
+// Eval(15465, o is NotEmptyClassGen<Guid>, false);
+// Eval(15466, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15467, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15468, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15469, o is NestedClass, false);
Eval(15470, o is NestedClass[], false);
- Eval(15471, o is NestedClassGen<Decimal>, false);
- Eval(15472, o is NestedClassGen<Decimal>[], false);
+// Eval(15471, o is NestedClassGen<Decimal>, false);
+// Eval(15472, o is NestedClassGen<Decimal>[], false);
Eval(15473, o is ImplementOneInterfaceC, false);
Eval(15474, o is ImplementOneInterfaceC[], false);
Eval(15475, o is ImplementTwoInterfaceC, false);
Eval(15476, o is ImplementTwoInterfaceC[], false);
- Eval(15477, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15478, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15479, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15480, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15481, o is ImplementAllInterfaceC<int>, false);
- Eval(15482, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15477, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15478, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15479, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15480, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15481, o is ImplementAllInterfaceC<int>, false);
+// Eval(15482, o is ImplementAllInterfaceC<int>[], false);
Eval(15483, o is SealedClass, false);
Eval(15484, o is SealedClass[], false);
}
@@ -14116,26 +14116,26 @@ internal class Program
Eval(15490, o is NotEmptyStruct[], false);
Eval(15491, o is NotEmptyStruct?, false);
Eval(15492, o is NotEmptyStruct?[], false);
- Eval(15493, o is EmptyStructGen<int>, false);
- Eval(15494, o is EmptyStructGen<int>[], false);
- Eval(15495, o is EmptyStructGen<int>?, false);
- Eval(15496, o is EmptyStructGen<int>?[], false);
- Eval(15497, o is NotEmptyStructGen<Guid>, false);
- Eval(15498, o is NotEmptyStructGen<Guid>[], false);
- Eval(15499, o is NotEmptyStructGen<Guid>?, false);
- Eval(15500, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15501, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15502, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15503, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15504, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15493, o is EmptyStructGen<int>, false);
+// Eval(15494, o is EmptyStructGen<int>[], false);
+// Eval(15495, o is EmptyStructGen<int>?, false);
+// Eval(15496, o is EmptyStructGen<int>?[], false);
+// Eval(15497, o is NotEmptyStructGen<Guid>, false);
+// Eval(15498, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15499, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15500, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15501, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15502, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15503, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15504, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15505, o is NestedStruct, false);
Eval(15506, o is NestedStruct[], false);
Eval(15507, o is NestedStruct?, false);
Eval(15508, o is NestedStruct?[], false);
- Eval(15509, o is NestedStructGen<Decimal>, false);
- Eval(15510, o is NestedStructGen<Decimal>[], false);
- Eval(15511, o is NestedStructGen<Decimal>?, false);
- Eval(15512, o is NestedStructGen<Decimal>?[], false);
+// Eval(15509, o is NestedStructGen<Decimal>, false);
+// Eval(15510, o is NestedStructGen<Decimal>[], false);
+// Eval(15511, o is NestedStructGen<Decimal>?, false);
+// Eval(15512, o is NestedStructGen<Decimal>?[], false);
Eval(15513, o is ExplicitFieldOffsetStruct, false);
Eval(15514, o is ExplicitFieldOffsetStruct[], false);
Eval(15515, o is ExplicitFieldOffsetStruct?, false);
@@ -14152,18 +14152,18 @@ internal class Program
Eval(15534, o is ImplementTwoInterface[], false);
Eval(15535, o is ImplementTwoInterface?, false);
Eval(15536, o is ImplementTwoInterface?[], false);
- Eval(15537, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15538, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15539, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15540, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15541, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15542, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15543, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15544, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15545, o is ImplementAllInterface<int>, false);
- Eval(15546, o is ImplementAllInterface<int>[], false);
- Eval(15547, o is ImplementAllInterface<int>?, false);
- Eval(15548, o is ImplementAllInterface<int>?[], false);
+// Eval(15537, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15538, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15539, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15540, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15541, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15542, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15543, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15544, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15545, o is ImplementAllInterface<int>, false);
+// Eval(15546, o is ImplementAllInterface<int>[], false);
+// Eval(15547, o is ImplementAllInterface<int>?, false);
+// Eval(15548, o is ImplementAllInterface<int>?[], false);
Eval(15549, o is IntE, false);
Eval(15550, o is IntE[], false);
Eval(15551, o is IntE?, false);
@@ -14262,38 +14262,38 @@ internal class Program
Eval(15644, o is IEmpty[], false);
Eval(15645, o is INotEmpty, false);
Eval(15646, o is INotEmpty[], false);
- Eval(15647, o is IEmptyGen<int>, false);
- Eval(15648, o is IEmptyGen<int>[], false);
- Eval(15649, o is INotEmptyGen<int>, false);
- Eval(15650, o is INotEmptyGen<int>[], false);
+// Eval(15647, o is IEmptyGen<int>, false);
+// Eval(15648, o is IEmptyGen<int>[], false);
+// Eval(15649, o is INotEmptyGen<int>, false);
+// Eval(15650, o is INotEmptyGen<int>[], false);
Eval(15651, o is SimpleDelegate, false);
Eval(15652, o is SimpleDelegate[], false);
- Eval(15653, o is GenericDelegate<int>, false);
- Eval(15654, o is GenericDelegate<int>[], false);
+// Eval(15653, o is GenericDelegate<int>, false);
+// Eval(15654, o is GenericDelegate<int>[], false);
Eval(15655, o is EmptyClass, false);
Eval(15656, o is EmptyClass[], false);
Eval(15657, o is NotEmptyClass, false);
Eval(15658, o is NotEmptyClass[], false);
- Eval(15659, o is EmptyClassGen<int>, false);
- Eval(15660, o is EmptyClassGen<int>[], false);
- Eval(15661, o is NotEmptyClassGen<Guid>, false);
- Eval(15662, o is NotEmptyClassGen<Guid>[], false);
- Eval(15663, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15664, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15659, o is EmptyClassGen<int>, false);
+// Eval(15660, o is EmptyClassGen<int>[], false);
+// Eval(15661, o is NotEmptyClassGen<Guid>, false);
+// Eval(15662, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15663, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15664, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15665, o is NestedClass, false);
Eval(15666, o is NestedClass[], false);
- Eval(15667, o is NestedClassGen<Decimal>, false);
- Eval(15668, o is NestedClassGen<Decimal>[], false);
+// Eval(15667, o is NestedClassGen<Decimal>, false);
+// Eval(15668, o is NestedClassGen<Decimal>[], false);
Eval(15669, o is ImplementOneInterfaceC, false);
Eval(15670, o is ImplementOneInterfaceC[], false);
Eval(15671, o is ImplementTwoInterfaceC, false);
Eval(15672, o is ImplementTwoInterfaceC[], false);
- Eval(15673, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15674, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15675, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15676, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15677, o is ImplementAllInterfaceC<int>, false);
- Eval(15678, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15673, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15674, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15675, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15676, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15677, o is ImplementAllInterfaceC<int>, false);
+// Eval(15678, o is ImplementAllInterfaceC<int>[], false);
Eval(15679, o is SealedClass, false);
Eval(15680, o is SealedClass[], false);
}
@@ -14308,26 +14308,26 @@ internal class Program
Eval(15686, o is NotEmptyStruct[], false);
Eval(15687, o is NotEmptyStruct?, false);
Eval(15688, o is NotEmptyStruct?[], false);
- Eval(15689, o is EmptyStructGen<int>, false);
- Eval(15690, o is EmptyStructGen<int>[], false);
- Eval(15691, o is EmptyStructGen<int>?, false);
- Eval(15692, o is EmptyStructGen<int>?[], false);
- Eval(15693, o is NotEmptyStructGen<Guid>, false);
- Eval(15694, o is NotEmptyStructGen<Guid>[], false);
- Eval(15695, o is NotEmptyStructGen<Guid>?, false);
- Eval(15696, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15697, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15698, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15699, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15700, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15689, o is EmptyStructGen<int>, false);
+// Eval(15690, o is EmptyStructGen<int>[], false);
+// Eval(15691, o is EmptyStructGen<int>?, false);
+// Eval(15692, o is EmptyStructGen<int>?[], false);
+// Eval(15693, o is NotEmptyStructGen<Guid>, false);
+// Eval(15694, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15695, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15696, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15697, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15698, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15699, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15700, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15701, o is NestedStruct, false);
Eval(15702, o is NestedStruct[], false);
Eval(15703, o is NestedStruct?, false);
Eval(15704, o is NestedStruct?[], false);
- Eval(15705, o is NestedStructGen<Decimal>, false);
- Eval(15706, o is NestedStructGen<Decimal>[], false);
- Eval(15707, o is NestedStructGen<Decimal>?, false);
- Eval(15708, o is NestedStructGen<Decimal>?[], false);
+// Eval(15705, o is NestedStructGen<Decimal>, false);
+// Eval(15706, o is NestedStructGen<Decimal>[], false);
+// Eval(15707, o is NestedStructGen<Decimal>?, false);
+// Eval(15708, o is NestedStructGen<Decimal>?[], false);
Eval(15709, o is ExplicitFieldOffsetStruct, false);
Eval(15710, o is ExplicitFieldOffsetStruct[], false);
Eval(15711, o is ExplicitFieldOffsetStruct?, false);
@@ -14344,18 +14344,18 @@ internal class Program
Eval(15730, o is ImplementTwoInterface[], false);
Eval(15731, o is ImplementTwoInterface?, false);
Eval(15732, o is ImplementTwoInterface?[], false);
- Eval(15733, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15734, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15735, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15736, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15737, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15738, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15739, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15740, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15741, o is ImplementAllInterface<int>, false);
- Eval(15742, o is ImplementAllInterface<int>[], false);
- Eval(15743, o is ImplementAllInterface<int>?, false);
- Eval(15744, o is ImplementAllInterface<int>?[], false);
+// Eval(15733, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15734, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15735, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15736, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15737, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15738, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15739, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15740, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15741, o is ImplementAllInterface<int>, false);
+// Eval(15742, o is ImplementAllInterface<int>[], false);
+// Eval(15743, o is ImplementAllInterface<int>?, false);
+// Eval(15744, o is ImplementAllInterface<int>?[], false);
Eval(15745, o is IntE, false);
Eval(15746, o is IntE[], false);
Eval(15747, o is IntE?, false);
@@ -14454,38 +14454,38 @@ internal class Program
Eval(15840, o is IEmpty[], false);
Eval(15841, o is INotEmpty, false);
Eval(15842, o is INotEmpty[], false);
- Eval(15843, o is IEmptyGen<int>, false);
- Eval(15844, o is IEmptyGen<int>[], false);
- Eval(15845, o is INotEmptyGen<int>, false);
- Eval(15846, o is INotEmptyGen<int>[], false);
+// Eval(15843, o is IEmptyGen<int>, false);
+// Eval(15844, o is IEmptyGen<int>[], false);
+// Eval(15845, o is INotEmptyGen<int>, false);
+// Eval(15846, o is INotEmptyGen<int>[], false);
Eval(15847, o is SimpleDelegate, false);
Eval(15848, o is SimpleDelegate[], false);
- Eval(15849, o is GenericDelegate<int>, false);
- Eval(15850, o is GenericDelegate<int>[], false);
+// Eval(15849, o is GenericDelegate<int>, false);
+// Eval(15850, o is GenericDelegate<int>[], false);
Eval(15851, o is EmptyClass, false);
Eval(15852, o is EmptyClass[], false);
Eval(15853, o is NotEmptyClass, false);
Eval(15854, o is NotEmptyClass[], false);
- Eval(15855, o is EmptyClassGen<int>, false);
- Eval(15856, o is EmptyClassGen<int>[], false);
- Eval(15857, o is NotEmptyClassGen<Guid>, false);
- Eval(15858, o is NotEmptyClassGen<Guid>[], false);
- Eval(15859, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(15860, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(15855, o is EmptyClassGen<int>, false);
+// Eval(15856, o is EmptyClassGen<int>[], false);
+// Eval(15857, o is NotEmptyClassGen<Guid>, false);
+// Eval(15858, o is NotEmptyClassGen<Guid>[], false);
+// Eval(15859, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(15860, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(15861, o is NestedClass, false);
Eval(15862, o is NestedClass[], false);
- Eval(15863, o is NestedClassGen<Decimal>, false);
- Eval(15864, o is NestedClassGen<Decimal>[], false);
+// Eval(15863, o is NestedClassGen<Decimal>, false);
+// Eval(15864, o is NestedClassGen<Decimal>[], false);
Eval(15865, o is ImplementOneInterfaceC, false);
Eval(15866, o is ImplementOneInterfaceC[], false);
Eval(15867, o is ImplementTwoInterfaceC, false);
Eval(15868, o is ImplementTwoInterfaceC[], false);
- Eval(15869, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(15870, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(15871, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(15872, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(15873, o is ImplementAllInterfaceC<int>, false);
- Eval(15874, o is ImplementAllInterfaceC<int>[], false);
+// Eval(15869, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(15870, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(15871, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(15872, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(15873, o is ImplementAllInterfaceC<int>, false);
+// Eval(15874, o is ImplementAllInterfaceC<int>[], false);
Eval(15875, o is SealedClass, false);
Eval(15876, o is SealedClass[], false);
}
@@ -14503,26 +14503,26 @@ internal class Program
Eval(15882, o is NotEmptyStruct[], false);
Eval(15883, o is NotEmptyStruct?, false);
Eval(15884, o is NotEmptyStruct?[], false);
- Eval(15885, o is EmptyStructGen<int>, false);
- Eval(15886, o is EmptyStructGen<int>[], false);
- Eval(15887, o is EmptyStructGen<int>?, false);
- Eval(15888, o is EmptyStructGen<int>?[], false);
- Eval(15889, o is NotEmptyStructGen<Guid>, false);
- Eval(15890, o is NotEmptyStructGen<Guid>[], false);
- Eval(15891, o is NotEmptyStructGen<Guid>?, false);
- Eval(15892, o is NotEmptyStructGen<Guid>?[], false);
- Eval(15893, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(15894, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(15895, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(15896, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(15885, o is EmptyStructGen<int>, false);
+// Eval(15886, o is EmptyStructGen<int>[], false);
+// Eval(15887, o is EmptyStructGen<int>?, false);
+// Eval(15888, o is EmptyStructGen<int>?[], false);
+// Eval(15889, o is NotEmptyStructGen<Guid>, false);
+// Eval(15890, o is NotEmptyStructGen<Guid>[], false);
+// Eval(15891, o is NotEmptyStructGen<Guid>?, false);
+// Eval(15892, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(15893, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(15894, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(15895, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(15896, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(15897, o is NestedStruct, false);
Eval(15898, o is NestedStruct[], false);
Eval(15899, o is NestedStruct?, false);
Eval(15900, o is NestedStruct?[], false);
- Eval(15901, o is NestedStructGen<Decimal>, false);
- Eval(15902, o is NestedStructGen<Decimal>[], false);
- Eval(15903, o is NestedStructGen<Decimal>?, false);
- Eval(15904, o is NestedStructGen<Decimal>?[], false);
+// Eval(15901, o is NestedStructGen<Decimal>, false);
+// Eval(15902, o is NestedStructGen<Decimal>[], false);
+// Eval(15903, o is NestedStructGen<Decimal>?, false);
+// Eval(15904, o is NestedStructGen<Decimal>?[], false);
Eval(15905, o is ExplicitFieldOffsetStruct, false);
Eval(15906, o is ExplicitFieldOffsetStruct[], false);
Eval(15907, o is ExplicitFieldOffsetStruct?, false);
@@ -14539,18 +14539,18 @@ internal class Program
Eval(15926, o is ImplementTwoInterface[], false);
Eval(15927, o is ImplementTwoInterface?, false);
Eval(15928, o is ImplementTwoInterface?[], false);
- Eval(15929, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(15930, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(15931, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(15932, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(15933, o is ImplementTwoInterfaceGen<int>, false);
- Eval(15934, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(15935, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(15936, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(15937, o is ImplementAllInterface<int>, false);
- Eval(15938, o is ImplementAllInterface<int>[], false);
- Eval(15939, o is ImplementAllInterface<int>?, false);
- Eval(15940, o is ImplementAllInterface<int>?[], false);
+// Eval(15929, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(15930, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(15931, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(15932, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(15933, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(15934, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(15935, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(15936, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(15937, o is ImplementAllInterface<int>, false);
+// Eval(15938, o is ImplementAllInterface<int>[], false);
+// Eval(15939, o is ImplementAllInterface<int>?, false);
+// Eval(15940, o is ImplementAllInterface<int>?[], false);
Eval(15941, o is IntE, false);
Eval(15942, o is IntE[], false);
Eval(15943, o is IntE?, false);
@@ -14649,38 +14649,38 @@ internal class Program
Eval(16036, o is IEmpty[], false);
Eval(16037, o is INotEmpty, false);
Eval(16038, o is INotEmpty[], false);
- Eval(16039, o is IEmptyGen<int>, false);
- Eval(16040, o is IEmptyGen<int>[], false);
- Eval(16041, o is INotEmptyGen<int>, false);
- Eval(16042, o is INotEmptyGen<int>[], false);
+// Eval(16039, o is IEmptyGen<int>, false);
+// Eval(16040, o is IEmptyGen<int>[], false);
+// Eval(16041, o is INotEmptyGen<int>, false);
+// Eval(16042, o is INotEmptyGen<int>[], false);
Eval(16043, o is SimpleDelegate, false);
Eval(16044, o is SimpleDelegate[], false);
- Eval(16045, o is GenericDelegate<int>, false);
- Eval(16046, o is GenericDelegate<int>[], false);
+// Eval(16045, o is GenericDelegate<int>, false);
+// Eval(16046, o is GenericDelegate<int>[], false);
Eval(16047, o is EmptyClass, false);
Eval(16048, o is EmptyClass[], false);
Eval(16049, o is NotEmptyClass, false);
Eval(16050, o is NotEmptyClass[], false);
- Eval(16051, o is EmptyClassGen<int>, false);
- Eval(16052, o is EmptyClassGen<int>[], false);
- Eval(16053, o is NotEmptyClassGen<Guid>, false);
- Eval(16054, o is NotEmptyClassGen<Guid>[], false);
- Eval(16055, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(16056, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16051, o is EmptyClassGen<int>, false);
+// Eval(16052, o is EmptyClassGen<int>[], false);
+// Eval(16053, o is NotEmptyClassGen<Guid>, false);
+// Eval(16054, o is NotEmptyClassGen<Guid>[], false);
+// Eval(16055, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16056, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(16057, o is NestedClass, false);
Eval(16058, o is NestedClass[], false);
- Eval(16059, o is NestedClassGen<Decimal>, false);
- Eval(16060, o is NestedClassGen<Decimal>[], false);
+// Eval(16059, o is NestedClassGen<Decimal>, false);
+// Eval(16060, o is NestedClassGen<Decimal>[], false);
Eval(16061, o is ImplementOneInterfaceC, false);
Eval(16062, o is ImplementOneInterfaceC[], false);
Eval(16063, o is ImplementTwoInterfaceC, false);
Eval(16064, o is ImplementTwoInterfaceC[], false);
- Eval(16065, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16066, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16067, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(16068, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16069, o is ImplementAllInterfaceC<int>, false);
- Eval(16070, o is ImplementAllInterfaceC<int>[], false);
+// Eval(16065, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16066, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16067, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16068, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16069, o is ImplementAllInterfaceC<int>, false);
+// Eval(16070, o is ImplementAllInterfaceC<int>[], false);
Eval(16071, o is SealedClass, false);
Eval(16072, o is SealedClass[], false);
}
@@ -14695,26 +14695,26 @@ internal class Program
Eval(16078, o is NotEmptyStruct[], false);
Eval(16079, o is NotEmptyStruct?, false);
Eval(16080, o is NotEmptyStruct?[], false);
- Eval(16081, o is EmptyStructGen<int>, false);
- Eval(16082, o is EmptyStructGen<int>[], false);
- Eval(16083, o is EmptyStructGen<int>?, false);
- Eval(16084, o is EmptyStructGen<int>?[], false);
- Eval(16085, o is NotEmptyStructGen<Guid>, false);
- Eval(16086, o is NotEmptyStructGen<Guid>[], false);
- Eval(16087, o is NotEmptyStructGen<Guid>?, false);
- Eval(16088, o is NotEmptyStructGen<Guid>?[], false);
- Eval(16089, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16090, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16091, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16092, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16081, o is EmptyStructGen<int>, false);
+// Eval(16082, o is EmptyStructGen<int>[], false);
+// Eval(16083, o is EmptyStructGen<int>?, false);
+// Eval(16084, o is EmptyStructGen<int>?[], false);
+// Eval(16085, o is NotEmptyStructGen<Guid>, false);
+// Eval(16086, o is NotEmptyStructGen<Guid>[], false);
+// Eval(16087, o is NotEmptyStructGen<Guid>?, false);
+// Eval(16088, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(16089, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16090, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16091, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16092, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16093, o is NestedStruct, false);
Eval(16094, o is NestedStruct[], false);
Eval(16095, o is NestedStruct?, false);
Eval(16096, o is NestedStruct?[], false);
- Eval(16097, o is NestedStructGen<Decimal>, false);
- Eval(16098, o is NestedStructGen<Decimal>[], false);
- Eval(16099, o is NestedStructGen<Decimal>?, false);
- Eval(16100, o is NestedStructGen<Decimal>?[], false);
+// Eval(16097, o is NestedStructGen<Decimal>, false);
+// Eval(16098, o is NestedStructGen<Decimal>[], false);
+// Eval(16099, o is NestedStructGen<Decimal>?, false);
+// Eval(16100, o is NestedStructGen<Decimal>?[], false);
Eval(16101, o is ExplicitFieldOffsetStruct, false);
Eval(16102, o is ExplicitFieldOffsetStruct[], false);
Eval(16103, o is ExplicitFieldOffsetStruct?, false);
@@ -14731,18 +14731,18 @@ internal class Program
Eval(16122, o is ImplementTwoInterface[], false);
Eval(16123, o is ImplementTwoInterface?, false);
Eval(16124, o is ImplementTwoInterface?[], false);
- Eval(16125, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16126, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16127, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16128, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16129, o is ImplementTwoInterfaceGen<int>, false);
- Eval(16130, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(16131, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(16132, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16133, o is ImplementAllInterface<int>, false);
- Eval(16134, o is ImplementAllInterface<int>[], false);
- Eval(16135, o is ImplementAllInterface<int>?, false);
- Eval(16136, o is ImplementAllInterface<int>?[], false);
+// Eval(16125, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16126, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16127, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16128, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16129, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(16130, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16131, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16132, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16133, o is ImplementAllInterface<int>, false);
+// Eval(16134, o is ImplementAllInterface<int>[], false);
+// Eval(16135, o is ImplementAllInterface<int>?, false);
+// Eval(16136, o is ImplementAllInterface<int>?[], false);
Eval(16137, o is IntE, false);
Eval(16138, o is IntE[], false);
Eval(16139, o is IntE?, false);
@@ -14841,38 +14841,38 @@ internal class Program
Eval(16232, o is IEmpty[], false);
Eval(16233, o is INotEmpty, false);
Eval(16234, o is INotEmpty[], false);
- Eval(16235, o is IEmptyGen<int>, false);
- Eval(16236, o is IEmptyGen<int>[], false);
- Eval(16237, o is INotEmptyGen<int>, false);
- Eval(16238, o is INotEmptyGen<int>[], false);
+// Eval(16235, o is IEmptyGen<int>, false);
+// Eval(16236, o is IEmptyGen<int>[], false);
+// Eval(16237, o is INotEmptyGen<int>, false);
+// Eval(16238, o is INotEmptyGen<int>[], false);
Eval(16239, o is SimpleDelegate, false);
Eval(16240, o is SimpleDelegate[], false);
- Eval(16241, o is GenericDelegate<int>, false);
- Eval(16242, o is GenericDelegate<int>[], false);
+// Eval(16241, o is GenericDelegate<int>, false);
+// Eval(16242, o is GenericDelegate<int>[], false);
Eval(16243, o is EmptyClass, false);
Eval(16244, o is EmptyClass[], false);
Eval(16245, o is NotEmptyClass, false);
Eval(16246, o is NotEmptyClass[], false);
- Eval(16247, o is EmptyClassGen<int>, false);
- Eval(16248, o is EmptyClassGen<int>[], false);
- Eval(16249, o is NotEmptyClassGen<Guid>, false);
- Eval(16250, o is NotEmptyClassGen<Guid>[], false);
- Eval(16251, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(16252, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16247, o is EmptyClassGen<int>, false);
+// Eval(16248, o is EmptyClassGen<int>[], false);
+// Eval(16249, o is NotEmptyClassGen<Guid>, false);
+// Eval(16250, o is NotEmptyClassGen<Guid>[], false);
+// Eval(16251, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16252, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(16253, o is NestedClass, false);
Eval(16254, o is NestedClass[], false);
- Eval(16255, o is NestedClassGen<Decimal>, false);
- Eval(16256, o is NestedClassGen<Decimal>[], false);
+// Eval(16255, o is NestedClassGen<Decimal>, false);
+// Eval(16256, o is NestedClassGen<Decimal>[], false);
Eval(16257, o is ImplementOneInterfaceC, false);
Eval(16258, o is ImplementOneInterfaceC[], false);
Eval(16259, o is ImplementTwoInterfaceC, false);
Eval(16260, o is ImplementTwoInterfaceC[], false);
- Eval(16261, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16262, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16263, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(16264, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16265, o is ImplementAllInterfaceC<int>, false);
- Eval(16266, o is ImplementAllInterfaceC<int>[], false);
+// Eval(16261, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16262, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16263, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16264, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16265, o is ImplementAllInterfaceC<int>, false);
+// Eval(16266, o is ImplementAllInterfaceC<int>[], false);
Eval(16267, o is SealedClass, false);
Eval(16268, o is SealedClass[], false);
}
@@ -14887,26 +14887,26 @@ internal class Program
Eval(16274, o is NotEmptyStruct[], false);
Eval(16275, o is NotEmptyStruct?, false);
Eval(16276, o is NotEmptyStruct?[], false);
- Eval(16277, o is EmptyStructGen<int>, false);
- Eval(16278, o is EmptyStructGen<int>[], false);
- Eval(16279, o is EmptyStructGen<int>?, false);
- Eval(16280, o is EmptyStructGen<int>?[], false);
- Eval(16281, o is NotEmptyStructGen<Guid>, false);
- Eval(16282, o is NotEmptyStructGen<Guid>[], false);
- Eval(16283, o is NotEmptyStructGen<Guid>?, false);
- Eval(16284, o is NotEmptyStructGen<Guid>?[], false);
- Eval(16285, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16286, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16287, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16288, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16277, o is EmptyStructGen<int>, false);
+// Eval(16278, o is EmptyStructGen<int>[], false);
+// Eval(16279, o is EmptyStructGen<int>?, false);
+// Eval(16280, o is EmptyStructGen<int>?[], false);
+// Eval(16281, o is NotEmptyStructGen<Guid>, false);
+// Eval(16282, o is NotEmptyStructGen<Guid>[], false);
+// Eval(16283, o is NotEmptyStructGen<Guid>?, false);
+// Eval(16284, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(16285, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16286, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16287, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16288, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16289, o is NestedStruct, false);
Eval(16290, o is NestedStruct[], false);
Eval(16291, o is NestedStruct?, false);
Eval(16292, o is NestedStruct?[], false);
- Eval(16293, o is NestedStructGen<Decimal>, false);
- Eval(16294, o is NestedStructGen<Decimal>[], false);
- Eval(16295, o is NestedStructGen<Decimal>?, false);
- Eval(16296, o is NestedStructGen<Decimal>?[], false);
+// Eval(16293, o is NestedStructGen<Decimal>, false);
+// Eval(16294, o is NestedStructGen<Decimal>[], false);
+// Eval(16295, o is NestedStructGen<Decimal>?, false);
+// Eval(16296, o is NestedStructGen<Decimal>?[], false);
Eval(16297, o is ExplicitFieldOffsetStruct, false);
Eval(16298, o is ExplicitFieldOffsetStruct[], false);
Eval(16299, o is ExplicitFieldOffsetStruct?, false);
@@ -14923,18 +14923,18 @@ internal class Program
Eval(16318, o is ImplementTwoInterface[], false);
Eval(16319, o is ImplementTwoInterface?, false);
Eval(16320, o is ImplementTwoInterface?[], false);
- Eval(16321, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16322, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16323, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16324, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16325, o is ImplementTwoInterfaceGen<int>, false);
- Eval(16326, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(16327, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(16328, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16329, o is ImplementAllInterface<int>, false);
- Eval(16330, o is ImplementAllInterface<int>[], false);
- Eval(16331, o is ImplementAllInterface<int>?, false);
- Eval(16332, o is ImplementAllInterface<int>?[], false);
+// Eval(16321, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16322, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16323, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16324, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16325, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(16326, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16327, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16328, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16329, o is ImplementAllInterface<int>, false);
+// Eval(16330, o is ImplementAllInterface<int>[], false);
+// Eval(16331, o is ImplementAllInterface<int>?, false);
+// Eval(16332, o is ImplementAllInterface<int>?[], false);
Eval(16333, o is IntE, false);
Eval(16334, o is IntE[], false);
Eval(16335, o is IntE?, false);
@@ -15033,38 +15033,38 @@ internal class Program
Eval(16428, o is IEmpty[], false);
Eval(16429, o is INotEmpty, false);
Eval(16430, o is INotEmpty[], false);
- Eval(16431, o is IEmptyGen<int>, false);
- Eval(16432, o is IEmptyGen<int>[], false);
- Eval(16433, o is INotEmptyGen<int>, false);
- Eval(16434, o is INotEmptyGen<int>[], false);
+// Eval(16431, o is IEmptyGen<int>, false);
+// Eval(16432, o is IEmptyGen<int>[], false);
+// Eval(16433, o is INotEmptyGen<int>, false);
+// Eval(16434, o is INotEmptyGen<int>[], false);
Eval(16435, o is SimpleDelegate, false);
Eval(16436, o is SimpleDelegate[], false);
- Eval(16437, o is GenericDelegate<int>, false);
- Eval(16438, o is GenericDelegate<int>[], false);
+// Eval(16437, o is GenericDelegate<int>, false);
+// Eval(16438, o is GenericDelegate<int>[], false);
Eval(16439, o is EmptyClass, false);
Eval(16440, o is EmptyClass[], false);
Eval(16441, o is NotEmptyClass, false);
Eval(16442, o is NotEmptyClass[], false);
- Eval(16443, o is EmptyClassGen<int>, false);
- Eval(16444, o is EmptyClassGen<int>[], false);
- Eval(16445, o is NotEmptyClassGen<Guid>, false);
- Eval(16446, o is NotEmptyClassGen<Guid>[], false);
- Eval(16447, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(16448, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16443, o is EmptyClassGen<int>, false);
+// Eval(16444, o is EmptyClassGen<int>[], false);
+// Eval(16445, o is NotEmptyClassGen<Guid>, false);
+// Eval(16446, o is NotEmptyClassGen<Guid>[], false);
+// Eval(16447, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16448, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(16449, o is NestedClass, false);
Eval(16450, o is NestedClass[], false);
- Eval(16451, o is NestedClassGen<Decimal>, false);
- Eval(16452, o is NestedClassGen<Decimal>[], false);
+// Eval(16451, o is NestedClassGen<Decimal>, false);
+// Eval(16452, o is NestedClassGen<Decimal>[], false);
Eval(16453, o is ImplementOneInterfaceC, false);
Eval(16454, o is ImplementOneInterfaceC[], false);
Eval(16455, o is ImplementTwoInterfaceC, false);
Eval(16456, o is ImplementTwoInterfaceC[], false);
- Eval(16457, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16458, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16459, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(16460, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16461, o is ImplementAllInterfaceC<int>, false);
- Eval(16462, o is ImplementAllInterfaceC<int>[], false);
+// Eval(16457, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16458, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16459, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16460, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16461, o is ImplementAllInterfaceC<int>, false);
+// Eval(16462, o is ImplementAllInterfaceC<int>[], false);
Eval(16463, o is SealedClass, false);
Eval(16464, o is SealedClass[], false);
}
@@ -15082,26 +15082,26 @@ internal class Program
Eval(16470, o is NotEmptyStruct[], false);
Eval(16471, o is NotEmptyStruct?, false);
Eval(16472, o is NotEmptyStruct?[], false);
- Eval(16473, o is EmptyStructGen<int>, false);
- Eval(16474, o is EmptyStructGen<int>[], false);
- Eval(16475, o is EmptyStructGen<int>?, false);
- Eval(16476, o is EmptyStructGen<int>?[], false);
- Eval(16477, o is NotEmptyStructGen<Guid>, false);
- Eval(16478, o is NotEmptyStructGen<Guid>[], false);
- Eval(16479, o is NotEmptyStructGen<Guid>?, false);
- Eval(16480, o is NotEmptyStructGen<Guid>?[], false);
- Eval(16481, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16482, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16483, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16484, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16473, o is EmptyStructGen<int>, false);
+// Eval(16474, o is EmptyStructGen<int>[], false);
+// Eval(16475, o is EmptyStructGen<int>?, false);
+// Eval(16476, o is EmptyStructGen<int>?[], false);
+// Eval(16477, o is NotEmptyStructGen<Guid>, false);
+// Eval(16478, o is NotEmptyStructGen<Guid>[], false);
+// Eval(16479, o is NotEmptyStructGen<Guid>?, false);
+// Eval(16480, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(16481, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16482, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16483, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16484, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16485, o is NestedStruct, false);
Eval(16486, o is NestedStruct[], false);
Eval(16487, o is NestedStruct?, false);
Eval(16488, o is NestedStruct?[], false);
- Eval(16489, o is NestedStructGen<Decimal>, false);
- Eval(16490, o is NestedStructGen<Decimal>[], false);
- Eval(16491, o is NestedStructGen<Decimal>?, false);
- Eval(16492, o is NestedStructGen<Decimal>?[], false);
+// Eval(16489, o is NestedStructGen<Decimal>, false);
+// Eval(16490, o is NestedStructGen<Decimal>[], false);
+// Eval(16491, o is NestedStructGen<Decimal>?, false);
+// Eval(16492, o is NestedStructGen<Decimal>?[], false);
Eval(16493, o is ExplicitFieldOffsetStruct, false);
Eval(16494, o is ExplicitFieldOffsetStruct[], false);
Eval(16495, o is ExplicitFieldOffsetStruct?, false);
@@ -15118,18 +15118,18 @@ internal class Program
Eval(16514, o is ImplementTwoInterface[], false);
Eval(16515, o is ImplementTwoInterface?, false);
Eval(16516, o is ImplementTwoInterface?[], false);
- Eval(16517, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16518, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16519, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16520, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16521, o is ImplementTwoInterfaceGen<int>, false);
- Eval(16522, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(16523, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(16524, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16525, o is ImplementAllInterface<int>, false);
- Eval(16526, o is ImplementAllInterface<int>[], false);
- Eval(16527, o is ImplementAllInterface<int>?, false);
- Eval(16528, o is ImplementAllInterface<int>?[], false);
+// Eval(16517, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16518, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16519, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16520, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16521, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(16522, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16523, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16524, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16525, o is ImplementAllInterface<int>, false);
+// Eval(16526, o is ImplementAllInterface<int>[], false);
+// Eval(16527, o is ImplementAllInterface<int>?, false);
+// Eval(16528, o is ImplementAllInterface<int>?[], false);
Eval(16529, o is IntE, false);
Eval(16530, o is IntE[], false);
Eval(16531, o is IntE?, false);
@@ -15228,38 +15228,38 @@ internal class Program
Eval(16624, o is IEmpty[], false);
Eval(16625, o is INotEmpty, false);
Eval(16626, o is INotEmpty[], false);
- Eval(16627, o is IEmptyGen<int>, false);
- Eval(16628, o is IEmptyGen<int>[], false);
- Eval(16629, o is INotEmptyGen<int>, false);
- Eval(16630, o is INotEmptyGen<int>[], false);
+// Eval(16627, o is IEmptyGen<int>, false);
+// Eval(16628, o is IEmptyGen<int>[], false);
+// Eval(16629, o is INotEmptyGen<int>, false);
+// Eval(16630, o is INotEmptyGen<int>[], false);
Eval(16631, o is SimpleDelegate, false);
Eval(16632, o is SimpleDelegate[], false);
- Eval(16633, o is GenericDelegate<int>, false);
- Eval(16634, o is GenericDelegate<int>[], false);
+// Eval(16633, o is GenericDelegate<int>, false);
+// Eval(16634, o is GenericDelegate<int>[], false);
Eval(16635, o is EmptyClass, false);
Eval(16636, o is EmptyClass[], false);
Eval(16637, o is NotEmptyClass, false);
Eval(16638, o is NotEmptyClass[], false);
- Eval(16639, o is EmptyClassGen<int>, false);
- Eval(16640, o is EmptyClassGen<int>[], false);
- Eval(16641, o is NotEmptyClassGen<Guid>, false);
- Eval(16642, o is NotEmptyClassGen<Guid>[], false);
- Eval(16643, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(16644, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16639, o is EmptyClassGen<int>, false);
+// Eval(16640, o is EmptyClassGen<int>[], false);
+// Eval(16641, o is NotEmptyClassGen<Guid>, false);
+// Eval(16642, o is NotEmptyClassGen<Guid>[], false);
+// Eval(16643, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16644, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(16645, o is NestedClass, false);
Eval(16646, o is NestedClass[], false);
- Eval(16647, o is NestedClassGen<Decimal>, false);
- Eval(16648, o is NestedClassGen<Decimal>[], false);
+// Eval(16647, o is NestedClassGen<Decimal>, false);
+// Eval(16648, o is NestedClassGen<Decimal>[], false);
Eval(16649, o is ImplementOneInterfaceC, false);
Eval(16650, o is ImplementOneInterfaceC[], false);
Eval(16651, o is ImplementTwoInterfaceC, false);
Eval(16652, o is ImplementTwoInterfaceC[], false);
- Eval(16653, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16654, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16655, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(16656, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16657, o is ImplementAllInterfaceC<int>, false);
- Eval(16658, o is ImplementAllInterfaceC<int>[], false);
+// Eval(16653, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16654, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16655, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16656, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16657, o is ImplementAllInterfaceC<int>, false);
+// Eval(16658, o is ImplementAllInterfaceC<int>[], false);
Eval(16659, o is SealedClass, false);
Eval(16660, o is SealedClass[], false);
}
@@ -15274,26 +15274,26 @@ internal class Program
Eval(16666, o is NotEmptyStruct[], false);
Eval(16667, o is NotEmptyStruct?, false);
Eval(16668, o is NotEmptyStruct?[], false);
- Eval(16669, o is EmptyStructGen<int>, false);
- Eval(16670, o is EmptyStructGen<int>[], false);
- Eval(16671, o is EmptyStructGen<int>?, false);
- Eval(16672, o is EmptyStructGen<int>?[], false);
- Eval(16673, o is NotEmptyStructGen<Guid>, false);
- Eval(16674, o is NotEmptyStructGen<Guid>[], false);
- Eval(16675, o is NotEmptyStructGen<Guid>?, false);
- Eval(16676, o is NotEmptyStructGen<Guid>?[], false);
- Eval(16677, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16678, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16679, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16680, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16669, o is EmptyStructGen<int>, false);
+// Eval(16670, o is EmptyStructGen<int>[], false);
+// Eval(16671, o is EmptyStructGen<int>?, false);
+// Eval(16672, o is EmptyStructGen<int>?[], false);
+// Eval(16673, o is NotEmptyStructGen<Guid>, false);
+// Eval(16674, o is NotEmptyStructGen<Guid>[], false);
+// Eval(16675, o is NotEmptyStructGen<Guid>?, false);
+// Eval(16676, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(16677, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16678, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16679, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16680, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16681, o is NestedStruct, false);
Eval(16682, o is NestedStruct[], false);
Eval(16683, o is NestedStruct?, false);
Eval(16684, o is NestedStruct?[], false);
- Eval(16685, o is NestedStructGen<Decimal>, false);
- Eval(16686, o is NestedStructGen<Decimal>[], false);
- Eval(16687, o is NestedStructGen<Decimal>?, false);
- Eval(16688, o is NestedStructGen<Decimal>?[], false);
+// Eval(16685, o is NestedStructGen<Decimal>, false);
+// Eval(16686, o is NestedStructGen<Decimal>[], false);
+// Eval(16687, o is NestedStructGen<Decimal>?, false);
+// Eval(16688, o is NestedStructGen<Decimal>?[], false);
Eval(16689, o is ExplicitFieldOffsetStruct, false);
Eval(16690, o is ExplicitFieldOffsetStruct[], false);
Eval(16691, o is ExplicitFieldOffsetStruct?, false);
@@ -15310,18 +15310,18 @@ internal class Program
Eval(16710, o is ImplementTwoInterface[], false);
Eval(16711, o is ImplementTwoInterface?, false);
Eval(16712, o is ImplementTwoInterface?[], false);
- Eval(16713, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16714, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16715, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16716, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16717, o is ImplementTwoInterfaceGen<int>, false);
- Eval(16718, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(16719, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(16720, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16721, o is ImplementAllInterface<int>, false);
- Eval(16722, o is ImplementAllInterface<int>[], false);
- Eval(16723, o is ImplementAllInterface<int>?, false);
- Eval(16724, o is ImplementAllInterface<int>?[], false);
+// Eval(16713, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16714, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16715, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16716, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16717, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(16718, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16719, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16720, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16721, o is ImplementAllInterface<int>, false);
+// Eval(16722, o is ImplementAllInterface<int>[], false);
+// Eval(16723, o is ImplementAllInterface<int>?, false);
+// Eval(16724, o is ImplementAllInterface<int>?[], false);
Eval(16725, o is IntE, false);
Eval(16726, o is IntE[], false);
Eval(16727, o is IntE?, false);
@@ -15420,38 +15420,38 @@ internal class Program
Eval(16820, o is IEmpty[], false);
Eval(16821, o is INotEmpty, false);
Eval(16822, o is INotEmpty[], false);
- Eval(16823, o is IEmptyGen<int>, false);
- Eval(16824, o is IEmptyGen<int>[], false);
- Eval(16825, o is INotEmptyGen<int>, false);
- Eval(16826, o is INotEmptyGen<int>[], false);
+// Eval(16823, o is IEmptyGen<int>, false);
+// Eval(16824, o is IEmptyGen<int>[], false);
+// Eval(16825, o is INotEmptyGen<int>, false);
+// Eval(16826, o is INotEmptyGen<int>[], false);
Eval(16827, o is SimpleDelegate, false);
Eval(16828, o is SimpleDelegate[], false);
- Eval(16829, o is GenericDelegate<int>, false);
- Eval(16830, o is GenericDelegate<int>[], false);
+// Eval(16829, o is GenericDelegate<int>, false);
+// Eval(16830, o is GenericDelegate<int>[], false);
Eval(16831, o is EmptyClass, false);
Eval(16832, o is EmptyClass[], false);
Eval(16833, o is NotEmptyClass, false);
Eval(16834, o is NotEmptyClass[], false);
- Eval(16835, o is EmptyClassGen<int>, false);
- Eval(16836, o is EmptyClassGen<int>[], false);
- Eval(16837, o is NotEmptyClassGen<Guid>, false);
- Eval(16838, o is NotEmptyClassGen<Guid>[], false);
- Eval(16839, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(16840, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(16835, o is EmptyClassGen<int>, false);
+// Eval(16836, o is EmptyClassGen<int>[], false);
+// Eval(16837, o is NotEmptyClassGen<Guid>, false);
+// Eval(16838, o is NotEmptyClassGen<Guid>[], false);
+// Eval(16839, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(16840, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(16841, o is NestedClass, false);
Eval(16842, o is NestedClass[], false);
- Eval(16843, o is NestedClassGen<Decimal>, false);
- Eval(16844, o is NestedClassGen<Decimal>[], false);
+// Eval(16843, o is NestedClassGen<Decimal>, false);
+// Eval(16844, o is NestedClassGen<Decimal>[], false);
Eval(16845, o is ImplementOneInterfaceC, false);
Eval(16846, o is ImplementOneInterfaceC[], false);
Eval(16847, o is ImplementTwoInterfaceC, false);
Eval(16848, o is ImplementTwoInterfaceC[], false);
- Eval(16849, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(16850, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(16851, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(16852, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(16853, o is ImplementAllInterfaceC<int>, false);
- Eval(16854, o is ImplementAllInterfaceC<int>[], false);
+// Eval(16849, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(16850, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(16851, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(16852, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(16853, o is ImplementAllInterfaceC<int>, false);
+// Eval(16854, o is ImplementAllInterfaceC<int>[], false);
Eval(16855, o is SealedClass, false);
Eval(16856, o is SealedClass[], false);
}
@@ -15466,26 +15466,26 @@ internal class Program
Eval(16862, o is NotEmptyStruct[], false);
Eval(16863, o is NotEmptyStruct?, false);
Eval(16864, o is NotEmptyStruct?[], false);
- Eval(16865, o is EmptyStructGen<int>, false);
- Eval(16866, o is EmptyStructGen<int>[], false);
- Eval(16867, o is EmptyStructGen<int>?, false);
- Eval(16868, o is EmptyStructGen<int>?[], false);
- Eval(16869, o is NotEmptyStructGen<Guid>, false);
- Eval(16870, o is NotEmptyStructGen<Guid>[], false);
- Eval(16871, o is NotEmptyStructGen<Guid>?, false);
- Eval(16872, o is NotEmptyStructGen<Guid>?[], false);
- Eval(16873, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(16874, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(16875, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(16876, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(16865, o is EmptyStructGen<int>, false);
+// Eval(16866, o is EmptyStructGen<int>[], false);
+// Eval(16867, o is EmptyStructGen<int>?, false);
+// Eval(16868, o is EmptyStructGen<int>?[], false);
+// Eval(16869, o is NotEmptyStructGen<Guid>, false);
+// Eval(16870, o is NotEmptyStructGen<Guid>[], false);
+// Eval(16871, o is NotEmptyStructGen<Guid>?, false);
+// Eval(16872, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(16873, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(16874, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(16875, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(16876, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(16877, o is NestedStruct, false);
Eval(16878, o is NestedStruct[], false);
Eval(16879, o is NestedStruct?, false);
Eval(16880, o is NestedStruct?[], false);
- Eval(16881, o is NestedStructGen<Decimal>, false);
- Eval(16882, o is NestedStructGen<Decimal>[], false);
- Eval(16883, o is NestedStructGen<Decimal>?, false);
- Eval(16884, o is NestedStructGen<Decimal>?[], false);
+// Eval(16881, o is NestedStructGen<Decimal>, false);
+// Eval(16882, o is NestedStructGen<Decimal>[], false);
+// Eval(16883, o is NestedStructGen<Decimal>?, false);
+// Eval(16884, o is NestedStructGen<Decimal>?[], false);
Eval(16885, o is ExplicitFieldOffsetStruct, false);
Eval(16886, o is ExplicitFieldOffsetStruct[], false);
Eval(16887, o is ExplicitFieldOffsetStruct?, false);
@@ -15502,18 +15502,18 @@ internal class Program
Eval(16906, o is ImplementTwoInterface[], false);
Eval(16907, o is ImplementTwoInterface?, false);
Eval(16908, o is ImplementTwoInterface?[], false);
- Eval(16909, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(16910, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(16911, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(16912, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(16913, o is ImplementTwoInterfaceGen<int>, false);
- Eval(16914, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(16915, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(16916, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(16917, o is ImplementAllInterface<int>, false);
- Eval(16918, o is ImplementAllInterface<int>[], false);
- Eval(16919, o is ImplementAllInterface<int>?, false);
- Eval(16920, o is ImplementAllInterface<int>?[], false);
+// Eval(16909, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(16910, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(16911, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(16912, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(16913, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(16914, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(16915, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(16916, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(16917, o is ImplementAllInterface<int>, false);
+// Eval(16918, o is ImplementAllInterface<int>[], false);
+// Eval(16919, o is ImplementAllInterface<int>?, false);
+// Eval(16920, o is ImplementAllInterface<int>?[], false);
Eval(16921, o is IntE, false);
Eval(16922, o is IntE[], false);
Eval(16923, o is IntE?, false);
@@ -15612,38 +15612,38 @@ internal class Program
Eval(17016, o is IEmpty[], false);
Eval(17017, o is INotEmpty, false);
Eval(17018, o is INotEmpty[], false);
- Eval(17019, o is IEmptyGen<int>, false);
- Eval(17020, o is IEmptyGen<int>[], false);
- Eval(17021, o is INotEmptyGen<int>, false);
- Eval(17022, o is INotEmptyGen<int>[], false);
+// Eval(17019, o is IEmptyGen<int>, false);
+// Eval(17020, o is IEmptyGen<int>[], false);
+// Eval(17021, o is INotEmptyGen<int>, false);
+// Eval(17022, o is INotEmptyGen<int>[], false);
Eval(17023, o is SimpleDelegate, false);
Eval(17024, o is SimpleDelegate[], false);
- Eval(17025, o is GenericDelegate<int>, false);
- Eval(17026, o is GenericDelegate<int>[], false);
+// Eval(17025, o is GenericDelegate<int>, false);
+// Eval(17026, o is GenericDelegate<int>[], false);
Eval(17027, o is EmptyClass, false);
Eval(17028, o is EmptyClass[], false);
Eval(17029, o is NotEmptyClass, false);
Eval(17030, o is NotEmptyClass[], false);
- Eval(17031, o is EmptyClassGen<int>, false);
- Eval(17032, o is EmptyClassGen<int>[], false);
- Eval(17033, o is NotEmptyClassGen<Guid>, false);
- Eval(17034, o is NotEmptyClassGen<Guid>[], false);
- Eval(17035, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(17036, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17031, o is EmptyClassGen<int>, false);
+// Eval(17032, o is EmptyClassGen<int>[], false);
+// Eval(17033, o is NotEmptyClassGen<Guid>, false);
+// Eval(17034, o is NotEmptyClassGen<Guid>[], false);
+// Eval(17035, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17036, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(17037, o is NestedClass, false);
Eval(17038, o is NestedClass[], false);
- Eval(17039, o is NestedClassGen<Decimal>, false);
- Eval(17040, o is NestedClassGen<Decimal>[], false);
+// Eval(17039, o is NestedClassGen<Decimal>, false);
+// Eval(17040, o is NestedClassGen<Decimal>[], false);
Eval(17041, o is ImplementOneInterfaceC, false);
Eval(17042, o is ImplementOneInterfaceC[], false);
Eval(17043, o is ImplementTwoInterfaceC, false);
Eval(17044, o is ImplementTwoInterfaceC[], false);
- Eval(17045, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17046, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17047, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(17048, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17049, o is ImplementAllInterfaceC<int>, false);
- Eval(17050, o is ImplementAllInterfaceC<int>[], false);
+// Eval(17045, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17046, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17047, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17048, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17049, o is ImplementAllInterfaceC<int>, false);
+// Eval(17050, o is ImplementAllInterfaceC<int>[], false);
Eval(17051, o is SealedClass, false);
Eval(17052, o is SealedClass[], false);
}
@@ -15661,26 +15661,26 @@ internal class Program
Eval(17058, o is NotEmptyStruct[], false);
Eval(17059, o is NotEmptyStruct?, false);
Eval(17060, o is NotEmptyStruct?[], false);
- Eval(17061, o is EmptyStructGen<int>, false);
- Eval(17062, o is EmptyStructGen<int>[], false);
- Eval(17063, o is EmptyStructGen<int>?, false);
- Eval(17064, o is EmptyStructGen<int>?[], false);
- Eval(17065, o is NotEmptyStructGen<Guid>, false);
- Eval(17066, o is NotEmptyStructGen<Guid>[], false);
- Eval(17067, o is NotEmptyStructGen<Guid>?, false);
- Eval(17068, o is NotEmptyStructGen<Guid>?[], false);
- Eval(17069, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17070, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17071, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17072, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17061, o is EmptyStructGen<int>, false);
+// Eval(17062, o is EmptyStructGen<int>[], false);
+// Eval(17063, o is EmptyStructGen<int>?, false);
+// Eval(17064, o is EmptyStructGen<int>?[], false);
+// Eval(17065, o is NotEmptyStructGen<Guid>, false);
+// Eval(17066, o is NotEmptyStructGen<Guid>[], false);
+// Eval(17067, o is NotEmptyStructGen<Guid>?, false);
+// Eval(17068, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(17069, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17070, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17071, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17072, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17073, o is NestedStruct, false);
Eval(17074, o is NestedStruct[], false);
Eval(17075, o is NestedStruct?, false);
Eval(17076, o is NestedStruct?[], false);
- Eval(17077, o is NestedStructGen<Decimal>, false);
- Eval(17078, o is NestedStructGen<Decimal>[], false);
- Eval(17079, o is NestedStructGen<Decimal>?, false);
- Eval(17080, o is NestedStructGen<Decimal>?[], false);
+// Eval(17077, o is NestedStructGen<Decimal>, false);
+// Eval(17078, o is NestedStructGen<Decimal>[], false);
+// Eval(17079, o is NestedStructGen<Decimal>?, false);
+// Eval(17080, o is NestedStructGen<Decimal>?[], false);
Eval(17081, o is ExplicitFieldOffsetStruct, false);
Eval(17082, o is ExplicitFieldOffsetStruct[], false);
Eval(17083, o is ExplicitFieldOffsetStruct?, false);
@@ -15697,18 +15697,18 @@ internal class Program
Eval(17102, o is ImplementTwoInterface[], false);
Eval(17103, o is ImplementTwoInterface?, false);
Eval(17104, o is ImplementTwoInterface?[], false);
- Eval(17105, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17106, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17107, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17108, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17109, o is ImplementTwoInterfaceGen<int>, false);
- Eval(17110, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(17111, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(17112, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17113, o is ImplementAllInterface<int>, false);
- Eval(17114, o is ImplementAllInterface<int>[], false);
- Eval(17115, o is ImplementAllInterface<int>?, false);
- Eval(17116, o is ImplementAllInterface<int>?[], false);
+// Eval(17105, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17106, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17107, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17108, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17109, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(17110, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17111, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17112, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17113, o is ImplementAllInterface<int>, false);
+// Eval(17114, o is ImplementAllInterface<int>[], false);
+// Eval(17115, o is ImplementAllInterface<int>?, false);
+// Eval(17116, o is ImplementAllInterface<int>?[], false);
Eval(17117, o is IntE, false);
Eval(17118, o is IntE[], false);
Eval(17119, o is IntE?, false);
@@ -15807,38 +15807,38 @@ internal class Program
Eval(17212, o is IEmpty[], false);
Eval(17213, o is INotEmpty, false);
Eval(17214, o is INotEmpty[], false);
- Eval(17215, o is IEmptyGen<int>, false);
- Eval(17216, o is IEmptyGen<int>[], false);
- Eval(17217, o is INotEmptyGen<int>, false);
- Eval(17218, o is INotEmptyGen<int>[], false);
+// Eval(17215, o is IEmptyGen<int>, false);
+// Eval(17216, o is IEmptyGen<int>[], false);
+// Eval(17217, o is INotEmptyGen<int>, false);
+// Eval(17218, o is INotEmptyGen<int>[], false);
Eval(17219, o is SimpleDelegate, false);
Eval(17220, o is SimpleDelegate[], false);
- Eval(17221, o is GenericDelegate<int>, false);
- Eval(17222, o is GenericDelegate<int>[], false);
+// Eval(17221, o is GenericDelegate<int>, false);
+// Eval(17222, o is GenericDelegate<int>[], false);
Eval(17223, o is EmptyClass, false);
Eval(17224, o is EmptyClass[], false);
Eval(17225, o is NotEmptyClass, false);
Eval(17226, o is NotEmptyClass[], false);
- Eval(17227, o is EmptyClassGen<int>, false);
- Eval(17228, o is EmptyClassGen<int>[], false);
- Eval(17229, o is NotEmptyClassGen<Guid>, false);
- Eval(17230, o is NotEmptyClassGen<Guid>[], false);
- Eval(17231, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(17232, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17227, o is EmptyClassGen<int>, false);
+// Eval(17228, o is EmptyClassGen<int>[], false);
+// Eval(17229, o is NotEmptyClassGen<Guid>, false);
+// Eval(17230, o is NotEmptyClassGen<Guid>[], false);
+// Eval(17231, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17232, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(17233, o is NestedClass, false);
Eval(17234, o is NestedClass[], false);
- Eval(17235, o is NestedClassGen<Decimal>, false);
- Eval(17236, o is NestedClassGen<Decimal>[], false);
+// Eval(17235, o is NestedClassGen<Decimal>, false);
+// Eval(17236, o is NestedClassGen<Decimal>[], false);
Eval(17237, o is ImplementOneInterfaceC, false);
Eval(17238, o is ImplementOneInterfaceC[], false);
Eval(17239, o is ImplementTwoInterfaceC, false);
Eval(17240, o is ImplementTwoInterfaceC[], false);
- Eval(17241, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17242, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17243, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(17244, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17245, o is ImplementAllInterfaceC<int>, false);
- Eval(17246, o is ImplementAllInterfaceC<int>[], false);
+// Eval(17241, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17242, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17243, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17244, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17245, o is ImplementAllInterfaceC<int>, false);
+// Eval(17246, o is ImplementAllInterfaceC<int>[], false);
Eval(17247, o is SealedClass, false);
Eval(17248, o is SealedClass[], false);
}
@@ -15853,26 +15853,26 @@ internal class Program
Eval(17254, o is NotEmptyStruct[], false);
Eval(17255, o is NotEmptyStruct?, false);
Eval(17256, o is NotEmptyStruct?[], false);
- Eval(17257, o is EmptyStructGen<int>, false);
- Eval(17258, o is EmptyStructGen<int>[], false);
- Eval(17259, o is EmptyStructGen<int>?, false);
- Eval(17260, o is EmptyStructGen<int>?[], false);
- Eval(17261, o is NotEmptyStructGen<Guid>, false);
- Eval(17262, o is NotEmptyStructGen<Guid>[], false);
- Eval(17263, o is NotEmptyStructGen<Guid>?, false);
- Eval(17264, o is NotEmptyStructGen<Guid>?[], false);
- Eval(17265, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17266, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17267, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17268, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17257, o is EmptyStructGen<int>, false);
+// Eval(17258, o is EmptyStructGen<int>[], false);
+// Eval(17259, o is EmptyStructGen<int>?, false);
+// Eval(17260, o is EmptyStructGen<int>?[], false);
+// Eval(17261, o is NotEmptyStructGen<Guid>, false);
+// Eval(17262, o is NotEmptyStructGen<Guid>[], false);
+// Eval(17263, o is NotEmptyStructGen<Guid>?, false);
+// Eval(17264, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(17265, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17266, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17267, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17268, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17269, o is NestedStruct, false);
Eval(17270, o is NestedStruct[], false);
Eval(17271, o is NestedStruct?, false);
Eval(17272, o is NestedStruct?[], false);
- Eval(17273, o is NestedStructGen<Decimal>, false);
- Eval(17274, o is NestedStructGen<Decimal>[], false);
- Eval(17275, o is NestedStructGen<Decimal>?, false);
- Eval(17276, o is NestedStructGen<Decimal>?[], false);
+// Eval(17273, o is NestedStructGen<Decimal>, false);
+// Eval(17274, o is NestedStructGen<Decimal>[], false);
+// Eval(17275, o is NestedStructGen<Decimal>?, false);
+// Eval(17276, o is NestedStructGen<Decimal>?[], false);
Eval(17277, o is ExplicitFieldOffsetStruct, false);
Eval(17278, o is ExplicitFieldOffsetStruct[], false);
Eval(17279, o is ExplicitFieldOffsetStruct?, false);
@@ -15889,18 +15889,18 @@ internal class Program
Eval(17298, o is ImplementTwoInterface[], false);
Eval(17299, o is ImplementTwoInterface?, false);
Eval(17300, o is ImplementTwoInterface?[], false);
- Eval(17301, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17302, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17303, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17304, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17305, o is ImplementTwoInterfaceGen<int>, false);
- Eval(17306, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(17307, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(17308, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17309, o is ImplementAllInterface<int>, false);
- Eval(17310, o is ImplementAllInterface<int>[], false);
- Eval(17311, o is ImplementAllInterface<int>?, false);
- Eval(17312, o is ImplementAllInterface<int>?[], false);
+// Eval(17301, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17302, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17303, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17304, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17305, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(17306, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17307, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17308, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17309, o is ImplementAllInterface<int>, false);
+// Eval(17310, o is ImplementAllInterface<int>[], false);
+// Eval(17311, o is ImplementAllInterface<int>?, false);
+// Eval(17312, o is ImplementAllInterface<int>?[], false);
Eval(17313, o is IntE, false);
Eval(17314, o is IntE[], false);
Eval(17315, o is IntE?, false);
@@ -15999,38 +15999,38 @@ internal class Program
Eval(17408, o is IEmpty[], false);
Eval(17409, o is INotEmpty, false);
Eval(17410, o is INotEmpty[], false);
- Eval(17411, o is IEmptyGen<int>, false);
- Eval(17412, o is IEmptyGen<int>[], false);
- Eval(17413, o is INotEmptyGen<int>, false);
- Eval(17414, o is INotEmptyGen<int>[], false);
+// Eval(17411, o is IEmptyGen<int>, false);
+// Eval(17412, o is IEmptyGen<int>[], false);
+// Eval(17413, o is INotEmptyGen<int>, false);
+// Eval(17414, o is INotEmptyGen<int>[], false);
Eval(17415, o is SimpleDelegate, false);
Eval(17416, o is SimpleDelegate[], false);
- Eval(17417, o is GenericDelegate<int>, false);
- Eval(17418, o is GenericDelegate<int>[], false);
+// Eval(17417, o is GenericDelegate<int>, false);
+// Eval(17418, o is GenericDelegate<int>[], false);
Eval(17419, o is EmptyClass, false);
Eval(17420, o is EmptyClass[], false);
Eval(17421, o is NotEmptyClass, false);
Eval(17422, o is NotEmptyClass[], false);
- Eval(17423, o is EmptyClassGen<int>, false);
- Eval(17424, o is EmptyClassGen<int>[], false);
- Eval(17425, o is NotEmptyClassGen<Guid>, false);
- Eval(17426, o is NotEmptyClassGen<Guid>[], false);
- Eval(17427, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(17428, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17423, o is EmptyClassGen<int>, false);
+// Eval(17424, o is EmptyClassGen<int>[], false);
+// Eval(17425, o is NotEmptyClassGen<Guid>, false);
+// Eval(17426, o is NotEmptyClassGen<Guid>[], false);
+// Eval(17427, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17428, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(17429, o is NestedClass, false);
Eval(17430, o is NestedClass[], false);
- Eval(17431, o is NestedClassGen<Decimal>, false);
- Eval(17432, o is NestedClassGen<Decimal>[], false);
+// Eval(17431, o is NestedClassGen<Decimal>, false);
+// Eval(17432, o is NestedClassGen<Decimal>[], false);
Eval(17433, o is ImplementOneInterfaceC, false);
Eval(17434, o is ImplementOneInterfaceC[], false);
Eval(17435, o is ImplementTwoInterfaceC, false);
Eval(17436, o is ImplementTwoInterfaceC[], false);
- Eval(17437, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17438, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17439, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(17440, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17441, o is ImplementAllInterfaceC<int>, false);
- Eval(17442, o is ImplementAllInterfaceC<int>[], false);
+// Eval(17437, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17438, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17439, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17440, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17441, o is ImplementAllInterfaceC<int>, false);
+// Eval(17442, o is ImplementAllInterfaceC<int>[], false);
Eval(17443, o is SealedClass, false);
Eval(17444, o is SealedClass[], false);
}
@@ -16045,26 +16045,26 @@ internal class Program
Eval(17450, o is NotEmptyStruct[], false);
Eval(17451, o is NotEmptyStruct?, false);
Eval(17452, o is NotEmptyStruct?[], false);
- Eval(17453, o is EmptyStructGen<int>, false);
- Eval(17454, o is EmptyStructGen<int>[], false);
- Eval(17455, o is EmptyStructGen<int>?, false);
- Eval(17456, o is EmptyStructGen<int>?[], false);
- Eval(17457, o is NotEmptyStructGen<Guid>, false);
- Eval(17458, o is NotEmptyStructGen<Guid>[], false);
- Eval(17459, o is NotEmptyStructGen<Guid>?, false);
- Eval(17460, o is NotEmptyStructGen<Guid>?[], false);
- Eval(17461, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17462, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17463, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17464, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17453, o is EmptyStructGen<int>, false);
+// Eval(17454, o is EmptyStructGen<int>[], false);
+// Eval(17455, o is EmptyStructGen<int>?, false);
+// Eval(17456, o is EmptyStructGen<int>?[], false);
+// Eval(17457, o is NotEmptyStructGen<Guid>, false);
+// Eval(17458, o is NotEmptyStructGen<Guid>[], false);
+// Eval(17459, o is NotEmptyStructGen<Guid>?, false);
+// Eval(17460, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(17461, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17462, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17463, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17464, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17465, o is NestedStruct, false);
Eval(17466, o is NestedStruct[], false);
Eval(17467, o is NestedStruct?, false);
Eval(17468, o is NestedStruct?[], false);
- Eval(17469, o is NestedStructGen<Decimal>, false);
- Eval(17470, o is NestedStructGen<Decimal>[], false);
- Eval(17471, o is NestedStructGen<Decimal>?, false);
- Eval(17472, o is NestedStructGen<Decimal>?[], false);
+// Eval(17469, o is NestedStructGen<Decimal>, false);
+// Eval(17470, o is NestedStructGen<Decimal>[], false);
+// Eval(17471, o is NestedStructGen<Decimal>?, false);
+// Eval(17472, o is NestedStructGen<Decimal>?[], false);
Eval(17473, o is ExplicitFieldOffsetStruct, false);
Eval(17474, o is ExplicitFieldOffsetStruct[], false);
Eval(17475, o is ExplicitFieldOffsetStruct?, false);
@@ -16081,18 +16081,18 @@ internal class Program
Eval(17494, o is ImplementTwoInterface[], false);
Eval(17495, o is ImplementTwoInterface?, false);
Eval(17496, o is ImplementTwoInterface?[], false);
- Eval(17497, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17498, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17499, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17500, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17501, o is ImplementTwoInterfaceGen<int>, false);
- Eval(17502, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(17503, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(17504, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17505, o is ImplementAllInterface<int>, false);
- Eval(17506, o is ImplementAllInterface<int>[], false);
- Eval(17507, o is ImplementAllInterface<int>?, false);
- Eval(17508, o is ImplementAllInterface<int>?[], false);
+// Eval(17497, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17498, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17499, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17500, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17501, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(17502, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17503, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17504, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17505, o is ImplementAllInterface<int>, false);
+// Eval(17506, o is ImplementAllInterface<int>[], false);
+// Eval(17507, o is ImplementAllInterface<int>?, false);
+// Eval(17508, o is ImplementAllInterface<int>?[], false);
Eval(17509, o is IntE, false);
Eval(17510, o is IntE[], false);
Eval(17511, o is IntE?, false);
@@ -16191,38 +16191,38 @@ internal class Program
Eval(17604, o is IEmpty[], false);
Eval(17605, o is INotEmpty, false);
Eval(17606, o is INotEmpty[], false);
- Eval(17607, o is IEmptyGen<int>, false);
- Eval(17608, o is IEmptyGen<int>[], false);
- Eval(17609, o is INotEmptyGen<int>, false);
- Eval(17610, o is INotEmptyGen<int>[], false);
+// Eval(17607, o is IEmptyGen<int>, false);
+// Eval(17608, o is IEmptyGen<int>[], false);
+// Eval(17609, o is INotEmptyGen<int>, false);
+// Eval(17610, o is INotEmptyGen<int>[], false);
Eval(17611, o is SimpleDelegate, false);
Eval(17612, o is SimpleDelegate[], false);
- Eval(17613, o is GenericDelegate<int>, false);
- Eval(17614, o is GenericDelegate<int>[], false);
+// Eval(17613, o is GenericDelegate<int>, false);
+// Eval(17614, o is GenericDelegate<int>[], false);
Eval(17615, o is EmptyClass, false);
Eval(17616, o is EmptyClass[], false);
Eval(17617, o is NotEmptyClass, false);
Eval(17618, o is NotEmptyClass[], false);
- Eval(17619, o is EmptyClassGen<int>, false);
- Eval(17620, o is EmptyClassGen<int>[], false);
- Eval(17621, o is NotEmptyClassGen<Guid>, false);
- Eval(17622, o is NotEmptyClassGen<Guid>[], false);
- Eval(17623, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(17624, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17619, o is EmptyClassGen<int>, false);
+// Eval(17620, o is EmptyClassGen<int>[], false);
+// Eval(17621, o is NotEmptyClassGen<Guid>, false);
+// Eval(17622, o is NotEmptyClassGen<Guid>[], false);
+// Eval(17623, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17624, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(17625, o is NestedClass, false);
Eval(17626, o is NestedClass[], false);
- Eval(17627, o is NestedClassGen<Decimal>, false);
- Eval(17628, o is NestedClassGen<Decimal>[], false);
+// Eval(17627, o is NestedClassGen<Decimal>, false);
+// Eval(17628, o is NestedClassGen<Decimal>[], false);
Eval(17629, o is ImplementOneInterfaceC, false);
Eval(17630, o is ImplementOneInterfaceC[], false);
Eval(17631, o is ImplementTwoInterfaceC, false);
Eval(17632, o is ImplementTwoInterfaceC[], false);
- Eval(17633, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17634, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17635, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(17636, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17637, o is ImplementAllInterfaceC<int>, false);
- Eval(17638, o is ImplementAllInterfaceC<int>[], false);
+// Eval(17633, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17634, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17635, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17636, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17637, o is ImplementAllInterfaceC<int>, false);
+// Eval(17638, o is ImplementAllInterfaceC<int>[], false);
Eval(17639, o is SealedClass, false);
Eval(17640, o is SealedClass[], false);
}
@@ -16240,26 +16240,26 @@ internal class Program
Eval(17646, o is NotEmptyStruct[], false);
Eval(17647, o is NotEmptyStruct?, false);
Eval(17648, o is NotEmptyStruct?[], false);
- Eval(17649, o is EmptyStructGen<int>, false);
- Eval(17650, o is EmptyStructGen<int>[], false);
- Eval(17651, o is EmptyStructGen<int>?, false);
- Eval(17652, o is EmptyStructGen<int>?[], false);
- Eval(17653, o is NotEmptyStructGen<Guid>, false);
- Eval(17654, o is NotEmptyStructGen<Guid>[], false);
- Eval(17655, o is NotEmptyStructGen<Guid>?, false);
- Eval(17656, o is NotEmptyStructGen<Guid>?[], false);
- Eval(17657, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17658, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17659, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17660, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17649, o is EmptyStructGen<int>, false);
+// Eval(17650, o is EmptyStructGen<int>[], false);
+// Eval(17651, o is EmptyStructGen<int>?, false);
+// Eval(17652, o is EmptyStructGen<int>?[], false);
+// Eval(17653, o is NotEmptyStructGen<Guid>, false);
+// Eval(17654, o is NotEmptyStructGen<Guid>[], false);
+// Eval(17655, o is NotEmptyStructGen<Guid>?, false);
+// Eval(17656, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(17657, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17658, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17659, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17660, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17661, o is NestedStruct, false);
Eval(17662, o is NestedStruct[], false);
Eval(17663, o is NestedStruct?, false);
Eval(17664, o is NestedStruct?[], false);
- Eval(17665, o is NestedStructGen<Decimal>, false);
- Eval(17666, o is NestedStructGen<Decimal>[], false);
- Eval(17667, o is NestedStructGen<Decimal>?, false);
- Eval(17668, o is NestedStructGen<Decimal>?[], false);
+// Eval(17665, o is NestedStructGen<Decimal>, false);
+// Eval(17666, o is NestedStructGen<Decimal>[], false);
+// Eval(17667, o is NestedStructGen<Decimal>?, false);
+// Eval(17668, o is NestedStructGen<Decimal>?[], false);
Eval(17669, o is ExplicitFieldOffsetStruct, false);
Eval(17670, o is ExplicitFieldOffsetStruct[], false);
Eval(17671, o is ExplicitFieldOffsetStruct?, false);
@@ -16276,18 +16276,18 @@ internal class Program
Eval(17690, o is ImplementTwoInterface[], false);
Eval(17691, o is ImplementTwoInterface?, false);
Eval(17692, o is ImplementTwoInterface?[], false);
- Eval(17693, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17694, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17695, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17696, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17697, o is ImplementTwoInterfaceGen<int>, false);
- Eval(17698, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(17699, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(17700, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17701, o is ImplementAllInterface<int>, false);
- Eval(17702, o is ImplementAllInterface<int>[], false);
- Eval(17703, o is ImplementAllInterface<int>?, false);
- Eval(17704, o is ImplementAllInterface<int>?[], false);
+// Eval(17693, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17694, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17695, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17696, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17697, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(17698, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17699, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17700, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17701, o is ImplementAllInterface<int>, false);
+// Eval(17702, o is ImplementAllInterface<int>[], false);
+// Eval(17703, o is ImplementAllInterface<int>?, false);
+// Eval(17704, o is ImplementAllInterface<int>?[], false);
Eval(17705, o is IntE, false);
Eval(17706, o is IntE[], false);
Eval(17707, o is IntE?, false);
@@ -16386,38 +16386,38 @@ internal class Program
Eval(17800, o is IEmpty[], false);
Eval(17801, o is INotEmpty, false);
Eval(17802, o is INotEmpty[], false);
- Eval(17803, o is IEmptyGen<int>, false);
- Eval(17804, o is IEmptyGen<int>[], false);
- Eval(17805, o is INotEmptyGen<int>, false);
- Eval(17806, o is INotEmptyGen<int>[], false);
+// Eval(17803, o is IEmptyGen<int>, false);
+// Eval(17804, o is IEmptyGen<int>[], false);
+// Eval(17805, o is INotEmptyGen<int>, false);
+// Eval(17806, o is INotEmptyGen<int>[], false);
Eval(17807, o is SimpleDelegate, false);
Eval(17808, o is SimpleDelegate[], false);
- Eval(17809, o is GenericDelegate<int>, false);
- Eval(17810, o is GenericDelegate<int>[], false);
+// Eval(17809, o is GenericDelegate<int>, false);
+// Eval(17810, o is GenericDelegate<int>[], false);
Eval(17811, o is EmptyClass, false);
Eval(17812, o is EmptyClass[], false);
Eval(17813, o is NotEmptyClass, false);
Eval(17814, o is NotEmptyClass[], false);
- Eval(17815, o is EmptyClassGen<int>, false);
- Eval(17816, o is EmptyClassGen<int>[], false);
- Eval(17817, o is NotEmptyClassGen<Guid>, false);
- Eval(17818, o is NotEmptyClassGen<Guid>[], false);
- Eval(17819, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(17820, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(17815, o is EmptyClassGen<int>, false);
+// Eval(17816, o is EmptyClassGen<int>[], false);
+// Eval(17817, o is NotEmptyClassGen<Guid>, false);
+// Eval(17818, o is NotEmptyClassGen<Guid>[], false);
+// Eval(17819, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(17820, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(17821, o is NestedClass, false);
Eval(17822, o is NestedClass[], false);
- Eval(17823, o is NestedClassGen<Decimal>, false);
- Eval(17824, o is NestedClassGen<Decimal>[], false);
+// Eval(17823, o is NestedClassGen<Decimal>, false);
+// Eval(17824, o is NestedClassGen<Decimal>[], false);
Eval(17825, o is ImplementOneInterfaceC, false);
Eval(17826, o is ImplementOneInterfaceC[], false);
Eval(17827, o is ImplementTwoInterfaceC, false);
Eval(17828, o is ImplementTwoInterfaceC[], false);
- Eval(17829, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(17830, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(17831, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(17832, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(17833, o is ImplementAllInterfaceC<int>, false);
- Eval(17834, o is ImplementAllInterfaceC<int>[], false);
+// Eval(17829, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(17830, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(17831, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(17832, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(17833, o is ImplementAllInterfaceC<int>, false);
+// Eval(17834, o is ImplementAllInterfaceC<int>[], false);
Eval(17835, o is SealedClass, false);
Eval(17836, o is SealedClass[], false);
}
@@ -16432,26 +16432,26 @@ internal class Program
Eval(17842, o is NotEmptyStruct[], false);
Eval(17843, o is NotEmptyStruct?, false);
Eval(17844, o is NotEmptyStruct?[], false);
- Eval(17845, o is EmptyStructGen<int>, false);
- Eval(17846, o is EmptyStructGen<int>[], false);
- Eval(17847, o is EmptyStructGen<int>?, false);
- Eval(17848, o is EmptyStructGen<int>?[], false);
- Eval(17849, o is NotEmptyStructGen<Guid>, false);
- Eval(17850, o is NotEmptyStructGen<Guid>[], false);
- Eval(17851, o is NotEmptyStructGen<Guid>?, false);
- Eval(17852, o is NotEmptyStructGen<Guid>?[], false);
- Eval(17853, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(17854, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(17855, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(17856, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(17845, o is EmptyStructGen<int>, false);
+// Eval(17846, o is EmptyStructGen<int>[], false);
+// Eval(17847, o is EmptyStructGen<int>?, false);
+// Eval(17848, o is EmptyStructGen<int>?[], false);
+// Eval(17849, o is NotEmptyStructGen<Guid>, false);
+// Eval(17850, o is NotEmptyStructGen<Guid>[], false);
+// Eval(17851, o is NotEmptyStructGen<Guid>?, false);
+// Eval(17852, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(17853, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(17854, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(17855, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(17856, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(17857, o is NestedStruct, false);
Eval(17858, o is NestedStruct[], false);
Eval(17859, o is NestedStruct?, false);
Eval(17860, o is NestedStruct?[], false);
- Eval(17861, o is NestedStructGen<Decimal>, false);
- Eval(17862, o is NestedStructGen<Decimal>[], false);
- Eval(17863, o is NestedStructGen<Decimal>?, false);
- Eval(17864, o is NestedStructGen<Decimal>?[], false);
+// Eval(17861, o is NestedStructGen<Decimal>, false);
+// Eval(17862, o is NestedStructGen<Decimal>[], false);
+// Eval(17863, o is NestedStructGen<Decimal>?, false);
+// Eval(17864, o is NestedStructGen<Decimal>?[], false);
Eval(17865, o is ExplicitFieldOffsetStruct, false);
Eval(17866, o is ExplicitFieldOffsetStruct[], false);
Eval(17867, o is ExplicitFieldOffsetStruct?, false);
@@ -16468,18 +16468,18 @@ internal class Program
Eval(17886, o is ImplementTwoInterface[], false);
Eval(17887, o is ImplementTwoInterface?, false);
Eval(17888, o is ImplementTwoInterface?[], false);
- Eval(17889, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(17890, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(17891, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(17892, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(17893, o is ImplementTwoInterfaceGen<int>, false);
- Eval(17894, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(17895, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(17896, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(17897, o is ImplementAllInterface<int>, false);
- Eval(17898, o is ImplementAllInterface<int>[], false);
- Eval(17899, o is ImplementAllInterface<int>?, false);
- Eval(17900, o is ImplementAllInterface<int>?[], false);
+// Eval(17889, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(17890, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(17891, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(17892, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(17893, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(17894, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(17895, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(17896, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(17897, o is ImplementAllInterface<int>, false);
+// Eval(17898, o is ImplementAllInterface<int>[], false);
+// Eval(17899, o is ImplementAllInterface<int>?, false);
+// Eval(17900, o is ImplementAllInterface<int>?[], false);
Eval(17901, o is IntE, false);
Eval(17902, o is IntE[], false);
Eval(17903, o is IntE?, false);
@@ -16578,38 +16578,38 @@ internal class Program
Eval(17996, o is IEmpty[], false);
Eval(17997, o is INotEmpty, false);
Eval(17998, o is INotEmpty[], false);
- Eval(17999, o is IEmptyGen<int>, false);
- Eval(18000, o is IEmptyGen<int>[], false);
- Eval(18001, o is INotEmptyGen<int>, false);
- Eval(18002, o is INotEmptyGen<int>[], false);
+// Eval(17999, o is IEmptyGen<int>, false);
+// Eval(18000, o is IEmptyGen<int>[], false);
+// Eval(18001, o is INotEmptyGen<int>, false);
+// Eval(18002, o is INotEmptyGen<int>[], false);
Eval(18003, o is SimpleDelegate, false);
Eval(18004, o is SimpleDelegate[], false);
- Eval(18005, o is GenericDelegate<int>, false);
- Eval(18006, o is GenericDelegate<int>[], false);
+// Eval(18005, o is GenericDelegate<int>, false);
+// Eval(18006, o is GenericDelegate<int>[], false);
Eval(18007, o is EmptyClass, false);
Eval(18008, o is EmptyClass[], false);
Eval(18009, o is NotEmptyClass, false);
Eval(18010, o is NotEmptyClass[], false);
- Eval(18011, o is EmptyClassGen<int>, false);
- Eval(18012, o is EmptyClassGen<int>[], false);
- Eval(18013, o is NotEmptyClassGen<Guid>, false);
- Eval(18014, o is NotEmptyClassGen<Guid>[], false);
- Eval(18015, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(18016, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18011, o is EmptyClassGen<int>, false);
+// Eval(18012, o is EmptyClassGen<int>[], false);
+// Eval(18013, o is NotEmptyClassGen<Guid>, false);
+// Eval(18014, o is NotEmptyClassGen<Guid>[], false);
+// Eval(18015, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18016, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(18017, o is NestedClass, false);
Eval(18018, o is NestedClass[], false);
- Eval(18019, o is NestedClassGen<Decimal>, false);
- Eval(18020, o is NestedClassGen<Decimal>[], false);
+// Eval(18019, o is NestedClassGen<Decimal>, false);
+// Eval(18020, o is NestedClassGen<Decimal>[], false);
Eval(18021, o is ImplementOneInterfaceC, false);
Eval(18022, o is ImplementOneInterfaceC[], false);
Eval(18023, o is ImplementTwoInterfaceC, false);
Eval(18024, o is ImplementTwoInterfaceC[], false);
- Eval(18025, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18026, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18027, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(18028, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18029, o is ImplementAllInterfaceC<int>, false);
- Eval(18030, o is ImplementAllInterfaceC<int>[], false);
+// Eval(18025, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18026, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18027, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18028, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18029, o is ImplementAllInterfaceC<int>, false);
+// Eval(18030, o is ImplementAllInterfaceC<int>[], false);
Eval(18031, o is SealedClass, false);
Eval(18032, o is SealedClass[], false);
}
@@ -16624,26 +16624,26 @@ internal class Program
Eval(18038, o is NotEmptyStruct[], false);
Eval(18039, o is NotEmptyStruct?, false);
Eval(18040, o is NotEmptyStruct?[], false);
- Eval(18041, o is EmptyStructGen<int>, false);
- Eval(18042, o is EmptyStructGen<int>[], false);
- Eval(18043, o is EmptyStructGen<int>?, false);
- Eval(18044, o is EmptyStructGen<int>?[], false);
- Eval(18045, o is NotEmptyStructGen<Guid>, false);
- Eval(18046, o is NotEmptyStructGen<Guid>[], false);
- Eval(18047, o is NotEmptyStructGen<Guid>?, false);
- Eval(18048, o is NotEmptyStructGen<Guid>?[], false);
- Eval(18049, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18050, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18051, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18052, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18041, o is EmptyStructGen<int>, false);
+// Eval(18042, o is EmptyStructGen<int>[], false);
+// Eval(18043, o is EmptyStructGen<int>?, false);
+// Eval(18044, o is EmptyStructGen<int>?[], false);
+// Eval(18045, o is NotEmptyStructGen<Guid>, false);
+// Eval(18046, o is NotEmptyStructGen<Guid>[], false);
+// Eval(18047, o is NotEmptyStructGen<Guid>?, false);
+// Eval(18048, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(18049, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18050, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18051, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18052, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18053, o is NestedStruct, false);
Eval(18054, o is NestedStruct[], false);
Eval(18055, o is NestedStruct?, false);
Eval(18056, o is NestedStruct?[], false);
- Eval(18057, o is NestedStructGen<Decimal>, false);
- Eval(18058, o is NestedStructGen<Decimal>[], false);
- Eval(18059, o is NestedStructGen<Decimal>?, false);
- Eval(18060, o is NestedStructGen<Decimal>?[], false);
+// Eval(18057, o is NestedStructGen<Decimal>, false);
+// Eval(18058, o is NestedStructGen<Decimal>[], false);
+// Eval(18059, o is NestedStructGen<Decimal>?, false);
+// Eval(18060, o is NestedStructGen<Decimal>?[], false);
Eval(18061, o is ExplicitFieldOffsetStruct, false);
Eval(18062, o is ExplicitFieldOffsetStruct[], false);
Eval(18063, o is ExplicitFieldOffsetStruct?, false);
@@ -16660,18 +16660,18 @@ internal class Program
Eval(18082, o is ImplementTwoInterface[], false);
Eval(18083, o is ImplementTwoInterface?, false);
Eval(18084, o is ImplementTwoInterface?[], false);
- Eval(18085, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18086, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18087, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18088, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18089, o is ImplementTwoInterfaceGen<int>, false);
- Eval(18090, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(18091, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(18092, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18093, o is ImplementAllInterface<int>, false);
- Eval(18094, o is ImplementAllInterface<int>[], false);
- Eval(18095, o is ImplementAllInterface<int>?, false);
- Eval(18096, o is ImplementAllInterface<int>?[], false);
+// Eval(18085, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18086, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18087, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18088, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18089, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(18090, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18091, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18092, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18093, o is ImplementAllInterface<int>, false);
+// Eval(18094, o is ImplementAllInterface<int>[], false);
+// Eval(18095, o is ImplementAllInterface<int>?, false);
+// Eval(18096, o is ImplementAllInterface<int>?[], false);
Eval(18097, o is IntE, false);
Eval(18098, o is IntE[], false);
Eval(18099, o is IntE?, false);
@@ -16770,38 +16770,38 @@ internal class Program
Eval(18192, o is IEmpty[], false);
Eval(18193, o is INotEmpty, false);
Eval(18194, o is INotEmpty[], false);
- Eval(18195, o is IEmptyGen<int>, false);
- Eval(18196, o is IEmptyGen<int>[], false);
- Eval(18197, o is INotEmptyGen<int>, false);
- Eval(18198, o is INotEmptyGen<int>[], false);
+// Eval(18195, o is IEmptyGen<int>, false);
+// Eval(18196, o is IEmptyGen<int>[], false);
+// Eval(18197, o is INotEmptyGen<int>, false);
+// Eval(18198, o is INotEmptyGen<int>[], false);
Eval(18199, o is SimpleDelegate, false);
Eval(18200, o is SimpleDelegate[], false);
- Eval(18201, o is GenericDelegate<int>, false);
- Eval(18202, o is GenericDelegate<int>[], false);
+// Eval(18201, o is GenericDelegate<int>, false);
+// Eval(18202, o is GenericDelegate<int>[], false);
Eval(18203, o is EmptyClass, false);
Eval(18204, o is EmptyClass[], false);
Eval(18205, o is NotEmptyClass, false);
Eval(18206, o is NotEmptyClass[], false);
- Eval(18207, o is EmptyClassGen<int>, false);
- Eval(18208, o is EmptyClassGen<int>[], false);
- Eval(18209, o is NotEmptyClassGen<Guid>, false);
- Eval(18210, o is NotEmptyClassGen<Guid>[], false);
- Eval(18211, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(18212, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18207, o is EmptyClassGen<int>, false);
+// Eval(18208, o is EmptyClassGen<int>[], false);
+// Eval(18209, o is NotEmptyClassGen<Guid>, false);
+// Eval(18210, o is NotEmptyClassGen<Guid>[], false);
+// Eval(18211, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18212, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(18213, o is NestedClass, false);
Eval(18214, o is NestedClass[], false);
- Eval(18215, o is NestedClassGen<Decimal>, false);
- Eval(18216, o is NestedClassGen<Decimal>[], false);
+// Eval(18215, o is NestedClassGen<Decimal>, false);
+// Eval(18216, o is NestedClassGen<Decimal>[], false);
Eval(18217, o is ImplementOneInterfaceC, false);
Eval(18218, o is ImplementOneInterfaceC[], false);
Eval(18219, o is ImplementTwoInterfaceC, false);
Eval(18220, o is ImplementTwoInterfaceC[], false);
- Eval(18221, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18222, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18223, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(18224, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18225, o is ImplementAllInterfaceC<int>, false);
- Eval(18226, o is ImplementAllInterfaceC<int>[], false);
+// Eval(18221, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18222, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18223, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18224, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18225, o is ImplementAllInterfaceC<int>, false);
+// Eval(18226, o is ImplementAllInterfaceC<int>[], false);
Eval(18227, o is SealedClass, false);
Eval(18228, o is SealedClass[], false);
}
@@ -16819,26 +16819,26 @@ internal class Program
Eval(18234, o is NotEmptyStruct[], false);
Eval(18235, o is NotEmptyStruct?, false);
Eval(18236, o is NotEmptyStruct?[], false);
- Eval(18237, o is EmptyStructGen<int>, false);
- Eval(18238, o is EmptyStructGen<int>[], false);
- Eval(18239, o is EmptyStructGen<int>?, false);
- Eval(18240, o is EmptyStructGen<int>?[], false);
- Eval(18241, o is NotEmptyStructGen<Guid>, false);
- Eval(18242, o is NotEmptyStructGen<Guid>[], false);
- Eval(18243, o is NotEmptyStructGen<Guid>?, false);
- Eval(18244, o is NotEmptyStructGen<Guid>?[], false);
- Eval(18245, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18246, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18247, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18248, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18237, o is EmptyStructGen<int>, false);
+// Eval(18238, o is EmptyStructGen<int>[], false);
+// Eval(18239, o is EmptyStructGen<int>?, false);
+// Eval(18240, o is EmptyStructGen<int>?[], false);
+// Eval(18241, o is NotEmptyStructGen<Guid>, false);
+// Eval(18242, o is NotEmptyStructGen<Guid>[], false);
+// Eval(18243, o is NotEmptyStructGen<Guid>?, false);
+// Eval(18244, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(18245, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18246, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18247, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18248, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18249, o is NestedStruct, false);
Eval(18250, o is NestedStruct[], false);
Eval(18251, o is NestedStruct?, false);
Eval(18252, o is NestedStruct?[], false);
- Eval(18253, o is NestedStructGen<Decimal>, false);
- Eval(18254, o is NestedStructGen<Decimal>[], false);
- Eval(18255, o is NestedStructGen<Decimal>?, false);
- Eval(18256, o is NestedStructGen<Decimal>?[], false);
+// Eval(18253, o is NestedStructGen<Decimal>, false);
+// Eval(18254, o is NestedStructGen<Decimal>[], false);
+// Eval(18255, o is NestedStructGen<Decimal>?, false);
+// Eval(18256, o is NestedStructGen<Decimal>?[], false);
Eval(18257, o is ExplicitFieldOffsetStruct, false);
Eval(18258, o is ExplicitFieldOffsetStruct[], false);
Eval(18259, o is ExplicitFieldOffsetStruct?, false);
@@ -16855,18 +16855,18 @@ internal class Program
Eval(18278, o is ImplementTwoInterface[], false);
Eval(18279, o is ImplementTwoInterface?, false);
Eval(18280, o is ImplementTwoInterface?[], false);
- Eval(18281, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18282, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18283, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18284, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18285, o is ImplementTwoInterfaceGen<int>, false);
- Eval(18286, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(18287, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(18288, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18289, o is ImplementAllInterface<int>, false);
- Eval(18290, o is ImplementAllInterface<int>[], false);
- Eval(18291, o is ImplementAllInterface<int>?, false);
- Eval(18292, o is ImplementAllInterface<int>?[], false);
+// Eval(18281, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18282, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18283, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18284, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18285, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(18286, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18287, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18288, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18289, o is ImplementAllInterface<int>, false);
+// Eval(18290, o is ImplementAllInterface<int>[], false);
+// Eval(18291, o is ImplementAllInterface<int>?, false);
+// Eval(18292, o is ImplementAllInterface<int>?[], false);
Eval(18293, o is IntE, false);
Eval(18294, o is IntE[], false);
Eval(18295, o is IntE?, false);
@@ -16965,38 +16965,38 @@ internal class Program
Eval(18388, o is IEmpty[], false);
Eval(18389, o is INotEmpty, false);
Eval(18390, o is INotEmpty[], false);
- Eval(18391, o is IEmptyGen<int>, false);
- Eval(18392, o is IEmptyGen<int>[], false);
- Eval(18393, o is INotEmptyGen<int>, false);
- Eval(18394, o is INotEmptyGen<int>[], false);
+// Eval(18391, o is IEmptyGen<int>, false);
+// Eval(18392, o is IEmptyGen<int>[], false);
+// Eval(18393, o is INotEmptyGen<int>, false);
+// Eval(18394, o is INotEmptyGen<int>[], false);
Eval(18395, o is SimpleDelegate, false);
Eval(18396, o is SimpleDelegate[], false);
- Eval(18397, o is GenericDelegate<int>, false);
- Eval(18398, o is GenericDelegate<int>[], false);
+// Eval(18397, o is GenericDelegate<int>, false);
+// Eval(18398, o is GenericDelegate<int>[], false);
Eval(18399, o is EmptyClass, false);
Eval(18400, o is EmptyClass[], false);
Eval(18401, o is NotEmptyClass, false);
Eval(18402, o is NotEmptyClass[], false);
- Eval(18403, o is EmptyClassGen<int>, false);
- Eval(18404, o is EmptyClassGen<int>[], false);
- Eval(18405, o is NotEmptyClassGen<Guid>, false);
- Eval(18406, o is NotEmptyClassGen<Guid>[], false);
- Eval(18407, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(18408, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18403, o is EmptyClassGen<int>, false);
+// Eval(18404, o is EmptyClassGen<int>[], false);
+// Eval(18405, o is NotEmptyClassGen<Guid>, false);
+// Eval(18406, o is NotEmptyClassGen<Guid>[], false);
+// Eval(18407, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18408, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(18409, o is NestedClass, false);
Eval(18410, o is NestedClass[], false);
- Eval(18411, o is NestedClassGen<Decimal>, false);
- Eval(18412, o is NestedClassGen<Decimal>[], false);
+// Eval(18411, o is NestedClassGen<Decimal>, false);
+// Eval(18412, o is NestedClassGen<Decimal>[], false);
Eval(18413, o is ImplementOneInterfaceC, false);
Eval(18414, o is ImplementOneInterfaceC[], false);
Eval(18415, o is ImplementTwoInterfaceC, false);
Eval(18416, o is ImplementTwoInterfaceC[], false);
- Eval(18417, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18418, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18419, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(18420, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18421, o is ImplementAllInterfaceC<int>, false);
- Eval(18422, o is ImplementAllInterfaceC<int>[], false);
+// Eval(18417, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18418, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18419, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18420, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18421, o is ImplementAllInterfaceC<int>, false);
+// Eval(18422, o is ImplementAllInterfaceC<int>[], false);
Eval(18423, o is SealedClass, false);
Eval(18424, o is SealedClass[], false);
}
@@ -17011,26 +17011,26 @@ internal class Program
Eval(18430, o is NotEmptyStruct[], false);
Eval(18431, o is NotEmptyStruct?, false);
Eval(18432, o is NotEmptyStruct?[], false);
- Eval(18433, o is EmptyStructGen<int>, false);
- Eval(18434, o is EmptyStructGen<int>[], false);
- Eval(18435, o is EmptyStructGen<int>?, false);
- Eval(18436, o is EmptyStructGen<int>?[], false);
- Eval(18437, o is NotEmptyStructGen<Guid>, false);
- Eval(18438, o is NotEmptyStructGen<Guid>[], false);
- Eval(18439, o is NotEmptyStructGen<Guid>?, false);
- Eval(18440, o is NotEmptyStructGen<Guid>?[], false);
- Eval(18441, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18442, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18443, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18444, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18433, o is EmptyStructGen<int>, false);
+// Eval(18434, o is EmptyStructGen<int>[], false);
+// Eval(18435, o is EmptyStructGen<int>?, false);
+// Eval(18436, o is EmptyStructGen<int>?[], false);
+// Eval(18437, o is NotEmptyStructGen<Guid>, false);
+// Eval(18438, o is NotEmptyStructGen<Guid>[], false);
+// Eval(18439, o is NotEmptyStructGen<Guid>?, false);
+// Eval(18440, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(18441, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18442, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18443, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18444, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18445, o is NestedStruct, false);
Eval(18446, o is NestedStruct[], false);
Eval(18447, o is NestedStruct?, false);
Eval(18448, o is NestedStruct?[], false);
- Eval(18449, o is NestedStructGen<Decimal>, false);
- Eval(18450, o is NestedStructGen<Decimal>[], false);
- Eval(18451, o is NestedStructGen<Decimal>?, false);
- Eval(18452, o is NestedStructGen<Decimal>?[], false);
+// Eval(18449, o is NestedStructGen<Decimal>, false);
+// Eval(18450, o is NestedStructGen<Decimal>[], false);
+// Eval(18451, o is NestedStructGen<Decimal>?, false);
+// Eval(18452, o is NestedStructGen<Decimal>?[], false);
Eval(18453, o is ExplicitFieldOffsetStruct, false);
Eval(18454, o is ExplicitFieldOffsetStruct[], false);
Eval(18455, o is ExplicitFieldOffsetStruct?, false);
@@ -17047,18 +17047,18 @@ internal class Program
Eval(18474, o is ImplementTwoInterface[], false);
Eval(18475, o is ImplementTwoInterface?, false);
Eval(18476, o is ImplementTwoInterface?[], false);
- Eval(18477, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18478, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18479, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18480, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18481, o is ImplementTwoInterfaceGen<int>, false);
- Eval(18482, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(18483, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(18484, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18485, o is ImplementAllInterface<int>, false);
- Eval(18486, o is ImplementAllInterface<int>[], false);
- Eval(18487, o is ImplementAllInterface<int>?, false);
- Eval(18488, o is ImplementAllInterface<int>?[], false);
+// Eval(18477, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18478, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18479, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18480, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18481, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(18482, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18483, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18484, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18485, o is ImplementAllInterface<int>, false);
+// Eval(18486, o is ImplementAllInterface<int>[], false);
+// Eval(18487, o is ImplementAllInterface<int>?, false);
+// Eval(18488, o is ImplementAllInterface<int>?[], false);
Eval(18489, o is IntE, false);
Eval(18490, o is IntE[], false);
Eval(18491, o is IntE?, false);
@@ -17157,38 +17157,38 @@ internal class Program
Eval(18584, o is IEmpty[], false);
Eval(18585, o is INotEmpty, false);
Eval(18586, o is INotEmpty[], false);
- Eval(18587, o is IEmptyGen<int>, false);
- Eval(18588, o is IEmptyGen<int>[], false);
- Eval(18589, o is INotEmptyGen<int>, false);
- Eval(18590, o is INotEmptyGen<int>[], false);
+// Eval(18587, o is IEmptyGen<int>, false);
+// Eval(18588, o is IEmptyGen<int>[], false);
+// Eval(18589, o is INotEmptyGen<int>, false);
+// Eval(18590, o is INotEmptyGen<int>[], false);
Eval(18591, o is SimpleDelegate, false);
Eval(18592, o is SimpleDelegate[], false);
- Eval(18593, o is GenericDelegate<int>, false);
- Eval(18594, o is GenericDelegate<int>[], false);
+// Eval(18593, o is GenericDelegate<int>, false);
+// Eval(18594, o is GenericDelegate<int>[], false);
Eval(18595, o is EmptyClass, false);
Eval(18596, o is EmptyClass[], false);
Eval(18597, o is NotEmptyClass, false);
Eval(18598, o is NotEmptyClass[], false);
- Eval(18599, o is EmptyClassGen<int>, false);
- Eval(18600, o is EmptyClassGen<int>[], false);
- Eval(18601, o is NotEmptyClassGen<Guid>, false);
- Eval(18602, o is NotEmptyClassGen<Guid>[], false);
- Eval(18603, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(18604, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18599, o is EmptyClassGen<int>, false);
+// Eval(18600, o is EmptyClassGen<int>[], false);
+// Eval(18601, o is NotEmptyClassGen<Guid>, false);
+// Eval(18602, o is NotEmptyClassGen<Guid>[], false);
+// Eval(18603, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18604, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(18605, o is NestedClass, false);
Eval(18606, o is NestedClass[], false);
- Eval(18607, o is NestedClassGen<Decimal>, false);
- Eval(18608, o is NestedClassGen<Decimal>[], false);
+// Eval(18607, o is NestedClassGen<Decimal>, false);
+// Eval(18608, o is NestedClassGen<Decimal>[], false);
Eval(18609, o is ImplementOneInterfaceC, false);
Eval(18610, o is ImplementOneInterfaceC[], false);
Eval(18611, o is ImplementTwoInterfaceC, false);
Eval(18612, o is ImplementTwoInterfaceC[], false);
- Eval(18613, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18614, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18615, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(18616, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18617, o is ImplementAllInterfaceC<int>, false);
- Eval(18618, o is ImplementAllInterfaceC<int>[], false);
+// Eval(18613, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18614, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18615, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18616, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18617, o is ImplementAllInterfaceC<int>, false);
+// Eval(18618, o is ImplementAllInterfaceC<int>[], false);
Eval(18619, o is SealedClass, false);
Eval(18620, o is SealedClass[], false);
}
@@ -17203,26 +17203,26 @@ internal class Program
Eval(18626, o is NotEmptyStruct[], false);
Eval(18627, o is NotEmptyStruct?, false);
Eval(18628, o is NotEmptyStruct?[], false);
- Eval(18629, o is EmptyStructGen<int>, false);
- Eval(18630, o is EmptyStructGen<int>[], false);
- Eval(18631, o is EmptyStructGen<int>?, false);
- Eval(18632, o is EmptyStructGen<int>?[], false);
- Eval(18633, o is NotEmptyStructGen<Guid>, false);
- Eval(18634, o is NotEmptyStructGen<Guid>[], false);
- Eval(18635, o is NotEmptyStructGen<Guid>?, false);
- Eval(18636, o is NotEmptyStructGen<Guid>?[], false);
- Eval(18637, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18638, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18639, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18640, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18629, o is EmptyStructGen<int>, false);
+// Eval(18630, o is EmptyStructGen<int>[], false);
+// Eval(18631, o is EmptyStructGen<int>?, false);
+// Eval(18632, o is EmptyStructGen<int>?[], false);
+// Eval(18633, o is NotEmptyStructGen<Guid>, false);
+// Eval(18634, o is NotEmptyStructGen<Guid>[], false);
+// Eval(18635, o is NotEmptyStructGen<Guid>?, false);
+// Eval(18636, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(18637, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18638, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18639, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18640, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18641, o is NestedStruct, false);
Eval(18642, o is NestedStruct[], false);
Eval(18643, o is NestedStruct?, false);
Eval(18644, o is NestedStruct?[], false);
- Eval(18645, o is NestedStructGen<Decimal>, false);
- Eval(18646, o is NestedStructGen<Decimal>[], false);
- Eval(18647, o is NestedStructGen<Decimal>?, false);
- Eval(18648, o is NestedStructGen<Decimal>?[], false);
+// Eval(18645, o is NestedStructGen<Decimal>, false);
+// Eval(18646, o is NestedStructGen<Decimal>[], false);
+// Eval(18647, o is NestedStructGen<Decimal>?, false);
+// Eval(18648, o is NestedStructGen<Decimal>?[], false);
Eval(18649, o is ExplicitFieldOffsetStruct, false);
Eval(18650, o is ExplicitFieldOffsetStruct[], false);
Eval(18651, o is ExplicitFieldOffsetStruct?, false);
@@ -17239,18 +17239,18 @@ internal class Program
Eval(18670, o is ImplementTwoInterface[], false);
Eval(18671, o is ImplementTwoInterface?, false);
Eval(18672, o is ImplementTwoInterface?[], false);
- Eval(18673, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18674, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18675, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18676, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18677, o is ImplementTwoInterfaceGen<int>, false);
- Eval(18678, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(18679, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(18680, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18681, o is ImplementAllInterface<int>, false);
- Eval(18682, o is ImplementAllInterface<int>[], false);
- Eval(18683, o is ImplementAllInterface<int>?, false);
- Eval(18684, o is ImplementAllInterface<int>?[], false);
+// Eval(18673, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18674, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18675, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18676, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18677, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(18678, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18679, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18680, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18681, o is ImplementAllInterface<int>, false);
+// Eval(18682, o is ImplementAllInterface<int>[], false);
+// Eval(18683, o is ImplementAllInterface<int>?, false);
+// Eval(18684, o is ImplementAllInterface<int>?[], false);
Eval(18685, o is IntE, false);
Eval(18686, o is IntE[], false);
Eval(18687, o is IntE?, false);
@@ -17349,38 +17349,38 @@ internal class Program
Eval(18780, o is IEmpty[], false);
Eval(18781, o is INotEmpty, false);
Eval(18782, o is INotEmpty[], false);
- Eval(18783, o is IEmptyGen<int>, false);
- Eval(18784, o is IEmptyGen<int>[], false);
- Eval(18785, o is INotEmptyGen<int>, false);
- Eval(18786, o is INotEmptyGen<int>[], false);
+// Eval(18783, o is IEmptyGen<int>, false);
+// Eval(18784, o is IEmptyGen<int>[], false);
+// Eval(18785, o is INotEmptyGen<int>, false);
+// Eval(18786, o is INotEmptyGen<int>[], false);
Eval(18787, o is SimpleDelegate, false);
Eval(18788, o is SimpleDelegate[], false);
- Eval(18789, o is GenericDelegate<int>, false);
- Eval(18790, o is GenericDelegate<int>[], false);
+// Eval(18789, o is GenericDelegate<int>, false);
+// Eval(18790, o is GenericDelegate<int>[], false);
Eval(18791, o is EmptyClass, false);
Eval(18792, o is EmptyClass[], false);
Eval(18793, o is NotEmptyClass, false);
Eval(18794, o is NotEmptyClass[], false);
- Eval(18795, o is EmptyClassGen<int>, false);
- Eval(18796, o is EmptyClassGen<int>[], false);
- Eval(18797, o is NotEmptyClassGen<Guid>, false);
- Eval(18798, o is NotEmptyClassGen<Guid>[], false);
- Eval(18799, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(18800, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18795, o is EmptyClassGen<int>, false);
+// Eval(18796, o is EmptyClassGen<int>[], false);
+// Eval(18797, o is NotEmptyClassGen<Guid>, false);
+// Eval(18798, o is NotEmptyClassGen<Guid>[], false);
+// Eval(18799, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18800, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(18801, o is NestedClass, false);
Eval(18802, o is NestedClass[], false);
- Eval(18803, o is NestedClassGen<Decimal>, false);
- Eval(18804, o is NestedClassGen<Decimal>[], false);
+// Eval(18803, o is NestedClassGen<Decimal>, false);
+// Eval(18804, o is NestedClassGen<Decimal>[], false);
Eval(18805, o is ImplementOneInterfaceC, false);
Eval(18806, o is ImplementOneInterfaceC[], false);
Eval(18807, o is ImplementTwoInterfaceC, false);
Eval(18808, o is ImplementTwoInterfaceC[], false);
- Eval(18809, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(18810, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(18811, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(18812, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(18813, o is ImplementAllInterfaceC<int>, false);
- Eval(18814, o is ImplementAllInterfaceC<int>[], false);
+// Eval(18809, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(18810, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(18811, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(18812, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(18813, o is ImplementAllInterfaceC<int>, false);
+// Eval(18814, o is ImplementAllInterfaceC<int>[], false);
Eval(18815, o is SealedClass, false);
Eval(18816, o is SealedClass[], false);
}
@@ -17398,26 +17398,26 @@ internal class Program
Eval(18822, o is NotEmptyStruct[], false);
Eval(18823, o is NotEmptyStruct?, false);
Eval(18824, o is NotEmptyStruct?[], false);
- Eval(18825, o is EmptyStructGen<int>, false);
- Eval(18826, o is EmptyStructGen<int>[], false);
- Eval(18827, o is EmptyStructGen<int>?, false);
- Eval(18828, o is EmptyStructGen<int>?[], false);
- Eval(18829, o is NotEmptyStructGen<Guid>, false);
- Eval(18830, o is NotEmptyStructGen<Guid>[], false);
- Eval(18831, o is NotEmptyStructGen<Guid>?, false);
- Eval(18832, o is NotEmptyStructGen<Guid>?[], false);
- Eval(18833, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(18834, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(18835, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(18836, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(18825, o is EmptyStructGen<int>, false);
+// Eval(18826, o is EmptyStructGen<int>[], false);
+// Eval(18827, o is EmptyStructGen<int>?, false);
+// Eval(18828, o is EmptyStructGen<int>?[], false);
+// Eval(18829, o is NotEmptyStructGen<Guid>, false);
+// Eval(18830, o is NotEmptyStructGen<Guid>[], false);
+// Eval(18831, o is NotEmptyStructGen<Guid>?, false);
+// Eval(18832, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(18833, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(18834, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(18835, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(18836, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(18837, o is NestedStruct, false);
Eval(18838, o is NestedStruct[], false);
Eval(18839, o is NestedStruct?, false);
Eval(18840, o is NestedStruct?[], false);
- Eval(18841, o is NestedStructGen<Decimal>, false);
- Eval(18842, o is NestedStructGen<Decimal>[], false);
- Eval(18843, o is NestedStructGen<Decimal>?, false);
- Eval(18844, o is NestedStructGen<Decimal>?[], false);
+// Eval(18841, o is NestedStructGen<Decimal>, false);
+// Eval(18842, o is NestedStructGen<Decimal>[], false);
+// Eval(18843, o is NestedStructGen<Decimal>?, false);
+// Eval(18844, o is NestedStructGen<Decimal>?[], false);
Eval(18845, o is ExplicitFieldOffsetStruct, false);
Eval(18846, o is ExplicitFieldOffsetStruct[], false);
Eval(18847, o is ExplicitFieldOffsetStruct?, false);
@@ -17434,18 +17434,18 @@ internal class Program
Eval(18866, o is ImplementTwoInterface[], false);
Eval(18867, o is ImplementTwoInterface?, false);
Eval(18868, o is ImplementTwoInterface?[], false);
- Eval(18869, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(18870, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(18871, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(18872, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(18873, o is ImplementTwoInterfaceGen<int>, false);
- Eval(18874, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(18875, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(18876, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(18877, o is ImplementAllInterface<int>, false);
- Eval(18878, o is ImplementAllInterface<int>[], false);
- Eval(18879, o is ImplementAllInterface<int>?, false);
- Eval(18880, o is ImplementAllInterface<int>?[], false);
+// Eval(18869, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(18870, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(18871, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(18872, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(18873, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(18874, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(18875, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(18876, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(18877, o is ImplementAllInterface<int>, false);
+// Eval(18878, o is ImplementAllInterface<int>[], false);
+// Eval(18879, o is ImplementAllInterface<int>?, false);
+// Eval(18880, o is ImplementAllInterface<int>?[], false);
Eval(18881, o is IntE, false);
Eval(18882, o is IntE[], false);
Eval(18883, o is IntE?, false);
@@ -17544,38 +17544,38 @@ internal class Program
Eval(18976, o is IEmpty[], false);
Eval(18977, o is INotEmpty, false);
Eval(18978, o is INotEmpty[], false);
- Eval(18979, o is IEmptyGen<int>, false);
- Eval(18980, o is IEmptyGen<int>[], false);
- Eval(18981, o is INotEmptyGen<int>, false);
- Eval(18982, o is INotEmptyGen<int>[], false);
+// Eval(18979, o is IEmptyGen<int>, false);
+// Eval(18980, o is IEmptyGen<int>[], false);
+// Eval(18981, o is INotEmptyGen<int>, false);
+// Eval(18982, o is INotEmptyGen<int>[], false);
Eval(18983, o is SimpleDelegate, false);
Eval(18984, o is SimpleDelegate[], false);
- Eval(18985, o is GenericDelegate<int>, false);
- Eval(18986, o is GenericDelegate<int>[], false);
+// Eval(18985, o is GenericDelegate<int>, false);
+// Eval(18986, o is GenericDelegate<int>[], false);
Eval(18987, o is EmptyClass, false);
Eval(18988, o is EmptyClass[], false);
Eval(18989, o is NotEmptyClass, false);
Eval(18990, o is NotEmptyClass[], false);
- Eval(18991, o is EmptyClassGen<int>, false);
- Eval(18992, o is EmptyClassGen<int>[], false);
- Eval(18993, o is NotEmptyClassGen<Guid>, false);
- Eval(18994, o is NotEmptyClassGen<Guid>[], false);
- Eval(18995, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(18996, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(18991, o is EmptyClassGen<int>, false);
+// Eval(18992, o is EmptyClassGen<int>[], false);
+// Eval(18993, o is NotEmptyClassGen<Guid>, false);
+// Eval(18994, o is NotEmptyClassGen<Guid>[], false);
+// Eval(18995, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(18996, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(18997, o is NestedClass, false);
Eval(18998, o is NestedClass[], false);
- Eval(18999, o is NestedClassGen<Decimal>, false);
- Eval(19000, o is NestedClassGen<Decimal>[], false);
+// Eval(18999, o is NestedClassGen<Decimal>, false);
+// Eval(19000, o is NestedClassGen<Decimal>[], false);
Eval(19001, o is ImplementOneInterfaceC, false);
Eval(19002, o is ImplementOneInterfaceC[], false);
Eval(19003, o is ImplementTwoInterfaceC, false);
Eval(19004, o is ImplementTwoInterfaceC[], false);
- Eval(19005, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19006, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19007, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(19008, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19009, o is ImplementAllInterfaceC<int>, false);
- Eval(19010, o is ImplementAllInterfaceC<int>[], false);
+// Eval(19005, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19006, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19007, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19008, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19009, o is ImplementAllInterfaceC<int>, false);
+// Eval(19010, o is ImplementAllInterfaceC<int>[], false);
Eval(19011, o is SealedClass, false);
Eval(19012, o is SealedClass[], false);
}
@@ -17590,26 +17590,26 @@ internal class Program
Eval(19018, o is NotEmptyStruct[], false);
Eval(19019, o is NotEmptyStruct?, false);
Eval(19020, o is NotEmptyStruct?[], false);
- Eval(19021, o is EmptyStructGen<int>, false);
- Eval(19022, o is EmptyStructGen<int>[], false);
- Eval(19023, o is EmptyStructGen<int>?, false);
- Eval(19024, o is EmptyStructGen<int>?[], false);
- Eval(19025, o is NotEmptyStructGen<Guid>, false);
- Eval(19026, o is NotEmptyStructGen<Guid>[], false);
- Eval(19027, o is NotEmptyStructGen<Guid>?, false);
- Eval(19028, o is NotEmptyStructGen<Guid>?[], false);
- Eval(19029, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19030, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19031, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19032, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19021, o is EmptyStructGen<int>, false);
+// Eval(19022, o is EmptyStructGen<int>[], false);
+// Eval(19023, o is EmptyStructGen<int>?, false);
+// Eval(19024, o is EmptyStructGen<int>?[], false);
+// Eval(19025, o is NotEmptyStructGen<Guid>, false);
+// Eval(19026, o is NotEmptyStructGen<Guid>[], false);
+// Eval(19027, o is NotEmptyStructGen<Guid>?, false);
+// Eval(19028, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(19029, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19030, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19031, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19032, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19033, o is NestedStruct, false);
Eval(19034, o is NestedStruct[], false);
Eval(19035, o is NestedStruct?, false);
Eval(19036, o is NestedStruct?[], false);
- Eval(19037, o is NestedStructGen<Decimal>, false);
- Eval(19038, o is NestedStructGen<Decimal>[], false);
- Eval(19039, o is NestedStructGen<Decimal>?, false);
- Eval(19040, o is NestedStructGen<Decimal>?[], false);
+// Eval(19037, o is NestedStructGen<Decimal>, false);
+// Eval(19038, o is NestedStructGen<Decimal>[], false);
+// Eval(19039, o is NestedStructGen<Decimal>?, false);
+// Eval(19040, o is NestedStructGen<Decimal>?[], false);
Eval(19041, o is ExplicitFieldOffsetStruct, false);
Eval(19042, o is ExplicitFieldOffsetStruct[], false);
Eval(19043, o is ExplicitFieldOffsetStruct?, false);
@@ -17626,18 +17626,18 @@ internal class Program
Eval(19062, o is ImplementTwoInterface[], false);
Eval(19063, o is ImplementTwoInterface?, false);
Eval(19064, o is ImplementTwoInterface?[], false);
- Eval(19065, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19066, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19067, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19068, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19069, o is ImplementTwoInterfaceGen<int>, false);
- Eval(19070, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(19071, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(19072, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19073, o is ImplementAllInterface<int>, false);
- Eval(19074, o is ImplementAllInterface<int>[], false);
- Eval(19075, o is ImplementAllInterface<int>?, false);
- Eval(19076, o is ImplementAllInterface<int>?[], false);
+// Eval(19065, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19066, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19067, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19068, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19069, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(19070, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19071, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19072, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19073, o is ImplementAllInterface<int>, false);
+// Eval(19074, o is ImplementAllInterface<int>[], false);
+// Eval(19075, o is ImplementAllInterface<int>?, false);
+// Eval(19076, o is ImplementAllInterface<int>?[], false);
Eval(19077, o is IntE, false);
Eval(19078, o is IntE[], false);
Eval(19079, o is IntE?, false);
@@ -17736,38 +17736,38 @@ internal class Program
Eval(19172, o is IEmpty[], false);
Eval(19173, o is INotEmpty, false);
Eval(19174, o is INotEmpty[], false);
- Eval(19175, o is IEmptyGen<int>, false);
- Eval(19176, o is IEmptyGen<int>[], false);
- Eval(19177, o is INotEmptyGen<int>, false);
- Eval(19178, o is INotEmptyGen<int>[], false);
+// Eval(19175, o is IEmptyGen<int>, false);
+// Eval(19176, o is IEmptyGen<int>[], false);
+// Eval(19177, o is INotEmptyGen<int>, false);
+// Eval(19178, o is INotEmptyGen<int>[], false);
Eval(19179, o is SimpleDelegate, false);
Eval(19180, o is SimpleDelegate[], false);
- Eval(19181, o is GenericDelegate<int>, false);
- Eval(19182, o is GenericDelegate<int>[], false);
+// Eval(19181, o is GenericDelegate<int>, false);
+// Eval(19182, o is GenericDelegate<int>[], false);
Eval(19183, o is EmptyClass, false);
Eval(19184, o is EmptyClass[], false);
Eval(19185, o is NotEmptyClass, false);
Eval(19186, o is NotEmptyClass[], false);
- Eval(19187, o is EmptyClassGen<int>, false);
- Eval(19188, o is EmptyClassGen<int>[], false);
- Eval(19189, o is NotEmptyClassGen<Guid>, false);
- Eval(19190, o is NotEmptyClassGen<Guid>[], false);
- Eval(19191, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(19192, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19187, o is EmptyClassGen<int>, false);
+// Eval(19188, o is EmptyClassGen<int>[], false);
+// Eval(19189, o is NotEmptyClassGen<Guid>, false);
+// Eval(19190, o is NotEmptyClassGen<Guid>[], false);
+// Eval(19191, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19192, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(19193, o is NestedClass, false);
Eval(19194, o is NestedClass[], false);
- Eval(19195, o is NestedClassGen<Decimal>, false);
- Eval(19196, o is NestedClassGen<Decimal>[], false);
+// Eval(19195, o is NestedClassGen<Decimal>, false);
+// Eval(19196, o is NestedClassGen<Decimal>[], false);
Eval(19197, o is ImplementOneInterfaceC, false);
Eval(19198, o is ImplementOneInterfaceC[], false);
Eval(19199, o is ImplementTwoInterfaceC, false);
Eval(19200, o is ImplementTwoInterfaceC[], false);
- Eval(19201, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19202, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19203, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(19204, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19205, o is ImplementAllInterfaceC<int>, false);
- Eval(19206, o is ImplementAllInterfaceC<int>[], false);
+// Eval(19201, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19202, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19203, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19204, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19205, o is ImplementAllInterfaceC<int>, false);
+// Eval(19206, o is ImplementAllInterfaceC<int>[], false);
Eval(19207, o is SealedClass, false);
Eval(19208, o is SealedClass[], false);
}
@@ -17782,26 +17782,26 @@ internal class Program
Eval(19214, o is NotEmptyStruct[], false);
Eval(19215, o is NotEmptyStruct?, false);
Eval(19216, o is NotEmptyStruct?[], false);
- Eval(19217, o is EmptyStructGen<int>, false);
- Eval(19218, o is EmptyStructGen<int>[], false);
- Eval(19219, o is EmptyStructGen<int>?, false);
- Eval(19220, o is EmptyStructGen<int>?[], false);
- Eval(19221, o is NotEmptyStructGen<Guid>, false);
- Eval(19222, o is NotEmptyStructGen<Guid>[], false);
- Eval(19223, o is NotEmptyStructGen<Guid>?, false);
- Eval(19224, o is NotEmptyStructGen<Guid>?[], false);
- Eval(19225, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19226, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19227, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19228, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19217, o is EmptyStructGen<int>, false);
+// Eval(19218, o is EmptyStructGen<int>[], false);
+// Eval(19219, o is EmptyStructGen<int>?, false);
+// Eval(19220, o is EmptyStructGen<int>?[], false);
+// Eval(19221, o is NotEmptyStructGen<Guid>, false);
+// Eval(19222, o is NotEmptyStructGen<Guid>[], false);
+// Eval(19223, o is NotEmptyStructGen<Guid>?, false);
+// Eval(19224, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(19225, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19226, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19227, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19228, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19229, o is NestedStruct, false);
Eval(19230, o is NestedStruct[], false);
Eval(19231, o is NestedStruct?, false);
Eval(19232, o is NestedStruct?[], false);
- Eval(19233, o is NestedStructGen<Decimal>, false);
- Eval(19234, o is NestedStructGen<Decimal>[], false);
- Eval(19235, o is NestedStructGen<Decimal>?, false);
- Eval(19236, o is NestedStructGen<Decimal>?[], false);
+// Eval(19233, o is NestedStructGen<Decimal>, false);
+// Eval(19234, o is NestedStructGen<Decimal>[], false);
+// Eval(19235, o is NestedStructGen<Decimal>?, false);
+// Eval(19236, o is NestedStructGen<Decimal>?[], false);
Eval(19237, o is ExplicitFieldOffsetStruct, false);
Eval(19238, o is ExplicitFieldOffsetStruct[], false);
Eval(19239, o is ExplicitFieldOffsetStruct?, false);
@@ -17818,18 +17818,18 @@ internal class Program
Eval(19258, o is ImplementTwoInterface[], false);
Eval(19259, o is ImplementTwoInterface?, false);
Eval(19260, o is ImplementTwoInterface?[], false);
- Eval(19261, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19262, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19263, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19264, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19265, o is ImplementTwoInterfaceGen<int>, false);
- Eval(19266, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(19267, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(19268, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19269, o is ImplementAllInterface<int>, false);
- Eval(19270, o is ImplementAllInterface<int>[], false);
- Eval(19271, o is ImplementAllInterface<int>?, false);
- Eval(19272, o is ImplementAllInterface<int>?[], false);
+// Eval(19261, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19262, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19263, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19264, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19265, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(19266, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19267, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19268, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19269, o is ImplementAllInterface<int>, false);
+// Eval(19270, o is ImplementAllInterface<int>[], false);
+// Eval(19271, o is ImplementAllInterface<int>?, false);
+// Eval(19272, o is ImplementAllInterface<int>?[], false);
Eval(19273, o is IntE, false);
Eval(19274, o is IntE[], false);
Eval(19275, o is IntE?, false);
@@ -17928,38 +17928,38 @@ internal class Program
Eval(19368, o is IEmpty[], false);
Eval(19369, o is INotEmpty, false);
Eval(19370, o is INotEmpty[], false);
- Eval(19371, o is IEmptyGen<int>, false);
- Eval(19372, o is IEmptyGen<int>[], false);
- Eval(19373, o is INotEmptyGen<int>, false);
- Eval(19374, o is INotEmptyGen<int>[], false);
+// Eval(19371, o is IEmptyGen<int>, false);
+// Eval(19372, o is IEmptyGen<int>[], false);
+// Eval(19373, o is INotEmptyGen<int>, false);
+// Eval(19374, o is INotEmptyGen<int>[], false);
Eval(19375, o is SimpleDelegate, false);
Eval(19376, o is SimpleDelegate[], false);
- Eval(19377, o is GenericDelegate<int>, false);
- Eval(19378, o is GenericDelegate<int>[], false);
+// Eval(19377, o is GenericDelegate<int>, false);
+// Eval(19378, o is GenericDelegate<int>[], false);
Eval(19379, o is EmptyClass, false);
Eval(19380, o is EmptyClass[], false);
Eval(19381, o is NotEmptyClass, false);
Eval(19382, o is NotEmptyClass[], false);
- Eval(19383, o is EmptyClassGen<int>, false);
- Eval(19384, o is EmptyClassGen<int>[], false);
- Eval(19385, o is NotEmptyClassGen<Guid>, false);
- Eval(19386, o is NotEmptyClassGen<Guid>[], false);
- Eval(19387, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(19388, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19383, o is EmptyClassGen<int>, false);
+// Eval(19384, o is EmptyClassGen<int>[], false);
+// Eval(19385, o is NotEmptyClassGen<Guid>, false);
+// Eval(19386, o is NotEmptyClassGen<Guid>[], false);
+// Eval(19387, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19388, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(19389, o is NestedClass, false);
Eval(19390, o is NestedClass[], false);
- Eval(19391, o is NestedClassGen<Decimal>, false);
- Eval(19392, o is NestedClassGen<Decimal>[], false);
+// Eval(19391, o is NestedClassGen<Decimal>, false);
+// Eval(19392, o is NestedClassGen<Decimal>[], false);
Eval(19393, o is ImplementOneInterfaceC, false);
Eval(19394, o is ImplementOneInterfaceC[], false);
Eval(19395, o is ImplementTwoInterfaceC, false);
Eval(19396, o is ImplementTwoInterfaceC[], false);
- Eval(19397, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19398, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19399, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(19400, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19401, o is ImplementAllInterfaceC<int>, false);
- Eval(19402, o is ImplementAllInterfaceC<int>[], false);
+// Eval(19397, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19398, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19399, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19400, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19401, o is ImplementAllInterfaceC<int>, false);
+// Eval(19402, o is ImplementAllInterfaceC<int>[], false);
Eval(19403, o is SealedClass, false);
Eval(19404, o is SealedClass[], false);
}
@@ -17977,26 +17977,26 @@ internal class Program
Eval(19410, o is NotEmptyStruct[], false);
Eval(19411, o is NotEmptyStruct?, false);
Eval(19412, o is NotEmptyStruct?[], false);
- Eval(19413, o is EmptyStructGen<int>, false);
- Eval(19414, o is EmptyStructGen<int>[], false);
- Eval(19415, o is EmptyStructGen<int>?, false);
- Eval(19416, o is EmptyStructGen<int>?[], false);
- Eval(19417, o is NotEmptyStructGen<Guid>, false);
- Eval(19418, o is NotEmptyStructGen<Guid>[], false);
- Eval(19419, o is NotEmptyStructGen<Guid>?, false);
- Eval(19420, o is NotEmptyStructGen<Guid>?[], false);
- Eval(19421, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19422, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19423, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19424, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19413, o is EmptyStructGen<int>, false);
+// Eval(19414, o is EmptyStructGen<int>[], false);
+// Eval(19415, o is EmptyStructGen<int>?, false);
+// Eval(19416, o is EmptyStructGen<int>?[], false);
+// Eval(19417, o is NotEmptyStructGen<Guid>, false);
+// Eval(19418, o is NotEmptyStructGen<Guid>[], false);
+// Eval(19419, o is NotEmptyStructGen<Guid>?, false);
+// Eval(19420, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(19421, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19422, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19423, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19424, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19425, o is NestedStruct, false);
Eval(19426, o is NestedStruct[], false);
Eval(19427, o is NestedStruct?, false);
Eval(19428, o is NestedStruct?[], false);
- Eval(19429, o is NestedStructGen<Decimal>, false);
- Eval(19430, o is NestedStructGen<Decimal>[], false);
- Eval(19431, o is NestedStructGen<Decimal>?, false);
- Eval(19432, o is NestedStructGen<Decimal>?[], false);
+// Eval(19429, o is NestedStructGen<Decimal>, false);
+// Eval(19430, o is NestedStructGen<Decimal>[], false);
+// Eval(19431, o is NestedStructGen<Decimal>?, false);
+// Eval(19432, o is NestedStructGen<Decimal>?[], false);
Eval(19433, o is ExplicitFieldOffsetStruct, false);
Eval(19434, o is ExplicitFieldOffsetStruct[], false);
Eval(19435, o is ExplicitFieldOffsetStruct?, false);
@@ -18013,18 +18013,18 @@ internal class Program
Eval(19454, o is ImplementTwoInterface[], false);
Eval(19455, o is ImplementTwoInterface?, false);
Eval(19456, o is ImplementTwoInterface?[], false);
- Eval(19457, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19458, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19459, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19460, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19461, o is ImplementTwoInterfaceGen<int>, false);
- Eval(19462, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(19463, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(19464, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19465, o is ImplementAllInterface<int>, false);
- Eval(19466, o is ImplementAllInterface<int>[], false);
- Eval(19467, o is ImplementAllInterface<int>?, false);
- Eval(19468, o is ImplementAllInterface<int>?[], false);
+// Eval(19457, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19458, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19459, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19460, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19461, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(19462, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19463, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19464, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19465, o is ImplementAllInterface<int>, false);
+// Eval(19466, o is ImplementAllInterface<int>[], false);
+// Eval(19467, o is ImplementAllInterface<int>?, false);
+// Eval(19468, o is ImplementAllInterface<int>?[], false);
Eval(19469, o is IntE, false);
Eval(19470, o is IntE[], false);
Eval(19471, o is IntE?, false);
@@ -18123,38 +18123,38 @@ internal class Program
Eval(19564, o is IEmpty[], false);
Eval(19565, o is INotEmpty, false);
Eval(19566, o is INotEmpty[], false);
- Eval(19567, o is IEmptyGen<int>, false);
- Eval(19568, o is IEmptyGen<int>[], false);
- Eval(19569, o is INotEmptyGen<int>, false);
- Eval(19570, o is INotEmptyGen<int>[], false);
+// Eval(19567, o is IEmptyGen<int>, false);
+// Eval(19568, o is IEmptyGen<int>[], false);
+// Eval(19569, o is INotEmptyGen<int>, false);
+// Eval(19570, o is INotEmptyGen<int>[], false);
Eval(19571, o is SimpleDelegate, false);
Eval(19572, o is SimpleDelegate[], false);
- Eval(19573, o is GenericDelegate<int>, false);
- Eval(19574, o is GenericDelegate<int>[], false);
+// Eval(19573, o is GenericDelegate<int>, false);
+// Eval(19574, o is GenericDelegate<int>[], false);
Eval(19575, o is EmptyClass, false);
Eval(19576, o is EmptyClass[], false);
Eval(19577, o is NotEmptyClass, false);
Eval(19578, o is NotEmptyClass[], false);
- Eval(19579, o is EmptyClassGen<int>, false);
- Eval(19580, o is EmptyClassGen<int>[], false);
- Eval(19581, o is NotEmptyClassGen<Guid>, false);
- Eval(19582, o is NotEmptyClassGen<Guid>[], false);
- Eval(19583, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(19584, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19579, o is EmptyClassGen<int>, false);
+// Eval(19580, o is EmptyClassGen<int>[], false);
+// Eval(19581, o is NotEmptyClassGen<Guid>, false);
+// Eval(19582, o is NotEmptyClassGen<Guid>[], false);
+// Eval(19583, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19584, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(19585, o is NestedClass, false);
Eval(19586, o is NestedClass[], false);
- Eval(19587, o is NestedClassGen<Decimal>, false);
- Eval(19588, o is NestedClassGen<Decimal>[], false);
+// Eval(19587, o is NestedClassGen<Decimal>, false);
+// Eval(19588, o is NestedClassGen<Decimal>[], false);
Eval(19589, o is ImplementOneInterfaceC, false);
Eval(19590, o is ImplementOneInterfaceC[], false);
Eval(19591, o is ImplementTwoInterfaceC, false);
Eval(19592, o is ImplementTwoInterfaceC[], false);
- Eval(19593, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19594, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19595, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(19596, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19597, o is ImplementAllInterfaceC<int>, false);
- Eval(19598, o is ImplementAllInterfaceC<int>[], false);
+// Eval(19593, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19594, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19595, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19596, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19597, o is ImplementAllInterfaceC<int>, false);
+// Eval(19598, o is ImplementAllInterfaceC<int>[], false);
Eval(19599, o is SealedClass, false);
Eval(19600, o is SealedClass[], false);
}
@@ -18169,26 +18169,26 @@ internal class Program
Eval(19606, o is NotEmptyStruct[], false);
Eval(19607, o is NotEmptyStruct?, false);
Eval(19608, o is NotEmptyStruct?[], false);
- Eval(19609, o is EmptyStructGen<int>, false);
- Eval(19610, o is EmptyStructGen<int>[], false);
- Eval(19611, o is EmptyStructGen<int>?, false);
- Eval(19612, o is EmptyStructGen<int>?[], false);
- Eval(19613, o is NotEmptyStructGen<Guid>, false);
- Eval(19614, o is NotEmptyStructGen<Guid>[], false);
- Eval(19615, o is NotEmptyStructGen<Guid>?, false);
- Eval(19616, o is NotEmptyStructGen<Guid>?[], false);
- Eval(19617, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19618, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19619, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19620, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19609, o is EmptyStructGen<int>, false);
+// Eval(19610, o is EmptyStructGen<int>[], false);
+// Eval(19611, o is EmptyStructGen<int>?, false);
+// Eval(19612, o is EmptyStructGen<int>?[], false);
+// Eval(19613, o is NotEmptyStructGen<Guid>, false);
+// Eval(19614, o is NotEmptyStructGen<Guid>[], false);
+// Eval(19615, o is NotEmptyStructGen<Guid>?, false);
+// Eval(19616, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(19617, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19618, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19619, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19620, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19621, o is NestedStruct, false);
Eval(19622, o is NestedStruct[], false);
Eval(19623, o is NestedStruct?, false);
Eval(19624, o is NestedStruct?[], false);
- Eval(19625, o is NestedStructGen<Decimal>, false);
- Eval(19626, o is NestedStructGen<Decimal>[], false);
- Eval(19627, o is NestedStructGen<Decimal>?, false);
- Eval(19628, o is NestedStructGen<Decimal>?[], false);
+// Eval(19625, o is NestedStructGen<Decimal>, false);
+// Eval(19626, o is NestedStructGen<Decimal>[], false);
+// Eval(19627, o is NestedStructGen<Decimal>?, false);
+// Eval(19628, o is NestedStructGen<Decimal>?[], false);
Eval(19629, o is ExplicitFieldOffsetStruct, false);
Eval(19630, o is ExplicitFieldOffsetStruct[], false);
Eval(19631, o is ExplicitFieldOffsetStruct?, false);
@@ -18205,18 +18205,18 @@ internal class Program
Eval(19650, o is ImplementTwoInterface[], false);
Eval(19651, o is ImplementTwoInterface?, false);
Eval(19652, o is ImplementTwoInterface?[], false);
- Eval(19653, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19654, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19655, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19656, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19657, o is ImplementTwoInterfaceGen<int>, false);
- Eval(19658, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(19659, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(19660, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19661, o is ImplementAllInterface<int>, false);
- Eval(19662, o is ImplementAllInterface<int>[], false);
- Eval(19663, o is ImplementAllInterface<int>?, false);
- Eval(19664, o is ImplementAllInterface<int>?[], false);
+// Eval(19653, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19654, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19655, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19656, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19657, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(19658, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19659, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19660, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19661, o is ImplementAllInterface<int>, false);
+// Eval(19662, o is ImplementAllInterface<int>[], false);
+// Eval(19663, o is ImplementAllInterface<int>?, false);
+// Eval(19664, o is ImplementAllInterface<int>?[], false);
Eval(19665, o is IntE, false);
Eval(19666, o is IntE[], false);
Eval(19667, o is IntE?, false);
@@ -18315,38 +18315,38 @@ internal class Program
Eval(19760, o is IEmpty[], false);
Eval(19761, o is INotEmpty, false);
Eval(19762, o is INotEmpty[], false);
- Eval(19763, o is IEmptyGen<int>, false);
- Eval(19764, o is IEmptyGen<int>[], false);
- Eval(19765, o is INotEmptyGen<int>, false);
- Eval(19766, o is INotEmptyGen<int>[], false);
+// Eval(19763, o is IEmptyGen<int>, false);
+// Eval(19764, o is IEmptyGen<int>[], false);
+// Eval(19765, o is INotEmptyGen<int>, false);
+// Eval(19766, o is INotEmptyGen<int>[], false);
Eval(19767, o is SimpleDelegate, false);
Eval(19768, o is SimpleDelegate[], false);
- Eval(19769, o is GenericDelegate<int>, false);
- Eval(19770, o is GenericDelegate<int>[], false);
+// Eval(19769, o is GenericDelegate<int>, false);
+// Eval(19770, o is GenericDelegate<int>[], false);
Eval(19771, o is EmptyClass, false);
Eval(19772, o is EmptyClass[], false);
Eval(19773, o is NotEmptyClass, false);
Eval(19774, o is NotEmptyClass[], false);
- Eval(19775, o is EmptyClassGen<int>, false);
- Eval(19776, o is EmptyClassGen<int>[], false);
- Eval(19777, o is NotEmptyClassGen<Guid>, false);
- Eval(19778, o is NotEmptyClassGen<Guid>[], false);
- Eval(19779, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(19780, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19775, o is EmptyClassGen<int>, false);
+// Eval(19776, o is EmptyClassGen<int>[], false);
+// Eval(19777, o is NotEmptyClassGen<Guid>, false);
+// Eval(19778, o is NotEmptyClassGen<Guid>[], false);
+// Eval(19779, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19780, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(19781, o is NestedClass, false);
Eval(19782, o is NestedClass[], false);
- Eval(19783, o is NestedClassGen<Decimal>, false);
- Eval(19784, o is NestedClassGen<Decimal>[], false);
+// Eval(19783, o is NestedClassGen<Decimal>, false);
+// Eval(19784, o is NestedClassGen<Decimal>[], false);
Eval(19785, o is ImplementOneInterfaceC, false);
Eval(19786, o is ImplementOneInterfaceC[], false);
Eval(19787, o is ImplementTwoInterfaceC, false);
Eval(19788, o is ImplementTwoInterfaceC[], false);
- Eval(19789, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19790, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19791, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(19792, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19793, o is ImplementAllInterfaceC<int>, false);
- Eval(19794, o is ImplementAllInterfaceC<int>[], false);
+// Eval(19789, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19790, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19791, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19792, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19793, o is ImplementAllInterfaceC<int>, false);
+// Eval(19794, o is ImplementAllInterfaceC<int>[], false);
Eval(19795, o is SealedClass, false);
Eval(19796, o is SealedClass[], false);
}
@@ -18361,26 +18361,26 @@ internal class Program
Eval(19802, o is NotEmptyStruct[], false);
Eval(19803, o is NotEmptyStruct?, false);
Eval(19804, o is NotEmptyStruct?[], false);
- Eval(19805, o is EmptyStructGen<int>, false);
- Eval(19806, o is EmptyStructGen<int>[], false);
- Eval(19807, o is EmptyStructGen<int>?, false);
- Eval(19808, o is EmptyStructGen<int>?[], false);
- Eval(19809, o is NotEmptyStructGen<Guid>, false);
- Eval(19810, o is NotEmptyStructGen<Guid>[], false);
- Eval(19811, o is NotEmptyStructGen<Guid>?, false);
- Eval(19812, o is NotEmptyStructGen<Guid>?[], false);
- Eval(19813, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(19814, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(19815, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(19816, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(19805, o is EmptyStructGen<int>, false);
+// Eval(19806, o is EmptyStructGen<int>[], false);
+// Eval(19807, o is EmptyStructGen<int>?, false);
+// Eval(19808, o is EmptyStructGen<int>?[], false);
+// Eval(19809, o is NotEmptyStructGen<Guid>, false);
+// Eval(19810, o is NotEmptyStructGen<Guid>[], false);
+// Eval(19811, o is NotEmptyStructGen<Guid>?, false);
+// Eval(19812, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(19813, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(19814, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(19815, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(19816, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(19817, o is NestedStruct, false);
Eval(19818, o is NestedStruct[], false);
Eval(19819, o is NestedStruct?, false);
Eval(19820, o is NestedStruct?[], false);
- Eval(19821, o is NestedStructGen<Decimal>, false);
- Eval(19822, o is NestedStructGen<Decimal>[], false);
- Eval(19823, o is NestedStructGen<Decimal>?, false);
- Eval(19824, o is NestedStructGen<Decimal>?[], false);
+// Eval(19821, o is NestedStructGen<Decimal>, false);
+// Eval(19822, o is NestedStructGen<Decimal>[], false);
+// Eval(19823, o is NestedStructGen<Decimal>?, false);
+// Eval(19824, o is NestedStructGen<Decimal>?[], false);
Eval(19825, o is ExplicitFieldOffsetStruct, false);
Eval(19826, o is ExplicitFieldOffsetStruct[], false);
Eval(19827, o is ExplicitFieldOffsetStruct?, false);
@@ -18397,18 +18397,18 @@ internal class Program
Eval(19846, o is ImplementTwoInterface[], false);
Eval(19847, o is ImplementTwoInterface?, false);
Eval(19848, o is ImplementTwoInterface?[], false);
- Eval(19849, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(19850, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(19851, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(19852, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(19853, o is ImplementTwoInterfaceGen<int>, false);
- Eval(19854, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(19855, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(19856, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(19857, o is ImplementAllInterface<int>, false);
- Eval(19858, o is ImplementAllInterface<int>[], false);
- Eval(19859, o is ImplementAllInterface<int>?, false);
- Eval(19860, o is ImplementAllInterface<int>?[], false);
+// Eval(19849, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(19850, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(19851, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(19852, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(19853, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(19854, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(19855, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(19856, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(19857, o is ImplementAllInterface<int>, false);
+// Eval(19858, o is ImplementAllInterface<int>[], false);
+// Eval(19859, o is ImplementAllInterface<int>?, false);
+// Eval(19860, o is ImplementAllInterface<int>?[], false);
Eval(19861, o is IntE, false);
Eval(19862, o is IntE[], false);
Eval(19863, o is IntE?, false);
@@ -18507,38 +18507,38 @@ internal class Program
Eval(19956, o is IEmpty[], false);
Eval(19957, o is INotEmpty, false);
Eval(19958, o is INotEmpty[], false);
- Eval(19959, o is IEmptyGen<int>, false);
- Eval(19960, o is IEmptyGen<int>[], false);
- Eval(19961, o is INotEmptyGen<int>, false);
- Eval(19962, o is INotEmptyGen<int>[], false);
+// Eval(19959, o is IEmptyGen<int>, false);
+// Eval(19960, o is IEmptyGen<int>[], false);
+// Eval(19961, o is INotEmptyGen<int>, false);
+// Eval(19962, o is INotEmptyGen<int>[], false);
Eval(19963, o is SimpleDelegate, false);
Eval(19964, o is SimpleDelegate[], false);
- Eval(19965, o is GenericDelegate<int>, false);
- Eval(19966, o is GenericDelegate<int>[], false);
+// Eval(19965, o is GenericDelegate<int>, false);
+// Eval(19966, o is GenericDelegate<int>[], false);
Eval(19967, o is EmptyClass, false);
Eval(19968, o is EmptyClass[], false);
Eval(19969, o is NotEmptyClass, false);
Eval(19970, o is NotEmptyClass[], false);
- Eval(19971, o is EmptyClassGen<int>, false);
- Eval(19972, o is EmptyClassGen<int>[], false);
- Eval(19973, o is NotEmptyClassGen<Guid>, false);
- Eval(19974, o is NotEmptyClassGen<Guid>[], false);
- Eval(19975, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(19976, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(19971, o is EmptyClassGen<int>, false);
+// Eval(19972, o is EmptyClassGen<int>[], false);
+// Eval(19973, o is NotEmptyClassGen<Guid>, false);
+// Eval(19974, o is NotEmptyClassGen<Guid>[], false);
+// Eval(19975, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(19976, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(19977, o is NestedClass, false);
Eval(19978, o is NestedClass[], false);
- Eval(19979, o is NestedClassGen<Decimal>, false);
- Eval(19980, o is NestedClassGen<Decimal>[], false);
+// Eval(19979, o is NestedClassGen<Decimal>, false);
+// Eval(19980, o is NestedClassGen<Decimal>[], false);
Eval(19981, o is ImplementOneInterfaceC, false);
Eval(19982, o is ImplementOneInterfaceC[], false);
Eval(19983, o is ImplementTwoInterfaceC, false);
Eval(19984, o is ImplementTwoInterfaceC[], false);
- Eval(19985, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(19986, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(19987, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(19988, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(19989, o is ImplementAllInterfaceC<int>, false);
- Eval(19990, o is ImplementAllInterfaceC<int>[], false);
+// Eval(19985, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(19986, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(19987, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(19988, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(19989, o is ImplementAllInterfaceC<int>, false);
+// Eval(19990, o is ImplementAllInterfaceC<int>[], false);
Eval(19991, o is SealedClass, false);
Eval(19992, o is SealedClass[], false);
}
@@ -18556,26 +18556,26 @@ internal class Program
Eval(19998, o is NotEmptyStruct[], false);
Eval(19999, o is NotEmptyStruct?, false);
Eval(20000, o is NotEmptyStruct?[], false);
- Eval(20001, o is EmptyStructGen<int>, false);
- Eval(20002, o is EmptyStructGen<int>[], false);
- Eval(20003, o is EmptyStructGen<int>?, false);
- Eval(20004, o is EmptyStructGen<int>?[], false);
- Eval(20005, o is NotEmptyStructGen<Guid>, false);
- Eval(20006, o is NotEmptyStructGen<Guid>[], false);
- Eval(20007, o is NotEmptyStructGen<Guid>?, false);
- Eval(20008, o is NotEmptyStructGen<Guid>?[], false);
- Eval(20009, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20010, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20011, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20012, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20001, o is EmptyStructGen<int>, false);
+// Eval(20002, o is EmptyStructGen<int>[], false);
+// Eval(20003, o is EmptyStructGen<int>?, false);
+// Eval(20004, o is EmptyStructGen<int>?[], false);
+// Eval(20005, o is NotEmptyStructGen<Guid>, false);
+// Eval(20006, o is NotEmptyStructGen<Guid>[], false);
+// Eval(20007, o is NotEmptyStructGen<Guid>?, false);
+// Eval(20008, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(20009, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20010, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20011, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20012, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20013, o is NestedStruct, false);
Eval(20014, o is NestedStruct[], false);
Eval(20015, o is NestedStruct?, false);
Eval(20016, o is NestedStruct?[], false);
- Eval(20017, o is NestedStructGen<Decimal>, false);
- Eval(20018, o is NestedStructGen<Decimal>[], false);
- Eval(20019, o is NestedStructGen<Decimal>?, false);
- Eval(20020, o is NestedStructGen<Decimal>?[], false);
+// Eval(20017, o is NestedStructGen<Decimal>, false);
+// Eval(20018, o is NestedStructGen<Decimal>[], false);
+// Eval(20019, o is NestedStructGen<Decimal>?, false);
+// Eval(20020, o is NestedStructGen<Decimal>?[], false);
Eval(20021, o is ExplicitFieldOffsetStruct, false);
Eval(20022, o is ExplicitFieldOffsetStruct[], false);
Eval(20023, o is ExplicitFieldOffsetStruct?, false);
@@ -18592,18 +18592,18 @@ internal class Program
Eval(20042, o is ImplementTwoInterface[], false);
Eval(20043, o is ImplementTwoInterface?, false);
Eval(20044, o is ImplementTwoInterface?[], false);
- Eval(20045, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20046, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20047, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20048, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20049, o is ImplementTwoInterfaceGen<int>, false);
- Eval(20050, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(20051, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(20052, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20053, o is ImplementAllInterface<int>, false);
- Eval(20054, o is ImplementAllInterface<int>[], false);
- Eval(20055, o is ImplementAllInterface<int>?, false);
- Eval(20056, o is ImplementAllInterface<int>?[], false);
+// Eval(20045, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20046, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20047, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20048, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20049, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(20050, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20051, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20052, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20053, o is ImplementAllInterface<int>, false);
+// Eval(20054, o is ImplementAllInterface<int>[], false);
+// Eval(20055, o is ImplementAllInterface<int>?, false);
+// Eval(20056, o is ImplementAllInterface<int>?[], false);
Eval(20057, o is IntE, false);
Eval(20058, o is IntE[], false);
Eval(20059, o is IntE?, false);
@@ -18702,38 +18702,38 @@ internal class Program
Eval(20152, o is IEmpty[], false);
Eval(20153, o is INotEmpty, false);
Eval(20154, o is INotEmpty[], false);
- Eval(20155, o is IEmptyGen<int>, false);
- Eval(20156, o is IEmptyGen<int>[], false);
- Eval(20157, o is INotEmptyGen<int>, false);
- Eval(20158, o is INotEmptyGen<int>[], false);
+// Eval(20155, o is IEmptyGen<int>, false);
+// Eval(20156, o is IEmptyGen<int>[], false);
+// Eval(20157, o is INotEmptyGen<int>, false);
+// Eval(20158, o is INotEmptyGen<int>[], false);
Eval(20159, o is SimpleDelegate, false);
Eval(20160, o is SimpleDelegate[], false);
- Eval(20161, o is GenericDelegate<int>, false);
- Eval(20162, o is GenericDelegate<int>[], false);
+// Eval(20161, o is GenericDelegate<int>, false);
+// Eval(20162, o is GenericDelegate<int>[], false);
Eval(20163, o is EmptyClass, false);
Eval(20164, o is EmptyClass[], false);
Eval(20165, o is NotEmptyClass, false);
Eval(20166, o is NotEmptyClass[], false);
- Eval(20167, o is EmptyClassGen<int>, false);
- Eval(20168, o is EmptyClassGen<int>[], false);
- Eval(20169, o is NotEmptyClassGen<Guid>, false);
- Eval(20170, o is NotEmptyClassGen<Guid>[], false);
- Eval(20171, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(20172, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20167, o is EmptyClassGen<int>, false);
+// Eval(20168, o is EmptyClassGen<int>[], false);
+// Eval(20169, o is NotEmptyClassGen<Guid>, false);
+// Eval(20170, o is NotEmptyClassGen<Guid>[], false);
+// Eval(20171, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20172, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(20173, o is NestedClass, false);
Eval(20174, o is NestedClass[], false);
- Eval(20175, o is NestedClassGen<Decimal>, false);
- Eval(20176, o is NestedClassGen<Decimal>[], false);
+// Eval(20175, o is NestedClassGen<Decimal>, false);
+// Eval(20176, o is NestedClassGen<Decimal>[], false);
Eval(20177, o is ImplementOneInterfaceC, false);
Eval(20178, o is ImplementOneInterfaceC[], false);
Eval(20179, o is ImplementTwoInterfaceC, false);
Eval(20180, o is ImplementTwoInterfaceC[], false);
- Eval(20181, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20182, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20183, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(20184, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20185, o is ImplementAllInterfaceC<int>, false);
- Eval(20186, o is ImplementAllInterfaceC<int>[], false);
+// Eval(20181, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20182, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20183, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20184, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20185, o is ImplementAllInterfaceC<int>, false);
+// Eval(20186, o is ImplementAllInterfaceC<int>[], false);
Eval(20187, o is SealedClass, false);
Eval(20188, o is SealedClass[], false);
}
@@ -18748,26 +18748,26 @@ internal class Program
Eval(20194, o is NotEmptyStruct[], false);
Eval(20195, o is NotEmptyStruct?, false);
Eval(20196, o is NotEmptyStruct?[], false);
- Eval(20197, o is EmptyStructGen<int>, false);
- Eval(20198, o is EmptyStructGen<int>[], false);
- Eval(20199, o is EmptyStructGen<int>?, false);
- Eval(20200, o is EmptyStructGen<int>?[], false);
- Eval(20201, o is NotEmptyStructGen<Guid>, false);
- Eval(20202, o is NotEmptyStructGen<Guid>[], false);
- Eval(20203, o is NotEmptyStructGen<Guid>?, false);
- Eval(20204, o is NotEmptyStructGen<Guid>?[], false);
- Eval(20205, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20206, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20207, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20208, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20197, o is EmptyStructGen<int>, false);
+// Eval(20198, o is EmptyStructGen<int>[], false);
+// Eval(20199, o is EmptyStructGen<int>?, false);
+// Eval(20200, o is EmptyStructGen<int>?[], false);
+// Eval(20201, o is NotEmptyStructGen<Guid>, false);
+// Eval(20202, o is NotEmptyStructGen<Guid>[], false);
+// Eval(20203, o is NotEmptyStructGen<Guid>?, false);
+// Eval(20204, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(20205, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20206, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20207, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20208, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20209, o is NestedStruct, false);
Eval(20210, o is NestedStruct[], false);
Eval(20211, o is NestedStruct?, false);
Eval(20212, o is NestedStruct?[], false);
- Eval(20213, o is NestedStructGen<Decimal>, false);
- Eval(20214, o is NestedStructGen<Decimal>[], false);
- Eval(20215, o is NestedStructGen<Decimal>?, false);
- Eval(20216, o is NestedStructGen<Decimal>?[], false);
+// Eval(20213, o is NestedStructGen<Decimal>, false);
+// Eval(20214, o is NestedStructGen<Decimal>[], false);
+// Eval(20215, o is NestedStructGen<Decimal>?, false);
+// Eval(20216, o is NestedStructGen<Decimal>?[], false);
Eval(20217, o is ExplicitFieldOffsetStruct, false);
Eval(20218, o is ExplicitFieldOffsetStruct[], false);
Eval(20219, o is ExplicitFieldOffsetStruct?, false);
@@ -18784,18 +18784,18 @@ internal class Program
Eval(20238, o is ImplementTwoInterface[], false);
Eval(20239, o is ImplementTwoInterface?, false);
Eval(20240, o is ImplementTwoInterface?[], false);
- Eval(20241, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20242, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20243, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20244, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20245, o is ImplementTwoInterfaceGen<int>, false);
- Eval(20246, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(20247, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(20248, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20249, o is ImplementAllInterface<int>, false);
- Eval(20250, o is ImplementAllInterface<int>[], false);
- Eval(20251, o is ImplementAllInterface<int>?, false);
- Eval(20252, o is ImplementAllInterface<int>?[], false);
+// Eval(20241, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20242, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20243, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20244, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20245, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(20246, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20247, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20248, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20249, o is ImplementAllInterface<int>, false);
+// Eval(20250, o is ImplementAllInterface<int>[], false);
+// Eval(20251, o is ImplementAllInterface<int>?, false);
+// Eval(20252, o is ImplementAllInterface<int>?[], false);
Eval(20253, o is IntE, false);
Eval(20254, o is IntE[], false);
Eval(20255, o is IntE?, false);
@@ -18894,38 +18894,38 @@ internal class Program
Eval(20348, o is IEmpty[], false);
Eval(20349, o is INotEmpty, false);
Eval(20350, o is INotEmpty[], false);
- Eval(20351, o is IEmptyGen<int>, false);
- Eval(20352, o is IEmptyGen<int>[], false);
- Eval(20353, o is INotEmptyGen<int>, false);
- Eval(20354, o is INotEmptyGen<int>[], false);
+// Eval(20351, o is IEmptyGen<int>, false);
+// Eval(20352, o is IEmptyGen<int>[], false);
+// Eval(20353, o is INotEmptyGen<int>, false);
+// Eval(20354, o is INotEmptyGen<int>[], false);
Eval(20355, o is SimpleDelegate, false);
Eval(20356, o is SimpleDelegate[], false);
- Eval(20357, o is GenericDelegate<int>, false);
- Eval(20358, o is GenericDelegate<int>[], false);
+// Eval(20357, o is GenericDelegate<int>, false);
+// Eval(20358, o is GenericDelegate<int>[], false);
Eval(20359, o is EmptyClass, false);
Eval(20360, o is EmptyClass[], false);
Eval(20361, o is NotEmptyClass, false);
Eval(20362, o is NotEmptyClass[], false);
- Eval(20363, o is EmptyClassGen<int>, false);
- Eval(20364, o is EmptyClassGen<int>[], false);
- Eval(20365, o is NotEmptyClassGen<Guid>, false);
- Eval(20366, o is NotEmptyClassGen<Guid>[], false);
- Eval(20367, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(20368, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20363, o is EmptyClassGen<int>, false);
+// Eval(20364, o is EmptyClassGen<int>[], false);
+// Eval(20365, o is NotEmptyClassGen<Guid>, false);
+// Eval(20366, o is NotEmptyClassGen<Guid>[], false);
+// Eval(20367, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20368, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(20369, o is NestedClass, false);
Eval(20370, o is NestedClass[], false);
- Eval(20371, o is NestedClassGen<Decimal>, false);
- Eval(20372, o is NestedClassGen<Decimal>[], false);
+// Eval(20371, o is NestedClassGen<Decimal>, false);
+// Eval(20372, o is NestedClassGen<Decimal>[], false);
Eval(20373, o is ImplementOneInterfaceC, false);
Eval(20374, o is ImplementOneInterfaceC[], false);
Eval(20375, o is ImplementTwoInterfaceC, false);
Eval(20376, o is ImplementTwoInterfaceC[], false);
- Eval(20377, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20378, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20379, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(20380, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20381, o is ImplementAllInterfaceC<int>, false);
- Eval(20382, o is ImplementAllInterfaceC<int>[], false);
+// Eval(20377, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20378, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20379, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20380, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20381, o is ImplementAllInterfaceC<int>, false);
+// Eval(20382, o is ImplementAllInterfaceC<int>[], false);
Eval(20383, o is SealedClass, false);
Eval(20384, o is SealedClass[], false);
}
@@ -18940,26 +18940,26 @@ internal class Program
Eval(20390, o is NotEmptyStruct[], false);
Eval(20391, o is NotEmptyStruct?, false);
Eval(20392, o is NotEmptyStruct?[], false);
- Eval(20393, o is EmptyStructGen<int>, false);
- Eval(20394, o is EmptyStructGen<int>[], false);
- Eval(20395, o is EmptyStructGen<int>?, false);
- Eval(20396, o is EmptyStructGen<int>?[], false);
- Eval(20397, o is NotEmptyStructGen<Guid>, false);
- Eval(20398, o is NotEmptyStructGen<Guid>[], false);
- Eval(20399, o is NotEmptyStructGen<Guid>?, false);
- Eval(20400, o is NotEmptyStructGen<Guid>?[], false);
- Eval(20401, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20402, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20403, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20404, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20393, o is EmptyStructGen<int>, false);
+// Eval(20394, o is EmptyStructGen<int>[], false);
+// Eval(20395, o is EmptyStructGen<int>?, false);
+// Eval(20396, o is EmptyStructGen<int>?[], false);
+// Eval(20397, o is NotEmptyStructGen<Guid>, false);
+// Eval(20398, o is NotEmptyStructGen<Guid>[], false);
+// Eval(20399, o is NotEmptyStructGen<Guid>?, false);
+// Eval(20400, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(20401, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20402, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20403, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20404, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20405, o is NestedStruct, false);
Eval(20406, o is NestedStruct[], false);
Eval(20407, o is NestedStruct?, false);
Eval(20408, o is NestedStruct?[], false);
- Eval(20409, o is NestedStructGen<Decimal>, false);
- Eval(20410, o is NestedStructGen<Decimal>[], false);
- Eval(20411, o is NestedStructGen<Decimal>?, false);
- Eval(20412, o is NestedStructGen<Decimal>?[], false);
+// Eval(20409, o is NestedStructGen<Decimal>, false);
+// Eval(20410, o is NestedStructGen<Decimal>[], false);
+// Eval(20411, o is NestedStructGen<Decimal>?, false);
+// Eval(20412, o is NestedStructGen<Decimal>?[], false);
Eval(20413, o is ExplicitFieldOffsetStruct, false);
Eval(20414, o is ExplicitFieldOffsetStruct[], false);
Eval(20415, o is ExplicitFieldOffsetStruct?, false);
@@ -18976,18 +18976,18 @@ internal class Program
Eval(20434, o is ImplementTwoInterface[], false);
Eval(20435, o is ImplementTwoInterface?, false);
Eval(20436, o is ImplementTwoInterface?[], false);
- Eval(20437, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20438, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20439, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20440, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20441, o is ImplementTwoInterfaceGen<int>, false);
- Eval(20442, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(20443, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(20444, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20445, o is ImplementAllInterface<int>, false);
- Eval(20446, o is ImplementAllInterface<int>[], false);
- Eval(20447, o is ImplementAllInterface<int>?, false);
- Eval(20448, o is ImplementAllInterface<int>?[], false);
+// Eval(20437, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20438, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20439, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20440, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20441, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(20442, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20443, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20444, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20445, o is ImplementAllInterface<int>, false);
+// Eval(20446, o is ImplementAllInterface<int>[], false);
+// Eval(20447, o is ImplementAllInterface<int>?, false);
+// Eval(20448, o is ImplementAllInterface<int>?[], false);
Eval(20449, o is IntE, false);
Eval(20450, o is IntE[], false);
Eval(20451, o is IntE?, false);
@@ -19086,38 +19086,38 @@ internal class Program
Eval(20544, o is IEmpty[], false);
Eval(20545, o is INotEmpty, false);
Eval(20546, o is INotEmpty[], false);
- Eval(20547, o is IEmptyGen<int>, false);
- Eval(20548, o is IEmptyGen<int>[], false);
- Eval(20549, o is INotEmptyGen<int>, false);
- Eval(20550, o is INotEmptyGen<int>[], false);
+// Eval(20547, o is IEmptyGen<int>, false);
+// Eval(20548, o is IEmptyGen<int>[], false);
+// Eval(20549, o is INotEmptyGen<int>, false);
+// Eval(20550, o is INotEmptyGen<int>[], false);
Eval(20551, o is SimpleDelegate, false);
Eval(20552, o is SimpleDelegate[], false);
- Eval(20553, o is GenericDelegate<int>, false);
- Eval(20554, o is GenericDelegate<int>[], false);
+// Eval(20553, o is GenericDelegate<int>, false);
+// Eval(20554, o is GenericDelegate<int>[], false);
Eval(20555, o is EmptyClass, false);
Eval(20556, o is EmptyClass[], false);
Eval(20557, o is NotEmptyClass, false);
Eval(20558, o is NotEmptyClass[], false);
- Eval(20559, o is EmptyClassGen<int>, false);
- Eval(20560, o is EmptyClassGen<int>[], false);
- Eval(20561, o is NotEmptyClassGen<Guid>, false);
- Eval(20562, o is NotEmptyClassGen<Guid>[], false);
- Eval(20563, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(20564, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20559, o is EmptyClassGen<int>, false);
+// Eval(20560, o is EmptyClassGen<int>[], false);
+// Eval(20561, o is NotEmptyClassGen<Guid>, false);
+// Eval(20562, o is NotEmptyClassGen<Guid>[], false);
+// Eval(20563, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20564, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(20565, o is NestedClass, false);
Eval(20566, o is NestedClass[], false);
- Eval(20567, o is NestedClassGen<Decimal>, false);
- Eval(20568, o is NestedClassGen<Decimal>[], false);
+// Eval(20567, o is NestedClassGen<Decimal>, false);
+// Eval(20568, o is NestedClassGen<Decimal>[], false);
Eval(20569, o is ImplementOneInterfaceC, false);
Eval(20570, o is ImplementOneInterfaceC[], false);
Eval(20571, o is ImplementTwoInterfaceC, false);
Eval(20572, o is ImplementTwoInterfaceC[], false);
- Eval(20573, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20574, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20575, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(20576, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20577, o is ImplementAllInterfaceC<int>, false);
- Eval(20578, o is ImplementAllInterfaceC<int>[], false);
+// Eval(20573, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20574, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20575, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20576, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20577, o is ImplementAllInterfaceC<int>, false);
+// Eval(20578, o is ImplementAllInterfaceC<int>[], false);
Eval(20579, o is SealedClass, false);
Eval(20580, o is SealedClass[], false);
}
@@ -19135,26 +19135,26 @@ internal class Program
Eval(20586, o is NotEmptyStruct[], false);
Eval(20587, o is NotEmptyStruct?, false);
Eval(20588, o is NotEmptyStruct?[], false);
- Eval(20589, o is EmptyStructGen<int>, false);
- Eval(20590, o is EmptyStructGen<int>[], false);
- Eval(20591, o is EmptyStructGen<int>?, false);
- Eval(20592, o is EmptyStructGen<int>?[], false);
- Eval(20593, o is NotEmptyStructGen<Guid>, false);
- Eval(20594, o is NotEmptyStructGen<Guid>[], false);
- Eval(20595, o is NotEmptyStructGen<Guid>?, false);
- Eval(20596, o is NotEmptyStructGen<Guid>?[], false);
- Eval(20597, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20598, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20599, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20600, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20589, o is EmptyStructGen<int>, false);
+// Eval(20590, o is EmptyStructGen<int>[], false);
+// Eval(20591, o is EmptyStructGen<int>?, false);
+// Eval(20592, o is EmptyStructGen<int>?[], false);
+// Eval(20593, o is NotEmptyStructGen<Guid>, false);
+// Eval(20594, o is NotEmptyStructGen<Guid>[], false);
+// Eval(20595, o is NotEmptyStructGen<Guid>?, false);
+// Eval(20596, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(20597, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20598, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20599, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20600, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20601, o is NestedStruct, false);
Eval(20602, o is NestedStruct[], false);
Eval(20603, o is NestedStruct?, false);
Eval(20604, o is NestedStruct?[], false);
- Eval(20605, o is NestedStructGen<Decimal>, false);
- Eval(20606, o is NestedStructGen<Decimal>[], false);
- Eval(20607, o is NestedStructGen<Decimal>?, false);
- Eval(20608, o is NestedStructGen<Decimal>?[], false);
+// Eval(20605, o is NestedStructGen<Decimal>, false);
+// Eval(20606, o is NestedStructGen<Decimal>[], false);
+// Eval(20607, o is NestedStructGen<Decimal>?, false);
+// Eval(20608, o is NestedStructGen<Decimal>?[], false);
Eval(20609, o is ExplicitFieldOffsetStruct, false);
Eval(20610, o is ExplicitFieldOffsetStruct[], false);
Eval(20611, o is ExplicitFieldOffsetStruct?, false);
@@ -19171,18 +19171,18 @@ internal class Program
Eval(20630, o is ImplementTwoInterface[], false);
Eval(20631, o is ImplementTwoInterface?, false);
Eval(20632, o is ImplementTwoInterface?[], false);
- Eval(20633, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20634, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20635, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20636, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20637, o is ImplementTwoInterfaceGen<int>, false);
- Eval(20638, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(20639, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(20640, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20641, o is ImplementAllInterface<int>, false);
- Eval(20642, o is ImplementAllInterface<int>[], false);
- Eval(20643, o is ImplementAllInterface<int>?, false);
- Eval(20644, o is ImplementAllInterface<int>?[], false);
+// Eval(20633, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20634, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20635, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20636, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20637, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(20638, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20639, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20640, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20641, o is ImplementAllInterface<int>, false);
+// Eval(20642, o is ImplementAllInterface<int>[], false);
+// Eval(20643, o is ImplementAllInterface<int>?, false);
+// Eval(20644, o is ImplementAllInterface<int>?[], false);
Eval(20645, o is IntE, false);
Eval(20646, o is IntE[], false);
Eval(20647, o is IntE?, false);
@@ -19281,38 +19281,38 @@ internal class Program
Eval(20740, o is IEmpty[], false);
Eval(20741, o is INotEmpty, false);
Eval(20742, o is INotEmpty[], false);
- Eval(20743, o is IEmptyGen<int>, false);
- Eval(20744, o is IEmptyGen<int>[], false);
- Eval(20745, o is INotEmptyGen<int>, false);
- Eval(20746, o is INotEmptyGen<int>[], false);
+// Eval(20743, o is IEmptyGen<int>, false);
+// Eval(20744, o is IEmptyGen<int>[], false);
+// Eval(20745, o is INotEmptyGen<int>, false);
+// Eval(20746, o is INotEmptyGen<int>[], false);
Eval(20747, o is SimpleDelegate, false);
Eval(20748, o is SimpleDelegate[], false);
- Eval(20749, o is GenericDelegate<int>, false);
- Eval(20750, o is GenericDelegate<int>[], false);
+// Eval(20749, o is GenericDelegate<int>, false);
+// Eval(20750, o is GenericDelegate<int>[], false);
Eval(20751, o is EmptyClass, false);
Eval(20752, o is EmptyClass[], false);
Eval(20753, o is NotEmptyClass, false);
Eval(20754, o is NotEmptyClass[], false);
- Eval(20755, o is EmptyClassGen<int>, false);
- Eval(20756, o is EmptyClassGen<int>[], false);
- Eval(20757, o is NotEmptyClassGen<Guid>, false);
- Eval(20758, o is NotEmptyClassGen<Guid>[], false);
- Eval(20759, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(20760, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20755, o is EmptyClassGen<int>, false);
+// Eval(20756, o is EmptyClassGen<int>[], false);
+// Eval(20757, o is NotEmptyClassGen<Guid>, false);
+// Eval(20758, o is NotEmptyClassGen<Guid>[], false);
+// Eval(20759, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20760, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(20761, o is NestedClass, false);
Eval(20762, o is NestedClass[], false);
- Eval(20763, o is NestedClassGen<Decimal>, false);
- Eval(20764, o is NestedClassGen<Decimal>[], false);
+// Eval(20763, o is NestedClassGen<Decimal>, false);
+// Eval(20764, o is NestedClassGen<Decimal>[], false);
Eval(20765, o is ImplementOneInterfaceC, false);
Eval(20766, o is ImplementOneInterfaceC[], false);
Eval(20767, o is ImplementTwoInterfaceC, false);
Eval(20768, o is ImplementTwoInterfaceC[], false);
- Eval(20769, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20770, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20771, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(20772, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20773, o is ImplementAllInterfaceC<int>, false);
- Eval(20774, o is ImplementAllInterfaceC<int>[], false);
+// Eval(20769, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20770, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20771, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20772, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20773, o is ImplementAllInterfaceC<int>, false);
+// Eval(20774, o is ImplementAllInterfaceC<int>[], false);
Eval(20775, o is SealedClass, false);
Eval(20776, o is SealedClass[], false);
}
@@ -19327,26 +19327,26 @@ internal class Program
Eval(20782, o is NotEmptyStruct[], false);
Eval(20783, o is NotEmptyStruct?, false);
Eval(20784, o is NotEmptyStruct?[], false);
- Eval(20785, o is EmptyStructGen<int>, false);
- Eval(20786, o is EmptyStructGen<int>[], false);
- Eval(20787, o is EmptyStructGen<int>?, false);
- Eval(20788, o is EmptyStructGen<int>?[], false);
- Eval(20789, o is NotEmptyStructGen<Guid>, false);
- Eval(20790, o is NotEmptyStructGen<Guid>[], false);
- Eval(20791, o is NotEmptyStructGen<Guid>?, false);
- Eval(20792, o is NotEmptyStructGen<Guid>?[], false);
- Eval(20793, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20794, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20795, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20796, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20785, o is EmptyStructGen<int>, false);
+// Eval(20786, o is EmptyStructGen<int>[], false);
+// Eval(20787, o is EmptyStructGen<int>?, false);
+// Eval(20788, o is EmptyStructGen<int>?[], false);
+// Eval(20789, o is NotEmptyStructGen<Guid>, false);
+// Eval(20790, o is NotEmptyStructGen<Guid>[], false);
+// Eval(20791, o is NotEmptyStructGen<Guid>?, false);
+// Eval(20792, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(20793, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20794, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20795, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20796, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20797, o is NestedStruct, false);
Eval(20798, o is NestedStruct[], false);
Eval(20799, o is NestedStruct?, false);
Eval(20800, o is NestedStruct?[], false);
- Eval(20801, o is NestedStructGen<Decimal>, false);
- Eval(20802, o is NestedStructGen<Decimal>[], false);
- Eval(20803, o is NestedStructGen<Decimal>?, false);
- Eval(20804, o is NestedStructGen<Decimal>?[], false);
+// Eval(20801, o is NestedStructGen<Decimal>, false);
+// Eval(20802, o is NestedStructGen<Decimal>[], false);
+// Eval(20803, o is NestedStructGen<Decimal>?, false);
+// Eval(20804, o is NestedStructGen<Decimal>?[], false);
Eval(20805, o is ExplicitFieldOffsetStruct, false);
Eval(20806, o is ExplicitFieldOffsetStruct[], false);
Eval(20807, o is ExplicitFieldOffsetStruct?, false);
@@ -19363,18 +19363,18 @@ internal class Program
Eval(20826, o is ImplementTwoInterface[], false);
Eval(20827, o is ImplementTwoInterface?, false);
Eval(20828, o is ImplementTwoInterface?[], false);
- Eval(20829, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(20830, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(20831, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(20832, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(20833, o is ImplementTwoInterfaceGen<int>, false);
- Eval(20834, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(20835, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(20836, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(20837, o is ImplementAllInterface<int>, false);
- Eval(20838, o is ImplementAllInterface<int>[], false);
- Eval(20839, o is ImplementAllInterface<int>?, false);
- Eval(20840, o is ImplementAllInterface<int>?[], false);
+// Eval(20829, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(20830, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(20831, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(20832, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(20833, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(20834, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(20835, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(20836, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(20837, o is ImplementAllInterface<int>, false);
+// Eval(20838, o is ImplementAllInterface<int>[], false);
+// Eval(20839, o is ImplementAllInterface<int>?, false);
+// Eval(20840, o is ImplementAllInterface<int>?[], false);
Eval(20841, o is IntE, false);
Eval(20842, o is IntE[], false);
Eval(20843, o is IntE?, false);
@@ -19473,38 +19473,38 @@ internal class Program
Eval(20936, o is IEmpty[], false);
Eval(20937, o is INotEmpty, false);
Eval(20938, o is INotEmpty[], false);
- Eval(20939, o is IEmptyGen<int>, false);
- Eval(20940, o is IEmptyGen<int>[], false);
- Eval(20941, o is INotEmptyGen<int>, false);
- Eval(20942, o is INotEmptyGen<int>[], false);
+// Eval(20939, o is IEmptyGen<int>, false);
+// Eval(20940, o is IEmptyGen<int>[], false);
+// Eval(20941, o is INotEmptyGen<int>, false);
+// Eval(20942, o is INotEmptyGen<int>[], false);
Eval(20943, o is SimpleDelegate, false);
Eval(20944, o is SimpleDelegate[], false);
- Eval(20945, o is GenericDelegate<int>, false);
- Eval(20946, o is GenericDelegate<int>[], false);
+// Eval(20945, o is GenericDelegate<int>, false);
+// Eval(20946, o is GenericDelegate<int>[], false);
Eval(20947, o is EmptyClass, false);
Eval(20948, o is EmptyClass[], false);
Eval(20949, o is NotEmptyClass, false);
Eval(20950, o is NotEmptyClass[], false);
- Eval(20951, o is EmptyClassGen<int>, false);
- Eval(20952, o is EmptyClassGen<int>[], false);
- Eval(20953, o is NotEmptyClassGen<Guid>, false);
- Eval(20954, o is NotEmptyClassGen<Guid>[], false);
- Eval(20955, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(20956, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(20951, o is EmptyClassGen<int>, false);
+// Eval(20952, o is EmptyClassGen<int>[], false);
+// Eval(20953, o is NotEmptyClassGen<Guid>, false);
+// Eval(20954, o is NotEmptyClassGen<Guid>[], false);
+// Eval(20955, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(20956, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(20957, o is NestedClass, false);
Eval(20958, o is NestedClass[], false);
- Eval(20959, o is NestedClassGen<Decimal>, false);
- Eval(20960, o is NestedClassGen<Decimal>[], false);
+// Eval(20959, o is NestedClassGen<Decimal>, false);
+// Eval(20960, o is NestedClassGen<Decimal>[], false);
Eval(20961, o is ImplementOneInterfaceC, false);
Eval(20962, o is ImplementOneInterfaceC[], false);
Eval(20963, o is ImplementTwoInterfaceC, false);
Eval(20964, o is ImplementTwoInterfaceC[], false);
- Eval(20965, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(20966, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(20967, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(20968, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(20969, o is ImplementAllInterfaceC<int>, false);
- Eval(20970, o is ImplementAllInterfaceC<int>[], false);
+// Eval(20965, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(20966, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(20967, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(20968, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(20969, o is ImplementAllInterfaceC<int>, false);
+// Eval(20970, o is ImplementAllInterfaceC<int>[], false);
Eval(20971, o is SealedClass, false);
Eval(20972, o is SealedClass[], false);
}
@@ -19519,26 +19519,26 @@ internal class Program
Eval(20978, o is NotEmptyStruct[], false);
Eval(20979, o is NotEmptyStruct?, false);
Eval(20980, o is NotEmptyStruct?[], false);
- Eval(20981, o is EmptyStructGen<int>, false);
- Eval(20982, o is EmptyStructGen<int>[], false);
- Eval(20983, o is EmptyStructGen<int>?, false);
- Eval(20984, o is EmptyStructGen<int>?[], false);
- Eval(20985, o is NotEmptyStructGen<Guid>, false);
- Eval(20986, o is NotEmptyStructGen<Guid>[], false);
- Eval(20987, o is NotEmptyStructGen<Guid>?, false);
- Eval(20988, o is NotEmptyStructGen<Guid>?[], false);
- Eval(20989, o is NotEmptyStructConstrainedGen<IntPtr>, false);
- Eval(20990, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
- Eval(20991, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
- Eval(20992, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
+// Eval(20981, o is EmptyStructGen<int>, false);
+// Eval(20982, o is EmptyStructGen<int>[], false);
+// Eval(20983, o is EmptyStructGen<int>?, false);
+// Eval(20984, o is EmptyStructGen<int>?[], false);
+// Eval(20985, o is NotEmptyStructGen<Guid>, false);
+// Eval(20986, o is NotEmptyStructGen<Guid>[], false);
+// Eval(20987, o is NotEmptyStructGen<Guid>?, false);
+// Eval(20988, o is NotEmptyStructGen<Guid>?[], false);
+// Eval(20989, o is NotEmptyStructConstrainedGen<IntPtr>, false);
+// Eval(20990, o is NotEmptyStructConstrainedGen<IntPtr>[], false);
+// Eval(20991, o is NotEmptyStructConstrainedGen<IntPtr>?, false);
+// Eval(20992, o is NotEmptyStructConstrainedGen<IntPtr>?[], false);
Eval(20993, o is NestedStruct, false);
Eval(20994, o is NestedStruct[], false);
Eval(20995, o is NestedStruct?, false);
Eval(20996, o is NestedStruct?[], false);
- Eval(20997, o is NestedStructGen<Decimal>, false);
- Eval(20998, o is NestedStructGen<Decimal>[], false);
- Eval(20999, o is NestedStructGen<Decimal>?, false);
- Eval(21000, o is NestedStructGen<Decimal>?[], false);
+// Eval(20997, o is NestedStructGen<Decimal>, false);
+// Eval(20998, o is NestedStructGen<Decimal>[], false);
+// Eval(20999, o is NestedStructGen<Decimal>?, false);
+// Eval(21000, o is NestedStructGen<Decimal>?[], false);
Eval(21001, o is ExplicitFieldOffsetStruct, false);
Eval(21002, o is ExplicitFieldOffsetStruct[], false);
Eval(21003, o is ExplicitFieldOffsetStruct?, false);
@@ -19555,18 +19555,18 @@ internal class Program
Eval(21022, o is ImplementTwoInterface[], false);
Eval(21023, o is ImplementTwoInterface?, false);
Eval(21024, o is ImplementTwoInterface?[], false);
- Eval(21025, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
- Eval(21026, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
- Eval(21027, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
- Eval(21028, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
- Eval(21029, o is ImplementTwoInterfaceGen<int>, false);
- Eval(21030, o is ImplementTwoInterfaceGen<int>[], false);
- Eval(21031, o is ImplementTwoInterfaceGen<int>?, false);
- Eval(21032, o is ImplementTwoInterfaceGen<int>?[], false);
- Eval(21033, o is ImplementAllInterface<int>, false);
- Eval(21034, o is ImplementAllInterface<int>[], false);
- Eval(21035, o is ImplementAllInterface<int>?, false);
- Eval(21036, o is ImplementAllInterface<int>?[], false);
+// Eval(21025, o is ImplementOneInterfaceGen<EmptyStructGen<int>>, false);
+// Eval(21026, o is ImplementOneInterfaceGen<EmptyStructGen<int>>[], false);
+// Eval(21027, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?, false);
+// Eval(21028, o is ImplementOneInterfaceGen<EmptyStructGen<int>>?[], false);
+// Eval(21029, o is ImplementTwoInterfaceGen<int>, false);
+// Eval(21030, o is ImplementTwoInterfaceGen<int>[], false);
+// Eval(21031, o is ImplementTwoInterfaceGen<int>?, false);
+// Eval(21032, o is ImplementTwoInterfaceGen<int>?[], false);
+// Eval(21033, o is ImplementAllInterface<int>, false);
+// Eval(21034, o is ImplementAllInterface<int>[], false);
+// Eval(21035, o is ImplementAllInterface<int>?, false);
+// Eval(21036, o is ImplementAllInterface<int>?[], false);
Eval(21037, o is IntE, false);
Eval(21038, o is IntE[], false);
Eval(21039, o is IntE?, false);
@@ -19665,38 +19665,38 @@ internal class Program
Eval(21132, o is IEmpty[], false);
Eval(21133, o is INotEmpty, false);
Eval(21134, o is INotEmpty[], false);
- Eval(21135, o is IEmptyGen<int>, false);
- Eval(21136, o is IEmptyGen<int>[], false);
- Eval(21137, o is INotEmptyGen<int>, false);
- Eval(21138, o is INotEmptyGen<int>[], false);
+// Eval(21135, o is IEmptyGen<int>, false);
+// Eval(21136, o is IEmptyGen<int>[], false);
+// Eval(21137, o is INotEmptyGen<int>, false);
+// Eval(21138, o is INotEmptyGen<int>[], false);
Eval(21139, o is SimpleDelegate, false);
Eval(21140, o is SimpleDelegate[], false);
- Eval(21141, o is GenericDelegate<int>, false);
- Eval(21142, o is GenericDelegate<int>[], false);
+// Eval(21141, o is GenericDelegate<int>, false);
+// Eval(21142, o is GenericDelegate<int>[], false);
Eval(21143, o is EmptyClass, false);
Eval(21144, o is EmptyClass[], false);
Eval(21145, o is NotEmptyClass, false);
Eval(21146, o is NotEmptyClass[], false);
- Eval(21147, o is EmptyClassGen<int>, false);
- Eval(21148, o is EmptyClassGen<int>[], false);
- Eval(21149, o is NotEmptyClassGen<Guid>, false);
- Eval(21150, o is NotEmptyClassGen<Guid>[], false);
- Eval(21151, o is NotEmptyClassConstrainedGen<object>, false);
- Eval(21152, o is NotEmptyClassConstrainedGen<object>[], false);
+// Eval(21147, o is EmptyClassGen<int>, false);
+// Eval(21148, o is EmptyClassGen<int>[], false);
+// Eval(21149, o is NotEmptyClassGen<Guid>, false);
+// Eval(21150, o is NotEmptyClassGen<Guid>[], false);
+// Eval(21151, o is NotEmptyClassConstrainedGen<object>, false);
+// Eval(21152, o is NotEmptyClassConstrainedGen<object>[], false);
Eval(21153, o is NestedClass, false);
Eval(21154, o is NestedClass[], false);
- Eval(21155, o is NestedClassGen<Decimal>, false);
- Eval(21156, o is NestedClassGen<Decimal>[], false);
+// Eval(21155, o is NestedClassGen<Decimal>, false);
+// Eval(21156, o is NestedClassGen<Decimal>[], false);
Eval(21157, o is ImplementOneInterfaceC, false);
Eval(21158, o is ImplementOneInterfaceC[], false);
Eval(21159, o is ImplementTwoInterfaceC, false);
Eval(21160, o is ImplementTwoInterfaceC[], false);
- Eval(21161, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
- Eval(21162, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
- Eval(21163, o is ImplementTwoInterfaceGenC<int>, false);
- Eval(21164, o is ImplementTwoInterfaceGenC<int>[], false);
- Eval(21165, o is ImplementAllInterfaceC<int>, false);
- Eval(21166, o is ImplementAllInterfaceC<int>[], false);
+// Eval(21161, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>, false);
+// Eval(21162, o is ImplementOneInterfaceGenC<EmptyStructGen<int>>[], false);
+// Eval(21163, o is ImplementTwoInterfaceGenC<int>, false);
+// Eval(21164, o is ImplementTwoInterfaceGenC<int>[], false);
+// Eval(21165, o is ImplementAllInterfaceC<int>, false);
+// Eval(21166, o is ImplementAllInterfaceC<int>[], false);
Eval(21167, o is SealedClass, false);
Eval(21168, o is SealedClass[], false);
}
diff --git a/tests/src/JIT/Regression/CLR-x86-JIT/V1-M10/b08944/b08944b.csproj b/tests/src/JIT/Regression/CLR-x86-JIT/V1-M10/b08944/b08944b.csproj
index 755d0f4f5b..7d1df367c4 100644
--- a/tests/src/JIT/Regression/CLR-x86-JIT/V1-M10/b08944/b08944b.csproj
+++ b/tests/src/JIT/Regression/CLR-x86-JIT/V1-M10/b08944/b08944b.csproj
@@ -11,6 +11,9 @@
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ <!-- This test is disabled until #12224 is fixed -->
+ <GCStressIncompatible>true</GCStressIncompatible>
+
</PropertyGroup>
<!-- Default configurations to help VS understand the configurations -->
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
diff --git a/tests/src/JIT/Regression/JitBlue/DevDiv_461649/DevDiv_461649.cs b/tests/src/JIT/Regression/JitBlue/DevDiv_461649/DevDiv_461649.cs
new file mode 100644
index 0000000000..0265f43065
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/DevDiv_461649/DevDiv_461649.cs
@@ -0,0 +1,54 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+using System.IO;
+using System.Xml;
+using System.Xml.XPath;
+using System.Xml.Xsl;
+
+
+namespace XSLTest
+{
+ class Program
+ {
+ // In this test a dynamic method with tail-prefixed call is created.
+ // One of the locals is not explicitly initialized but a flag to init locals is set.
+ // (That never happens in normal C# methods due to C# definite assignment rules.)
+ // The jit performs an optimization transforming the tail call into a loop.
+ // The bug was that the local was only zero-initialized for the first iteration of the loop.
+
+ static int Main(string[] args)
+ {
+ string inputXml = "Input.xml";
+ string inputXsl = "Transform.xsl";
+
+ return DotNetXslCompiledTransform(inputXml, inputXsl);
+ }
+
+ private static int DotNetXslCompiledTransform(string inputXml, string inputXsl)
+ {
+ XslCompiledTransform transform = new XslCompiledTransform();
+ transform.Load(inputXsl);
+
+ StringWriter stringWriter = new StringWriter();
+ XmlWriter writer = new XmlTextWriter(stringWriter);
+
+ transform.Transform(inputXml, null, writer);
+
+ string transformResult = stringWriter.ToString();
+ if (transformResult == "<!--20.0 20.0 20.0 20.0 20.0--> 40 40 40 40 40")
+ {
+ Console.WriteLine("SUCCESS");
+ return 100;
+ }
+ else
+ {
+ Console.WriteLine("FAILURE");
+ return 0;
+ }
+ }
+ }
+}
+
diff --git a/tests/src/JIT/Regression/JitBlue/DevDiv_461649/DevDiv_461649.csproj b/tests/src/JIT/Regression/JitBlue/DevDiv_461649/DevDiv_461649.csproj
new file mode 100644
index 0000000000..5cfcb815db
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/DevDiv_461649/DevDiv_461649.csproj
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <AssemblyName>$(MSBuildProjectName)</AssemblyName>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ </PropertyGroup>
+ <!-- Default configurations to help VS understand the configurations -->
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ </PropertyGroup>
+ <ItemGroup>
+ <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
+ <Visible>False</Visible>
+ </CodeAnalysisDependentAssemblyPaths>
+ </ItemGroup>
+ <PropertyGroup>
+ <DebugType></DebugType>
+ <Optimize>True</Optimize>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="$(MSBuildProjectName).cs" />
+ <Reference Include="System.Private.Xml" />
+ <Content Include="Input.xml">
+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+ </Content>
+ <Content Include="Transform.xsl">
+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+ </Content>
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' ">
+ </PropertyGroup>
+</Project>
diff --git a/tests/src/JIT/Regression/JitBlue/DevDiv_461649/Input.xml b/tests/src/JIT/Regression/JitBlue/DevDiv_461649/Input.xml
new file mode 100644
index 0000000000..d8552e46a0
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/DevDiv_461649/Input.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+ <bla test="20.0 20.0 20.0 20.0 20.0"/>
+</root> \ No newline at end of file
diff --git a/tests/src/JIT/Regression/JitBlue/DevDiv_461649/Transform.xsl b/tests/src/JIT/Regression/JitBlue/DevDiv_461649/Transform.xsl
new file mode 100644
index 0000000000..3f39086691
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/DevDiv_461649/Transform.xsl
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:l="http://www.schema.de/XSL/ST4DocuManagerlang" version="1.0">
+ <xsl:template match="/">
+ <xsl:for-each select="/root/bla">
+ <xsl:comment>
+ <xsl:value-of select="@test"/>
+ </xsl:comment>
+ <xsl:call-template name="duplicate">
+ <xsl:with-param name="value" select="@test" />
+ </xsl:call-template>
+ </xsl:for-each>
+ </xsl:template>
+
+ <xsl:template name="duplicate">
+ <xsl:param name="value" />
+ <xsl:param name="result" />
+ <xsl:choose>
+ <xsl:when test="contains($value, ' ')">
+ <xsl:call-template name="duplicate">
+ <xsl:with-param name="value" select="substring-after($value, ' ')" />
+ <xsl:with-param name="result" select="concat($result,' ', substring-before($value, ' ') * 2)" />
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="concat($result,' ', $value * 2)" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+</xsl:stylesheet> \ No newline at end of file
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_12037/GitHub_12037.cs b/tests/src/JIT/Regression/JitBlue/GitHub_12037/GitHub_12037.cs
new file mode 100644
index 0000000000..527a8a18a6
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_12037/GitHub_12037.cs
@@ -0,0 +1,109 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+
+public class TailCallOptTest
+{
+ public static int Main()
+ {
+ bool res1 = Caller1(new object(), 0L, 0xBEEF, new TypedDouble(1.0), new TypedDouble(2.0), new TypedDouble(3.0));
+ bool res2 = Caller2(new object(), 0L, 0xBEEF, new TypedDouble(1.0), new TwoInts(3, 5), new TypedDouble(3.0));
+ return (res1 && res2) ? 100 : 0;
+ }
+
+ // In this test typedDouble2 is passed to Caller1 on the stack. Then typedDouble2.Value is passed to Callee1 in a register.
+ // Since Calee1 also has a stack argument (typedDouble3.Value) and the call is dispatched as a fast tail call,
+ // it's set up in the incoming argument area of Caller1. JIT lowering code needs to ensure that typedDouble2
+ // in that area is not overwritten by typedDouble3.Value before typedDouble2.Value is computed. The JIT had a bug in that code
+ // because typedDouble2.Value was represented as GT_LCL_FLD and it was incorrectly converted into GT_LCL_VAR resulting in type
+ // mismatches (long vs. double since the struct is passed as a long but its only field is double).
+ public static bool Caller1(object parameters, long l,
+ double doubleArg, TypedDouble typedDouble1, TypedDouble typedDouble2, TypedDouble typedDouble3)
+ {
+ double param = 19.0;
+
+ Console.Write("Let's ");
+ Console.Write("Discourage ");
+ Console.Write("Inlining ");
+ Console.Write("Of ");
+ Console.Write("Caller ");
+ Console.Write("Into ");
+ Console.WriteLine("Main.");
+
+ return Callee1(doubleArg, param, typedDouble1.Value, typedDouble2.Value, typedDouble3.Value);
+ }
+
+ public static bool Callee1(double doubleArg, double param, double typedDoubleArg1, double typedDoubleArg2, double typedDoubleArg3)
+ {
+ Console.WriteLine("{0} {1} {2} {3} {4}", doubleArg, param, typedDoubleArg1, typedDoubleArg2, typedDoubleArg3);
+ if ((doubleArg == 0xBEEF) && (param == 19.0) && (typedDoubleArg1 == 1.0) && (typedDoubleArg2 == 2.0) && (typedDoubleArg3 == 3.0))
+ {
+ Console.WriteLine("PASSED");
+ return true;
+ }
+ else
+ {
+ Console.WriteLine("FAILED");
+ return false;
+ }
+ }
+
+ // In this test twoInts is passed to Caller2 on the stack. Then twoInts.Value1 and twoInts.Value2 were passed to Callee2 in registers.
+ // Since Calee2 also has a stack argument (i3) and the call is dispatched as a fast tail call,
+ // it's set up in the incoming argument area of Caller2. JIT lowering code needs to ensure that twoInts
+ // in that area is not overwritten by i3 before twoInts.Value1 and twoInts.Value2 are computed. The JIT had a bug in that code
+ // because twoInts.Value1 and twoInts.Value2 were represented as GT_LCL_FLD and they were incorrectly converted into GT_LCL_VAR
+ // resulting in an identical value passed for both fields.
+ public static bool Caller2(object parameters, long l,
+ double doubleArg, TypedDouble typedDouble1, TwoInts twoInts, TypedDouble typedDouble3)
+ {
+ double param = 19.0;
+
+ Console.Write("Let's ");
+ Console.Write("Discourage ");
+ Console.Write("Inlining ");
+ Console.Write("Of ");
+ Console.Write("Caller ");
+ Console.Write("Into ");
+ Console.WriteLine("Main.");
+
+ return Callee2(twoInts.Value1, twoInts.Value2, typedDouble1.Value, param, 11);
+ }
+
+ public static bool Callee2(int i1, int i2, double typedDoubleArg1, double typedDoubleArg2, int i3)
+ {
+ Console.WriteLine("{0} {1} {2} {3} {4}", i1, i2, typedDoubleArg1, typedDoubleArg2, i3);
+ if ((i1 == 3) && (i2 == 5) && (typedDoubleArg1 == 1.0) && (typedDoubleArg2 == 19) && (i3 == 11))
+ {
+ Console.WriteLine("PASSED");
+ return true;
+ }
+ else
+ {
+ Console.WriteLine("FAILED");
+ return false;
+ }
+ }
+
+ public struct TypedDouble
+ {
+ public TypedDouble(double value)
+ {
+ Value = value;
+ }
+ public readonly double Value;
+ }
+
+ public struct TwoInts
+ {
+ public TwoInts(int value1, int value2)
+ {
+ Value1 = value1;
+ Value2 = value2;
+ }
+ public readonly int Value1;
+ public readonly int Value2;
+ }
+}
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_12037/GitHub_12037.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_12037/GitHub_12037.csproj
new file mode 100644
index 0000000000..2cafa4cedf
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_12037/GitHub_12037.csproj
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <AssemblyName>$(MSBuildProjectName)</AssemblyName>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+
+ </PropertyGroup>
+ <!-- Default configurations to help VS understand the configurations -->
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ </PropertyGroup>
+ <ItemGroup>
+ <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
+ <Visible>False</Visible>
+ </CodeAnalysisDependentAssemblyPaths>
+ </ItemGroup>
+ <PropertyGroup>
+ <DebugType></DebugType>
+ <Optimize>True</Optimize>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="$(MSBuildProjectName).cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' ">
+ </PropertyGroup>
+</Project>
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_12392/GitHub_12392.cs b/tests/src/JIT/Regression/JitBlue/GitHub_12392/GitHub_12392.cs
new file mode 100644
index 0000000000..23058fd768
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_12392/GitHub_12392.cs
@@ -0,0 +1,108 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+using System.Reflection;
+
+namespace Test
+{
+ // This is a regression test for a bug in fgMorphRecognizeBoxNullable.
+ // See the comment in Setting<T>.HasValue for details.
+ class Program
+ {
+
+ static int Main(string[] args)
+ {
+ Test t = new Test();
+ if (!t.TestMethod())
+ {
+ Console.WriteLine("SUCCESS");
+ return 100;
+ }
+ else
+ {
+ Console.WriteLine("FAILURE");
+ return 0;
+ }
+ }
+ }
+
+ class Test
+ {
+ Setting<bool?> supportInteractive = Setting.ForBool(null);
+
+ public bool TestMethod()
+ {
+ return this.supportInteractive.HasValue;
+ }
+ }
+
+ public class Setting<T>
+ {
+ Setting()
+ {
+ }
+
+ public Setting(T value)
+ {
+ this.value = value;
+ }
+
+ public bool HasValue
+ {
+ get
+ {
+ if (this.value != null)
+ {
+ Type t = this.value.GetType();
+ if (t.IsGenericType)
+ {
+ if (t.GetGenericTypeDefinition() == typeof(Nullable<>))
+ {
+ PropertyInfo hasValueProperty = t.GetProperty("HasValue");
+ bool result = (bool)hasValueProperty.GetValue(this.value, null);
+ return result;
+ }
+ }
+ }
+
+ // The bug reproduces when the C# compiler generates
+ // ldnull
+ // cgt.un
+ // ret
+ // for this statement.
+ // The code above this statement is necessary so that some assertions are
+ // propagated and the statement gets re-morphed.
+ // The bug in fgMorphRecognizeBoxNullable was that it couldn't deal
+ // with a morphed helper call correctly.
+ return null != this.value;
+ }
+ }
+
+ T value;
+ public T Value
+ {
+ get { return this.value; }
+ set { this.value = value; }
+ }
+ }
+
+ public class Setting
+ {
+ Setting()
+ {
+ ;
+ }
+
+ public static Setting<bool?> ForBool(string parameter)
+ {
+ if (null == parameter)
+ {
+ return new Setting<bool?>(null);
+ }
+ Setting<bool?> setting = new Setting<bool?>(bool.Parse(parameter));
+ return setting;
+ }
+ }
+}
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_12392/GitHub_12392.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_12392/GitHub_12392.csproj
new file mode 100644
index 0000000000..2cafa4cedf
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_12392/GitHub_12392.csproj
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <AssemblyName>$(MSBuildProjectName)</AssemblyName>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+
+ </PropertyGroup>
+ <!-- Default configurations to help VS understand the configurations -->
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ </PropertyGroup>
+ <ItemGroup>
+ <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
+ <Visible>False</Visible>
+ </CodeAnalysisDependentAssemblyPaths>
+ </ItemGroup>
+ <PropertyGroup>
+ <DebugType></DebugType>
+ <Optimize>True</Optimize>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="$(MSBuildProjectName).cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' ">
+ </PropertyGroup>
+</Project>
diff --git a/tests/src/Regressions/coreclr/GitHub_12224/Test12224.csproj b/tests/src/Regressions/coreclr/GitHub_12224/Test12224.csproj
new file mode 100644
index 0000000000..ae3c42c73d
--- /dev/null
+++ b/tests/src/Regressions/coreclr/GitHub_12224/Test12224.csproj
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{9CBB2BDE-E9EF-4F0A-840C-0F80380D4513}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+ <CLRTestKind>BuildAndRun</CLRTestKind>
+ <CLRTestPriority>1</CLRTestPriority>
+ </PropertyGroup>
+ <!-- Default configurations to help VS understand the configurations -->
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ </PropertyGroup>
+ <ItemGroup>
+ <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
+ <Visible>False</Visible>
+ </CodeAnalysisDependentAssemblyPaths>
+ </ItemGroup>
+ <ItemGroup>
+ <!-- Add Compile Object Here -->
+ <Compile Include="test12224.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="../../../Common/CoreCLRTestLibrary/CoreCLRTestLibrary.csproj" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' ">
+ </PropertyGroup>
+</Project> \ No newline at end of file
diff --git a/tests/src/Regressions/coreclr/GitHub_12224/test12224.cs b/tests/src/Regressions/coreclr/GitHub_12224/test12224.cs
new file mode 100644
index 0000000000..8a3124c1b8
--- /dev/null
+++ b/tests/src/Regressions/coreclr/GitHub_12224/test12224.cs
@@ -0,0 +1,43 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+using System;
+using System.Threading;
+
+public class Test12224
+{
+ // Regression test for EH getting stuck in an infinite loop when NullReferenceException
+ // happens inside a handler of another NullReferenceException.
+ static void ExecuteTest(object context)
+ {
+ string s = null;
+ try
+ {
+ try
+ {
+ int x = s.Length;
+ }
+ catch (NullReferenceException)
+ {
+ int x = s.Length;
+ }
+ }
+ catch (NullReferenceException)
+ {
+
+ }
+ }
+
+ public static int Main()
+ {
+ Thread thread = new Thread(new ParameterizedThreadStart(Test12224.ExecuteTest));
+ thread.IsBackground = true;
+ thread.Start(null);
+
+ // Give the thread 30 seconds to complete (it should be immediate). If it fails
+ // to complete within that timeout, it has hung.
+ bool terminated = thread.Join(new TimeSpan(0, 0, 30));
+
+ return terminated ? 100 : -1;
+ }
+}
diff --git a/tests/src/dir.props b/tests/src/dir.props
index 245e9f7982..43c3606572 100644
--- a/tests/src/dir.props
+++ b/tests/src/dir.props
@@ -34,28 +34,28 @@
<When Condition="'$(OSGroup)'=='Windows_NT'">
<PropertyGroup>
<TargetsWindows>true</TargetsWindows>
- <TestNugetRuntimeId>win7-x64</TestNugetRuntimeId>
+ <TestNugetRuntimeId>win7-$(__BuildArch)</TestNugetRuntimeId>
</PropertyGroup>
</When>
<When Condition="'$(OSGroup)'=='Linux'">
<PropertyGroup>
<TargetsUnix>true</TargetsUnix>
<TargetsLinux>true</TargetsLinux>
- <TestNugetRuntimeId>ubuntu.14.04-x64</TestNugetRuntimeId>
+ <TestNugetRuntimeId>ubuntu.14.04-$(__BuildArch)</TestNugetRuntimeId>
</PropertyGroup>
</When>
<When Condition="'$(OSGroup)'=='OSX'">
<PropertyGroup>
<TargetsUnix>true</TargetsUnix>
<TargetsOSX>true</TargetsOSX>
- <TestNugetRuntimeId>osx.10.12-x64</TestNugetRuntimeId>
+ <TestNugetRuntimeId>osx.10.12-$(__BuildArch)</TestNugetRuntimeId>
</PropertyGroup>
</When>
<When Condition="'$(OSGroup)'=='FreeBSD'">
<PropertyGroup>
<TargetsUnix>true</TargetsUnix>
<TargetsFreeBSD>true</TargetsFreeBSD>
- <TestNugetRuntimeId>ubuntu.14.04-x64</TestNugetRuntimeId>
+ <TestNugetRuntimeId>ubuntu.14.04-$(__BuildArch)</TestNugetRuntimeId>
</PropertyGroup>
</When>
<Otherwise>