Mercurial > silverbladetech
view Chronosv2/source/Extensions/Converter.cs @ 12:6a0449185449
SCC changed from TFS to HG
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Tue, 21 Feb 2012 17:47:35 +0700 |
parents | 443821e55f06 |
children |
line wrap: on
line source
using System; namespace Chronos.Extensions { /// <summary> /// An internal implementation of the IConverter<T> interface /// </summary> /// <typeparam name="T"></typeparam> internal class Converter<T> : IConverter<T> { #region · Properties · /// <summary> /// Gets the internal value to be converted. /// </summary> /// <value>The value.</value> public T Value { get; protected set; } #endregion #region · Methods · /// <summary> /// Initializes a new instance of the <see cref="Converter<T>"/> class. /// </summary> /// <param name="value">The value.</param> public Converter(T value) { this.Value = value; } #endregion } }