User Tigraine - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:04:55Z http://stackoverflow.com/feeds/user/21699 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1664234/net-is-it-possible-to-declare-a-module-member-accessible-only-to-a-namespace/1664245#1664245 5 Answer by Tigraine for .NET - Is it possible to declare a module member accessible only to a namespace? Tigraine 2009-11-02T22:51:22Z 2009-11-02T22:51:22Z <p>No, there is only the internal accessibility that limits access to your current Assembly.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ba0a1yw2%28VS.80%29.aspx" rel="nofollow">Access Levels in C#</a></p> <p>Since your post has the VB.NET tag: internal is a c# keyword, it's equivalent in VB is friend:</p> <p><a href="http://msdn.microsoft.com/en-us/library/76453kax.aspx" rel="nofollow">Friend Keyword in VB.NET</a></p> <p>With the hole list being:</p> <p><a href="http://msdn.microsoft.com/en-us/library/76453kax.aspx" rel="nofollow">Access Levels in VB.NET</a></p> http://stackoverflow.com/questions/1596172/making-teamcity-clone-a-git-repository 1 Making Teamcity clone a git repository Tigraine 2009-10-20T17:36:47Z 2009-10-21T06:17:42Z <p>Hi, </p> <p>I have a build process that relies on git-describe so I want TeamCity to clone the repository instead of only putting the source without git into the /work folder.</p> <p>I'm using the JetBrains Git plugin, is there another plugin that does that or should I just write another script that does a git clone before doing a build?</p> <p>Thanks!</p> http://stackoverflow.com/questions/782690/pattern-books-for-c-vb-net-developers/1585473#1585473 0 Answer by Tigraine for Pattern Books for C# / VB.NET Developers Tigraine 2009-10-18T17:18:30Z 2009-10-18T17:18:30Z <p>Head First Design Patterns if you are totally new to the topic. </p> <p>As a reference book and for learning even more I'd suggest Fowler's <a href="http://martinfowler.com/books.html#eaa" rel="nofollow">Patterns of Enterprise Application Architecture</a></p> http://stackoverflow.com/questions/1572233/mapping-castle-monorail-default-requests-to-a-controller-action 0 Mapping Castle MonoRail default requests to a controller action Tigraine 2009-10-15T13:02:55Z 2009-10-16T09:23:26Z <p>Hi, I'm running a MonoRail application that has no routing configured. So I'm using MRs standard Area/Controller/Action.aspx scheme. (I changed the MonoRail handler to listen for .aspx requests).</p> <p>Now, the problem here is that /Home/Index.aspx is my start-page, yet if someone comes to <a href="http://server.com/" rel="nofollow">http://server.com/</a> it's not transferred to /Home/Index.aspx but is seeing a directory listing forbidden page instead.</p> <p>Are there any quick fixes for this? I tried making a HttpHandler listen on /default.aspx that issues a Server.Transfer to my /Home/Index.aspx. Yet that fails with the defaultUrlTokenizer since it can't extract the proper controllername / actionname to invoke afterwards.</p> http://stackoverflow.com/questions/1567676/linq-to-sql-data-source-best-practice/1567697#1567697 1 Answer by Tigraine for Linq to SQL data source best practice Tigraine 2009-10-14T17:10:05Z 2009-10-14T17:10:05Z <p>Behind the scenes the LinQ to SQL manager uses a connection pool IIRC. So unless you explicitly kill the connection somehow that should not be your concern.</p> http://stackoverflow.com/questions/1542640/clscompliantattribute-breaks-my-build 1 CLSCompliantAttribute breaks my build [closed] Tigraine 2009-10-09T08:49:41Z 2009-10-09T08:49:41Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/1254078/clscomplianttrue-drags-in-unused-references">CLSCompliant(true) drags in unused references</a> </p> </blockquote> <p>I am really clueless why this is, but once I put the CLSCompliantAttribute on my Tests assembly I get a Compiler error stating:</p> <blockquote> <p>The type 'System.Web.SessionState.IRequiresSessionState' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Web, Version=2.0.0.0...'</p> </blockquote> <p>Now, it doesn't matter what value I put in there: true, false both make my build break with the above error. Once I remove the attribute the build is fine and works once again.</p> <p>Where the IRequresSessionState comes from: I'm testing a class that also implements IRequiresSessionState, but since I don't use that interface I don't need to reference System.Web inside my tests.</p> <p>Has anyone an explanation for this?</p> <p>greetings Daniel</p> http://stackoverflow.com/questions/1509524/c-explicit-equality-operator-implementation-necessary 5 C# Explicit Equality operator implementation necessary Tigraine 2009-10-02T13:32:10Z 2009-10-02T21:41:58Z <p>I see the point in explicitly implementing Equals and GetHashCode for my objects.</p> <p>But I wonder if it makes any sense to also explicitly implement the == and != operators like this:</p> <pre><code>public static bool operator ==(Salutation left, Salutation right) { return Equals(left, right); } </code></pre> <p>Does C# not automatically use the Equals method when == is invoked?</p> http://stackoverflow.com/questions/1026635/setting-a-styles-targettype-property-to-a-base-class 0 Setting a style's TargetType property to a base class Tigraine 2009-06-22T11:26:17Z 2009-09-24T03:44:56Z <p>Hi, I was just poking around a bit in WPF and wanted all elements on my Window to share the same margin. I found that all Controls that are capable of having a margin derive from FrameworkElement so I tried the following:</p> <pre><code>&lt;Window.Resources&gt; &lt;Style TargetType="{x:Type FrameworkElement}"&gt; &lt;Setter Property="Margin" Value="10" /&gt; &lt;/Style&gt; &lt;/Window.Resources&gt; </code></pre> <p>And, this doesn't work. I can apply this to all Buttons, but not to all Elements that derive from Button. Am I missing something or is this simply not possible?</p> <p>Am I the only one feeling like using CSS for WPF would have been a good idea?</p> http://stackoverflow.com/questions/314392/tab-index-in-windows-forms 2 Tab Index in Windows Forms Tigraine 2008-11-24T15:01:54Z 2009-09-22T17:05:03Z <p>In my current application I have a form that requires the user to enter TONS of data. There are about 30 Textboxes and it happens that during development new ones get introduced or old ones get kicked out.</p> <p>One Requirement by my customer is that they are all navigable through pressing Tab, and so I'm currently at the mercy of the TabIndex property if I see that correctly.</p> <p>At the beginning I set those properties manually, but that required me to re-index them whenever I changed something.</p> <p>I already tried to counter that problem by adding all FormDesigner generated controls to a List and loop through that list while setting the tabindex for the controls in that list.</p> <p>Still, it doesn't work. Some of my controls still get focused out of order. I haven't really found a workaround, but will find one.</p> <p>My question now is, why in the heck am I doing something like that in the first place? Is there some better way to handle tab-indexes or is this really how it's going to be? I mean, I was spending hours with that stupid designer setting tabindexes!</p> http://stackoverflow.com/questions/1443792/bin-deploy-rake-and-ironruby/1443819#1443819 1 Answer by Tigraine for Bin deploy rake (and IronRuby) Tigraine 2009-09-18T10:53:38Z 2009-09-18T10:53:38Z <p>Yes it is possible, but you pay the cost of bringing the IronRuby runtime with you. That's about 2300 files to deploy so you'd need to pack 7zip with your lib to unpack IronRuby.</p> <p>I did something similar where I wanted to pack LessCss with IronRuby in one managed wrapper. Turned out to be a totally impracticable solution:</p> <p><a href="http://www.tigraine.at/2009/08/24/introducing-ironlessnet-your-duct-tape-solution-to-lesscss-in-aspnet/" rel="nofollow">http://www.tigraine.at/2009/08/24/introducing-ironlessnet-your-duct-tape-solution-to-lesscss-in-aspnet/</a></p> <p>greetings Daniel</p> http://stackoverflow.com/questions/1420446/css-custom-checkbox-layout/1420639#1420639 1 Answer by Tigraine for css custom checkbox layout Tigraine 2009-09-14T09:57:55Z 2009-09-14T09:57:55Z <p>What we usually did at work is create a custom Javascript solution (a div that changes color when clicked) that changes the value of a hidden checkbox.</p> <p>That way you are not constrained by CSS and if Javascript is disabled it will nicely degrade to a normal Checkbox (very important for Accessibility)</p> http://stackoverflow.com/questions/331357/strongly-typed-controls-in-net 5 Strongly Typed Controls in .NET Tigraine 2008-12-01T16:34:12Z 2009-09-14T09:46:24Z <p>I am working on a Windows Forms app for quite some time now, and I really find myself doing more typecasts in the GUI code than I ever did in my underlying business code.</p> <p>What I mean becomes apparent if you watch the ComboBox control that accepts some vague "object" as it's item. Then you go off and may display some DisplayMember and a ValueMember and so on.</p> <p>If I want to retrieve that value later I need to typecast my object back to what it was. Like with strings getting the value takes</p> <pre><code>string value = (string)combobox1.SelectedItem; </code></pre> <p>Since there are generics in the Framework for quite some time now, I still wonder why in the Hell not one control from the standard toolbox is generic.</p> <p>I also find myself using the .Tag property on ListViewItems all the time to keep the displayed domain object. But everytime I need to access that object I then need another typecast.</p> <p>Why cant I just create a ComboBox or ListView with items of type ListViewItem</p> <p>Am I missing something here or is this just another example of not perfectly well thought through controls?</p> http://stackoverflow.com/questions/1381445/asp-net-mvc-1-0-and-castle-activerecord-2-0-lazy-loading/1418283#1418283 3 Answer by Tigraine for ASP.NET MVC 1.0 and Castle ActiveRecord 2.0 Lazy Loading Tigraine 2009-09-13T17:20:25Z 2009-09-13T17:20:25Z <p>The simple solution is: Don't perform Lazy loading within your view. The View in MVC by definition has no business loading anything. </p> <p>It's up to the controller to do that so you can test this behavior.</p> <p>And yes, you don't need to set that in your mappings. You can query your objects with another Fetchmode so they get eagerly loaded in that one particular case.</p> http://stackoverflow.com/questions/783906/git-under-windows-msys-or-cygwin/1415573#1415573 1 Answer by Tigraine for Git under windows: MSYS or Cygwin? Tigraine 2009-09-12T16:55:29Z 2009-09-12T16:55:29Z <p>I currently use Msysgit together with TortoiseGit.</p> <p>The MsysGit UI isn't really to my liking so I use a familiar tool like TortoiseGit and when working on the commandline (most of the time), I use the git binary from Msysgit</p> http://stackoverflow.com/questions/1389307/convert-a-mercurial-repository-to-git 0 Convert a Mercurial Repository to Git Tigraine 2009-09-07T12:55:31Z 2009-09-09T02:00:39Z <p>Hi, I've already tried hg2git through fast-export and I've already tried hg-git.</p> <p>Both with no success. hg2git actually worked, but I had to ask a friend who runs a Unix machine to do it. And that messed up all the linefeeds throughout the files. </p> <p>hg-git simply failed with some libzip compression error. </p> <p>Has anyone had any success converting a hg repo to git on Windows?</p> <p>To be clear, I don't care about interop. I want to port the whole repo from hg to git, taking the history with me. I don't need to push changes back and forth - only convert once.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1325611/match-only-whitespaces-inside 0 Match only whitespaces inside {} Tigraine 2009-08-25T01:26:48Z 2009-08-25T02:39:32Z <p>Hi, Assuming I've been given the following string to match against:</p> <pre><code>#sidebar h1 ul li{ #a:hover; height : 100px ;color: #fffff ; font-family: @fonts; } </code></pre> <p>What I want is to only match whitespaces within the curly braces { } that are not enclosed on both sides by words.</p> <p>My current regex looks like this:</p> <pre><code>( (?!\w)|(?&lt;!\w) ) </code></pre> <p>But it matches characters outside the braces too. I tried look-around, but it's not really working out the way I imagined it and I just suck at regex.. </p> <p>I want to strip all whitespaces from css classes content so the string would be condensed to: </p> <pre><code>#sidebar h1 ul li{#a:hover;height:100px;color:#fffff;font-family:@fonts;} </code></pre> <p>Btw, I'm using the .NET Regex engine, so if anyone needs a quick testing environment for that, I found this Silverlight one pretty handy: <a href="http://www.regexlib.com/RESilverlight.aspx" rel="nofollow">http://www.regexlib.com/RESilverlight.aspx</a></p> http://stackoverflow.com/questions/1241807/is-my-php-code-object-oriented/1241926#1241926 1 Answer by Tigraine for Is my PHP code object oriented? Tigraine 2009-08-06T22:40:14Z 2009-08-06T22:40:14Z <p>You need to know that basically <em>require</em> only puts the text from the required file into the executing .php file.</p> <p>So it doesn't make your code any more OOP by requiring another file, it just makes it more <em>structured</em> and maybe more <em>maintainable</em> in the future, but not OOP.</p> <p>OOP would mean that you have created some sort of object that you call from now on to execute commands against. You can read more on <a href="http://en.wikipedia.org/wiki/Object-oriented%5Fprogramming" rel="nofollow">OOP in Wikipedia</a></p> <p>I strongly suggest you read the book "Code Complete" if you are just beginning with programming and just keep on experimenting. The road to OOP programming usually leads through lots of bad procedural programming (that's what you are most likely doing right now).</p> http://stackoverflow.com/questions/330482/best-way-to-save-a-ordered-list-to-the-database-while-keeping-the-ordering 1 Best way to save a ordered List to the Database while keeping the ordering Tigraine 2008-12-01T10:40:42Z 2009-08-03T07:19:09Z <p>Hi, </p> <p>I was wondering if anyone has a good solution to a problem I've encountered numerous times during the last years.</p> <p>I have a shopping cart and my customer explicitly requests that it's order is significant. So I need to persist the order to the DB.</p> <p>The obvious way would be to simply insert some OrderField where I would assign the number 0 to N and sort it that way.</p> <p>But doing so would make reordering harder and I somehow feel that this solution is kinda fragile and will come back at me some day.</p> <p>(I use C# 3,5 with NHibernate and SQL Server 2005)</p> <p>Thank you </p> http://stackoverflow.com/questions/1080960/holding-onto-object-references/1080970#1080970 0 Answer by Tigraine for Holding onto object references Tigraine 2009-07-03T21:54:45Z 2009-07-03T21:54:45Z <p>I'd question your motives for having this as a instance method. If I'd only new up the object to call one method on it and discard it afterwards, a static method with the classes dependencies as parameters should be the way to go (although I despise statics).</p> <p>What leads to the more interesting problem: If you don't rely on internal state at all, then you are just a function and therefore I'd say you belong to some entity, not in your own class.</p> http://stackoverflow.com/questions/1080915/castle-windsor-and-iprincipal/1080943#1080943 2 Answer by Tigraine for Castle Windsor and IPrincipal Tigraine 2009-07-03T21:43:21Z 2009-07-03T21:50:31Z <p>You try to let Windsor construct your IPrincipal where it has to just use the one that's there. Inject it into the container through the AddComponentInstance method exposed by the MicroKernel in your ControllerFactory.</p> <p>This would obviously require a custom ControllerFactory, but you should have that already.</p> <p>I did something similar for HttpContext some time ago: <a href="http://www.tigraine.at/2009/01/21/aspnet-mvc-hide-the-httpcontext-services-with-windsor-and-a-custom-controllerfactory/comment-page-1/#comment-2645" rel="nofollow">http://www.tigraine.at/2009/01/21/aspnet-mvc-hide-the-httpcontext-services-with-windsor-and-a-custom-controllerfactory/comment-page-1/#comment-2645</a></p> <p>Your controller factory could look like this:</p> <pre><code>public IController CreateController(RequestContext requestContext, string controllerName) { container.Kernel.AddComponentInstance&lt;IPrincipal&gt;(typeof (IPrincipal), System.Web.HttpContext.Current.User); return (IController) container.Resolve(controllerName); } </code></pre> <p>(Don't forget that your controllers have to be per-web-request or transient for this or you'll get in trouble)</p> http://stackoverflow.com/questions/1040165/compile-asp-net-to-64-bit/1040198#1040198 8 Answer by Tigraine for Compile ASP.NET to 64 BIT Tigraine 2009-06-24T18:46:47Z 2009-06-24T20:32:25Z <p>Leave the target platform at AnyCpu and .NET will automatically run natively on 64bit when executed on a 64Bit operating system</p> <p>Clarification: </p> <p>(this started out as a comment but I thought it might be interesting for the question as well)</p> <p>Actually you never compile to a special architecture. You always compile to IL. </p> <p>That's something like Java Bytecode. And that bytecode is the same for 32 bit and 64 bit. </p> <p>The Virtual Machine (.NET Framework) on the machine the code gets executed then compiles the IL to actual machine code while running (through the Just In Time compilation). So, no matter where you compile, you'll always end up in IL that's bit-ignorant. </p> <p>The setting in .NET is only an instruction in IL that tells the JIT (Just in Time compiler) to specifically use 32bit/64 bit. By flipping that one bit in your assembly you could still execute it in AnyCpu or x64 without recompilation.</p> <p>This setting is only used and needed in case you call out to native code that isn't bit-ignorant (when interacting with COM components or doing p/invoke calls)</p> <p>greeetings, Daniel</p> http://stackoverflow.com/questions/527641/setting-xslcompiledtransform-outputsettings 0 Setting XslCompiledTransform Outputsettings Tigraine 2009-02-09T10:14:16Z 2009-05-20T13:15:42Z <p>Hi, </p> <p>I am writing bit of code that relies on XslTransformation of one submodule.</p> <p>Since the XslTransformation exposes a XmlWriterSettings field called Outputsettings I thought it would be cool to expose the XmlWriterSettings field in my class too so I can use my IoC container to configure the XmlWriterSettings through the configuration.</p> <p>But as it turns out, Outputsettings is a readonly field and I can't find a way how to pass one to the Transform (no ctor overloads etc).</p> <p>Am I missing something or is there maybe some Factory method for creating XslCompiledTransform with a given XmlWriterSetting?</p> <p>greetings Daniel/Tigraine</p> http://stackoverflow.com/questions/848223/building-a-wpf-app-with-nant 0 Building a WPF App with NAnt Tigraine 2009-05-11T13:54:30Z 2009-05-11T23:15:35Z <p>Hi,</p> <p>Is there some way to compile (with the CSC task) a WPF Application with NAnt except for using the task from the NantContrib?</p> <p>greetings Tigraine</p> http://stackoverflow.com/questions/161556/convert-idictionarystring-string-keys-to-lowercase-c 2 Convert IDictionary<string, string> keys to lowercase (C#) Tigraine 2008-10-02T09:51:47Z 2009-02-09T14:50:20Z <p>Hi, I've got a Method that gets a IDictionary as a parameter. Now I want to provide a method that retrieves the value from this dictionary, but it should be case-invariant.</p> <p>So my solution to this right now was to have a static function that loops through the keys and converts them toLower() like this:</p> <pre><code>private static IDictionary&lt;ILanguage, IDictionary&lt;string, string&gt;&gt; ConvertKeysToLowerCase( IDictionary&lt;ILanguage, IDictionary&lt;string, string&gt;&gt; dictionaries) { IDictionary&lt;ILanguage, IDictionary&lt;string, string&gt;&gt; resultingConvertedDictionaries = new Dictionary&lt;ILanguage, IDictionary&lt;string, string&gt;&gt;(); foreach(ILanguage keyLanguage in dictionaries.Keys) { IDictionary&lt;string, string&gt; convertedDictionatry = new Dictionary&lt;string, string&gt;(); foreach(string key in dictionaries[keyLanguage].Keys) { convertedDictionatry.Add(key.ToLower(), dictionaries[keyLanguage][key]); } resultingConvertedDictionaries.Add(keyLanguage, convertedDictionatry); } return resultingConvertedDictionaries; } </code></pre> <p>Now, this is ok, but still it's a pretty huge chunk of code that contradicts my idea of "clean and efficient". Do you know any alternatives to this so that the .ContainsKey() method of the dictionary doesn't differentiate between casing?</p> http://stackoverflow.com/questions/527730/is-net-already-the-right-way-to-go-for-small-app-development/527754#527754 2 Answer by Tigraine for Is .NET already the right way to go for small app development? Tigraine 2009-02-09T11:12:54Z 2009-02-09T11:12:54Z <p>Why not look up the "real" size of the .NET Runtime before making assumptions?</p> <p><a href="http://www.smallestdotnet.com" rel="nofollow">http://www.smallestdotnet.com</a></p> <p>It's really not always a 80 meg download. Most times it will take far less since some bits are already there etc.</p> <p>Also note that with Jan .NET 3.5 SP1 is in Windows Update.</p> http://stackoverflow.com/questions/507317/relative-filepath-with-httpwebrequest-object 0 Relative filepath with HttpWebRequest object Tigraine 2009-02-03T14:38:29Z 2009-02-03T14:52:52Z <p>Hi,</p> <p>I am trying to create unittests that can be shared amongst my development team so I need to have all paths in the project be relative.</p> <p>Where this is giving me trouble is with the HttpWebRequest class. I want it to serve static testdata from a file in the local filesystem.</p> <p>I'd like to do something like this: </p> <pre><code>file:///./TestData/test.html </code></pre> <p>But that just produces C:\TestData\test.html and a DirectoryNotFoundException.</p> <p>The code for the HttpWebRequest looks like this:</p> <pre><code>var request = HttpWebRequest.Create(uri); var response = request.GetResponse(); var responseStream = new StreamReader(response.GetResponseStream()); return responseStream.ReadToEnd(); </code></pre> <p>How can I convince C# to resolve a relative path without breaking the Uri syntax?</p> <p>greetings Daniel</p> http://stackoverflow.com/questions/472596/best-continuous-integration-setup-for-multi-platform-development/472631#472631 3 Answer by Tigraine for Best continuous integration setup for multi-platform development Tigraine 2009-01-23T11:47:46Z 2009-01-23T11:47:46Z <p>You could simply use the Java version of CruiseControl and have two setups. </p> http://stackoverflow.com/questions/467077/select-items-by-tag-when-searching-multiple-tags 0 Select items by tag when searching multiple tags Tigraine 2009-01-21T21:24:05Z 2009-01-22T05:38:58Z <p>Hi, I'm struggling a bit here so I thought why not ask:</p> <p>Every entity in my system has a list of tags (a list of strings), and I want to be able to search for multiple tags at once.</p> <p>I have a IQueryable to work with. Every Entity has a IList called Tags and my input parameter is a IList.</p> <p>I simply could go through all tags and do IQueryable.Where(p => p.Tags.Contains(currentTag), but that would not scale very well with many tags as input, and also I have the feeling that this could be done inside LinQ.</p> <p>Hope anyone has an Idea.</p> <p>Edit: Clarification of question: I search for a way to only select Items from my IQueryable that contain ALL supplied parameter tags (of IList). </p> <p>greetings Daniel / Tigraine</p> http://stackoverflow.com/questions/133281/castle-activerecord-tutorial-with-net-3-5-broken 1 Castle-ActiveRecord Tutorial with .NET 3.5 broken? Tigraine 2008-09-25T13:22:12Z 2009-01-08T21:07:50Z <p>Has anyone tried the ActiveRecord <a href="http://www.castleproject.org/activerecord/gettingstarted/index.html" rel="nofollow">Intro Sample</a> with C# 3.5? I somehow have the feeling that the sample is completely wrong or just out of date. The XML configuration is just plain wrong:</p> <pre><code>&lt;add key="connection.connection_string" value="xxx" /&gt; </code></pre> <p>should be :</p> <pre><code>&lt;add key="hibernate.connection.connection_string" value="xxx" /&gt; </code></pre> <p>(if I understand the nhibernate config syntax right..)</p> <p>I am wondering what I'm doing wrong. I get a "Could not perform ExecuteQuery for User" Exception when calling Count() on the User Model. </p> <p>No idea what this can be. The tutorial source differs strongly from the source on the page (most notably in the XML configuration), and it's a VS2003 sample with different syntax on most things (no generics etc).</p> <p>Any suggestions? ActiveRecord looks awesome..</p> http://stackoverflow.com/questions/386017/expect-exceptions-in-nunit-without-the-expectedexception-attribute 1 Expect exceptions in nUnit without the ExpectedException attribute Tigraine 2008-12-22T11:11:15Z 2008-12-23T08:11:10Z <p>Hi, I have methods with <strong>more than one parameter</strong> that are guarded against bad input by throwing ArgumentNullExceptions and ArgumentExceptions whenever any parameter is null.</p> <p>So there are two obvious ways to test this:</p> <ul> <li>One test per Parameter using the [ExpectedException] attribute</li> <li>One test for all parameters using multiple try{} catch blocks</li> </ul> <p>The try catch thing would look like that:</p> <pre><code>try { controller.Foo(null, new SecondParameter()); Assert.Fail("ArgumentNullException wasn't thrown"); } catch (ArgumentNullException) {} </code></pre> <p>With one little problem. If the test passes, Assert.Fail never gets called and will therefore be highlighted as not covered test code (by NCover).</p> <p>I know this isn't actually a problem, since it's the business code I want 100% coverage of, not the test code. Still I am curious if there is a way to compress multiple Exception throwing calls into one Testcase without having dead LoCs?</p> http://stackoverflow.com/questions/1443792/bin-deploy-rake-and-ironruby/1443819#1443819 Comment by Tigraine on Bin deploy rake (and IronRuby) Tigraine 2009-11-08T19:34:14Z 2009-11-08T19:34:14Z The difference is how easy it is to install. Ruby has become quite easy to install, but is far from the dumb click setup.exe and be done solution.. Also, Win7 machines all have Powershell 2.0 pre-installed so moving forward powershell needs no setup at all on modern machines. http://stackoverflow.com/questions/1637147/agents-why-is-the-majority-of-agent-work-done-in-java/1637282#1637282 Comment by Tigraine on Agents: Why is the majority of agent work done in java? Tigraine 2009-10-28T14:00:00Z 2009-10-28T14:00:00Z That's not really true. The Microsoft Academic relations program is one giant free giveaway. You just have to apply and they'll throw more software at you for free than you can handle.. It's just, people are too lazy to ask. (Obviously this only applies to Universities) http://stackoverflow.com/questions/1596172/making-teamcity-clone-a-git-repository/1599017#1599017 Comment by Tigraine on Making Teamcity clone a git repository Tigraine 2009-10-28T13:57:48Z 2009-10-28T13:57:48Z Thanks. it worked. Also blogged about it here: <a href="http://www.tigraine.at/2009/10/27/setting-up-teamcity-git-psake-for-dotless/" rel="nofollow">tigraine.at/2009/10/&hellip;</a> http://stackoverflow.com/questions/1542640/clscompliantattribute-breaks-my-build Comment by Tigraine on CLSCompliantAttribute breaks my build Tigraine 2009-10-09T19:27:09Z 2009-10-09T19:27:09Z Thanks.. SO still has way to go with it's similarity search when asking a question. http://stackoverflow.com/questions/1539118/c-castle-activerecord-how-to-elegantly-xml-serialize-activerecord-objects/1540554#1540554 Comment by Tigraine on C# Castle ActiveRecord: How to elegantly (XML) serialize ActiveRecord objects? Tigraine 2009-10-09T09:00:42Z 2009-10-09T09:00:42Z I agree.. Never try to send the actual objects over the wire. Ayende wrote about this once and I agree with him: <a href="http://ayende.com/Blog/archive/2009/05/14/the-stripper-pattern.aspx" rel="nofollow">ayende.com/Blog/archive/&hellip;</a> http://stackoverflow.com/questions/1509524/c-explicit-equality-operator-implementation-necessary/1509545#1509545 Comment by Tigraine on C# Explicit Equality operator implementation necessary Tigraine 2009-10-03T19:02:23Z 2009-10-03T19:02:23Z Thanks.. :) It's just easier to read that way ;) http://stackoverflow.com/questions/1509524/c-explicit-equality-operator-implementation-necessary/1509545#1509545 Comment by Tigraine on C# Explicit Equality operator implementation necessary Tigraine 2009-10-02T21:30:29Z 2009-10-02T21:30:29Z Thanks. I accepted your answer, but could you please edit in some of the things Joel said? How == behaves if not overriden. http://stackoverflow.com/questions/1501375/how-to-test-repository-pattern-with-ado-net-entity-framework/1501477#1501477 Comment by Tigraine on How to test Repository Pattern with ADO.NET Entity Framework? Tigraine 2009-10-01T13:58:16Z 2009-10-01T13:58:16Z @Geo: By testing the actual SqlRepository you are already in Integration-Test land.. For a unit test not testing the SqlRepository at all is totally valid. http://stackoverflow.com/questions/1443792/bin-deploy-rake-and-ironruby/1443819#1443819 Comment by Tigraine on Bin deploy rake (and IronRuby) Tigraine 2009-09-18T11:23:46Z 2009-09-18T11:23:46Z I'm no expert on this either, so maybe there is a way. But I don't really see one without packing the whole IR thing.. And once you extract it FileSystem operations get really wonky (never copy that folder!). I'd expect (since Win7 also packs Powershell) that the majority of users will have Powershell installed.. http://stackoverflow.com/questions/1389307/convert-a-mercurial-repository-to-git/1397216#1397216 Comment by Tigraine on Convert a Mercurial Repository to Git Tigraine 2009-09-12T17:26:13Z 2009-09-12T17:26:13Z I also have to admit that I didn't really try all that hard. It kept reporting a whitespace error in the file. Seems like &quot;hg export --diff&quot; isn't the same patch format after all.. http://stackoverflow.com/questions/1389307/convert-a-mercurial-repository-to-git/1397216#1397216 Comment by Tigraine on Convert a Mercurial Repository to Git Tigraine 2009-09-10T22:34:02Z 2009-09-10T22:34:02Z Thanks, but unfortunately I didn't find a way to make git apply those patches and preserve the commit message. http://stackoverflow.com/questions/1389307/convert-a-mercurial-repository-to-git/1391547#1391547 Comment by Tigraine on Convert a Mercurial Repository to Git Tigraine 2009-09-09T09:37:37Z 2009-09-09T09:37:37Z No unfortunately not. I tried running the py scripts directly and I couldn't invoke them due to not being able to execute .sh on Win.. And I really don't want to install cygwin for this. http://stackoverflow.com/questions/1389307/convert-a-mercurial-repository-to-git Comment by Tigraine on Convert a Mercurial Repository to Git Tigraine 2009-09-07T22:54:42Z 2009-09-07T22:54:42Z Would be possible. But it can't be the right solution to have to send off the repo to someone using Unix to convert it. There must be some way on Windows. http://stackoverflow.com/questions/1325611/match-only-whitespaces-inside/1325669#1325669 Comment by Tigraine on Match only whitespaces inside {} Tigraine 2009-08-25T10:33:30Z 2009-08-25T10:33:30Z Thanks. This appears to work, but since I also want to support @media sections I'll have to look into a solution without regex http://stackoverflow.com/questions/1241585/how-can-i-make-something-like-a-dynamic-enumeration-in-c/1241635#1241635 Comment by Tigraine on How can I make something like a dynamic enumeration in C#? Tigraine 2009-08-06T22:43:07Z 2009-08-06T22:43:07Z There will always be some developer who will write code, otherwise there is no way to use the new status in conditional clauses. If you decide that developer-friendliness is your concern you could implement a class that behaves like a enumeration and could encapsulate behavior. I blogged about this some days ago in case you are interested: <a href="http://www.tigraine.at/2009/08/02/a-better-way-to-write-enumerations/" rel="nofollow">tigraine.at/2009/08/&hellip;</a>