Telerik.Web.Mvc.Infrastructure.AggregateResult.ToString C# (CSharp) Method

ToString() public method

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            if (this.Value != null)
            {
                return this.Value.ToString();
            }
            return base.ToString();
        }