What would be the equivalent of this in C#? This is Vb.NET code.
VB Code:
Dim xmlParams As String Dim certNum As String = "4609927" xmlParams = "<Root>" xmlParams = xmlParams & "<Param Name=""p_Cert_Num"" Value=""" & certNum & """ />" xmlParams = xmlParams & "<Param Name=""cur_CaseReqInfo"" Direction=""" & System.Data.ParameterDirection.Output & """ OraDbType=""" & System.Data.OracleClient.OracleType.Cursor & """ />" xmlParams = xmlParams & "</Root>"
once the xmlParams string is formed, I want to be able to load it in xmlDocument but could not build this string in C#.



Reply With Quote