System.ServiceModel.Channels.BinaryIntEncoder
namespace System.ServiceModel.Channels
{
internal static class BinaryIntEncoder
{
public const int MaxEncodedSize = 5;
public static int Encode(int value, byte[] bytes, int offset);
public static int GetEncodedSize(int value);
}
}