I have a variable "StudentID" which is an int, I need to convert to a string then pass it to string as a string.
This is what I have so far:
int StuID = Convert.ToString("StudentID");
string ReturnXML = "<Student=\"StuID\" />";
So if the "StudentID" variable were equal to 12345, I need the ReturnXML to look like this:
<Student="12345">
Any suggestions?