初始化
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
|
||||
namespace $rootnamespace$.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)
|
||||
{
|
||||
if (text == null)
|
||||
{
|
||||
throw new ArgumentNullException("text");
|
||||
}
|
||||
Text = text;
|
||||
}
|
||||
|
||||
public string Text { get; private set; }
|
||||
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
TextSample other = obj as TextSample;
|
||||
return other != null && Text == other.Text;
|
||||
}
|
||||
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return Text.GetHashCode();
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return Text;
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
8495
.svn/pristine/fc/fceda01666299b2af23407213a66b1fd908ba6ba.svn-base
Normal file
8495
.svn/pristine/fc/fceda01666299b2af23407213a66b1fd908ba6ba.svn-base
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user