User Alex Lyman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:27:51Z http://stackoverflow.com/feeds/user/5897 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/507520/how-do-i-get-the-localizable-property-and-support-in-my-own-design-tool/1250242#1250242 1 Answer by Alex Lyman for How do I get the Localizable property and support in my own design tool? Alex Lyman 2009-08-09T00:21:52Z 2009-08-09T00:21:52Z <p>You need to add a <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.design.localizationextenderprovider.aspx" rel="nofollow">System.ComponentModel.Design.LocalizationExtenderProvider</a> to your design surface.</p> http://stackoverflow.com/questions/1113000/how-do-start-stop-services-using-net-stop-command-in-c/1113008#1113008 3 Answer by Alex Lyman for how do start/stop services using net stop command in c# Alex Lyman 2009-07-11T05:16:31Z 2009-07-11T05:16:31Z <p>You might want to take a look at the <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.servicecontroller.aspx" rel="nofollow">System.ServiceProcess.ServiceController</a> class, which provides a managed interface to Windows' Services.</p> <p>In this case:</p> <pre><code>var mysql = new System.ServiceProcess.ServiceController("mysql"); if (mysql .Status == ServiceControllerStatus.Stopped) { mysql.Start(); } </code></pre> http://stackoverflow.com/questions/852867/disable-vista-uac-per-application-or-elevate-privileges-without-prompt 2 Disable Vista UAC per-application, or elevate privileges without prompt? Alex Lyman 2009-05-12T13:45:07Z 2009-06-18T20:49:08Z <p>I have an app that normal users need to be able to run, but requires administrator privileges to actually function.</p> <p>I tried to make the shortcut that my users run it with "Run as administrator" but this just causes a UAC prompt whenever they try to run the app.</p> <p>Is there any way to elevate privileges programatically, without my users needing to go through a UAC prompt and/or knowing an administrator password? From a security standpoint, I understand that most applications shouldn't be allowed to do this, so I'm hoping there is some way to do it if I can provide a valid username/password pair, or something.</p> <p>The app is written in C#, so a fully managed solution would be preferred, but <strong>p/Invoke Black Magic</strong> (or even writing an <strong>MC++ Wrapper Which We Do Not Speak About</strong>) would be <em>more</em> acceptable than disabling UAC entirely.</p> http://stackoverflow.com/questions/862667/how-to-create-a-visual-studio-setup-project-registry-value-with-the-application-i 0 How to create a Visual Studio Setup Project registry value with the application install path? Alex Lyman 2009-05-14T10:45:55Z 2009-05-14T11:12:30Z <p>I have a very simple application installer that needs to add an action to the shell menu of all files (HKCR*\shell), and I've run into a brick wall: how do I insert the installed path of the application into a registry value? I've tried everything I can think of:</p> <ul> <li><code>[Path]</code></li> <li><code>[ApplicationFolder]</code></li> <li><code>[ApplicationPath]</code></li> <li><code>[InstallPath]</code></li> <li><code>[InstallRoot]</code></li> <li><code>[InstallFolder]</code></li> <li><code>[InstallTarget]</code></li> <li><code>[TargetPath]</code></li> </ul> <p>I even tried adding one that I know works in other places (<code>[Manufacturer]</code>) to make sure that the bracket-values syntax actually works in the Registry (it does).</p> <p>Anyone <em>know</em>, or at the least, have any ideas that I haven't tried?</p> http://stackoverflow.com/questions/799163/is-there-any-way-for-an-asp-net-webservice-method-to-use-async-methods/799450#799450 2 Answer by Alex Lyman for Is there any way for an ASP.NET webservice method to use async methods? Alex Lyman 2009-04-28T19:16:21Z 2009-04-28T19:16:21Z <p>With the specific use-case that you provide, with a single async call, it would not be worth it, but, yes, you can invoke async calls from a web service:</p> <pre><code>[WebMethod] public SomeResult SynchronousMethod() { IAsyncResult someWork = BeginSomeAsyncWork(); IAsyncResult otherWork = BeginOtherAsyncWork(); WaitHandle[] all = new WaitHandle[] { someWork.AsyncWaitHandle, otherWork.AsyncWaitHandle }; // TODO: Do some synchronous work here, if you need to WaitHandle.WaitAll(all); /* this is the important part, it waits for all of the async work to be complete */ var someWorkResult = EndSomeAsyncWork(someWork); var otherWorkResult = EndSomeAsyncWork(otherWork); // TODO: Process the results from the async work // TODO: Return data to the client } </code></pre> <p>The important thing here is the <a href="http://msdn.microsoft.com/en-us/library/system.threading.waithandle.waitall.aspx" rel="nofollow">WaitHandle.WaitAll</a>, which will block until all of the async work is complete. If you can process the results individually, you could use <a href="http://msdn.microsoft.com/en-us/library/system.threading.waithandle.waitany.aspx" rel="nofollow">WaitHandle.WaitAny</a> instead, but the code gets more complicated, and is a bit out of the scope of the question.</p> http://stackoverflow.com/questions/661010/is-there-an-html-version-of-the-ecma-335-cli-specification 1 Is there an HTML version of the ECMA-335 CLI Specification? Alex Lyman 2009-03-19T03:51:55Z 2009-04-16T17:46:35Z <p>I'm currently writing a blog post about the internals of the CLI, and I try to cite where something gets said. Mainly in the Partition III docs.</p> <p>I'm currently linking to the ECMA page for it, where there are a bunch of pdf- and zip-files, and making section references where they are needed; but I would really like to link directly to the sections in the text.</p> <p>Does anyone know where I can find an HTML version of the specification? I've been all over MSDN, Mono and Google looking, but have thus-far come up empty.</p> http://stackoverflow.com/questions/735299/after-implementing-fmod-visual-c-test-strange-behavior-all-tests-fail-unabl/735756#735756 0 Answer by Alex Lyman for After implementing fmod Visual C++ test strange behavior - All tests fail - Unable to get type.... Error: System.IO.FileNotFoundException - if certain line of code in one test Alex Lyman 2009-04-09T20:06:11Z 2009-04-09T20:06:11Z <p>My best guess, from what you've posted so-far is that the exception is being thrown somewhere inside the CLR type loader — it looks like an assembly that you're indirectly dependent on either isn't in the GAC, or isn't being copied to the test directory.</p> <p>Is there an actual stack trace in the test results? That might help narrow down what type(s) its trying to load.</p> http://stackoverflow.com/questions/599774/when-is-an-ambiguous-grammar-or-production-rule-ok-bison-shift-reduce-warnings/716204#716204 1 Answer by Alex Lyman for When is an ambiguous grammar or production rule OK? (bison shift/reduce warnings) Alex Lyman 2009-04-04T00:52:51Z 2009-04-04T00:52:51Z <p>When I need to prove that a grammar is unambiguous, I tend to write it first as a <a href="http://en.wikipedia.org/wiki/Parsing%5Fexpression%5Fgrammar" rel="nofollow">Parsing Expression Grammar</a>, and then convert it by hand to whatever grammar type the tool set I'm using for the project needs. In my experience, the need for this level of proof is very rare, though, since most shift/reduce conflicts I have come across have been fairly trivial ones to show the correctness of (on the order of your example).</p> http://stackoverflow.com/questions/258724/todo-txt-and-task-management/688505#688505 0 Answer by Alex Lyman for todo.txt and task management Alex Lyman 2009-03-27T04:01:51Z 2009-03-27T04:01:51Z <p>As others have said, GTD is all about discipline: actually doing the things on your list. But, be sure to prioritize.</p> <p>For my task list management, I currently use <a href="http://www.rememberthemilk.com/" rel="nofollow">Remember the Milk</a>, which is fairly handy with its IM integration (it sends IM reminders). My biggest challenge has been remembering to add the tasks, but I'm getting better at it, since somebody pointed out I could make a recurring task to remind me :P.</p> http://stackoverflow.com/questions/668216/how-to-build-a-kernel-image-using-visual-studio/668808#668808 4 Answer by Alex Lyman for How to build a kernel image using Visual Studio Alex Lyman 2009-03-21T05:43:26Z 2009-03-21T22:09:00Z <p>OSDev has a <a href="http://wiki.osdev.org/Visual%5FStudio" rel="nofollow">wiki entry on Visual Studio</a>, that may provide some insight, especially with the links to Kaushik Srenevasan's <a href="http://ksrenevasan.blogspot.com/2005/10/writing-multiboot-pe-kernels-using.html" rel="nofollow">blog</a> <a href="http://ksrenevasan.blogspot.com/2005/10/writing-multiboot-pe-kernels-using_03.html" rel="nofollow">entries</a> on the subject of PE kernels designed to be loaded by multiboot-based bootloaders (like GRUB).</p> <p>A couple of large, broad-strokes things you should know:</p> <ul> <li>In the multiboot header, you need to use the AOUT kludge.</li> <li>You need to specify the /BASE:0x100000 argument to the linker, so the final binary code is based to where the bootloader is going to put it.</li> <li>Your kernel's entry point (usually called '<code>kmain</code>') needs to have <code>__declspec(noreturn)</code> on it, and you will need to do an <code>__asm { hlt }</code> instead of returning.</li> </ul> http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files 7 Tool for adding license headers to source files? Alex Lyman 2008-09-30T03:37:12Z 2009-03-20T20:03:27Z <p>I'm looking for a tool that will, in bulk, add a license header to some source files, some of which already have the header. Is there a tool out there that will insert a header, if it is not already present?</p> <p><em>Edit: I am intentionally not marking an answer to this question, since answers are basically all environment-specific and subjective</em> </p> http://stackoverflow.com/questions/129023/net-integer-vs-int16/129817#129817 14 Answer by Alex Lyman for .NET Integer vs Int16? Alex Lyman 2008-09-24T20:38:03Z 2009-03-19T16:51:58Z <p>You should <strong>almost always</strong> use <code>Int32</code> or <code>Int64</code> (and, no, you do not get credit by using <code>UInt32</code> or <code>UInt64</code>) when looping over an array or collection by index.</p> <p>The most obvious reason that it's less efficient is that all array and collection indexes found in the BCL take <code>Int32</code>s, so an implicit cast is <em>always</em> going to happen in code that tries to use <code>Int16</code>s as an index.</p> <p>The less-obvious reason (and the reason that arrays take <code>Int32</code> as an index) is that the CIL specification says that all operation-stack values are <strong>either</strong> <code>Int32</code> or <code>Int64</code>. Every time you either load or store a value to any other integer type (<code>Byte</code>, <code>SByte</code>, <code>UInt16</code>, <code>Int16</code>, <code>UInt32</code>, or <code>UInt64</code>), there is an implicit conversion operation involved. Unsigned types have no penalty for loading, but for storing the value, this amounts to a truncation and a possible overflow check. For the signed types <em>every</em> load sign-extends, and every store sign-collapses (and has a possible overflow check).</p> <p>The place that this is going to hurt you most is the loop itself, not the array accesses. For example take this innocent-looking loop:</p> <pre><code>for (short i = 0; i &lt; 32000; i++) { ... } </code></pre> <p>Looks good, right? Nope! You can basically ignore the initialization (<code>short i = 0</code>) since it only happens once, but the comparison (<code>i&lt;32000</code>) and incrementing (<code>i++</code>) parts happen 32000 times. Here's some pesudo-code for what this thing looks like at the machine level:</p> <pre><code> Int16 i = 0; LOOP: Int32 temp0 = Convert_I16_To_I32(i); // !!! if (temp0 &gt;= 32000) goto END; ... Int32 temp1 = Convert_I16_To_I32(i); // !!! Int32 temp2 = temp1 + 1; i = Convert_I32_To_I16(temp2); // !!! goto LOOP; END: </code></pre> <p>There are <strong>3</strong> conversions in there that are run <strong>32000</strong> times. And they could have been completely avoided by just using an <code>Int32</code> or <code>Int64</code>.</p> <p><em>Update: As I said in the comment, I have now, in fact written a blog post on this topic, <a href="http://alexjlyman.blogspot.com/2009/03/net-integral-data-types-and-you.html" rel="nofollow">.NET Integral Data Types And You</a></em></p> http://stackoverflow.com/questions/78823/best-way-to-differentiate-mvc-controllers-based-on-http-headers 2 Best way to differentiate MVC Controllers based on HTTP headers Alex Lyman 2008-09-17T01:06:17Z 2009-03-14T02:05:36Z <h2>Problem</h2> <p>My current project requires me to do different things based on different HTTP request headers for nearly every action.</p> <p>Currently, I have one massive Controller (all for the same resource type), and every action method has an ActionName attribute (so that I can have multiple versions of the same action that takes the same parameters, but does different things) and a custom FilterAttribute (implemented almost exactly like the AcceptVerbsAttribute in Preview 5) that checks if certain headers have certain values.</p> <p>I would really like to push the code into separate Controllers, and have the RouteTable select between them based on the headers, but can't think of the cleanest way to do this.</p> <h2>Example</h2> <p>For example, say I have a list of files. The service must process the request in one of two ways:</p> <ol> <li><p>The client wants a zip file, and passes "accept: application/zip" as a header, I take the list of files, pack them into a zip file, and send it back to the client.</p></li> <li><p>The client wants an html page, so it passes "accept: text/html", the site sends back a table-formatted html page listing the files.</p></li> </ol> http://stackoverflow.com/questions/567912/why-would-c-processstartinforedirectstandardoutput-cause-xcopy-process-to-fail/568327#568327 3 Answer by Alex Lyman for Why would C# ProcessStartInfoRedirectStandardOutput cause xcopy process to fail Alex Lyman 2009-02-20T04:57:48Z 2009-02-20T04:57:48Z <p>There is an <a href="http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/ab3c0cc7-83c2-4a86-9188-40588b7d1a52/" rel="nofollow">obscure post on the MSDN forums</a> that seems to indicate that there may be a glitch with XCOPY itself -- if you redirect XCOPY's STDOUT, you must also redirect STDIN.</p> <p>(<em>note: I'm marking this a community wiki, so somebody who knows ruby could write some example code to redirecting STDIN for system()</em>)</p> http://stackoverflow.com/questions/115813/how-to-statically-compile-an-sdl-game-on-windows/525124#525124 6 Answer by Alex Lyman for How to statically compile an SDL game on Windows Alex Lyman 2009-02-08T03:52:49Z 2009-02-08T03:52:49Z <p>When compiling your project, you need to make just a couple changes to your makefile.</p> <ul> <li>Instead of <code>sdl-config --libs</code>, use <code>sdl-config --static-libs</code></li> <li>Surround the use of the above-mentioned <code>sdl-config --static-libs</code> with <code>-Wl,-Bstatic</code> and <code>-Wl,-Bdynamic</code>. This tells GCC to force static linking, but only for the libraries specified between them.</li> </ul> <p>If your makefile currently looks like:</p> <pre><code>SDLLIBS=`sdl-config --libs` </code></pre> <p>Change it to:</p> <pre><code>SDLLIBS=-Wl,-Bstatic `sdl-config --static-libs` -Wl,-Bdynamic </code></pre> <p>These are actually the same things you <em>should</em> do on Unix-like systems, but it usually doesn't cause as many errors on Unix-likes if you use the simpler <code>-static</code> flag to GCC, like it does on Windows.</p> http://stackoverflow.com/questions/523329/how-do-i-let-reflection-emit-assemblies-access-internal-members-in-the-generating 0 How do I let Reflection.Emit assemblies access internal members in the generating assembly? Alex Lyman 2009-02-07T06:51:08Z 2009-02-07T14:13:46Z <p>For one of my projects, I need to generate at run time some classes, and I thought it would be fairly simple to do using Reflection.Emit, but I'm getting MemberAccessExceptions when I run some of the generated code that calls methods that are marked internal in the generator assembly. Is there any way to tell the runtime that the dynamic assembly should be able to access my own code directly? I would really rather not publicly expose any of these members to consumers of my library. <hr> Regarding InternalsVisibleTo, I am unsure how I would go about using it in the case of dynamically generated assemblies. Is this even possible?</p> http://stackoverflow.com/questions/334373/is-it-possible-to-start-an-external-program-from-the-target-directory-when-debugg/404927#404927 0 Answer by Alex Lyman for Is it possible to start an external program from the target directory when debugging? Alex Lyman 2009-01-01T13:01:46Z 2009-01-01T13:01:46Z <p>(_Disclaimer: all directions are based on VS08. Things may be in different places in prior or future versions)</p> <p>I get the feeling that your other program is <em>not</em> a post-build step you need to run before debugging, but rather a program that also needs to run (a server or something) aswell <em>while</em> you debug.</p> <p>Use an empty C++ Make-File project (you can use other project types, but this one by default does no actual building, so I find it's the easiest), and alter its start-up properties (Project/Properties -> Debug) to run your other application. Then, set your solution to start multiple projects (Solution/Properties -> Common Properties -> Startup Project).</p> http://stackoverflow.com/questions/351793/parsing-a-users-query/351891#351891 2 Answer by Alex Lyman for Parsing a User's Query Alex Lyman 2008-12-09T05:38:17Z 2008-12-09T05:38:17Z <p>For a very simple language, I'd go with regexps. Main benefit there is you don't have to deal with any code generation. Debugging of the pattern matching is basically nil, though.</p> <p>If your language is moderately complex (you wouldn't mind specifying the entire thing in a single grammar file), I'd go with <a href="http://www.ssw.uni-linz.ac.at/Research/Projects/Coco/" rel="nofollow">Coco/R</a> -- it's fast, easy to use, and makes extremely debuggable code.</p> <p>For a more complex language, my current favorite is <a href="http://www.antlr.org/" rel="nofollow">Antlr v3</a>. Supports multi-file grammars (via the 'import' statement), which is very nice. The generated code is debuggable, but takes a bit of getting used to before debugging could be considered 'easy.'</p> http://stackoverflow.com/questions/210516/visual-studio-add-reference-dialog-takes-several-minutes-to-load 1 Visual Studio 'Add Reference' dialog takes several minutes to load. [closed] Alex Lyman 2008-10-16T22:25:37Z 2008-10-24T18:36:38Z <p>When trying to add a reference to a project in Visual Studio, it often takes several minutes to load the 'Add Reference' dialog. It only seems to do this when the <code>.NET</code> or <code>COM</code> tabs are selected (it seems to default to the <code>.NET</code> tab on startup). I rarely use these tabs (I'm much more likely to be adding a reference to a project in the current solution [<code>Projects</code> tab], or a reference to something not in the GAC [<code>Browse</code> tab]), and am wondering if there is a secret option hidden somewhere to change the default tab, or if there is some hack or add-on to do this.</p> <p>On a side note: I wrote this entire question during the load time for it -- I never said I couldn't be productive in spite of it.</p> <p>(p.s.: I'm tagging this as <code>visualstudio</code>, because I seem to remember it doing this in VS03 and VS05, but I'm currently only using VS08, if somebody can confirm that the load times are drastically better in previous versions, leave a comment and I will re-tag)</p> http://stackoverflow.com/questions/174155/switch-statement-fallthrough-in-c/174223#174223 30 Answer by Alex Lyman for Switch statement fallthrough in C#? Alex Lyman 2008-10-06T13:13:18Z 2008-10-06T13:13:18Z <p>(Copy/paste of an <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c?answer=90432#90432">answer I provided elsewhere</a>)</p> <p>Falling through <code>switch</code>-<code>case</code>s can be achieved by having no code in a <code>case</code> (see <code>case 0</code>), or using the special <code>goto case</code> (see <code>case 1</code>) or <code>goto default</code> (see <code>case 2</code>) forms:</p> <pre><code>switch (/*...*/) { case 0: // shares the exact same code as case 1 case 1: // do something goto case 2; case 2: // do something else goto default; default: // do something entirely different break; } </code></pre> http://stackoverflow.com/questions/172189/c-net-lexer-generators 2 C#/.NET Lexer Generators Alex Lyman 2008-10-05T16:04:51Z 2008-10-05T17:05:19Z <p>I'm looking for a decent lexical scanner generator for C#/.NET -- something that supports Unicode character categories, and generates somewhat readable &amp; efficient code. Anyone know of one?</p> <p><hr /></p> <p>EDIT: I <strong><em>need</em></strong> support for <strong>Unicode categories</strong>, not just Unicode characters. There are currently 1421 characters in just the <code>Lu</code> (Letter, Uppercase) category alone, and I need to match many different categories very specifically, and would rather not hand-write the character sets necessary for it.</p> <p>Also, actual code is a <strong><em>must</em></strong> -- this rules out things that generate a binary file that is then used with a driver (i.e. GOLD)</p> <p><hr /></p> <p>EDIT: ANTLR does not support Unicode categories yet. There is an <a href="http://www.antlr.org/wiki/display/ANTLR3/define+unicode+aliases+for+character+categories" rel="nofollow">open issue</a> for it, though, so it might fit my needs someday.</p> http://stackoverflow.com/questions/172095/slow-soaphttpclientprotocol-constructor/172106#172106 1 Answer by Alex Lyman for Slow SoapHttpClientProtocol constructor Alex Lyman 2008-10-05T15:03:16Z 2008-10-05T15:03:16Z <p>You might wish to look into the <a href="http://msdn.microsoft.com/en-us/library/bk3w6240(VS.80).aspx" rel="nofollow"><code>Sgen.exe</code></a> tool that comes with .NET. There's also a handy little thing in Visual Studio's C# project properties "Build" page, at the very bottom, called "Build serialization assembly" that automatically runs <code>Sgen</code> for you.</p> http://stackoverflow.com/questions/172060/why-does-filesystemwatcher-create-multiple-change-events-when-i-copy-a-file-to-th/172073#172073 10 Answer by Alex Lyman for Why does FileSystemWatcher create multiple change events when I copy a file to the directory Alex Lyman 2008-10-05T14:37:56Z 2008-10-05T14:37:56Z <p>According to the <a href="http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx" rel="nofollow">documentation</a> (see the first bullet point under <em>Events and Buffer Sizes</em>):</p> <blockquote> <p><strong>Common file system operations might raise more than one event.</strong> For example, when a file is moved from one directory to another, several OnChanged and some OnCreated and OnDeleted events might be raised. <strong>Moving a file is a complex operation that consists of multiple simple operations, therefore raising multiple events.</strong> Likewise, some applications (for example, antivirus software) might cause additional file system events that are detected by FileSystemWatcher.</p> </blockquote> http://stackoverflow.com/questions/171970/how-can-i-find-the-method-that-called-the-current-method/172015#172015 11 Answer by Alex Lyman for How can I find the method that called the current method? Alex Lyman 2008-10-05T13:52:50Z 2008-10-05T13:52:50Z <p><em>NOTE: Just expanding on the <a href="http://stackoverflow.com/questions/171970/how-can-i-find-the-method-that-called-the-current-method#171974">answer</a> provided by Firas Assad</em></p> <p>In general, you can use the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stacktrace.aspx" rel="nofollow"><code>System.Diagnostics.StackTrace</code></a> class to get a <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stackframe.aspx" rel="nofollow"><code>System.Diagnostics.StackFrame</code></a>, and then use the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stackframe.getmethod.aspx" rel="nofollow"><code>GetMethod()</code></a> method to get a <a href="http://msdn.microsoft.com/en-us/library/system.reflection.methodbase.aspx" rel="nofollow"><code>System.Reflection.MethodBase</code></a> object. However, there are <a href="http://blogs.msdn.com/jmstall/archive/2005/03/20/399287.aspx" rel="nofollow">some caveats</a> to this approach:</p> <ol> <li>It represents the <strong>runtime</strong> stack -- optimizations could inline a method, and you will _**not**_ see that method in the stack trace.</li> <li>It will _**not**_ show any native frames, so if there's even a chance your method is being called by a native method, this will _**not**_ work, and there is in-fact no currently available way to do it.</li> </ol> http://stackoverflow.com/questions/169562/proper-nullable-type-checking-in-c/169613#169613 3 Answer by Alex Lyman for Proper nullable type checking in C#? Alex Lyman 2008-10-04T02:47:33Z 2008-10-04T02:53:44Z <p>The only way to be sure is with reflection, but 90% of the time you can avoid the cost of that by using <code>array is T[]</code>. Most people are going to pass a properly typed array in, so that will do. But, you should always provide the code to do the reflection check as well, just in case. Here's what my general boiler-plate looks like (note: I wrote this here, from memory, so this might not compile, but it should give the basic idea):</p> <pre><code>class MyCollection : ICollection&lt;T&gt; { void ICollection&lt;T&gt;.CopyTo(T[] array, int index) { // Bounds checking, etc here. CopyToImpl(array, index); } void ICollection.CopyTo(Array array, int index) { // Bounds checking, etc here. if (array is T[]) { // quick, avoids reflection, but only works if array is typed as exactly T[] CopyToImpl((T[])localArray, index); } else { Type elementType = array.GetType().GetElementType(); if (!elementType.IsAssignableFrom(typeof(T)) &amp;&amp; !typeof(T).IsAssignableFrom(elementType)) { throw new Exception(); } CopyToImpl((object[])array, index); } } private void CopyToImpl(object[] array, int index) { // array will always have a valid type by this point, and the bounds will be checked // Handle the copying here } } </code></pre> <p><strong>EDIT</strong>: Ok, forgot to point something out. A couple answers naively used what, in this code, reads as <code>element.IsAssignableFrom(typeof(T))</code> only. You <em>should</em> also allow <code>typeof(T).IsAssignableFrom(elementType)</code>, as the BCL does, in case a developer knows that all of the values in this specific <code>ICollection</code> are actually of a type <code>S</code> derived from <code>T</code>, and passes an array of type <code>S[]</code></p> http://stackoverflow.com/questions/169357/net-usercontrols-telerik-devexpress-infragistics-componentone-whos-best/169537#169537 8 Answer by Alex Lyman for .NET Usercontrols telerik devexpress infragistics ComponentOne: who's best? Alex Lyman 2008-10-04T01:55:26Z 2008-10-04T01:55:26Z <ul> <li><p><a href="http://www.infragistics.com/" rel="nofollow">Infragistics</a>: Can be quite daunting when you first get started with them -- they have more options than anything I've ever seen. The learning curve is harsh, but once you get used to it, they can be some of the most useful components in your toolbox. Just make sure to try using simpler things first, or your maintenance successors will wise up and have your head on a pike.</p></li> <li><p><a href="http://www.componentone.com" rel="nofollow">ComponentOne</a>: Has one of the best charting control suites (both <a href="http://www.componentone.com/SuperProducts/ChartWinForms/" rel="nofollow">WinForms</a> and <a href="http://www.componentone.com/SuperProducts/WebChartASPNET/" rel="nofollow">WebForms</a>) I'm familiar with, but the rest of their suite has never really be useful to me -- there always seems to something better or easier to use in my toolbox.</p></li> <li><p><a href="http://www.telerik.com/" rel="nofollow">Telerik</a>: For AJAXy things, I've used their <a href="http://www.telerik.com/products/aspnet-ajax/overview.aspx" rel="nofollow">RadControls for ASP.NET AJAX</a> on several projects now, and they really are worth the price. I can't say much about their WinForms or non-AJAX WebForms stuff, though.</p></li> <li><p><a href="http://www.divelements.com/net/" rel="nofollow">Divelements</a>: For plain-old WinForms/WPF development, you can't actually go wrong with anything Tim's written.</p></li> <li><p><a href="http://www.componentfactory.com/" rel="nofollow">ComponentFactory</a>: Again, for WinForms development, you can't go wrong here. I can't count the number of times I've saved my job by using the free <a href="http://www.componentfactory.com/products_toolkit.php" rel="nofollow">Krypton Toolkit</a> from the get go. Management may not get that what they've tasked just me with will require 10 man years to do, but they always assign more people once they see my amazingly pretty prototype.</p></li> </ul> http://stackoverflow.com/questions/165284/flowlayout-panel-not-display-the-scroll-bar-after-some-resizes/165891#165891 1 Answer by Alex Lyman for Flowlayout panel not display the scroll bar after some resizes. Alex Lyman 2008-10-03T06:22:53Z 2008-10-03T06:22:53Z <p>Try the <code>.PreformLayout()</code> method, see if that helps.</p> http://stackoverflow.com/questions/163472/why-doesnt-my-listview-display-list-or-details-items/163489#163489 0 Answer by Alex Lyman for Why doesn't my ListView display List or Details items? Alex Lyman 2008-10-02T17:13:09Z 2008-10-02T17:13:09Z <p><em>NOTE: Just woke up 2 minutes ago, so this is all just what my subconscious thinks</em> </p> <p>My gut says you may not be adding SubItems to the items.</p> http://stackoverflow.com/questions/160179/visual-studio-2005-how-to-get-where-project-are-used-in-a-solution/160262#160262 0 Answer by Alex Lyman for Visual Studio 2005, how to get where project are used in a solution? Alex Lyman 2008-10-01T23:42:10Z 2008-10-01T23:42:10Z <p>I will answer your question with a question: Why, oh God, why, do you have 70 projects in a single solution?</p> http://stackoverflow.com/questions/159705/probably-bad-coding-style-please-comment/160131#160131 1 Answer by Alex Lyman for Probably BAD coding style ... please comment Alex Lyman 2008-10-01T22:51:43Z 2008-10-01T22:51:43Z <p>The first code bit is fine, except instead of calling <code>Enumerable.ToList()</code> and <code>List&lt;T&gt;.Exists()</code>, you should just call <code>Enumerable.Any()</code> -- it does a lazy evaluation, so it never allocates the memory for the <code>List&lt;T&gt;</code>, and it will stop enumerating <code>cmbxExistingGroups.Properties.Items</code> and casting them to <code>string</code>. Also, calling the trim from inside that predicate means it happens for every item it looks at. It would be best to move it out to the outer scope:</p> <pre><code>string match = txtNewGroup.Text.Trim(); if(cmbxExistingGroups.Properties.Items.Cast&lt;string&gt;().Any(txt =&gt; txt==match)) { MessageBox.Show("already exists.", "Add new group"); } </code></pre> http://stackoverflow.com/questions/1045882/how-can-i-invoke-a-wcf-operation-without-http-container Comment by Alex Lyman on How can I invoke a WCF operation without HTTP container? Alex Lyman 2009-07-12T02:52:16Z 2009-07-12T02:52:16Z I'm going with Shiraz on this one: if you don't already have an open port, where is the soap from, exactly? http://stackoverflow.com/questions/580042/c-web-service-client-multiple-web-service-methods-with-same-complex-return-ty/608527#608527 Comment by Alex Lyman on C# web-service client: multiple web-service methods with same (complex) return type? Alex Lyman 2009-07-12T02:22:40Z 2009-07-12T02:22:40Z -1: not an answer http://stackoverflow.com/questions/1113000/how-do-start-stop-services-using-net-stop-command-in-c/1113006#1113006 Comment by Alex Lyman on how do start/stop services using net stop command in c# Alex Lyman 2009-07-11T05:17:26Z 2009-07-11T05:17:26Z I totally wrote this, too, and it didn't show the &quot;new answers&quot; thing before I posted. Good job! http://stackoverflow.com/questions/862667/how-to-create-a-visual-studio-setup-project-registry-value-with-the-application-i/862766#862766 Comment by Alex Lyman on How to create a Visual Studio Setup Project registry value with the application install path? Alex Lyman 2009-05-14T11:32:46Z 2009-05-14T11:32:46Z I can't believe I didn't think of that one. Thanks! http://stackoverflow.com/questions/852867/disable-vista-uac-per-application-or-elevate-privileges-without-prompt Comment by Alex Lyman on Disable Vista UAC per-application, or elevate privileges without prompt? Alex Lyman 2009-05-12T13:52:12Z 2009-05-12T13:52:12Z Greg D: That's why I mentioned a username/password pair. I'm guessing most administrators that leave UAC enabled won't provide those to things that don't need it. http://stackoverflow.com/questions/661010/is-there-an-html-version-of-the-ecma-335-cli-specification/736096#736096 Comment by Alex Lyman on Is there an HTML version of the ECMA-335 CLI Specification? Alex Lyman 2009-04-10T00:07:05Z 2009-04-10T00:07:05Z I hadn't even thought of this. I'll have to try it out. http://stackoverflow.com/questions/142114/best-free-way-to-store-data-how-about-updates-to-the-file-system/142192#142192 Comment by Alex Lyman on Best (free) way to store data? How about updates to the file system? Alex Lyman 2009-04-03T08:14:04Z 2009-04-03T08:14:04Z Glad I could help out, mmr. http://stackoverflow.com/questions/9033/hidden-features-of-c/90432#90432 Comment by Alex Lyman on Hidden Features of C#? Alex Lyman 2009-04-03T08:07:55Z 2009-04-03T08:07:55Z @Richard E: I think that's why its well-hidden, really. Only power users really read ECMA-334, so its rather likely that its only used sparingly. http://stackoverflow.com/questions/668216/how-to-build-a-kernel-image-using-visual-studio/668808#668808 Comment by Alex Lyman on How to build a kernel image using Visual Studio Alex Lyman 2009-03-21T22:10:54Z 2009-03-21T22:10:54Z Ok, I sent an email to the SO Team, and they pointed out that there are other ways to make a link, so I switched it to one that works. http://stackoverflow.com/questions/668216/how-to-build-a-kernel-image-using-visual-studio/668808#668808 Comment by Alex Lyman on How to build a kernel image using Visual Studio Alex Lyman 2009-03-21T20:06:15Z 2009-03-21T20:06:15Z I don't know why, but I'm copy &amp; pasting it from the address bar into here, and it has a literal '_' when I edit -- SO seems to be replacing it for whatever reason. http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files Comment by Alex Lyman on Tool for adding license headers to source files? Alex Lyman 2009-03-21T05:26:53Z 2009-03-21T05:26:53Z jrummell: No, not looking for a environment-agnostic solution. Was looking for things that a multiple-environment team I was on could use. http://stackoverflow.com/questions/561661/take-an-array-of-any-value-type-as-formal-parameter Comment by Alex Lyman on Take an array of any value type as formal parameter Alex Lyman 2009-02-18T21:59:26Z 2009-02-18T21:59:26Z That last generics-based solution you had should work in any case. Can you provide the code that shows what exactly you're seeing fail with it? http://stackoverflow.com/questions/169562/proper-nullable-type-checking-in-c/169613#169613 Comment by Alex Lyman on Proper nullable type checking in C#? Alex Lyman 2009-02-14T04:29:40Z 2009-02-14T04:29:40Z @just in case: Actually in this case &quot;is&quot; is implemented via the &quot;isinst&quot; CIL instruction (ECMA-225 Partition III, Section 4.6). While technically the JIT is allowed to call reflection to implement it, both MS-CLR and Mono have <i>very</i> efficient inline code for it (it also runs every time you unbox) http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers/516180#516180 Comment by Alex Lyman on Why is good UI design so hard for some Developers? Alex Lyman 2009-02-11T18:17:23Z 2009-02-11T18:17:23Z +1: You hardcore usability nerds always think we should care about usability, when our primary goal is just to make cool algorithms. Shunning normal developers like that is just ignorance. http://stackoverflow.com/questions/115813/how-to-statically-compile-an-sdl-game-on-windows Comment by Alex Lyman on How to statically compile an SDL game on Windows Alex Lyman 2009-02-11T16:12:51Z 2009-02-11T16:12:51Z I didn't want to be the accepted answer for incompleteness :(. If you can provide more information (like the output from the sdl-config calls, and a list of the linker errors), I'm willing to try to fix my answer.