G
Guest
I'm running Visual Studio, using C#.
Intellisense (Go To Definition: function has stopped working for most
objects. It seems to work for class variables, but not for other defined
metods and variables. E.g. in the snippet below, if I rclick on the reference
to planXMl and select "Go To Definition", I get a popup message "Cannot
navigate to planXML", even though it's defined two lines above:
[WebMethod()]
public DataSet ReadPlan(string jobNumber, string entpId, string jecCode)
{
DataSet ds = null;
try
{
string planXml = ConfigurationSettings.AppSettings"planByJobNumberXml"];
StringBuilder sb = new StringBuilder();
sb.AppendFormat(planXml, jobNumber, entpId, jecCode);
Intellisense (Go To Definition: function has stopped working for most
objects. It seems to work for class variables, but not for other defined
metods and variables. E.g. in the snippet below, if I rclick on the reference
to planXMl and select "Go To Definition", I get a popup message "Cannot
navigate to planXML", even though it's defined two lines above:
[WebMethod()]
public DataSet ReadPlan(string jobNumber, string entpId, string jecCode)
{
DataSet ds = null;
try
{
string planXml = ConfigurationSettings.AppSettings"planByJobNumberXml"];
StringBuilder sb = new StringBuilder();
sb.AppendFormat(planXml, jobNumber, entpId, jecCode);