mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
13 lines
329 B
C#
13 lines
329 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.System2.Encoding
|
|
{
|
|
public abstract class CosmosEncoding
|
|
{
|
|
public abstract Byte[] GetBytes(String s);
|
|
public abstract String GetString(Byte[] bytes);
|
|
public abstract int GetMaxByteCount(int ByteCount);
|
|
}
|
|
}
|