System.Web.Security.RolePrincipal.GetBase64FromBytes C# (CSharp) Method

GetBase64FromBytes() static private method

static private GetBase64FromBytes ( byte bytes, int offset, int len ) : string
bytes byte
offset int
len int
return string
		static string GetBase64FromBytes (byte [] bytes, int offset, int len)
		{
			return Convert.ToBase64String (bytes, offset, len);
		}