Erik

6,377
reputation
859 views

Registered User

name Erik
member for 1 year
seen 37 mins ago
website
location Seattle, WA
age 29
Alas - my stack runneth over...
37m
comment Virtual Methods or Events in C#
I don't know if it is the best approach either - I just wanted to point out yet another alternative.
1h
answered Virtual Methods or Events in C#
1d
comment Tokenizer for C#?
What did you end up using? Did any of these answers help?
1d
comment referencing 32 assemblies on a 64 bit windows dev box
Did either of these answers help?
1d
comment Good name for the opposite of the “canary” metaphor
Can't be a cat, since you can never be sure whether one is alive or dead - especially if you keep it in a box. Crafty felines...
2d
comment JQuery: Will performance and download file size improve, etc…
@Alison - I don't have any problem with questions regarding non-release projects... The problem I have is with the question itself, asking us to predict the future. It can't be answered, and only questions that can be answered make sense here. Thus I voted to close. If the questions were specifically regarding the performance of the pre-release software then I wouldn't have voted to close.
2d
revised C# ReadLine problem
added 22 characters in body
2d
comment JQuery: Will performance and download file size improve, etc…
I voted to close, not because I think it belongs elsewhere, but because there can't be an answer to the question - you're essentially asking us to predict the future performance of an unreleased product. Much could (theoretically) change between the current RC and release. I didn't down-vote you, though.
Dec
11
awarded  Nice Question
Dec
11
comment Good books for the .NET 3.5 BCL?
Ah - okay, then that's what I'm looking for. =) Thanks!
Dec
11
asked Good books for the .NET 3.5 BCL?
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
In this case, because mutating the dictionary I'm returning has no semantic meaning. It's not that it's "bad," it's just not as pure as I'd like.
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
I understand that - the problem isn't so much a technical one as it is a semantic one. I don't want to return a type that implies mutation if I'm not going to support mutation.
Dec
10
revised If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
added 549 characters in body
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
I considered the Lookup type - but it appears to be a lookup from TKey to IEnumerable<TValue> - not at all what I want. =\
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
Ah - well in that sense yes; what I meant is that if I return a raw Dictionary I have no control over what they'll do with it. =) But I see your point.
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
This is true of C# as well, but the problem I'm having isn't so much technical as it is semantic in nature. I'm prepared to deal with a solution that isn't 100% optimal; I just wanted to exhaust the possibilities first.
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
This might work, however I'd like to preserve the lookup semantics that a dictionary provides. While the dictionary is technically enumerable, enumerating the dictionary isn't the purpose I'm after.
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
Furthermore I was hoping to avoid adding new types (that is, I was hoping there was something in the BCL that I hadn't heard of that would do this for me). It looks like I may not have that choice however.
Dec
10
revised If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
added 512 characters in body
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
This is along the lines of what I'm looking for. The problem I'm having is that I'm building an API, so I have no control over the client calling this function. Cloning the dictionary isn't a problem - but I'm trying to keep my API as clean as possible; returning a dictionary with methods such as Add and Remove implies that the collection can or should be modified, which isn't the case. Modifications here are meaningless, and so I don't want to expose the promise of that functionality through the returned type's interface.
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
Returning the dictionary as an IDictionary is sound in principle, but that particular interface still has the mutating methods.
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
C# in my example, but I imagine this question applies to just about any language with mutable collection types.
Dec
10
revised If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
added 720 characters in body
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
I'm returning a dictionary.
Dec
10
asked If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
Dec
10
answered C# Windows form Control to Image?
Dec
10
comment Inline Linking and Bandwidth Theft
And what does this have to do with programming?
Dec
10
comment Can you have too much of “dynamic” in dynamic languages?
@Chuck - maybe; constraints can greatly simplify things as when there are constraints applied you can let the compiler reason about what types are represented in the codebase rather than having to keep that information in your head.
Dec
10
comment Can you have too much of “dynamic” in dynamic languages?
I like the opt-in approach to dynamic that C# (for example) is taking - static whenever possible, dynamic when required or when there is a clear benefit.
Dec
9
comment Setting up Subsonic 3.0 on a ASP.NET web application on Visual Studio 2008
Added the subsonic3 tag for ya. Might get Rob's attention that way, who knows.
Dec
9
revised Setting up Subsonic 3.0 on a ASP.NET web application on Visual Studio 2008
edited tags
Dec
9
comment Data Structure Interview Question
A relational database? I hope you're kidding.
Dec
9
comment Data Structure Interview Question
If the interviewer was serious about getting a useful answer, they were probably expecting you to ask questions regarding the nature of the data, such as the context it's used in, where on the memory / CPU performance tradeoff it should lie, etc.
Dec
9
comment I need to make sure that texbox only accepts this specific format. how do i do that??
And can we get an example of the desired format? I see the spec but an example helps too.
Dec
9
comment C/C++/C# SetWindowPos: Window on top of others
The exact method will be quite different between C/C++ and C#, so you should probably specify which of the three you're planning to use.
Dec
9
comment What features should C# 4.0 onwards have to encourage switching from Java?
Eh. By and large, portability is overrated. I find most people demand portability for portability's sake.
Dec
9
comment How can I get C# to interop with Javascript?
I may go this route however I like JavaScript as a language. It would be really nice if there were a DLR implementation of JavaScript but to date I haven't seen anything in that space.
Dec
9
comment How can Lisp make me a better C# developer?
I'm accepting this one rather than the highest voted (at time of writing) because it answers the question succinctly without just referring me to other sources (which I do still appreciate).
Dec
8
comment How to start writing an augmented reality application
You'll need a compass on the device too.
Dec
8
asked How can Lisp make me a better C# developer?
Dec
6
awarded  Mortarboard
Dec
6
awarded  Popular Question
Dec
1
revised When dealing with a single page, ViewState is a better choice than QueryString for maintaining state. Why?
added 14 characters in body
Nov
30
awarded  Popular Question
Nov
25
revised how do you parse a string in vb6?
added 1 characters in body
Nov
25
answered how do you parse a string in vb6?
Nov
24
awarded  Nice Answer
Nov
24
answered Fast Random Generator
Oct
24
awarded  Popular Question