Bradley Grainger

1,963
Reputation
147 views

Registered User

Name Bradley Grainger
Member for 1 year
Seen 13 mins ago
Website
Location Bellingham WA, USA
Age 30
I am a software developer at Logos Bible Software. I contribute posts about C++ and C# to the Logos Code blog.
Oct
1
awarded  Yearling
Sep
15
comment How do you debug a deadlocked Windows app on a customer machine
From support.microsoft.com/kb/286350: "ADPlus supports XCOPY deployment. ... Additionally, ADPlus does not require that you register any custom Component Object Model (COM) components on the system. Because of this, you can use ADPlus on production servers that have a locked-down software configuration." I haven't tried, but you could probably even run it off a flash drive.
Sep
7
accepted “for each” statement in C++/CLI
Aug
18
accepted Vista - Program crash notification
Aug
18
revised Vista - Program crash notification
Tightened prose
Aug
18
revised Vista - Program crash notification
Add info on Winqual
Aug
18
answered Vista - Program crash notification
Jul
28
comment .NET: Large revision numbers in AssemblyVersionAttribute
@wcoenen: This is a very good point, which I had forgotten. We had to use [major].[minor].[revision].0 as the version number for our MSI packages. We haven't reached revision 65,536 yet; when we do, we might just have to wrap back to 1 (and store the "high bit" in the minor field). Our minor version is currently 0, so we've got room for more information there.
Jul
28
comment .NET: Large revision numbers in AssemblyVersionAttribute
@Ray Hayes: Our NAnt build script uses svn info . --xml to get the revision number of the working copy, then calls a custom-written utility to output that revision into a "SolutionInfo.cs" file containing an [AssemblyVersion] attribute. This file is not added to Subversion, but is just referenced by all the projects (use "Add As Link" in VS) in the solution, so that they're all built with the latest version number.
Jul
27
answered .NET: Large revision numbers in AssemblyVersionAttribute
Jul
17
accepted Reasons for seeing high” % Time in GC” in Perf Mon
Jul
15
revised Reasons for seeing high” % Time in GC” in Perf Mon
Reduce finalizable objects
Jul
15
revised Reasons for seeing high” % Time in GC” in Perf Mon
Added sample steps to take.
Jul
15
answered Reasons for seeing high” % Time in GC” in Perf Mon
Jul
13
answered How to use System.Windows.Forms.WebBrowser in a web app?
Jul
7
comment Performance regarding cached IEnumerable<T> implementation
The main thing I would be concerned about is another thread resizing the List's internal array (in Add()) while the reader thread is using the indexer to retrieve an item. It seems possible that it could return default(T) or throw an ArgumentOutOfRangeException. Of course, this all depends on the exact implementation of List<T>, so the best I could say is that the behaviour is "undefined". (Even if Reflector shows you that it would be safe, who knows if it could change in .NET 4.0, introducing a subtle and hard-to-find bug?)
Jul
6
revised Performance regarding cached IEnumerable<T> implementation
How to be thread-safe
Jul
6
answered Performance regarding cached IEnumerable<T> implementation
Jul
3
answered “for each” statement in C++/CLI
Jul
3
comment “for each” statement in C++/CLI
This change would simply introduce (another) syntax error.
Jun
20
accepted How to refactor usage of an iterator
Jun
20
answered How to refactor usage of an iterator
Jun
10
answered where did my memory go? large private bytes count