blob: 3b9652e3aef02bf91ec1c6e811d25213897b5b4c (
plain)
1
2
3
4
5
6
7
8
9
|
namespace MediaBrowser.Model.TextEncoding
{
public interface IEncoding
{
byte[] GetASCIIBytes(string text);
string GetASCIIString(byte[] bytes, int startIndex, int length);
}
}
|