User Curt Hagenlocher - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:07:19Z http://stackoverflow.com/feeds/user/533 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1572770/did-ocaml-get-any-serious-promotion-last-few-years/1572851#1572851 1 Answer by Curt Hagenlocher for Did OCaml get any Serious Promotion last few Years? Curt Hagenlocher 2009-10-15T14:43:49Z 2009-10-15T14:43:49Z <p>Does <a href="http://www.janestreet.com/technology/ocaml.php" rel="nofollow">Jane Street Capital</a> count?</p> http://stackoverflow.com/questions/1411638/ironruby-net-4-0-question-marks-and-exclamations-at-the-end-of-method-names/1411777#1411777 1 Answer by Curt Hagenlocher for IronRuby - .NET 4.0 - Question Marks and Exclamations at the End of Method Names Curt Hagenlocher 2009-09-11T15:52:41Z 2009-09-11T15:52:41Z <p>From C# or VB.NET, you'll have to use the DLR hosting interfaces to access those methods, using the method name as a string. The new "dynamic" syntax from those languages does not override their normal lexical rules for valid method identifiers.</p> http://stackoverflow.com/questions/662956/most-useful-free-net-libraries/921230#921230 3 Answer by Curt Hagenlocher for Most useful free .NET libraries? Curt Hagenlocher 2009-05-28T14:47:11Z 2009-08-30T12:38:58Z <p>It may push the boundaries of what's considered a "library", but as a longtime advocate of embedding scripting languages into <a href="http://en.wikipedia.org/wiki/Line%5Fof%5Fbusiness" rel="nofollow">LOB</a> applications, I'd say <a href="http://www.codeplex.com/ironpython" rel="nofollow">IronPython</a>.</p> <p>Disclaimer: I'm also biased. :)</p> http://stackoverflow.com/questions/832941/what-was-your-first-programming-book/1116313#1116313 0 Answer by Curt Hagenlocher for What was your first programming book? Curt Hagenlocher 2009-07-12T16:07:38Z 2009-07-12T16:07:38Z <p><a href="http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&amp;tid=7678" rel="nofollow">A Fortran Coloring Book</a> by Roger Kaufman:</p> <p><img src="http://pics.librarything.com/picsizes/52/8c/528cd4121396898597a307a5277434d414f4541.jpg" alt="A Fortran Coloring Book" /></p> http://stackoverflow.com/questions/1116265/can-a-64-bit-exe-link-against-32-bit-dlls/1116276#1116276 9 Answer by Curt Hagenlocher for Can a 64 bit EXE link against 32-bit DLLs? Curt Hagenlocher 2009-07-12T15:45:02Z 2009-07-12T15:45:02Z <p>You cannot link 64-bit EXEs to 32-bit DLLs or vice versa. On a 64-bit Windows OS, the DLLs in Windows\System32 are actually 64-bit DLLs. The 32-bit versions are in Windows\SysWow64.</p> http://stackoverflow.com/questions/1105101/pythonic-way-to-get-some-rows-of-a-matrix/1105177#1105177 4 Answer by Curt Hagenlocher for Pythonic way to get some rows of a matrix Curt Hagenlocher 2009-07-09T16:58:03Z 2009-07-09T16:58:03Z <p>It's worth looking at <a href="http://www.scipy.org/Tentative%5FNumPy%5FTutorial" rel="nofollow">NumPy</a> for its slicing syntax. Scroll down in the linked page until you get to "Indexing, Slicing and Iterating".</p> http://stackoverflow.com/questions/1058903/removing-controls-programaticaly-not-working-as-expected/1058971#1058971 4 Answer by Curt Hagenlocher for Removing Controls Programaticaly NOT working as expected! Curt Hagenlocher 2009-06-29T15:37:21Z 2009-06-29T15:37:21Z <p>The underlying collection is being mutated as you remove the panels from the list, and this is apparently being reflected in the values seen by the "foreach". The solution is to store the values into a new collection and iterate over that. You should be able to do this by adding a ".ToList()" to your definition of PnlsToRemove</p> http://stackoverflow.com/questions/831526/is-dlr-0-9-supported-by-microsoft-in-a-production-environment/935460#935460 1 Answer by Curt Hagenlocher for Is DLR 0.9 supported by Microsoft in a production environment Curt Hagenlocher 2009-06-01T15:58:23Z 2009-06-01T15:58:23Z <p>If by "support" you mean Microsoft CSS (Customer Support Services) then no, DLR 0.9 is not supported. But there's pretty good community support in places like the <a href="http://www.codeplex.com/dlr" rel="nofollow">CodePlex DLR</a> site and the IronPython and IronRuby mailing lists -- including support by some of the DLR developers.</p> http://stackoverflow.com/questions/893423/how-do-create-a-dynamic-class-in-c-4/893578#893578 1 Answer by Curt Hagenlocher for How do create a Dynamic class in C# 4? Curt Hagenlocher 2009-05-21T15:36:09Z 2009-05-21T15:47:46Z <p>Try using <a href="http://msdn.microsoft.com/en-us/library/system.dynamic.dynamicobject%28VS.100%29.aspx" rel="nofollow">System.Dynamic.DynamicObject</a> as a simple starting point and base class. You can find an example at <a href="http://winterdom.com/2009/05/dynamicobject-in-c-40" rel="nofollow">http://winterdom.com/2009/05/dynamicobject-in-c-40</a>.</p> http://stackoverflow.com/questions/770430/erlang-on-a-jvm-clr/866915#866915 2 Answer by Curt Hagenlocher for Erlang on a JVM/CLR Curt Hagenlocher 2009-05-15T03:54:36Z 2009-05-15T03:54:36Z <p><a href="http://msdn.microsoft.com/en-us/devlabs/dd795202.aspx" rel="nofollow">Axum</a> -- an incubation project on the CLR -- was clearly inspired by Erlang.</p> http://stackoverflow.com/questions/863534/t-sql-how-to-escape-underscore-character-in-patindex-pattern-argument/863567#863567 2 Answer by Curt Hagenlocher for T-SQL : How to escape underscore character in PATINDEX pattern argument ? Curt Hagenlocher 2009-05-14T14:14:36Z 2009-05-14T14:14:36Z <p>I've always done it with brackets: '%[_]%'</p> http://stackoverflow.com/questions/862846/why-in-this-example-using-floats-makes-me-go-2x-slower-than-with-doubles/863551#863551 1 Answer by Curt Hagenlocher for Why in this example using floats makes me go 2x slower than with doubles? Curt Hagenlocher 2009-05-14T14:12:38Z 2009-05-14T14:12:38Z <p>One way to understand what is happening is to break into the debugger at this point in the code and to look at the actual x86 instructions that are being executed. Without knowing your C# translates into machine code, much of what might be suggested as the cause is just guesswork. Even looking at the IL is probably not going to tell you very much.</p> <p>If you do this, you may want to start the program first and then attach the debugger later so that the JIT optimizations aren't disabled. You want to make sure you're looking at the code you're actually going to run, after all.</p> http://stackoverflow.com/questions/681454/data-binding-on-custom-class/681527#681527 0 Answer by Curt Hagenlocher for Data Binding on Custom Class Curt Hagenlocher 2009-03-25T13:15:59Z 2009-03-25T13:15:59Z <p><code>ICustomTypeDescriptor</code></p> http://stackoverflow.com/questions/680066/calling-c-dll-function-from-c-of-structs-strings-and-wchart-arrays/680115#680115 2 Answer by Curt Hagenlocher for Calling C++ dll function from C#: Of structs, strings and wchar_t arrays. Curt Hagenlocher 2009-03-25T03:19:49Z 2009-03-25T03:19:49Z <p>I believe it should work if you</p> <ol> <li>Change the declaration on <code>convertHKID_Name</code> to <code>CharSet.Ansi</code></li> <li>Remove the "ref" from the string parameter</li> <li>Pass the <code>string num</code> directly to <code>convertHKID_Name</code> instead of calling <code>WideCharToMultiByte</code></li> </ol> http://stackoverflow.com/questions/666954/avoiding-the-aba-problem-in-net-code/667022#667022 2 Answer by Curt Hagenlocher for Avoiding the ABA problem in .NET code Curt Hagenlocher 2009-03-20T16:54:54Z 2009-03-20T16:54:54Z <p>If a thread 1 has an object reference at memory address X, then by definition, nothing that thread 2 does can cause another object to use that same address. The object is still alive and its address won't be reused until no references to it remain. This guarantees that -- when the interlocked exchange operation returns the value we expect -- the ABA problem hasn't happened.</p> http://stackoverflow.com/questions/660267/unknown-method-using-ironruby-in-c/660295#660295 2 Answer by Curt Hagenlocher for "Unknown Method" using IronRuby in C# Curt Hagenlocher 2009-03-18T22:04:56Z 2009-03-18T22:04:56Z <p>Ruby strings have semantics that are incompatible with CLR strings. In particular, they're mutable. Interop between Ruby strings and CLR strings is not yet complete, so for now you'll need to explicitly cast the CLR System.String into a Ruby string object -- either in your C# code or in your Ruby code.</p> <p>The simplest solution is to define swapcase like this:</p> <pre><code>def swapcase(a) String.new(a).downcase end </code></pre> http://stackoverflow.com/questions/51768/print-stack-trace-information-from-c/51803#51803 8 Answer by Curt Hagenlocher for Print stack trace information from C# Curt Hagenlocher 2008-09-09T13:01:01Z 2009-03-16T08:56:39Z <p>You should be able to get a StackTrace object instead of a string by saying</p> <pre><code>var trace = new System.Diagnostics.StackTrace(exception); </code></pre> <p>You can then look at the frames yourself without relying on the framework's formatting.</p> <p>See also: <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stacktrace.aspx" rel="nofollow">StackTrace reference</a></p> http://stackoverflow.com/questions/600115/nullablet-confusion/600167#600167 2 Answer by Curt Hagenlocher for Nullable<T> confusion Curt Hagenlocher 2009-03-01T17:45:58Z 2009-03-01T21:08:47Z <p>Nullable is special because there's explicit support for boxing and unboxing of Nullable types built into the CLR:</p> <p>If you use the MSIL <code>box</code> instruction against a <code>Nullable&lt;T&gt;</code>, you will actually get a <code>null</code> as the result. There's no other value type which will produce a null when boxed.</p> <p>There's similar and symmetrical support for unboxing.</p> http://stackoverflow.com/questions/600216/accessing-a-specific-memeber-in-a-f-tuple/600248#600248 6 Answer by Curt Hagenlocher for Accessing a specific memeber in a F# tuple Curt Hagenlocher 2009-03-01T18:33:43Z 2009-03-01T18:33:43Z <p>You want to prevent your wife from aging by making her age immutable? :)</p> <p>For a tuple that contains only two members, you can <code>fst</code> and <code>snd</code> to extract the members of the pair. For longer tuples, you'll have to unpack the tuple into other variables. For instance,</p> <pre><code>let _, age = myWife;; let name, age = myWife;; </code></pre> http://stackoverflow.com/questions/564160/what-legal-issues-can-i-run-into-if-i-use-example-code-say-from-stackoverflow-i/564166#564166 1 Answer by Curt Hagenlocher for What legal issues can I run into if I use example code (say from stackoverflow) in my projects? Curt Hagenlocher 2009-02-19T06:26:22Z 2009-02-19T06:26:37Z <p>The best answer for many of these scenarios is for you to ask your employer -- or if you're working for yourself, consult a lawyer.</p> http://stackoverflow.com/questions/526062/ironpython-performance/564142#564142 2 Answer by Curt Hagenlocher for IronPython performance Curt Hagenlocher 2009-02-19T06:15:54Z 2009-02-19T06:15:54Z <p>The number of cores is not going to make much of a difference to startup perf :)</p> <p>Startup is particularly slow on a 64-bit operating system because of performance differences between the 32-bit and 64-bit jitters. If you're using a 64-bit OS but don't need a 64-bit process, try the following:</p> <ol> <li>copy ipy.exe to ipy32.exe</li> <li>use corflags.exe from the Windows SDK to mark ipy32.exe as a 32-bit executable by saying "corflags /32bit+ ipy32.exe".</li> </ol> <p>The 32-bit version should give you much better startup -- though still nowhere near as good as the CPython startup. But this is something we're continuing to work on.</p> http://stackoverflow.com/questions/561509/how-do-i-create-a-net-assembly-in-ironpython-and-call-it-from-c/564126#564126 3 Answer by Curt Hagenlocher for How do I create a .NET assembly in IronPython and call it from C#? Curt Hagenlocher 2009-02-19T06:10:00Z 2009-02-19T06:10:00Z <p>This isn't really possible if your goal is to create an assembly which contains types that look like the types created by C#. The main problem here is that Python types work considerably differently than CLR types. For one thing, they can be mutated at runtime while CLR types are totally static. So the only way to achieve this today is to use the hosting interfaces to create a small C# stub which delegates the work to Python code.</p> <p>IronPython does have the ability to compile to an assembly -- which is what that blog post refers to -- but we did this primarily so that you could deploy an IronPython application to your customers without having to give them the source code.</p> <p>Feel free to follow up with a more specific scenario by adding a comment to this answer, and I'll be happy to provide advice on how to implement.</p> http://stackoverflow.com/questions/20718/testing-net-code-in-partial-trust-environments 3 Testing .NET code in partial trust environments Curt Hagenlocher 2008-08-21T18:29:42Z 2009-02-18T12:39:25Z <p>I want to test the behavior of a certain piece of .NET code in partial trust environments. What's the fastest way to set this up? Feel free to assume that I (and other readers) are total CAS noobs.</p> <p>@Nick: Thanks for the reply. Alas, the tool in question is explicitly for unmanaged code. I didn't say "managed" in my question, and should not have assumed that people would infer it from the ".NET" tag.</p> http://stackoverflow.com/questions/544921/best-method-for-reading-newline-delimited-files-in-python-and-discarding-the-newl/544932#544932 10 Answer by Curt Hagenlocher for Best method for reading newline delimited files in Python and discarding the newlines? Curt Hagenlocher 2009-02-13T06:35:50Z 2009-02-13T06:35:50Z <p>lines = open(filename).read().splitlines()</p> http://stackoverflow.com/questions/507155/how-can-i-build-linq-query-when-object-type-is-not-known-at-compile-time/507281#507281 0 Answer by Curt Hagenlocher for How can I build LINQ query when object type is not known at compile-time Curt Hagenlocher 2009-02-03T14:28:00Z 2009-02-03T14:28:00Z <p>If it's just a matter of selecting a particular field to use in your query, you should be able to do this using the Expression.Compile "perversion". But that's likely to be a lot of work. You can probably get a head start by compiling what you have now and using Reflector against the output to see what the code generated by the C# compiler looks like.</p> <p>Can you split the query into two parts -- one that gets translated to SQL and runs on the server and one that uses your GetColumnMethod and runs in memory against the data output by the first part?</p> http://stackoverflow.com/questions/335286/calling-overriden-constructor-and-base-constructor-in-c/335319#335319 2 Answer by Curt Hagenlocher for Calling Overriden Constructor and Base Constructor in C# Curt Hagenlocher 2008-12-02T20:29:00Z 2008-12-02T20:29:00Z <p>No, this isn't possible. If you use Reflector to examine the IL that's generated for each constructor, you'll see why -- you'd end up calling both of the constructors for the base class. In theory, the compiler could construct hidden methods to accomplish what you want, but there really isn't any advantage over you doing the same thing explicitly.</p> http://stackoverflow.com/questions/307081/is-there-a-way-to-write-to-a-memory-stream-in-a-medium-trust-enviroment/307100#307100 1 Answer by Curt Hagenlocher for Is there a way to write to a memory stream, in a medium trust enviroment? Curt Hagenlocher 2008-11-20T22:25:36Z 2008-11-20T22:25:36Z <p>There shouldn't be any medium trust issues with writing to a MemoryStream. How are you writing to it? What's the exception?</p> http://stackoverflow.com/questions/263597/seattle-code-camp/263667#263667 1 Answer by Curt Hagenlocher for Seattle Code Camp Curt Hagenlocher 2008-11-04T22:08:32Z 2008-11-04T22:11:28Z <p>I felt myself summoned!</p> <p>This should more correctly be called <a href="https://seattle.codecamp.us/" rel="nofollow">Seattle Code Camp</a> as it's not sponsored by Microsoft.</p> http://stackoverflow.com/questions/244302/what-do-you-think-of-the-new-c-4-0-dynamic-keyword/244495#244495 15 Answer by Curt Hagenlocher for What do you think of the new C# 4.0 'dynamic' keyword? Curt Hagenlocher 2008-10-28T19:23:04Z 2008-10-29T19:29:03Z <p>This really is an explicit opt-in design decision -- you have to explicitly use the <code>dynamic</code> keyword in order to opt-in. :) There are hundreds of ways to write faulty code, and only some of them are caught by static type checks. If you have proper test coverage of your code, then you'll know it's working the way you expect even with dynamic types.</p> <p>I love <code>dynamic</code>, but then I'm totally biased.</p> <p><strong>Edit:</strong> with regard to performance, the first trip through any dynamic call site is going to be very expensive compared to a normal method call. But subsequent calls should be roughly as expensive as a call through a delegate. That's because information is actually <a href="http://en.wikipedia.org/wiki/Polymorphic_Inline_Cache" rel="nofollow">cached at the call site</a> so it's not regenerated on subsequent calls.</p> <p><strong>Edit 2</strong>: I'm a bit curious as to why people think this would be "abused"? Some newbie programmer is going to make his or her code compile correctly by avoiding explicit types where possible and therefore losing out on Intellisense? That hardly seems likely.</p> <p><strong>Links:</strong></p> <ul> <li><a href="http://mschnlnine.vo.llnwd.net/d1/pdc08/WMV-HQ/TL16.wmv" rel="nofollow">Anders' talk on "The Future of C#"</a></li> <li><a href="http://channel9.msdn.com/pdc2008/TL10/" rel="nofollow">Jim Hugunin's talk on "Dynamic Languages in Microsoft .NET"</a></li> <li><a href="http://channel9.msdn.com/pdc2008/TL54/" rel="nofollow">Alex Turner's talk on "Natural Interop with Diverse Object Models"</a></li> <li><a href="http://blogs.msdn.com/cburrows/" rel="nofollow">Chris Burrows' Blog</a></li> </ul> http://stackoverflow.com/questions/245975/how-do-you-implement-c4s-idynamicobject-interface/246693#246693 3 Answer by Curt Hagenlocher for How do you implement C#4's IDynamicObject interface? Curt Hagenlocher 2008-10-29T13:00:14Z 2008-10-29T13:00:14Z <p>The short answer is that the MetaObject is what's responsible for actually generating the code that will be run at the call site. The mechanism that it uses for this is LINQ expression trees, which have been enhanced in the DLR. So instead of starting with an object, it starts with an expression that represents the object, and ultimately it's going to need to return an expression tree that describes the action to be taken.</p> <p>When playing with this, please remember that the version of System.Core in the CTP was taken from a snapshot at the end of August. It doesn't correspond very cleanly to any particular beta of IronPython. A number of changes have been made to the DLR since then. </p> <p>Also, for compatibility with the CLR v2 System.Core, releases of IronPython starting with either beta 4 or beta 5 now rename everything in that's in the System namespace to be in the Microsoft namespace instead.</p> http://stackoverflow.com/questions/1087389/passing-a-dynamic-attribute-to-an-internal-constructor/1087714#1087714 Comment by Curt Hagenlocher on Passing a dynamic attribute to an internal constructor Curt Hagenlocher 2009-07-13T02:23:41Z 2009-07-13T02:23:41Z Hmm... I see I misread the code; It's obviously a bug no matter now internal is supposed to be handled. I can still reproduce with a build from last week, too. http://stackoverflow.com/questions/1116265/can-a-64-bit-exe-link-against-32-bit-dlls/1116276#1116276 Comment by Curt Hagenlocher on Can a 64 bit EXE link against 32-bit DLLs? Curt Hagenlocher 2009-07-12T19:30:28Z 2009-07-12T19:30:28Z If &quot;depends&quot; is a 32-bit program, then ssg's comment comes into play -- the WOW layer redirects 32-bit applications' view of the file system so that they see what's in SysWow64 as being in System32. http://stackoverflow.com/questions/1087389/passing-a-dynamic-attribute-to-an-internal-constructor/1087714#1087714 Comment by Curt Hagenlocher on Passing a dynamic attribute to an internal constructor Curt Hagenlocher 2009-07-12T16:04:16Z 2009-07-12T16:04:16Z I'm going to guess that this will be resolved &quot;works as designed&quot;. There are both practical and semantic issues to consider. For instance, would you really want the possibility that method resolution gives a different result in a partial trust environment? http://stackoverflow.com/questions/1116265/can-a-64-bit-exe-link-against-32-bit-dlls/1116283#1116283 Comment by Curt Hagenlocher on Can a 64 bit EXE link against 32-bit DLLs? Curt Hagenlocher 2009-07-12T15:50:01Z 2009-07-12T15:50:01Z It's a useful technique and it should actually work in both directions, but it's not really &quot;linking against&quot;. http://stackoverflow.com/questions/1054940/is-there-a-dream-language-that-merges-the-benefits-of-dynamic-and-strong-typing/1054952#1054952 Comment by Curt Hagenlocher on Is there a dream language that merges the benefits of dynamic and strong typing? Curt Hagenlocher 2009-07-05T15:16:12Z 2009-07-05T15:16:12Z It does. The new BCL type ExpandoObject does exactly that without any additional work on your part. You can also get a lot more sophisticated by essentially creating your own runtime binder. http://stackoverflow.com/questions/1058903/removing-controls-programaticaly-not-working-as-expected/1058971#1058971 Comment by Curt Hagenlocher on Removing Controls Programaticaly NOT working as expected! Curt Hagenlocher 2009-06-30T16:21:21Z 2009-06-30T16:21:21Z A lot of LINQ methods result in lazy evaluation, which means that they won't make a copy of an underlying enumeration if they don't have to. Imagine that you have an array, and instead of copying it you simply remember an index. The &quot;get next element&quot; operation will increment the index and return the next value from the array. We start with element zero. It gets returned and the index is updated to one. But now you're removing element zero from the array, so what's currently index one is what used to be index two. etc. http://stackoverflow.com/questions/977823/is-f-to-ironpython-ironruby-as-c-is-to-vb-net/977839#977839 Comment by Curt Hagenlocher on is F# to IronPython/IronRuby as C# is to VB.NET? Curt Hagenlocher 2009-06-10T22:35:03Z 2009-06-10T22:35:03Z Depends on what you mean by &quot;compilation&quot; -- both IronRuby and IronPython really are compilers. http://stackoverflow.com/questions/947241/c-dynamic-properties/947279#947279 Comment by Curt Hagenlocher on C#, Dynamic properties Curt Hagenlocher 2009-06-05T02:23:22Z 2009-06-05T02:23:22Z As a side note, data binding through ICustomTypeDescriptor is not supported by Silverlight :(. http://stackoverflow.com/questions/922681/ironpython-click-once-net-2-0-error-thoughts/922701#922701 Comment by Curt Hagenlocher on IronPython, Click Once, .NET 2.0 Error - thoughts? Curt Hagenlocher 2009-05-29T04:32:24Z 2009-05-29T04:32:24Z You also need Microsoft.Scripting.ExtensionAttribute.dll, and you probably want IronPython.Modules.dll. You absolutely don't need to install and you don't need .NET 30 or 3.5, but you do need SP1 of .NET 2.0. (If you have 3.5 installed, then you automatically have 2.0 SP1.) http://stackoverflow.com/questions/867017/performance-cost-of-try/867029#867029 Comment by Curt Hagenlocher on Performance Cost Of 'try' Curt Hagenlocher 2009-05-15T04:59:08Z 2009-05-15T04:59:08Z Yep. Try is effectively free because it's basically handled by metadata that's really only inspected when the exception is actually thrown. http://stackoverflow.com/questions/863240/cross-platform-objective-c-c-development/863316#863316 Comment by Curt Hagenlocher on Cross-Platform Objective-C / C++ Development Curt Hagenlocher 2009-05-14T14:41:19Z 2009-05-14T14:41:19Z There's no question that you need to do more work in MFC than C#. But there's also an extra burden when mixing managed and unmanaged code. If I were going to use WPF with a mostly unmanaged C++ app, I'd definitely want someone on the team with that kind of experience. http://stackoverflow.com/questions/863672/how-to-get-time-zone-information-from-country Comment by Curt Hagenlocher on How to get time zone information from country? Curt Hagenlocher 2009-05-14T14:33:39Z 2009-05-14T14:33:39Z What if the country has more than one timezone? http://stackoverflow.com/questions/863240/cross-platform-objective-c-c-development/863316#863316 Comment by Curt Hagenlocher on Cross-Platform Objective-C / C++ Development Curt Hagenlocher 2009-05-14T14:02:59Z 2009-05-14T14:02:59Z If the rest of the app is in C++, I would definitely pick MFC over C# for the UI. http://stackoverflow.com/questions/518513/is-there-any-simple-way-to-concatenate-two-bitarray-c-net/518558#518558 Comment by Curt Hagenlocher on Is there any simple way to concatenate two BitArray (C# .NET) ? Curt Hagenlocher 2009-05-14T13:58:16Z 2009-05-14T13:58:16Z If you know that the first array contains an even multiple of 32 bits, you can optimize this significantly by using int arrays instead of bool arrays. CopyTo works with int[], bool[] and byte[] http://stackoverflow.com/questions/680066/calling-c-dll-function-from-c-of-structs-strings-and-wchart-arrays/680115#680115 Comment by Curt Hagenlocher on Calling C++ dll function from C#: Of structs, strings and wchar_t arrays. Curt Hagenlocher 2009-03-25T04:32:42Z 2009-03-25T04:32:42Z You'll have to wrap the functionality -- either by creating a global function in native C++ that you can call using p/Invoke from C#, or by using Managed C++ to create a managed wrapper on top of the native class. I don't have any specific references to help you with for either.