mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
25 lines
446 B
C#
25 lines
446 B
C#
#if SIMPLSHARP
|
|
using Crestron.SimplSharp.CrestronIO;
|
|
|
|
#else
|
|
using System.IO;
|
|
#endif
|
|
|
|
namespace ICD.Common.Utils.IO
|
|
{
|
|
public sealed class IcdStringReader : IcdTextReader
|
|
{
|
|
public StringReader WrappedStringReader { get { return WrappedTextReader as StringReader; } }
|
|
|
|
public IcdStringReader(string value)
|
|
: this(new StringReader(value))
|
|
{
|
|
}
|
|
|
|
private IcdStringReader(StringReader stringReader)
|
|
: base(stringReader)
|
|
{
|
|
}
|
|
}
|
|
}
|