Disco.Models.Repository.DeviceProfile.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            if (string.IsNullOrEmpty(this.ShortName))
            {
                return this.Name;
            }
            return string.Format("{0} ({1})", this.Name, this.ShortName);
        }
DeviceProfile