SenseNet.ContentRepository.ImageResizer.IsPortrait C# (CSharp) Method

IsPortrait() private static method

private static IsPortrait ( long X, long Y ) : bool
X long
Y long
return bool
        private static bool IsPortrait(long X, long Y)
        {
            return !(X > Y);
        }