laatzen/Common/Service/MeterProcessState/Areas/HelpPage/SampleGeneration/TextSample.cs

37 lines
906 B
C#
Raw Normal View History

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