How can I use the vb xml literal within a string.format statement?
I want to achieve this but with vb xml literals
Dim test1 As String =
String.Format(<outer>
<inner1>{0}</inner1>
<inner2/>
</outer>,32)
How can I use the vb xml literal within a string.format statement?
I want to achieve this but with vb xml literals
Dim test1 As String =
String.Format(<outer>
<inner1>{0}</inner1>
<inner2/>
</outer>,32)
XElements.String.Formatis used to createStrings. What do you need, an XML string or an XElement?