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