c# Programming Glossary: bitten
ObservableCollection not noticing when Item in it changes (even with INotifyPropertyChanged) http://stackoverflow.com/questions/1427471/observablecollection-not-noticing-when-item-in-it-changes-even-with-inotifyprop is changed EDIT Okay that's twice today I've been bitten by the MSDN documentation being wrong. In the link I gave you..
ReSharper Warning - Access to Modified Closure [duplicate] http://stackoverflow.com/questions/1688465/resharper-warning-access-to-modified-closure in doubt make a local. Here is a real world example I was bitten by menu.MenuItems.Clear HistoryItem crumbs policyTree.Crumbs.GetCrumbs..
What is the worst gotcha in C# or .NET? http://stackoverflow.com/questions/241134/what-is-the-worst-gotcha-in-c-sharp-or-net dt dt.AddDays 1 return dt tomorrow's date This one has bitten me a number of times before so I thought it would be useful..
Why is ValueType.GetHashCode() implemented like it is? http://stackoverflow.com/questions/3841602/why-is-valuetype-gethashcode-implemented-like-it-is the original type we'll end up in an infinite loop. I got bitten by this today when I was using a KeyValuePair as a key in a..
Discrete Anonymous methods sharing a class? http://stackoverflow.com/questions/3885106/discrete-anonymous-methods-sharing-a-class considered unfortunate I don't know whether it's actually bitten people in real life but it's certainly possible. The good news..
System.Drawing in Windows or ASP.NET services http://stackoverflow.com/questions/390532/system-drawing-in-windows-or-asp-net-services used System.Drawing with success. A few of them have been bitten but there's alot more success than failure stories. If you want..
Get List of Users From Active Directory In A Given AD Group http://stackoverflow.com/questions/513124/get-list-of-users-from-active-directory-in-a-given-ad-group run a search in a multiple domain environment you will get bitten without this addition. Hope this helps move you closer to your..
How do I create a HashCode in .net (c#) for a string that is safe to store in a database? http://stackoverflow.com/questions/5154970/how-do-i-create-a-hashcode-in-net-c-for-a-string-that-is-safe-to-store-in-a on Wednesday the hash codes can be different. This has bitten people in the past. The documentation for System.String.GetHashCode..
|