Reverse DNS lookup is the process to get designated domain name from an IP address.
http://en.wikipedia.org/wiki/Reverse_DNS_lookup
Thursday, January 16, 2014
Tuesday, January 14, 2014
Thursday, January 9, 2014
Wednesday, January 8, 2014
How to solve "Collection was modified; enumeration operation may not execute."?
For IEnumerable collection, need to use ToList first, so you can get same list during the iteration.
foreach (var qs in one.QuestionSets.ToList())
{
dbc.Questions.DeleteObject(qs.Question);
}
Subscribe to:
Posts (Atom)