13 lines
276 B
C#
13 lines
276 B
C#
using System.Text;
|
|
|
|
namespace MediaBrowser.Model.TextEncoding
|
|
{
|
|
public interface IEncoding
|
|
{
|
|
byte[] GetASCIIBytes(string text);
|
|
string GetASCIIString(byte[] bytes, int startIndex, int length);
|
|
|
|
Encoding GetFileEncoding(string path);
|
|
}
|
|
}
|