mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 20:12:44 +01:00
9 lines
209 B
C#
9 lines
209 B
C#
|
|
namespace MediaBrowser.Model.TextEncoding
|
|
{
|
|
public interface IEncoding
|
|
{
|
|
byte[] GetASCIIBytes(string text);
|
|
string GetASCIIString(byte[] bytes, int startIndex, int length);
|
|
}
|
|
}
|