2013-12-17 22:50:36 +01:00
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
namespace ReadSharp.Ports.NReadability
|
|
|
|
|
{
|
|
|
|
|
public static class Consts
|
|
|
|
|
{
|
|
|
|
|
private static readonly string _nReadabilityFullName;
|
|
|
|
|
|
|
|
|
|
#region Constructor(s)
|
|
|
|
|
|
|
|
|
|
static Consts()
|
|
|
|
|
{
|
2014-04-04 10:39:26 +02:00
|
|
|
_nReadabilityFullName = string.Format("NReadability {0}", typeof(Consts).GetTypeInfo().Assembly.FullName);
|
2013-12-17 22:50:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Properties
|
|
|
|
|
|
|
|
|
|
public static string NReadabilityFullName
|
|
|
|
|
{
|
|
|
|
|
get { return _nReadabilityFullName; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|