10 lines
209 B
C#
10 lines
209 B
C#
|
|
namespace MediaBrowser.Model.TextEncoding
|
|
{
|
|
public interface IEncoding
|
|
{
|
|
byte[] GetASCIIBytes(string text);
|
|
string GetASCIIString(byte[] bytes, int startIndex, int length);
|
|
}
|
|
}
|