示例#1
0
 /// <summary>
 /// Gets the representation of a CalorieGuideline instance.
 /// </summary>
 ///
 /// <returns>
 /// A string representation of the CalorieGuideline instance.
 /// </returns>
 ///
 public override string ToString()
 {
     return
         (string.Format(
              Resources.NameAndValue,
              _name.ToString(),
              _calories.ToString()));
 }