User just in case - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:04:42Z http://stackoverflow.com/feeds/user/12958 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/930438/nunit-isnt-running-vs10-code/1602481#1602481 1 Answer by just in case for NUnit isn't running VS10 code just in case 2009-10-21T17:58:22Z 2009-10-21T17:58:22Z <p>You have to rebuild NUnit with the latest version of the clr:</p> <p><a href="http://www.justnbusiness.com/post/2009/06/11/NUnit-for-NET-40.aspx" rel="nofollow">NUnit for NET 4.0</a></p> http://stackoverflow.com/questions/395313/how-can-i-get-the-current-codedomprovider-in-an-msbuild-task 0 How can I get the current CodeDomProvider in an MSBuild Task just in case 2008-12-27T19:19:45Z 2009-09-02T03:07:15Z <p>I have a task and I want to generate some code using the CodeDom. How can I get either the current "language" or the CodeDomProvider for the current project calling my task?</p> http://stackoverflow.com/questions/395259/generating-code-in-an-msbuild-task 1 Generating Code in an MSBuild task [closed] just in case 2008-12-27T18:32:46Z 2009-09-02T03:06:45Z <p>I am creating an MSBuild task that will generate one or more files, I have a Task with an [output] property that is of type ITaskItem[]. My question is, do I need to implement that interface myself or is there a class I can use already?</p> <p>I want them to be Compile task items that get added to the list of files to compile.</p> http://stackoverflow.com/questions/195061/how-to-run-nunit-programmatically 1 How to run NUnit programmatically just in case 2008-10-12T03:35:38Z 2009-08-29T10:46:25Z <p>I have some assembly that references NUnit and creates a single test class with a single test method. I am able to get the file system path to this assembly (e.g. "C:...\test.dll"). I would like to programmatically use NUnit to run against this assembly.</p> <p>So far I have:</p> <pre><code>var runner = new SimpleTestRunner(); runner.Load(path); var result = runner.Run(NullListener.NULL); </code></pre> <p>However, calling runner.Load(path) throws a FileNotFound exception. I can see through the stack trace that the problem is with NUnit calling Assembly.Load(path) down the stack. If I change path to be something like "Test, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" then I still get the same error.</p> <p>I have added an event handler to AppDomain.Current.AssemblyResolve to see if I could manually resolve this type but my handler never gets called.</p> <p>What is the secret to getting Assembly.Load(...) to work??</p> http://stackoverflow.com/questions/1145277/is-boo-100-c-compatible/1162119#1162119 1 Answer by just in case for Is Boo 100% C# compatible? just in case 2009-07-21T22:40:54Z 2009-07-21T22:40:54Z <p>Yes Boo is easily consumed by C# and vice versa. Most of the best features of Boo don't carry over to C#, such as syntactic macros, for obvious reasons, but you can create Macros in C# and consume them in Boo. Additionally Boo has the nice feature of being able to create Modules, which is something you can't do in C#. </p> <p>They both can create extension methods. Boo has 'duck' typing while C# now has the "dynamic" keyword. While they're both functionally equivalent you might end up seeing the two merge eventually.</p> <p>Boo currently has known issues with generics, but the feature will be completely supported once they are all ironed out. I suspect there will have to be some extra work done to support the new Co/Contra-variance features in .NET 4 as well.</p> http://stackoverflow.com/questions/738222/boo-in-visual-studio/1162105#1162105 0 Answer by just in case for Boo in Visual Studio? just in case 2009-07-21T22:34:36Z 2009-07-21T22:34:36Z <p>We've been working on a plug-in for a while, it sorta works but you should really use SharpDevelop or MonoDevelop at this point. The VS plugin might get revitalized since the new VS plugin architecture for VS2010 is so much better but it's really a lot of work and we have all been pretty busy.</p> http://stackoverflow.com/questions/1105573/preventing-unhandled-exception-dialog-appearing/1106032#1106032 0 Answer by just in case for Preventing Unhandled Exception Dialog Appearing just in case 2009-07-09T19:39:00Z 2009-07-09T19:39:00Z <p>1.) I would recommend using the BackgroundWorker instead of separate threads like this. Your worker will catch exceptions and pass them along as a parameter to the complete handler.</p> <p>2.) I would use ShowDialog() instead of Show() when displaying the second form, this will block the DoRun() at that method call and exceptions should then be caught by your surrounding try / catch (or the BackgroundWorker if you're using that instead). </p> <p>I think the problem comes that since you're calling Show() you're essentially dispatching that call onto the Invoker, which ends up being queued in the UI thread. So when an exception happens there is nothing higher up the callstack to catch it. I believe calling ShowDialog() will fix this (and also allow you to drop that nasty for loop).</p> <p>Something like this:</p> <pre><code>public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { // NOTE: I forget the event / method names, these are probably a little wrong. BackgroundWorker worker = new BackgroundWorker(); worker.DoWork += (o, e) =&gt; { Form2 f = new Form2(); e.Result = f.ShowDialog(); }; worker.DoWorkComplete += (o, e) =&gt; { if(e.Error != null) MessageBox.Show(string.Format("Caught Error: {0}", ex.Message)); // else success! // use e.Result to figure out the dialog closed result. }; worker.DoWorkAsync(); } } </code></pre> <p>Actually, now that I think about it, it's sort of weird to be opening a dialog from a background thread but I think this will still work.</p> http://stackoverflow.com/questions/1088575/msbuild-annoyances-or-blatant-ignorance-on-my-part/1088671#1088671 0 Answer by just in case for MSBuild Annoyances (or blatant ignorance on my part) just in case 2009-07-06T18:55:15Z 2009-07-06T18:55:15Z <p>I'm not sure of the answer exactly but here is an idea:</p> <pre><code>&lt;CombinePath BasePath ="$(DeployFolderRoot)" Paths ="$(DeployReleaseFolder)$(ReleaseFolderFormatted)" &gt; &lt;Output TaskParameter ="CombinedPaths" ItemName ="OutputFolder"/&gt; &lt;/CombinePath&gt; &lt;OutputFolder Include="$(DeployFolderRoot)$(DeployReleaseFolder)$(ReleaseFolderFormatted)\Foo" /&gt; &lt;OutputFolder Include="$(DeployFolderRoot)$(DeployReleaseFolder)$(ReleaseFolderFormatted)\Bar" /&gt; &lt;MakeDir Directories="@(OutputFolder)" /&gt; </code></pre> <p>Essentially, if you create OutputFolder items with the path they will just be appended to the list. This would have to be in an element btw, and you have to use Include="".</p> http://stackoverflow.com/questions/1088590/do-i-need-to-write-a-unit-test-for-a-method-within-service-class-that-only-calls/1088618#1088618 1 Answer by just in case for Do I need to write a unit test for a method within service class that only calls a method within repository class? just in case 2009-07-06T18:45:45Z 2009-07-06T18:45:45Z <p>Yes, both.</p> <pre><code>IMyRepository mock = ...; // create Delete(int) expectation MyService service = new MyService(mock); service.Delete(100); // Verify expectations </code></pre> <p>Your Delete method right now might only call the Delete method on the repository, but that doesn't mean it always will. You want to have unit tests for this partly to verify it behaves correctly and partly as way of defining your specifications of how the repository is to work. </p> <p>You also aught to have a test that verifies that the constructor will throw an exception if the repository is null. You might also have other validation to do here in this method such as non-negative ID's, or non-zero id. Maybe that doesn't happen here, make it part of the specifications by creating tests that verify the expected behaviors.</p> <p>They seem trivial but I can all but guarantee it will change one day and your expectation and specifications may not be verified. </p> http://stackoverflow.com/questions/1071258/c-4-0-detect-if-a-method-is-missing 5 C# 4.0, detect if a method is missing just in case 2009-07-01T20:35:47Z 2009-07-03T00:19:53Z <p>I have a situation where i want to add LinePragmas to CodeDom objects. But some code dom objects have the LinePragma property and some don't. </p> <p>So I'm wondering if it's possible to use the dynamic keyword to detect if the property exists on the object (without throwing an exception) and if it does then add the pragma. Here is my current method:</p> <pre><code>public static T SetSource&lt;T&gt;(this T codeObject, INode sourceNode) where T : CodeObject { codeObject.UserData["Node"] = sourceNode.Source; dynamic dynamicCodeObject = codeObject; // How can I not throw an exception here? if (dynamicCodeObject.LinePragma != null) { dynamicCodeObject.LinePragma = new CodeLinePragma( sourceNode.Source.Path.AbsoluteUri, sourceNode.Source.StartLine); } return codeObject; } </code></pre> http://stackoverflow.com/questions/1071356/is-it-possible-to-hide-the-cursor-in-a-webpage-using-css-or-javascript/1071368#1071368 0 Answer by just in case for Is it possible to hide the cursor in a webpage using CSS or Javascript? just in case 2009-07-01T20:58:38Z 2009-07-01T20:58:38Z <p>No definitely not, that would be an egregious user experience crime. Be nice to your users.</p> http://stackoverflow.com/questions/1071292/is-xslt-a-dead-technology/1071344#1071344 1 Answer by just in case for Is XSLT a dead technology? just in case 2009-07-01T20:55:19Z 2009-07-01T20:55:19Z <p>I wish it was dead :-S</p> http://stackoverflow.com/questions/1071148/what-does-this-colon-mean/1071319#1071319 0 Answer by just in case for What does this colon (:) mean? just in case 2009-07-01T20:48:50Z 2009-07-01T20:48:50Z <p>Constructor chain arguments. There is also ": base()" for chaining a call to a constructor on the base type.</p> http://stackoverflow.com/questions/961673/method-missing-difficulties-in-c-4-0-dynamic-vs-realproxy/1071299#1071299 0 Answer by just in case for Method-missing difficulties in C# 4.0: dynamic vs RealProxy just in case 2009-07-01T20:43:17Z 2009-07-01T20:43:17Z <p>Is there a way to just query the dynamic object for the presence of a member without actually calling it?</p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779999#779999 2 Answer by just in case for What is the best comment in source code you have ever encountered? just in case 2009-04-23T01:45:27Z 2009-04-23T01:45:27Z <pre><code>""".........................:~+?7$$$ZZZZZZZ$$$7I+=:,............................ ........................~+7ZZZZZOZZOOZOZZOZOZOOZZZZZ7?~:........................ ......................,~7$ZZOOOOOZOZOZOZZOOZZOZOOOOOZ$$I,....................... ...................,=I$OOZOZOZZOOOZZOZOOOOZOZZZOOZZZOZZOZI=:.................... .................:?$ZZOOZZOZOZZOOOZZZOOZOZOZZZZZZZOZZOZOOOZ$I~.................. ................IZOOOZOOOZZZOZZZZOZZOZOOOOZOZZZOOZZZZOOZOZZZOZ7=................ ...............~ZZOZZOZOOZOOZOZOZZOZOZOZZZZZOZOZZOZOOZOZZOOOOZZ7................ .............:IZOOZOZZZZOZOZZOZOOZOZOZOZZOZOOZOOOOZOZZZZZOZOZZOOI~.............. ...........,+$ZOOZZOZOZOZOZOZZOZOZOOZZOZZOZZOZOOOOZOZZOZZOOZOOOOO$?:............ ..........:IZZOOOZOZZZZOOZOOZOZOZZOZOZZZZOZOOZOZZOZOZOZOOOOOOOZZZOZ7~........... ..........+$OOZZZOZZOOZOOZZZZOZZOZOZZOZOOOZOZOZZOZOZOZOOOOOZ$$77I77$+:.......... ........,?$OOZZZZZZZOZOOOZOZZOZZZOOZOZOOOOZOZZZOOZOOZOOO7?~:,.......,........... ........+ZOOZZZZZOZOOZOOZZZZOZZOOOZZZOZOZOOZZOZOZZZOOO$?........................ ........$ZOZZZOZZZZOZOOZZZOZOZZOOOOOOOOOOOZOZOZZOZOO$?,......................... .......:ZOOZOZOZZOOZZOZOZOZOOOZOOOOOOOOOOOOOOOZOZOOZI:.......................... .......+OOOZOOZOZOZOZZZOOZOOZOOO$I+=~:::~+I$OOOOOOZ?:........,:=,............... ......:7ZOOZOZZOOOZOZOZOOZOOZ$I=............:?$OOZ7:.......:IZOOZ?,............. ......=$OZOZOOZOOOOOZOZZOOZ7=,................:?O$+.......~7OOOOOZ+,............ .....,?$OOOOOZZZZOOOOOOZOZ?,....................ZZ=.......=$OOZOOZ+,............ .....:IZOZZ$777I7$ZOOOOOZ7~.....................$Z=.......~7OOOOO7=............. .....:+?~:,.......,~IZOO7~........~+II?=........?$?,.......:I$ZZ?:.............. .....................+ZO=,......:IOOOOOZ:.......=7$~............................ .....................:IO~.......=OOZOZOO=,......~7O7~........................... ...........:~:.......:IO~.......+OOOOZOO=.......~78Z?,.................,:....... ..........:IZ7~......+ZO~.......:7OOOOO$,.......+$OOZ7=,.............:?$=....... ...........,,.....,=7ZOO+,.......,=II?=:........7OOOOOOZ=:,.....,:=I$ZOO=....... ....................,:+$7=.....................~OOOZZZOOOZZ$$7$$ZOOOOOOZ=....... ......................:?Z?,...................:?OZOOZOOZOOOOOOOOOOZOZOZO=....... ............,::,.......,OO7:................,+$OOZOZOOZOZZOZOZZOOZOZOZOO=....... ...........~$8OI........$OOZI~,.........,:=IZOOZOZOZOZOOOZOZOZOOOZZZOZOO=....... ...........:??=:.......:OOOOOZZ7+=~~==+?$ZOOOOZOOOZOZOZOOZOZOZZOZZOZOZZO=....... ............::,.......,+OOZOOOOO$7777$$ZOOOOOZOZZZZOZOZZZOOZOZZOOOZOOZOO=....... .....................=7OOZOOZOOZOOOOOOOOOZZZOZOZZOZOZOZOOOZOZOZZOZOOZOOO=....... ................,:=I$OOOZZOOOZOOOOOZOZOZZZZZOOZZZOZOZZZOOZOOZOZOZOZOZOOZ=....... ...........:~+?7ZOOOOOOZZZOZOOZOZOOZOZOZZOZZOZOZZZZOZOZZOZOZOZZOZOOZOOOZ=....... ........$$ZOOOOOOOOZOZOZZZZOZOZOOOZZZOZZZOZOOZOZZZZZZZZOOOZOOZZZOZOOZOOZ=....... .......~OOZOOZZOOZZZZZZOOZOZOZOZZOOZOOZZZOZZOZOZZOZZZOZOOOOOZOZOZOOZOOOZ=....... .......~OOZOOZZOZZOZOZZOZZOZOOZOZOOZOZOZZOZOOZOZZOZOZOZOZOOZOZOOOZOOZOZO=....... .......~OOZZZOZOOOZOZOZZOZOZOZOZOOZOOZOOOOZOZOOZOOOZOOOZOZZOZOZOOZZOOOOZ=....... .......~OOZZOZOZZZOOZOOZOZOZOZZOZZZZOZZZZOZOZZOOOOZ$ZZZZZZOZZZOZZOZOZZZO=....... .......~OOZZOO$??$OOZOOZZOOZOZOZ+~IZOOOZOZOOZZOOZI==IZOZZOZOOZOZZOZI~=7O=....... .......~OOZO$I:..~IZZZOZOZOZOZ$+...=7ZOOZOOZZOZZ=,..,=$ZZOZZZZZOZI~...,?=....... .......~OOOZI:....:IZOOOZZOOO$+:....~7ZOZOZOZOZ$,....,=$OOZOOOZOI~.....:~....... .......~OZI~........~IZZZOZ$?:........=IOOZZZ$+,.......,$ZOOOZZ7................ .......=7~............~IOZI:............7ZO$+:..........,=7ZZ7=,................ .......,,...............=~...............~=:..............,~=................... GlassGiant.com""" print "Hello World!" </code></pre> http://stackoverflow.com/questions/169562/proper-nullable-type-checking-in-c/546208#546208 0 Answer by just in case for Proper nullable type checking in C#? just in case 2009-02-13T14:49:29Z 2009-02-13T14:49:29Z <p>Here is a little test of try / catch vs. reflection:</p> <pre><code>object[] obj = new object[] { }; DateTime start = DateTime.Now; for (int x = 0; x &lt; 1000; x++) { try { throw new Exception(); } catch (Exception ex) { } } DateTime end = DateTime.Now; Console.WriteLine("Try/Catch: " + (end - start).TotalSeconds.ToString()); start = DateTime.Now; for (int x = 0; x &lt; 1000; x++) { bool assignable = typeof(int).IsAssignableFrom(obj.GetType().GetElementType()); } end = DateTime.Now; Console.WriteLine("IsAssignableFrom: " + (end - start).TotalSeconds.ToString()); </code></pre> <p>The resulting output in Release mode is:</p> <pre><code>Try/Catch: 1.7501001 IsAssignableFrom: 0 </code></pre> <p>In debug mode:</p> <pre><code>Try/Catch: 1.8171039 IsAssignableFrom: 0.0010001 </code></pre> <p>Conclusion, just do the reflection check. It's worth it.</p> http://stackoverflow.com/questions/348853/units-of-measure-in-c-almost/489618#489618 0 Answer by just in case for Units of measure in C# - almost just in case 2009-01-28T22:07:18Z 2009-01-28T22:07:18Z <p>See Boo Ometa (which will be available for Boo 1.0): <a href="http://blogs.codehaus.org/people/bamboo/archives/001722_boo_ometa_and_extensible_parsing_i.html" rel="nofollow">Boo Ometa and Extensible Parsing</a></p> http://stackoverflow.com/questions/402313/visual-studio-2008-doesnt-recognize-lambda-expression-syntax/402400#402400 0 Answer by just in case for Visual Studio 2008 doesn't recognize Lambda Expression Syntax just in case 2008-12-31T06:12:31Z 2008-12-31T06:12:31Z <p>I'm guessing the parameter to the method you are passing the lambda into accepts a Delegate as a parameter?</p> <p>If this is true then you will need to cast the lambda as a specific type of delegate. This is sort of confusing but what you need to know is that a lambda can't always be inferred correctly so you need to cast it or change the method signature to accepts specific types of delegates.</p> <p>try this:</p> <pre><code>ObjectFactory.Initialize((Action&lt;T&gt;)(x =&gt; // where T is the typeof x { // ... })); </code></pre> <p>Also you could try making a few overloads for Initialize to accept specific types of delegates (such as Action).</p> <p>If your method does accept a specific type of delegate type than you can ignore this answer :)</p> http://stackoverflow.com/questions/401919/is-hard-coding-literals-ever-acceptable/402315#402315 2 Answer by just in case for Is hard-coding literals ever acceptable? just in case 2008-12-31T04:40:40Z 2008-12-31T04:40:40Z <p>no.</p> <p>What is a simple throw away app today will be driving your entire enterprise tomorrow. Always use best practices or you'll regret it.</p> http://stackoverflow.com/questions/395313/how-can-i-get-the-current-codedomprovider-in-an-msbuild-task/395369#395369 0 Answer by just in case for How can I get the current CodeDomProvider in an MSBuild Task just in case 2008-12-27T20:24:58Z 2008-12-27T20:24:58Z <p>Ok I managed to figure it out eventually: </p> <p><a href="http://www.justnbusiness.com/Blogs/Getting_a_CodeDomProvider_in_an_MSBuild_Task.aspx" rel="nofollow">Geting a CodeDomProvider in an MSBuild Task</a></p> http://stackoverflow.com/questions/395259/generating-code-in-an-msbuild-task/395328#395328 0 Answer by just in case for Generating Code in an MSBuild task just in case 2008-12-27T19:41:55Z 2008-12-27T19:41:55Z <p>I still can't figure out how to get the project CodeDomProvider though...</p> http://stackoverflow.com/questions/395259/generating-code-in-an-msbuild-task/395301#395301 1 Answer by just in case for Generating Code in an MSBuild task just in case 2008-12-27T19:10:21Z 2008-12-27T19:10:21Z <p>It turns out there is a TaskItem class already. It's pretty general but should work just fine. If you set the ItemName="Compile" on the output element in your targets file it will create them as Compile items and add them to the collection. No problem</p> http://stackoverflow.com/questions/379276/windows-service-cant-access-app-config-from-within-my-installers-constructor/387886#387886 0 Answer by just in case for Windows service, can't access app.config from within my Installer's constructor just in case 2008-12-23T00:55:58Z 2008-12-23T00:55:58Z <p>You really shouldn't store a password in an app.config file, that is very bad. You need to either use the service account, the current user or prompt them. Also a user can right click an .exe (which presumably is what is triggering your install) and select "run as" to change their credentials before installation (in which case current user would be a good selection).</p> <p>Additionally in the services manager a user can change which user the service is supposed to run as after the installation is over. But you definitely don't want to store passwords in plain text files.</p> http://stackoverflow.com/questions/381366/is-there-a-wildcard-expansion-option-for-net-apps/387880#387880 0 Answer by just in case for Is there a wildcard expansion option for .net apps? just in case 2008-12-23T00:51:24Z 2008-12-23T00:51:24Z <p>Your code looks like exactly how you're supposed to do it.</p> http://stackoverflow.com/questions/238540/what-modeling-tools-are-everyone-using/387873#387873 0 Answer by just in case for What modeling tools are everyone using? just in case 2008-12-23T00:44:13Z 2008-12-23T00:44:13Z <p>I use Microsoft Word to draw shapes and lines and such to be honest. It's pretty easy and looks good. I don't need all the technical constraints and such to draw most models. If they get too complex or detailed they end up being impossible to read anyway.</p> http://stackoverflow.com/questions/385102/oslos-intellipad-how-to-set-up-the-3-column-mgrammarmode/385679#385679 5 Answer by just in case for Oslo's Intellipad: How to set up the 3 column MGrammarMode? just in case 2008-12-22T06:42:14Z 2008-12-22T06:42:14Z <p>Here are the steps you have to take</p> <ol> <li>Open "Intellipad (Samples Enabled)"</li> <li>File->Open your DSL file (Example.song)</li> <li>CTRL+SHIFT+D, type "SetMode('MGMode')"</li> <li>From the menu: MGrammar Mode->Tree Preview</li> <li>Select your grammar file (Song.mg)</li> </ol> <p>This will open up the three preview view. The left window is your sample code, the middle one is your grammar and the right is a tree structure of your output.</p> http://stackoverflow.com/questions/385141/applying-a-single-style-to-multiple-controls-and-tweaking-each-style/385671#385671 0 Answer by just in case for Applying a single style to multiple controls (and tweaking each style) just in case 2008-12-22T06:35:10Z 2008-12-22T06:35:10Z <p>You can create the style in a ResourceDictionary then merge that dictionary into your controls resources. If you give the style a key then you can bind any button to that style.</p> <p>For example:</p> <pre><code>&lt;Style x:Key="imageButton" ControlType="{x:Type Button}"&gt; ... &lt;/Style&gt; &lt;Button Style="{DynamicResource imageButton}" /&gt; </code></pre> http://stackoverflow.com/questions/385658/event-handling-in-dynamic-asp-net-user-control/385666#385666 0 Answer by just in case for Event handling in Dynamic asp.net user Control just in case 2008-12-22T06:28:58Z 2008-12-22T06:28:58Z <p>Webforms or ASP.NET MVC? I'll assume webforms...</p> <p>Try using a CompositeControl. If there is databinding involved you can use the DataBoundCompositeControl. In the CreateCHildren method you dynamically create your controls add add them to the child collection. Here is an example of a fairly complicated DataBoundCompositeControl I created once (with event handling on inner child controls):</p> <p><a href="http://www.codeplex.com/NBusiness/SourceControl/changeset/view/45016#308876" rel="nofollow">Scaffolding Control</a></p> <p>This is actually a really hard thing to get right. Just remember to rebuild all of your child controls everytime and to store the state of the control so you can recreate everything properly. </p> <p>You will rebuild everything twice on postbacks (and once on the first GET). Once to recreate the controls to their previous state and the second time to process the changes after databinding and event handling.</p> <p>It's tricky, I hope this helps!</p> http://stackoverflow.com/questions/385497/how-to-restrict-number-of-concurrent-processes/385657#385657 0 Answer by just in case for How to restrict number of concurrent processes? just in case 2008-12-22T06:14:42Z 2008-12-22T06:14:42Z <p>When a process is terminated via an "unexpected" event such as task manager process killing it should throw a ThreadAbortException. You should really try to wrap your mutex holding in some sort of try / finally that will allow you to release it as the thread is aborting.</p> <p>I'm not 100% sure that's true but there aught to be some way to respond to situations like that.</p> http://stackoverflow.com/questions/347242/default-class-accessibility-in-c/347302#347302 2 Answer by just in case for Default Class Accessibility in C# just in case 2008-12-07T06:06:46Z 2008-12-07T06:06:46Z <p>Also, it is not sealed by default. I believe nested classes are private by default.</p> http://stackoverflow.com/questions/1147641/how-can-i-intercept-a-method-call-in-boo/1147808#1147808 Comment by just in case on How can I intercept a method call in Boo? just in case 2009-07-21T22:32:30Z 2009-07-21T22:32:30Z 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. http://stackoverflow.com/questions/10634/should-i-switch-from-nant-to-msbuild/12317#12317 Comment by just in case on Should I switch from nant to msbuild? just in case 2009-07-21T22:26:02Z 2009-07-21T22:26:02Z these things are easily doable with msbuild. http://stackoverflow.com/questions/494205/compiling-pages-with-custom-extension-for-ex-custx-as-if-they-were-xaml-files/922212#922212 Comment by just in case on Compiling pages with custom extension (for ex .custx) as if they were .xaml files in Visual Studio just in case 2009-07-21T22:07:33Z 2009-07-21T22:07:33Z 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? http://stackoverflow.com/questions/1088590/do-i-need-to-write-a-unit-test-for-a-method-within-service-class-that-only-calls/1088618#1088618 Comment by just in case on Do I need to write a unit test for a method within service class that only calls a method within repository class? just in case 2009-07-09T15:35:46Z 2009-07-09T15:35:46Z 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. http://stackoverflow.com/questions/172793/good-dynamic-programing-language-for-net-recommendation/172817#172817 Comment by just in case on Good dynamic programing language for .net recommendation just in case 2009-07-06T18:58:12Z 2009-07-06T18:58:12Z Boo is great but it's not dynamic. That is the main difference between Boo and python. http://stackoverflow.com/questions/1088442/what-is-the-purpose-advantage-of-using-yield-return-iterators-in-c Comment by just in case on What is the purpose/advantage of using yield return iterators in C#? just in case 2009-07-06T18:39:48Z 2009-07-06T18:39:48Z 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. http://stackoverflow.com/questions/1088442/what-is-the-purpose-advantage-of-using-yield-return-iterators-in-c/1088561#1088561 Comment by just in case on What is the purpose/advantage of using yield return iterators in C#? just in case 2009-07-06T18:38:08Z 2009-07-06T18:38:08Z Deferred execution is probably the biggest benefit of iterators. http://stackoverflow.com/questions/1071258/c-4-0-detect-if-a-method-is-missing/1071478#1071478 Comment by just in case on C# 4.0, detect if a method is missing just in case 2009-07-06T15:42:24Z 2009-07-06T15:42:24Z I went with a reflection based approach in the end. Here is my solution: <a href="http://justnbusiness.com/post/2009/07/02/Member-Exists-e28093-Dynamic-C-40.aspx" rel="nofollow">justnbusiness.com/post/2009/&hellip;</a> Basically has a fluent style API with a dynamic wrapper for seeing if unknown members exist first. http://stackoverflow.com/questions/1071258/c-4-0-detect-if-a-method-is-missing/1071544#1071544 Comment by just in case on C# 4.0, detect if a method is missing just in case 2009-07-02T18:32:44Z 2009-07-02T18:32:44Z I thought theught the &quot;might&quot; misspelling was a bit of a joke since the method &quot;might&quot; not exist? http://stackoverflow.com/questions/1071258/c-4-0-detect-if-a-method-is-missing/1071758#1071758 Comment by just in case on C# 4.0, detect if a method is missing just in case 2009-07-02T15:28:39Z 2009-07-02T15:28:39Z Also, invoking a non-existent member throws an exception. I need more of a TryInvoke type of thing. http://stackoverflow.com/questions/1071258/c-4-0-detect-if-a-method-is-missing/1071478#1071478 Comment by just in case on C# 4.0, detect if a method is missing just in case 2009-07-02T15:27:18Z 2009-07-02T15:27:18Z 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 :( http://stackoverflow.com/questions/1071258/c-4-0-detect-if-a-method-is-missing/1071758#1071758 Comment by just in case on C# 4.0, detect if a method is missing just in case 2009-07-02T15:25:28Z 2009-07-02T15:25:28Z It's not my type, I cannot add interfaces too it. :( http://stackoverflow.com/questions/1071258/c-4-0-detect-if-a-method-is-missing/1071721#1071721 Comment by just in case on C# 4.0, detect if a method is missing just in case 2009-07-02T15:24:32Z 2009-07-02T15:24:32Z 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. http://stackoverflow.com/questions/1071080/can-one-class-be-a-subclass-of-two-or-more-classes/1071279#1071279 Comment by just in case on Can one class be a subclass of two or more classes? just in case 2009-07-01T20:51:18Z 2009-07-01T20:51:18Z That seems like unnecessary nitpicking. http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776959#776959 Comment by just in case on What is the best comment in source code you have ever encountered? just in case 2009-04-23T02:24:27Z 2009-04-23T02:24:27Z I'm pretty sure rolen isn't a word...