5 references to Argument_IncompatibleArrayType
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\CollectionHelpers.cs (2)
58
throw new ArgumentException(SR.
Argument_IncompatibleArrayType
, nameof(array));
70
throw new ArgumentException(SR.
Argument_IncompatibleArrayType
, nameof(array));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlyDictionary.cs (2)
194
object[] objects = array as object[] ?? throw new ArgumentException(SR.
Argument_IncompatibleArrayType
, nameof(array));
204
throw new ArgumentException(SR.
Argument_IncompatibleArrayType
, nameof(array));
src\runtime\src\libraries\System.Private.CoreLib\src\System\ThrowHelper.cs (1)
512
throw new ArgumentException(SR.
Argument_IncompatibleArrayType
);