Catel.ReSharper.Arguments.IsNotNullOrEmptyArrayContextAction.IsArgumentTypeTheExpected C# (CSharp) Метод

IsArgumentTypeTheExpected() защищенный Метод

protected IsArgumentTypeTheExpected ( IType type ) : bool
type IType
Результат bool
        protected override bool IsArgumentTypeTheExpected(IType type)
        {
            // NOTE: type.IsArray() is false, I don't know why.
            return type != null && type is IArrayType && !type.IsString();
        }