Landis.Harvest.StandSpreading.ValidateTargetSize C# (CSharp) 메소드

ValidateTargetSize() 공개 정적인 메소드

public static ValidateTargetSize ( InputValue targetSize ) : void
targetSize InputValue
리턴 void
        public static void ValidateTargetSize(InputValue<double> targetSize)
        {
            if (targetSize.Actual < 0)
                throw new InputValueException(targetSize.String,
                                              "Target harvest size cannot be negative");
        }
    }