just in case

820
Reputation
180 views

Registered User

Name just in case
Member for 1 year
Seen Oct 23 at 20:20
Website
Location US
Age
Oct
21
answered NUnit isn’t running VS10 code
Sep
17
awarded  Yearling
Jul
21
answered Is Boo 100% C# compatible?
Jul
21
answered Boo in Visual Studio?
Jul
21
comment How can I intercept a method call in Boo?
Boo isn't truly dynamic like groovy, you can't change the definition of a Type at runtime. If you declare a variable as 'duck' it essentially does compiler magic to turn that into late binding against that object, which will flow through IQuackFu if it's available. There is no actual metaclass in Boo. You would need IronRuby or IronPython to get something more like the metaclass.
Jul
21
comment Should I switch from nant to msbuild?
these things are easily doable with msbuild.
Jul
21
comment Compiling pages with custom extension (for ex .custx) as if they were .xaml files in Visual Studio
This should be (as in aught to be even though it isn't) supported. I'm running into the same thing. Did you ever find a solution?
Jul
9
accepted Preventing Unhandled Exception Dialog Appearing
Jul
9
answered Preventing Unhandled Exception Dialog Appearing
Jul
9
comment Do I need to write a unit test for a method within service class that only calls a method within repository class?
Sorry yes, I would then have another set of tests for testing the concrete repository, which may be more difficult since you're probably dependent upon 3rd party libraries and other layers. Those tests may end up being more like integration tests. So both, strive for total code coverage. But I don't think you can neglect this class since this is the abstraction you will be coding your app against.
Jul
6
comment Good dynamic programing language for .net recommendation
Boo is great but it's not dynamic. That is the main difference between Boo and python.
Jul
6
answered MSBuild Annoyances (or blatant ignorance on my part)
Jul
6
answered Do I need to write a unit test for a method within service class that only calls a method within repository class?
Jul
6
comment What is the purpose/advantage of using yield return iterators in C#?
If you have the list then, sure, just return it; but if you're building a list inside of the method and returning that then you could / should be using iterators instead. Yield the items one at a time. There are many benefits.
Jul
6
comment What is the purpose/advantage of using yield return iterators in C#?
Deferred execution is probably the biggest benefit of iterators.
Jul
6
comment C# 4.0, detect if a method is missing
I went with a reflection based approach in the end. Here is my solution: justnbusiness.com/post/2009/… Basically has a fluent style API with a dynamic wrapper for seeing if unknown members exist first.
Jul
2
comment C# 4.0, detect if a method is missing
I thought theught the "might" misspelling was a bit of a joke since the method "might" not exist?
Jul
2
comment C# 4.0, detect if a method is missing
Also, invoking a non-existent member throws an exception. I need more of a TryInvoke type of thing.
Jul
2
comment C# 4.0, detect if a method is missing
This was what I ended up doing too. I was just hoping there would be a more clever and elegant way to do this with the dynamic keyword. Or at least that calling a non-existent property wouldn't throw an exception :(
Jul
2
comment C# 4.0, detect if a method is missing
It's not my type, I cannot add interfaces too it. :(
Jul
2
comment C# 4.0, detect if a method is missing
Well the problem here is that I'm trying to access a property on CodeDom objects. If you're not familiar there are probably 50 of them and maybe half or so with the LinePragma property. Unfortunately, that property is not found on any particular shared base type or interface. So with strong typing you have to do a try and fail cast of a whole bunch of objects in order to find the right one. Very tedious.
Jul
1
answered Is it possible to hide the cursor in a webpage using CSS or Javascript?
Jul
1
answered Is XSLT a dead technology?
Jul
1
answered What does this colon (:) mean?
Jul
1
answered Method-missing difficulties in C# 4.0: dynamic vs RealProxy
Jul
1
asked C# 4.0, detect if a method is missing