ImageMagick.StreamHelper.CheckLength C# (CSharp) 메소드

CheckLength() 개인적인 정적인 메소드

private static CheckLength ( long length ) : void
length long
리턴 void
    private static void CheckLength(long length)
    {
      if (length > 2147483591)
        throw new ArgumentException("Streams with a length larger than 2147483591 are not supported, read from file instead.", nameof(length));
    }