Sunday, March 6, 2016
dell sonic wall vpn always going to phonebook entry
Friday, March 4, 2016
Thursday, March 3, 2016
Example of ref on reference type
class Program
{
static public void change(List<string> thing)
{
thing[0] += "
adjusted";
List<string> temp = new List<string>();
temp.Add("change");
thing = temp;
}
static public void refChange(ref List<string> thing)
{
List<string> temp = new List<string>();
temp.Add("refChange");
thing = temp;
}
static void Main(string[] args)
{
List<string> temp = new List<string>();
temp.Add("hody doe");
change(temp);
Console.WriteLine(temp[0]);
refChange(ref temp);
Console.WriteLine(temp[0]);
}
}
what do you think happens with appended spaces in sql
select len('dfdf ')
select len(' dfdf')
in oracle too!
select * from
(
select 'sdff ' a from dual
) main
where main.a ='sdff'
in oracle too!
select * from
(
select 'sdff ' a from dual
) main
where main.a ='sdff'
Tuesday, January 26, 2016
504 errors in wcf calls
use trace log - good chance it is a serializing issue
Wednesday, December 23, 2015
url in menus
will not be there for categories or products - this is system generated
Wednesday, December 9, 2015
The worker process for app pool 'IISExpressAppPool', PID='6556', failed to initialize the http.sys communication when asked to start processing http requests and therefore will be considered ill by W3SVC and terminated. The data field contains the error number
wierd #$%^ I had to restart vs and iisexpress
Subscribe to:
Comments (Atom)