5 references to Argument_IncompatibleArrayType
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\CollectionHelpers.cs (2)
62
throw new ArgumentException(SR.
Argument_IncompatibleArrayType
, nameof(array));
74
throw new ArgumentException(SR.
Argument_IncompatibleArrayType
, nameof(array));
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\libraries\System.Private.CoreLib\src\System\ThrowHelper.cs (1)
524
throw new ArgumentException(SR.
Argument_IncompatibleArrayType
);