Renci.SshNet.Common.Extensions
Collection of different extension method
namespace Renci.SshNet.Common
{
internal static class Extensions
{
public static bool IsNullOrWhiteSpace(this string value);
public static BigInteger ToBigInteger2(this byte[] data);
public static byte[] Take(this byte[] value, int offset, int count);
public static byte[] Take(this byte[] value, int count);
public static bool IsEqualTo(this byte[] left, byte[] right);
public static byte[] TrimLeadingZeros(this byte[] value);
public static byte[] Pad(this byte[] data, int length);
public static byte[] Concat(this byte[] first, byte[] second);
public static void Clear(this StringBuilder value);
}
}