using System; namespace Service.MeterProcessState.Areas.HelpPage { /// /// This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. /// public class TextSample { public TextSample(String text) { if (text == null) { throw new ArgumentNullException("text"); } Text = text; } public String Text { get; private set; } public override Boolean Equals(Object obj) { TextSample other = obj as TextSample; return other != null && Text == other.Text; } public override Int32 GetHashCode() { return Text.GetHashCode(); } public override String ToString() { return Text; } } }