Curt Hagenlocher

5,071
reputation
254 views

Registered User

name Curt Hagenlocher
member for 1 year
seen Dec 5 at 22:07
website
location US
age 40
I'm a developer in the Visual Studio Managed Languages group at Microsoft working on implementing IronPython and IronRuby.
Dec
6
awarded  Mortarboard
Nov
23
awarded  Enlightened
Nov
23
awarded  Nice Answer
Nov
19
awarded  Guru
Nov
11
awarded  Taxonomist
Nov
6
accepted Using .Net’s Reflection.Emit to generate interface
Oct
19
awarded  Enlightened
Oct
19
awarded  Nice Answer
Oct
15
answered Did OCaml get any Serious Promotion last few Years?
Oct
15
accepted What can cause .NET assembly registration to fail?
Sep
11
answered IronRuby - .NET 4.0 - Question Marks and Exclamations at the End of Method Names
Aug
7
awarded  Yearling
Jul
27
awarded  
Jul
15
awarded  Enlightened
Jul
15
awarded  Nice Answer
Jul
13
comment Passing a dynamic attribute to an internal constructor
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.
Jul
12
comment Can a 64 bit EXE link against 32-bit DLLs?
If "depends" 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.
Jul
12
accepted Can a 64 bit EXE link against 32-bit DLLs?
Jul
12
answered What was your first programming book?
Jul
12
comment Passing a dynamic attribute to an internal constructor
I'm going to guess that this will be resolved "works as designed". 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?
Jul
12
comment Can a 64 bit EXE link against 32-bit DLLs?
It's a useful technique and it should actually work in both directions, but it's not really "linking against".
Jul
12
answered Can a 64 bit EXE link against 32-bit DLLs?
Jul
9
accepted Pythonic way to get some rows of a matrix
Jul
9
answered Pythonic way to get some rows of a matrix
Jul
8
awarded  Disciplined
Jul
5
comment Is there a dream language that merges the benefits of dynamic and strong typing?
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.
Jun
30
comment Removing Controls Programaticaly NOT working as expected!
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 "get next element" 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.
Jun
30
accepted Removing Controls Programaticaly NOT working as expected!
Jun
29
answered Removing Controls Programaticaly NOT working as expected!