DBreeze.Scheme.GetUserTableNameAsByte C# (CSharp) Method

GetUserTableNameAsByte() private method

Adds static prefix to all user table names, to make selection of tables for different purposes easier with StartsWith function
private GetUserTableNameAsByte ( string tableName ) : byte[]
tableName string
return byte[]
        private byte[] GetUserTableNameAsByte(string tableName)
        {
            return Encoding.UTF8.GetBytes("@ut" + tableName);
        }