Spontaneous.DataModel.Localized.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            string returnValue = "Localized: ";
            if (this.LocalizedList != null)
            {
                foreach (var unit in this.LocalizedList)
                {
                    returnValue += unit.ToString();
                }
            }
            return returnValue;
        }