Created S# .sln and moved project to src folder

This commit is contained in:
jeff.thompson
2017-06-21 22:41:54 -04:00
commit 52948a6e7e
93 changed files with 10647 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#if SIMPLSHARP
using Crestron.SimplSharp.CrestronIO;
#else
using System.IO;
#endif
namespace ICD.Common.Utils.IO
{
public class IcdTextReader
{
private readonly TextReader m_TextReader;
public TextReader WrappedTextReader { get { return m_TextReader; } }
protected IcdTextReader(TextReader textReader)
{
m_TextReader = textReader;
}
}
}