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();
        }