comparison Chronosv2/source/Extensions/IConverter.cs @ 10:443821e55f06

Initial cleaned up add from Codeplex files
author stevenh7776 stevenhollidge@hotmail.com
date Tue, 21 Feb 2012 17:25:44 +0700
parents
children
comparison
equal deleted inserted replaced
9:904a9faadf8b 10:443821e55f06
1 using System;
2
3 namespace Chronos.Extensions
4 {
5 /// <summary>
6 /// Generic converter interface used to allow extension methods to be applied.
7 /// </summary>
8 /// <typeparam name="T"></typeparam>
9 public interface IConverter<T>
10 {
11 #region · Properties ·
12
13 /// <summary>
14 /// Gets the internal value to be converted.
15 /// </summary>
16 /// <value>The value.</value>
17 T Value
18 {
19 get;
20 }
21
22 #endregion
23 }
24 }