我在 C# 中声明了一个字符串变量,就像在 Windows 应用程序中的 VS2010 Express 中一样,
string strVariable = string.Empty;
//ContextUtil.DeactivateOnReturn = true;
try
{
XmlDocument xmlSourceDoc = new XmlDocument();
xmlSourceDoc.LoadXml(strXmlDocument);
strVariable = xmlSourceDoc.DocumentElement.GetAttribute("attire");
在调试时我strVariable
看了一下,它说像
当前上下文中不存在名称“strVariable””。
xmlSourceDoc.DocumentElement.GetAttribute("attire")
当我投入观看时,还有一件事我得到了结果。
可能是什么问题?