I have just noticed a weird bug here is a small snippet of code (Notice the Access modifiers)
[Nutcracker.CMS4.Utilities.Aspects.DontLog]
public static String PortConnectionString()
{
if (String.IsNullOrEmpty(fPortConnectionString))
{
fPortConnectionString = ConfigurationManager.AppSettings["PortfolioConnectionString"];
}
return fPortConnectionString;
}
public static int SqlTimeOut()
{
if (fSqlTimeOut==0)
{
fSqlTimeOut = Convert.ToInt32(ConfigurationManager.AppSettings["CGTSQLTimeOut"]);
}
return fSqlTimeOut;
}
If I roll it Up by pressing the - button in the margin It shows
-
private String PortConnectionString()
-
private Int32 SqlTimeOut()
Version 8.2.89.1893 inside visual studio 2013