AcManager.Tools.Objects.KunosEventObjectBase.ToDisplayPlaceTarget C# (CSharp) Method

ToDisplayPlaceTarget() private method

private ToDisplayPlaceTarget ( int value ) : string
value int
return string
        private string ToDisplayPlaceTarget(int? value) {
            return value == null ? null : ConditionType == PlaceConditionsType.Time
                    ? TimeSpan.FromMilliseconds(value.Value).ToMillisecondsString() : value.Value.ToString();
        }