Hi All, I want equivalent code for C# from below code string functionReturnValue = null;
object objXML = null;
object objNode = null;
objXML = Interaction.CreateObject("MSXML2.DOMDocument");
objNode = objXML.createElement("b64");
objNode.DataType = "bin.base64";
objNode.nodeTypedValue = arrData;
functionReturnValue = objNode.Text; So please help me for equivalent c#. "arrData" is byte data
Go to the complete details ...