YAMP.DateFunction.Function C# (CSharp) Method

Function() private method

private Function ( ) : StringValue
return StringValue
        public StringValue Function()
        {
            var dt = DateTime.Today;
            return new StringValue(dt.ToString("d"));
        }

Same methods

DateFunction::Function ( ScalarValue offset ) : StringValue