14 instantiations of RankException
Microsoft.Build.Framework (1)
SegmentedArray.cs (1)
136throw new RankException(SR.Rank_MustMatch);
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\Segmented\SegmentedArray.cs (1)
142throw new RankException(SR.Rank_MustMatch);
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\Segmented\SegmentedArray.cs (1)
142throw new RankException(SR.Rank_MustMatch);
Microsoft.CodeAnalysis.Collections.Package (1)
Segmented\SegmentedArray.cs (1)
142throw new RankException(SR.Rank_MustMatch);
Microsoft.CodeAnalysis.InteractiveHost (1)
src\Dependencies\Collections\Segmented\SegmentedArray.cs (1)
142throw new RankException(SR.Rank_MustMatch);
Microsoft.CodeAnalysis.Threading.Package (1)
src\Dependencies\Collections\Segmented\SegmentedArray.cs (1)
142throw new RankException(SR.Rank_MustMatch);
Microsoft.CodeAnalysis.Workspaces (1)
src\Dependencies\Collections\Segmented\SegmentedArray.cs (1)
142throw new RankException(SR.Rank_MustMatch);
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Dependencies\Collections\Segmented\SegmentedArray.cs (1)
142throw new RankException(SR.Rank_MustMatch);
Microsoft.VisualBasic.Core (4)
Microsoft\VisualBasic\CompilerServices\LateBinding.vb (2)
526Throw New RankException 774Throw New RankException
Microsoft\VisualBasic\CompilerServices\Symbols.vb (2)
1154Throw New RankException 1203Throw New RankException
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\ThrowHelper.cs (1)
428throw new RankException(GetResourceString(resource));
src\System\Array.CoreCLR.cs (1)
60throw new RankException(SR.Rank_MustMatch);
12 references to RankException
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\FileIO\FileSystem.vb (1)
1333TypeOf ex Is RankException Or TypeOf ex Is ArrayTypeMismatchException Or
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
391[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.RankException))]
netstandard (1)
netstandard.cs (1)
1356[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.RankException))]
System.Collections.Concurrent (1)
System\Collections\Concurrent\BlockingCollection.cs (1)
1580catch (RankException)
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector2.cs (2)
969/// <exception cref="RankException"><paramref name="array" /> is multidimensional.</exception> 992/// <exception cref="RankException"><paramref name="array" /> is multidimensional.</exception>
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector3.cs (2)
979/// <exception cref="RankException"><paramref name="array" /> is multidimensional.</exception> 1002/// <exception cref="RankException"><paramref name="array" /> is multidimensional.</exception>
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
1061/// <exception cref="RankException"><paramref name="array" /> is multidimensional.</exception> 1073/// <exception cref="RankException"><paramref name="array" /> is multidimensional.</exception>
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net10.0\System.Runtime.Forwards.cs (1)
418[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.RankException))]
System.Xaml.Tests (1)
System\Windows\Markup\ArrayExtensionTests.cs (1)
70Assert.Throws<RankException>(() => new ArrayExtension(new int[1, 1]));