Catel.ReSharper.Arguments.IsNotNullOrEmptyContextAction.IsArgumentTypeTheExpected C# (CSharp) 메소드

IsArgumentTypeTheExpected() 보호된 메소드

protected IsArgumentTypeTheExpected ( IType type ) : bool
type IType
리턴 bool
        protected override bool IsArgumentTypeTheExpected(IType type)
        {
            IDeclaredType declaredType;
            return type != null && (type.IsString() || ((declaredType = type.GetScalarType()) != null && declaredType.GetClrName().FullName == "System.Guid"));
        }