Alexandria.Engines.Creation.RecordReader.RequireMinimumFieldSize C# (CSharp) 메소드

RequireMinimumFieldSize() 공개 메소드

public RequireMinimumFieldSize ( int bytes ) : void
bytes int
리턴 void
        public void RequireMinimumFieldSize(int bytes)
        {
            if (field.Size < bytes)
                throw new InvalidDataException("The " + FieldName + " must be at least " + bytes + " byte(s) long, not " + field.Size + ".");
        }