Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Sql binary to c# - Como obter o equivalente binário SQL do binário em c#

public static byte[] ConvertToBinary(string str)
{
    System.Text.ASCIIEncoding  encoding = new System.Text.ASCIIEncoding();
    return encoding.GetBytes(str);
}

ou
Convert.ToByte(string);