Newer
Older
DNA / corlib / System / Converter.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 112 bytes First commit
#if !LOCALTEST

namespace System {
	public delegate TOutput Converter<TInput, TOutput>(TInput input);
}

#endif