User Bradley Grainger - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:01:32Z http://stackoverflow.com/feeds/user/23633 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1291722/vista-program-crash-notification/1291801#1291801 4 Answer by Bradley Grainger for Vista - Program crash notification Bradley Grainger 2009-08-18T04:23:44Z 2009-08-18T05:02:27Z <p>I'm not familiar with such an API, but Windows Vista did introduce three major areas of functionality that might be what you're thinking of:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/dd877200%28VS.85%29.aspx" rel="nofollow">Application Recovery and Restart</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/bb513635%28VS.85%29.aspx" rel="nofollow">Windows Error Reporting</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/aa373649%28VS.85%29.aspx" rel="nofollow">Restart Manager</a></li> </ul> <p>If you're interested in knowing application crash details (e.g., exception code, faulting module, call stack, etc.) from deployed installations, I highly recommend signing up for a <a href="https://winqual.microsoft.com/help/default.htm#about%5Fwindows%5Ferror%5Freporting%5Ffor%5Fhardware.htm" rel="nofollow">Windows Error Reporting</a> (aka Winqual) account, then collecting and analyzing the crash data. You don't need to add any special diagnostic code to your application; the default unhandled exception code in the OS will automatically collect the appropriate data and send a report.</p> http://stackoverflow.com/questions/1188284/net-large-revision-numbers-in-assemblyversionattribute/1188362#1188362 2 Answer by Bradley Grainger for .NET: Large revision numbers in AssemblyVersionAttribute Bradley Grainger 2009-07-27T14:10:01Z 2009-07-27T14:10:01Z <p>We decided to use the same convention, and due to the limitations of Windows version numbers we chose to drop the "micro" part of our version numbers in order to preserve the revision number. Our version numbers are now <code>[major].[minor].[revision / 10000].[revision % 10000]</code>, so the assemblies built from revision 65535 have the version 2.01.6.5535.</p> http://stackoverflow.com/questions/1132033/reasons-for-seeing-high-time-in-gc-in-perf-mon/1132110#1132110 2 Answer by Bradley Grainger for Reasons for seeing high" % Time in GC" in Perf Mon Bradley Grainger 2009-07-15T15:24:26Z 2009-07-15T15:36:58Z <p>Yes, this does sound excessive. Reducing the amount of GC would probably be the single best step you could take to reducing the runtime of your application (if that is your goal).</p> <p>A high "% time in GC" is typically caused by allocating and then throwing away thousands or millions of objects. A good way to find out what's going on is to use a memory profiler tool.</p> <p>Microsoft provides the free <a href="http://www.microsoft.com/downloads/details.aspx?familyid=A362781C-3870-43BE-8926-862B40AA0CD0&amp;displaylang=en" rel="nofollow">CLR Profiler</a>. This will show you every allocation, but will make your app run 10-60 times slower. You may need to run it on less input data so that it can finish analyzing in a reasonable amount of time.</p> <p>A great commercial tool is SciTech's <a href="http://www.memprofiler.com/" rel="nofollow">.NET Memory Profiler</a>. This imposes much less runtime overhead, and there is a free trial available. By taking multiple snapshots while your process is running, you can find out what type of objects are being frequently allocated (and then destroyed).</p> <p>Once you've identified the source of the allocations, you then need to examine the code and figure out how those allocations can be reduced. While there are no one-size-fits-all answers, some things I've encountered in the past include:</p> <ul> <li>String.Split can create hundreds of small short-lived strings. If you're doing a lot of string manipulation, it can help to process the string by walking it character-by-character.</li> <li>Creating arrays or lists of thousands of small classes (say, under 24 bytes in size) can be expensive; if those classes can be treated as value types, it can (sometimes) greatly improve things to change them to structs.</li> <li>Creating thousands of small arrays can increase memory usage a lot (because each array has a small amount of overhead); sometimes these can be replaced with one large array and indexes into a sub-section of it.</li> <li>Having a lot of finalizable objects (particularly if they're not being disposed) can put a lot of pressure on the garbage collector; ensure that you're correctly disposing all IDisposable objects, and note that your own types should (almost) <a href="http://www.bluebytesoftware.com/blog/2005/12/27/NeverWriteAFinalizerAgainWellAlmostNever.aspx" rel="nofollow">never have finalizers</a>.</li> <li>Microsoft has an article with <a href="http://msdn.microsoft.com/en-us/library/ms998547.aspx#scalenetchapt05%5Ftopic10" rel="nofollow">Garbage Collection Guidelines</a> for improving performance.</li> </ul> http://stackoverflow.com/questions/1119549/how-to-use-system-windows-forms-webbrowser-in-a-web-app/1119635#1119635 1 Answer by Bradley Grainger for How to use System.Windows.Forms.WebBrowser in a web app? Bradley Grainger 2009-07-13T14:03:47Z 2009-07-13T14:03:47Z <p>You could create your own worker thread and call <a href="http://msdn.microsoft.com/en-us/library/system.threading.thread.setapartmentstate.aspx" rel="nofollow">SetApartmentState</a> to change it to an STA thread; this thread could do the work of rendering web pages. However, a lot of inter-thread communication would be required and, as R. Bemrose said, the <code>System.Windows</code> classes aren't really designed to be used inside a web app.</p> <p>Another approach would be to rewrite the sample application (as a .EXE) to take two parameters: (1) the URL to download, and (2) the output location for the screenshot image. Your web app could create a temp path (for the output file), launch this program (with <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx" rel="nofollow">Process.Start</a>), wait for it to finish, load the output file it created, then delete the temp file once it had been sent to the client or was otherwise no longer necessary. (It would, of course, need to have different error handling than displaying a message box if something went wrong.)</p> http://stackoverflow.com/questions/1087726/performance-regarding-cached-ienumerablet-implementation/1087930#1087930 2 Answer by Bradley Grainger for Performance regarding cached IEnumerable<T> implementation Bradley Grainger 2009-07-06T16:29:27Z 2009-07-06T16:35:53Z <p>Locking in .NET is normally very quick (if there is no contention). Has profiling identified locking as the source of the performance problem? How long does it take to call <code>MoveNext</code> on the underlying enumerator?</p> <p>Additionally, the code as it stands is not thread-safe. You cannot safely call <code>this.cachedItems[currentIndex]</code> on one thread (in <code>if (currentIndex &lt; this.cachedItems.Count)</code>) while invoking <code>this.cachedItems.Add(current)</code> on another. From the <a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">List(T) documentation</a>: "A List(T) can support multiple readers concurrently, as long as the collection is not modified." To be thread-safe, you would need to protect all access to <code>this.cachedItems</code> with a lock (if there's any chance that one or more threads could modify it).</p> http://stackoverflow.com/questions/1079325/for-each-statement-in-c-cli/1079593#1079593 1 Answer by Bradley Grainger for "for each" statement in C++/CLI Bradley Grainger 2009-07-03T14:25:33Z 2009-07-03T14:25:33Z <p>I can't find any official documentation on it, but I can confirm the behavior you're seeing. It simply appears that the compiler is overly aggressive about finding the single statement following the <code>for each</code>, to the point of splitting the <code>else</code> from the <code>if</code>. It compiles it as if you had written the following, which is clearly incorrect.</p> <pre><code>array&lt;int&gt; ^ints = gcnew array&lt;int&gt;{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; for each(int i in ints) { if(i % 2 == 0) Debug::WriteLine("Even\n"); } else Debug::WriteLine("Odd\n"); </code></pre> <p>This is obviously different to how a regular C++ <code>for</code> loop behaves, so you may wish to file a bug at <a href="http://connect.microsoft.com" rel="nofollow">http://connect.microsoft.com</a>.</p> http://stackoverflow.com/questions/1020664/how-to-refactor-usage-of-an-iterator/1020899#1020899 2 Answer by Bradley Grainger for How to refactor usage of an iterator Bradley Grainger 2009-06-20T03:50:18Z 2009-06-20T03:50:18Z <p>As Nick said, create one <code>IEnumerator&lt;string&gt;</code> and pass it between methods. The code would look something like:</p> <p>NewLineEnumerator nle = new NewLineEnumerator();</p> <pre><code>while (bytesRead &gt; 0) { var nlenum = nle.Process(inputData, bytesRead); using (var enumerator = nlenum.GetEnumerator()) { while (enumerator.MoveNext()) { DoSomething(enumerator); Console.WriteLine(enumerator.Current); } } // ensure that bytesRead is decremented by the code that runs above } void DoSomething(IEnumerator&lt;string&gt; myenum) { while (myenum.MoveNext()) { if (ShouldProcess(myenum.Current)) { // process it } else { // return to outer loop break; } } } </code></pre> <p>(Note that if you're using .NET 1.0, and <code>IEnumerable</code>, not <code>IEnumerable&lt;string&gt;</code>, the <code>using</code> statement may not compile.)</p> http://stackoverflow.com/questions/974091/where-did-my-memory-go-large-private-bytes-count/976519#976519 1 Answer by Bradley Grainger for where did my memory go? large private bytes count Bradley Grainger 2009-06-10T15:56:52Z 2009-06-10T15:56:52Z <p>I had a similar problem in a WPF application, and <a href="http://code.logos.com/blog/2009/04/how%5Fto%5Fuse%5Fumdh%5Fto%5Ffind%5Fnative%5Fmemory%5Fleaks.html" rel="nofollow">used UMDH to track</a> where the native memory was being allocated. (Note that it is usually helpful to <a href="http://support.microsoft.com/kb/311503" rel="nofollow">set _NT_SYMBOL_PATH</a> to get good stack traces from the OS components.</p> <p>The logs showed that almost all of the memory was being allocated in the video driver. I found that the driver was more than a year out of date; I installed the latest version from the manufacturer's website and that fixed the problem.</p> http://stackoverflow.com/questions/873729/watching-global-events-created-by-a-native-process-in-a-net-process/873742#873742 1 Answer by Bradley Grainger for Watching Global Events created by a native process in a .NET process. Bradley Grainger 2009-05-17T02:06:22Z 2009-05-17T23:28:25Z <p><a href="http://msdn.microsoft.com/en-us/library/w9f75h7a.aspx" rel="nofollow">ThreadPool.RegisterWaitForSingleObject</a> can be used to execute a callback when the event is signalled. Obtain a WaitHandle for the named event object by using the <a href="http://msdn.microsoft.com/en-us/library/41acw8ct.aspx" rel="nofollow">EventWaitHandle constructor</a> that takes a string name.</p> <pre><code>bool createdNew; WaitHandle waitHandle = new EventWaitHandle(false, EventResetMode.ManualReset, @"Global\MyEvent", out createdNew); // createdNew should be 'false' because event already exists ThreadPool.RegisterWaitForSingleObject(waitHandle, MyCallback, null, -1, true); void MyCallback(object state, bool timedOut) { /* ... */ } </code></pre> http://stackoverflow.com/questions/227909/memory-leaks-in-c-wpf/228592#228592 2 Answer by Bradley Grainger for Memory Leaks in C# WPF Bradley Grainger 2008-10-23T04:54:48Z 2009-05-12T05:21:39Z <p>.NET Memory Profiler is an excellent tool, and one that I use frequently to diagnose memory leaks in WPF applications.</p> <p>As I'm sure you're aware, a good way to use it is to take a snapshot before using a particular feature, then take a second snapshot after using it, closing the window, etc. When comparing the two snapshots, you can see how many objects of a certain type are being allocated but not freed: this is a leak.</p> <p>After double-clicking on a type, the profiler will show you the shortest root paths keeping objects of that type alive. There are many different ways that .NET objects can leak in WPF, so posting the root path that you are seeing should help identify the ultimate cause. In general, however, try to understand why those objects are holding onto your object, and see if there's some way you can detach your event handlers, bindings, etc. when the window is closed.</p> <p>I recently posted a <a href="http://code.logos.com/blog/2008/10/detecting%5Fbindings%5Fthat%5Fshould%5Fbe%5Fonetime.html" rel="nofollow">blog entry</a> about a particular <a href="http://support.microsoft.com/kb/938416" rel="nofollow">memory leak</a> that can be caused by certain bindings; for that specific types of leak, the code there is useful for finding the Binding that's at fault. </p> http://stackoverflow.com/questions/763309/location-of-third-party-dlls-in-version-control-for-net-project/763658#763658 4 Answer by Bradley Grainger for Location of Third Party Dll's in Version Control for .NET Project Bradley Grainger 2009-04-18T15:59:11Z 2009-04-18T15:59:11Z <p>We use the following directory structure:</p> <pre><code>Solution\ Libraries\ third-party DLLs here Source\ Project1\ Project2\ </code></pre> <p>Each project references (using the "Browse" tab in the Add Reference dialog) the assemblies in the "Libraries" folder. These are automatically copied to each project's "bin" folder at compile time. (The "Libraries" folder is, of course, committed to version control.)</p> http://stackoverflow.com/questions/685977/how-to-put-xaml-right-align-code-into-a-style/686008#686008 1 Answer by Bradley Grainger for How to put XAML right-align code into a style? Bradley Grainger 2009-03-26T14:23:48Z 2009-03-26T14:32:55Z <p>Declare the Style in a ResourceDictionary, like so:</p> <pre><code>&lt;Window.Resources&gt; &lt;Style x:Key="RightAlignStyle" TargetType="{x:Type TextBlock}"&gt; &lt;Setter Property="TextAlignment" Value="Right" /&gt; &lt;/Style&gt; &lt;/Window.Resources&gt; </code></pre> <p>Then reference this style on each <code>DataGridTextColumn</code> element:</p> <pre><code>&lt;toolkit:DataGridTextColumn ElementStyle="{StaticResource RightAlignStyle}" ... &gt; </code></pre> http://stackoverflow.com/questions/292820/how-to-correctly-unregister-an-event-handler/292840#292840 18 Answer by Bradley Grainger for How to correctly unregister an event handler Bradley Grainger 2008-11-15T18:00:47Z 2008-12-08T03:47:44Z <p>The C# compiler's default implementation of adding an event handler calls <code>Delegate.Combine</code>, while removing an event handler calls <code>Delegate.Remove</code>:</p> <pre><code>Fire = (MyDelegate) Delegate.Remove(Fire, new MyDelegate(Program.OnFire)); </code></pre> <p>The Framework's implementation of <code>Delegate.Remove</code> doesn't look at the <code>MyDelegate</code> object itself, but at the method the delegate refers to (<code>Program.OnFire</code>). Thus, it's perfectly safe to create a new <code>MyDelegate</code> object when unsubscribing an existing event handler. Because of this, the C# compiler allows you to use a shorthand syntax (that generates exactly the same code behind the scenes) when adding/removing event handlers: you can omit the <code>new MyDelegate</code> part:</p> <pre><code>Fire += OnFire; Fire -= OnFire; </code></pre> <p>When the last delegate is removed from the event handler, <code>Delegate.Remove</code> returns null. As you have found out, it's essential to check the event against null before raising it:</p> <pre><code>MyDelegate handler = Fire; if (handler != null) handler("Hello 3"); </code></pre> <p>It's assigned to a temporary local variable to defend against a possible race condition with unsubscribing event handlers on other threads. (See <a href="http://code.logos.com/blog/2008/11/events_and_threads_part_4.html" rel="nofollow">my blog post</a> for details on the thread safety of assigning the event handler to a local variable.) Another way to defend against this problem is to create an empty delegate that is always subscribed; while this uses a little more memory, the event handler can never be null (and the code can be simpler):</p> <pre><code>public static event MyDelegate Fire = delegate { }; </code></pre> http://stackoverflow.com/questions/339709/what-is-the-equivalent-of-javas-abstractmap-in-c/339835#339835 2 Answer by Bradley Grainger for What is the equivalent of Java's AbstractMap in C#? Bradley Grainger 2008-12-04T08:00:15Z 2008-12-04T08:05:35Z <p>Wintellect's <a href="http://www.codeplex.com/PowerCollections" rel="nofollow">PowerCollections library</a> includes a <code>DictionaryBase</code> class (<a href="https://powercollections.svn.codeplex.com/svn/Source/PowerCollections/DictionaryBase.cs" rel="nofollow">source code</a>) that implements most of the standard IDictionary&lt;K, V> interface. From the class' documentation comments:</p> <blockquote> <p>DictionaryBase is a base class that can be used to more easily implement the generic IDictionary&lt;T> and non-generic IDictionary interfaces.</p> <p>To use DictionaryBase as a base class, the derived class must override Count, GetEnumerator, TryGetValue, Clear, Remove, and the indexer set accessor.</p> </blockquote> http://stackoverflow.com/questions/334256/how-do-i-add-a-custom-xmldeclaration-with-xmldocument-xmldeclaration/334291#334291 3 Answer by Bradley Grainger for How do I add a custom XmlDeclaration with XmlDocument/XmlDeclaration? Bradley Grainger 2008-12-02T15:19:29Z 2008-12-02T15:19:29Z <p>What you are wanting to create is not an XML declaration, but a "processing instruction". You should use the <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmlprocessinginstruction.aspx" rel="nofollow">XmlProcessingInstruction</a> class, not the <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmldeclaration.aspx" rel="nofollow">XmlDeclaration</a> class, e.g.:</p> <pre><code>XmlDocument doc = new XmlDocument(); XmlDeclaration declaration = doc.CreateXmlDeclaration("1.0", "ISO-8859-1", null); doc.AppendChild(declaration); XmlProcessingInstruction pi = doc.CreateProcessingInstruction("MyCustomNameHere", "attribute1=\"val1\" attribute2=\"val2\""); doc.AppendChild(pi); </code></pre> http://stackoverflow.com/questions/281135/can-someone-explain-encoding-unicode-getbyteshello-for-me/281235#281235 2 Answer by Bradley Grainger for Can someone explain Encoding.Unicode.GetBytes("hello") for me? Bradley Grainger 2008-11-11T15:35:54Z 2008-11-11T15:35:54Z <p>At <a href="http://www.unicode.org/charts/" rel="nofollow">http://www.unicode.org/charts/</a> you can find all the Unicode code charts. <a href="http://www.unicode.org/charts/PDF/U0000.pdf" rel="nofollow">http://www.unicode.org/charts/PDF/U0000.pdf</a> shows that the code point for 'h' is U+0068. (Another great tool for viewing this data is <a href="http://www.babelstone.co.uk/Software/BabelMap.html" rel="nofollow">BabelMap</a>.)</p> <p>The exact details of UTF-16 encoding can be found at <a href="http://unicode.org/faq/utf_bom.html#6" rel="nofollow">http://unicode.org/faq/utf_bom.html#6</a> and <a href="http://www.ietf.org/rfc/rfc2781.txt" rel="nofollow">http://www.ietf.org/rfc/rfc2781.txt</a>. In short, U+0068 is encoded (in UTF-16LE) as 0x68 0x00. In decimal, this is the first two bytes you see: 104 0. </p> <p>The other characters are encoded similarly.</p> <p>Finally, a great reference (when trying to understand the various Unicode specifications), apart from the <a href="http://www.unicode.org/versions/Unicode5.1.0/" rel="nofollow">Unicode Standard</a> itself, is the <a href="http://unicode.org/glossary/" rel="nofollow">Unicode Glossary</a>.</p> http://stackoverflow.com/questions/278466/throwing-multiple-exceptions-in-net-c/278543#278543 6 Answer by Bradley Grainger for Throwing multiple exceptions in .Net/C# Bradley Grainger 2008-11-10T17:22:14Z 2008-11-10T22:19:06Z <p>The <a href="http://msdn.microsoft.com/magazine/cc163340.aspx" rel="nofollow">Task Parallel Library extensions</a> for .NET (which <a href="http://blogs.msdn.com/pfxteam/archive/2008/10/10/8994927.aspx" rel="nofollow">will become part of .NET 4.0</a>) follow the pattern suggested in other answers: collecting all exceptions that have been thrown into an AggregateException class.</p> <p>By always throwing the same type (whether there is one exception from the child work, or many), the calling code that handles the exception is easier to write.</p> <p>In the .NET 4.0 CTP, <code>AggregateException</code> has a public constructor (that takes <code>IEnumerable&lt;Exception&gt;</code>); it may be a good choice for your application.</p> <p>If you're targeting .NET 3.5, consider cloning the parts of the <code>System.Threading.AggregateException</code> class that you need in your own code, e.g., some of the constructors and the InnerExceptions property. (You can place your clone in the <code>System.Threading</code> namespace inside your assembly, which could cause confusion if you exposed it publicly, but will make upgrading to 4.0 easier later on.) When .NET 4.0 is released, you should be able to “upgrade” to the Framework type by deleting the source file containing your clone from your project, changing the project to target the new framework version, and rebuilding. Of course, if you do this, you need to carefully track changes to this class as Microsoft releases new CTPs, so that your code doesn't become incompatible. (For example, this seems like a useful general-purpose class, and they could move it from <code>System.Threading</code> to <code>System</code>.) In the worst case, you can just rename the type and move it back into your own namespace (this is very easy with most refactoring tools).</p> http://stackoverflow.com/questions/277814/can-i-a-implement-disposebase-abstract-class/278098#278098 1 Answer by Bradley Grainger for Can I a implement DisposeBase abstract class? Bradley Grainger 2008-11-10T15:13:00Z 2008-11-10T15:13:00Z <p>As Marc Gravell said, you only need a finalizer if you are handling unmanaged objects. Introducing an unnecessary finalizer in a base class is a bad idea, as per the reasons in section 1.1.4 of the <a href="http://www.bluebytesoftware.com/blog/PermaLink.aspx?guid=88e62cdf-5919-4ac7-bc33-20c06ae539ae" rel="nofollow">Dispose, Finalization, and Resource Management</a> guidelines:</p> <blockquote> <p>There is a real cost associated with instances with finalizers, both from a performance and code complexity standpoint. ... Finalization increases the cost and duration of your object’s lifetime as each finalizable object must be placed on a special finalizer registration queue when allocated, essentially creating an extra pointer-sized field to refer to your object. Moreover, objects in this queue get walked during GC, processed, and eventually promoted to yet another queue that the GC uses to execute finalizers. Increasing the number of finalizable objects directly correlates to more objects being promoted to higher generations, and an increased amount of time spent by the GC walking queues, moving pointers around, and executing finalizers. Also, by keeping your object’s state around longer, you tend to use memory for a longer period of time, which leads to an increase in working set.</p> </blockquote> <p>If you use <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.safehandle.aspx" rel="nofollow">SafeHandle</a> (and related classes), it's unlikely that any classes that derive from DisposableBase would ever need to be finalized.</p> http://stackoverflow.com/questions/278037/soap-client-in-c-without-access-to-a-wsdl-file/278074#278074 4 Answer by Bradley Grainger for SOAP Client in C# without access to a WSDL-file Bradley Grainger 2008-11-10T15:01:59Z 2008-11-10T15:01:59Z <p>If you write a class that derives from <code>System.Web.Services.Protocols.SoapHttpClientProtocol</code> (and has the correct attributes, e.g., <code>WebServiceBinding</code>, <code>SoapDocumentMethod</code>, etc. applied to it and its methods), you can fairly easily call SOAP methods without needing the WSDL file.</p> <p>The easiest way to do this would probably be to write your own ASP.NET web service that replicates the third party's SOAP API, generate a proxy class from it, then manually edit the file to ensure that the URL, namespaces, method names, parameter types, etc. are correct for the third-party API you want to call.</p> http://stackoverflow.com/questions/269243/how-do-you-debug-a-deadlocked-windows-app-on-a-customer-machine/269255#269255 2 Answer by Bradley Grainger for How do you debug a deadlocked Windows app on a customer machine Bradley Grainger 2008-11-06T16:07:23Z 2008-11-06T16:07:23Z <p>See the Microsoft support article <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;Q286350" rel="nofollow">How to use ADPlus to troubleshoot "hangs" and "crashes"</a>, as well as the helpful blog post <a href="http://mattonsoftware.com/archive/2006/09/21/debugging-production-applications-using-adplus.aspx" rel="nofollow">Debugging Production Applications using ADPlus</a>.</p> <p>Both of these articles are about "ADPlus", a VBScript tool supplied with Debugging Tools for Windows that can be used to generate minidumps from a production environment (which can later be loaded up with WinDbg on your development machine). ADPlus has a lot of functionality and a lot of options, so it may take some reading, experimentation, and practice to find the best way to use it in your environment.</p> http://stackoverflow.com/questions/269101/c-reading-back-encrypted-passwords/269218#269218 2 Answer by Bradley Grainger for C# Reading back encrypted passwords Bradley Grainger 2008-11-06T15:54:03Z 2008-11-06T15:54:03Z <p>To securely store a password so that it can be read back, use the <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.protecteddata.aspx" rel="nofollow">ProtectedData</a> class.</p> <pre><code>public static string ProtectPassword(string password) { byte[] bytes = Encoding.Unicode.GetBytes(password); byte[] protectedPassword = ProtectedData.Protect(bytes, null, DataProtectionScope.CurrentUser); return Convert.ToBase64String(protectedPassword); } public static string UnprotectPassword(string protectedPassword) { byte[] bytes = Convert.FromBase64String(protectedPassword); byte[] password = ProtectedData.Unprotect(bytes, null, DataProtectionScope.CurrentUser); return Encoding.Unicode.GetString(password); } </code></pre> http://stackoverflow.com/questions/269181/when-a-dll-is-not-found-while-p-invoking-how-can-i-get-a-message-about-the-speci/269197#269197 1 Answer by Bradley Grainger for When a DLL is not found while P/Invoking, how can I get a message about the specific unmanaged DLL that is missing ? Bradley Grainger 2008-11-06T15:48:01Z 2008-11-06T15:48:01Z <p>I don't think there's any specific API you can use to pinpoint why <code>LoadLibrary</code> (the underlying Win32 API) failed for 'A.dll'. I recommend the use of a tool like <a href="http://www.dependencywalker.com/" rel="nofollow">Dependency Walker</a> to troubleshoot DLL loading errors.</p> http://stackoverflow.com/questions/268982/net-sqlconnection-not-being-closed-even-when-within-a-using/268996#268996 7 Answer by Bradley Grainger for .net SqlConnection not being closed even when within a using { } Bradley Grainger 2008-11-06T15:02:17Z 2008-11-06T15:02:17Z <p>The <code>SqlProvider</code> used by the LINQ <code>DataContext</code> only closes the SQL connection (through <code>SqlConnectionManager.DisposeConnection</code>) if it was the one to open it. If you give an already-open <code>SqlConnection</code> object to the <code>DataContext</code> constructor, it will not close it for you. Thus, you should write:</p> <pre><code>using (SqlConnection conn = GetConnection()) using (DataContext db = new DataContext(conn)) { ... Code } </code></pre> http://stackoverflow.com/questions/268853/is-it-possible-to-write-quakes-fast-invsqrt-function-in-c/268901#268901 4 Answer by Bradley Grainger for Is it possible to write Quake's fast InvSqrt() function in C#? Bradley Grainger 2008-11-06T14:39:46Z 2008-11-06T14:39:46Z <p>Use <a href="http://msdn.microsoft.com/en-us/library/system.bitconverter.aspx" rel="nofollow">BitConverter</a> if you want to avoid unsafe code.</p> <pre><code>float InvSqrt(float x) { float xhalf = 0.5f * x; int i = BitConverter.ToInt32(BitConverter.GetBytes(x), 0); i = 0x5f3759df - (i &gt;&gt; 1); x = BitConverter.ToSingle(BitConverter.GetBytes(i), 0); x = x * (1.5f - xhalf * x * x); return x; } </code></pre> <p>Otherwise, the C# code is exactly the same as the C code you gave, except that the method needs to be marked as unsafe:</p> <pre><code>unsafe float InvSqrt(float x) { ... } </code></pre> http://stackoverflow.com/questions/253865/in-a-wpf-app-is-there-a-object-i-can-assign-to-filesystemwatcher-synchronizingob/254120#254120 2 Answer by Bradley Grainger for In a WPF app, is there a object I can assign to FileSystemWatcher.SynchronizingObject? Bradley Grainger 2008-10-31T16:32:23Z 2008-10-31T16:32:23Z <p>Reflector shows that the only class that implements <code>ISynchronizeInvoke</code> (i.e., the type of the <code>FileSystemWatcher.SynchronizingObject</code> property) is <code>System.Windows.Form.Control</code> (and its subclasses); there do not appear to be any WPF objects that implement this interface.</p> http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228460#228460 6 Answer by Bradley Grainger for Best way to reverse a string in C# 2.0 Bradley Grainger 2008-10-23T03:40:07Z 2008-10-23T04:08:22Z <p>If the string contains Unicode data (strictly speaking, non-BMP characters) the other methods that have been posted will corrupt it, because you cannot swap the order of high and low surrogate code units when reversing the string. (More information about this can be found on <a href="http://code.logos.com/blog/2008/10/how_to_reverse_a_unicode_string_in_c.html" rel="nofollow">my blog</a>.)</p> <p>The following code sample will correctly reverse a string that contains non-BMP characters, e.g., "\U00010380\U00010381" (Ugaritic Letter Alpa, Ugaritic Letter Beta).</p> <pre><code>public static string Reverse(this string input) { if (input == null) throw new ArgumentNullException("input"); // allocate a buffer to hold the output char[] output = new char[input.Length]; for (int outputIndex = 0, inputIndex = input.Length - 1; outputIndex &lt; input.Length; outputIndex++, inputIndex--) { // check for surrogate pair if (input[inputIndex] &gt;= 0xDC00 &amp;&amp; input[inputIndex] &lt;= 0xDFFF &amp;&amp; inputIndex &gt; 0 &amp;&amp; input[inputIndex - 1] &gt;= 0xD800 &amp;&amp; input[inputIndex - 1] &lt;= 0xDBFF) { // preserve the order of the surrogate pair code units output[outputIndex + 1] = input[inputIndex]; output[outputIndex] = input[inputIndex - 1]; outputIndex++; inputIndex--; } else { output[outputIndex] = input[inputIndex]; } } return new string(output); } </code></pre> http://stackoverflow.com/questions/223360/how-does-gb18030-differ-from-unicode/223793#223793 4 Answer by Bradley Grainger for How does GB18030 differ from Unicode? Bradley Grainger 2008-10-21T22:33:45Z 2008-10-21T22:33:45Z <p>As per the <a href="http://en.wikipedia.org/wiki/GB_18030" rel="nofollow">Wikipedia article on GB18030</a>, "GB18030 can be be considered a Unicode Transformation Format (i.e. an encoding of all Unicode code points) that maintains compatibility with a legacy character set." That is, all Unicode characters can be encoded in GB18030, but they will be encoded with different byte sequences than would be generated with UTF-8 or UTF-16. Handling the GB18030 encoding doesn't require any more special techniques than are required for any other non-Unicode encoding.</p> <p>The <a href="http://www.icu-project.org/" rel="nofollow">ICU project</a> is an open source library (for C or Java) that has full support for many different encodings, including GB18030. Information on converting between different encodings with ICU can be found <a href="http://icu-project.org/userguide/conversion.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/218027/a-keyboard-shortcut-in-vs2005-8-for-exit-current-method/220528#220528 2 Answer by Bradley Grainger for A keyboard shortcut in VS2005/8 for "Exit Current Method" Bradley Grainger 2008-10-21T02:00:15Z 2008-10-21T02:48:30Z <p>The following sequence of keystrokes works for me (tested in Visual Studio 2008); I was able to record them as a temporary macro and play them back successfully:</p> <ol> <li><code>Ctrl+M, Ctrl+M</code> (Edit.ToggleOutliningExpansion: collapses the current method)</li> <li><code>Right arrow</code> (skips past the collapsed parameter list)</li> <li><code>Ctrl+]</code> (Edit.GotoBrace: goes to the opening brace)</li> <li><code>Ctrl+]</code> (Edit.GotoBrace: goes to the closing brace)</li> <li><code>Ctrl+Shift+F10</code> (Debug.SetNextStatement: sets the next statement to the closing brace at the end of the function)</li> <li><code>F10</code> (Debug.StepOver: leaves the method)</li> </ol> http://stackoverflow.com/questions/198030/are-there-problems-with-rendering-wpf-over-remote-desktop-under-windows-xp/198232#198232 5 Answer by Bradley Grainger for Are there problems with rendering WPF over Remote Desktop under Windows XP? Bradley Grainger 2008-10-13T16:48:02Z 2008-10-13T16:48:02Z <p>As of .NET 3.5 SP1, all WPF graphics are remoted as bitmaps, even on Vista-to-Vista communication. From <a href="http://blogs.msdn.com/jgoldb/archive/2008/05/15/what-s-new-for-performance-in-wpf-in-net-3-5-sp1.aspx" rel="nofollow">http://blogs.msdn.com/jgoldb/archive/2008/05/15/what-s-new-for-performance-in-wpf-in-net-3-5-sp1.aspx</a>:</p> <blockquote> <p>We now remote as bitmaps in ALL cases.</p> <p>The reason is that WPF 3.5 SP1 now uses a new graphics DLL (wpfgfx.dll) and certain changes could not be made to Vista’s existing graphics DLL (milcore.dll) that is also used by DWM.</p> </blockquote> <p>As other commenters have noted, the performance will greatly depend on the design of your application’s UI. The potential upshot is that you only have to test in one scenario; remoting performance should now be the same regardless of the client or server.</p> http://stackoverflow.com/questions/196585/how-can-you-see-the-sql-that-is-causing-an-error-on-submitchanges-in-linq-to-sql/196607#196607 7 Answer by Bradley Grainger for How can you see the sql that is causing an error on SubmitChanges in LINQ to SQL? Bradley Grainger 2008-10-13T03:02:24Z 2008-10-13T03:02:24Z <p>A simple way to do this is to use the <a href="http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.log.aspx" rel="nofollow">DataContext.Log</a> property:</p> <pre><code>using (MyDataContext ctx = new MyDataContext()) { StringWriter sw = new StringWriter(); ctx.Log = sw; // execute some LINQ to SQL operations... string sql = sw.ToString(); // put a breakpoint here, log it to a file, etc... } </code></pre> http://stackoverflow.com/questions/269243/how-do-you-debug-a-deadlocked-windows-app-on-a-customer-machine/269255#269255 Comment by Bradley Grainger on How do you debug a deadlocked Windows app on a customer machine Bradley Grainger 2009-09-15T14:43:01Z 2009-09-15T14:43:01Z From <a href="http://support.microsoft.com/kb/286350" rel="nofollow">support.microsoft.com/kb/286350</a>: &quot;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.&quot; I haven't tried, but you could probably even run it off a flash drive. http://stackoverflow.com/questions/1188284/net-large-revision-numbers-in-assemblyversionattribute/1188362#1188362 Comment by Bradley Grainger on .NET: Large revision numbers in AssemblyVersionAttribute Bradley Grainger 2009-07-28T21:27:51Z 2009-07-28T21:27:51Z @wcoenen: This is a very good point, which I had forgotten. We had to use <code>[major].[minor].[revision].0</code> 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 &quot;high bit&quot; in the minor field). Our minor version is currently 0, so we've got room for more information there. http://stackoverflow.com/questions/1188284/net-large-revision-numbers-in-assemblyversionattribute/1188362#1188362 Comment by Bradley Grainger on .NET: Large revision numbers in AssemblyVersionAttribute Bradley Grainger 2009-07-28T21:24:46Z 2009-07-28T21:24:46Z @Ray Hayes: Our NAnt build script uses <code>svn info . --xml</code> to get the revision number of the working copy, then calls a custom-written utility to output that revision into a &quot;SolutionInfo.cs&quot; file containing an [AssemblyVersion] attribute. This file is not added to Subversion, but is just referenced by all the projects (use &quot;Add As Link&quot; in VS) in the solution, so that they're all built with the latest version number. http://stackoverflow.com/questions/1087726/performance-regarding-cached-ienumerablet-implementation/1087930#1087930 Comment by Bradley Grainger on Performance regarding cached IEnumerable<T> implementation Bradley Grainger 2009-07-07T14:14:06Z 2009-07-07T14:14:06Z 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&lt;T&gt;, so the best I could say is that the behaviour is &quot;undefined&quot;. (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?) http://stackoverflow.com/questions/1079325/for-each-statement-in-c-cli/1079362#1079362 Comment by Bradley Grainger on "for each" statement in C++/CLI Bradley Grainger 2009-07-03T14:18:50Z 2009-07-03T14:18:50Z This change would simply introduce (another) syntax error. http://stackoverflow.com/questions/465953/throwing-exceptions-to-control-flow-code-smell/466036#466036 Comment by Bradley Grainger on Throwing exceptions to control flow - code smell? Bradley Grainger 2009-05-25T15:48:53Z 2009-05-25T15:48:53Z Are you thinking of &quot;vexing exceptions&quot;? <a href="http://blogs.msdn.com/ericlippert/archive/2008/09/10/vexing-exceptions.aspx" rel="nofollow">blogs.msdn.com/ericlippert/archive/&hellip;</a> http://stackoverflow.com/questions/873729/watching-global-events-created-by-a-native-process-in-a-net-process/873742#873742 Comment by Bradley Grainger on Watching Global Events created by a native process in a .NET process. Bradley Grainger 2009-05-18T14:30:55Z 2009-05-18T14:30:55Z In the original code you gave, the second argument to CreateEvent is TRUE, indicating that it's a manual-reset event. Unless the event is reset, the callback will keep getting executed because the underlying event is still signaled. If it's the callback's responsibility to reset the event, then call 'waitHandle.Reset()' in MyCallback. If you're expecting someone else to reset the event, I'm not sure of a good way to execute the callback only once until the event is reset, then set again. http://stackoverflow.com/questions/873729/watching-global-events-created-by-a-native-process-in-a-net-process/873742#873742 Comment by Bradley Grainger on Watching Global Events created by a native process in a .NET process. Bradley Grainger 2009-05-17T23:29:24Z 2009-05-17T23:29:24Z Yes, and there's an overload of the constructor you can call to verify this; it has an 'out' bool parameter that tells you whether the event already existed or was created by the constructor. In your case, the out value should be false. I've updated the code snippet to show this. http://stackoverflow.com/questions/811502/c-file-delete-file-being-used-by-another-process/811555#811555 Comment by Bradley Grainger on C# File.Delete, file being used by another process Bradley Grainger 2009-05-01T14:40:40Z 2009-05-01T14:40:40Z In general, it's a bad idea to call GC.Collect: <a href="http://blogs.msdn.com/ricom/archive/2004/11/29/271829.aspx" rel="nofollow">blogs.msdn.com/ricom/archive/&hellip;</a> Since Image implements IDisposable, you should call img.Dispose() instead, or (preferably) use a &quot;using&quot; block. http://stackoverflow.com/questions/811606/sort-japanese-text-using-aiueo-order Comment by Bradley Grainger on Sort Japanese Text using "aiueo" order Bradley Grainger 2009-05-01T14:35:18Z 2009-05-01T14:35:18Z Are your strings using Latin or Hiragana characters? http://stackoverflow.com/questions/786383/c-events-and-thread-safety/786455#786455 Comment by Bradley Grainger on C# Events and Thread Safety Bradley Grainger 2009-04-29T20:58:37Z 2009-04-29T20:58:37Z Joe Duffy's &quot;Concurrent Programming on Windows&quot; covers the JIT optimization and memory model aspect of the question; see <a href="http://code.logos.com/blog/2008/11/events_and_threads_part_4.html" rel="nofollow">code.logos.com/blog/2008/&hellip;</a> http://stackoverflow.com/questions/191251/how-to-install-wpf-application-to-a-pc-without-framework-3-5/196214#196214 Comment by Bradley Grainger on How to install WPF application to a PC without Framework 3.5 Bradley Grainger 2009-04-27T14:05:09Z 2009-04-27T14:05:09Z Yes, I can't imagine that it'll be too useful in practice until .NET 4.0 ships. Then (because virtually no one will have it installed already), the Client Profile should make installation a lot slimmer. http://stackoverflow.com/questions/283063/linq-distinct-operator-ignore-case/283189#283189 Comment by Bradley Grainger on LINQ Distinct operator ignore case? Bradley Grainger 2009-03-26T23:34:52Z 2009-03-26T23:34:52Z This sample fails when initialized for the tr-TR culture if the current culture is en-US, because GetHashCode will report different values for I (U+0049) and ı (U+0131), whereas Equals will consider them equal. http://stackoverflow.com/questions/685934/does-c-clean-up-c-allocated-memory/685944#685944 Comment by Bradley Grainger on Does C# clean up C++ allocated memory? Bradley Grainger 2009-03-26T14:31:53Z 2009-03-26T14:31:53Z Using IDisposable is a good resource management strategy, but how do you implement the Dispose method to actually free the memory? http://stackoverflow.com/questions/196253/linq-to-sql-where-does-your-datacontext-live/196264#196264 Comment by Bradley Grainger on LINQ to SQL - where does your DataContext live? Bradley Grainger 2009-01-29T15:31:22Z 2009-01-29T15:31:22Z @Andrei Rinea: While the Dispose implementation in the generated class may be &quot;pretty useless&quot;, the implementation in the base class (DataContext) is not.