diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-30 03:11:37 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-30 03:11:37 -0400 |
| commit | 3094cd7ff3e51578808ce1b6f56b141930c18004 (patch) | |
| tree | 27984f41f725e83fa01c524b4a1a0a0595d9bf74 /MediaBrowser.Model/TextEncoding/IEncoding.cs | |
| parent | f676ea63156f959d08eb4d324274ef2fef853933 (diff) | |
update project targets
Diffstat (limited to 'MediaBrowser.Model/TextEncoding/IEncoding.cs')
| -rw-r--r-- | MediaBrowser.Model/TextEncoding/IEncoding.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Model/TextEncoding/IEncoding.cs b/MediaBrowser.Model/TextEncoding/IEncoding.cs new file mode 100644 index 000000000..3b9652e3a --- /dev/null +++ b/MediaBrowser.Model/TextEncoding/IEncoding.cs @@ -0,0 +1,9 @@ + +namespace MediaBrowser.Model.TextEncoding +{ + public interface IEncoding + { + byte[] GetASCIIBytes(string text); + string GetASCIIString(byte[] bytes, int startIndex, int length); + } +} |
