I have tried so much but so far unable to produce a string like this using c#
Sku_id("5ac5d5fd754bc84f45786dd6")
I am trying to do something like this but unable to get the desired result, can anyone suggest what should I do.
var skuCode = "5ac5d5fd754bc84f45786dd6";
var skuId= "sku_id(" + '\u0022' + skuCode + '\u0022' + ")");
The above code always produces the string like this which is not what I want
"sku_id(\"5ac5d5fd754bc84f45786dd6\")"
I want to produce a string and write to a text file like this
sku_id("5ac5d5fd754bc84f45786dd6")