User MagicKat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T22:48:11Zhttp://stackoverflow.com/feeds/user/8505http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/97381/yield-in-vb-net3Yield In VB.NETMagicKat2008-09-18T21:53:22Z2009-09-26T07:22:07Z
<p>C# has the keyword called <a href="http://msdn.microsoft.com/en-us/library/9k7k7cf0(VS.80).aspx" rel="nofollow">yield</a>. VB.NET lacks this keyword. I am curious how some of the VB programmers have gotten around the lack of this keyword. Do you implement your own iterator class? Or do you try and code to avoid the need of an iterator?</p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/9k7k7cf0(VS.80).aspx" rel="nofollow">yield</a> keyword does force the compiler to do some coding behind the scenes. <a href="http://blogs.msdn.com/oldnewthing/archive/2008/08/12/8849519.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2008/08/12/8849519.aspx</a> is a good example of that. </p>
http://stackoverflow.com/questions/1269153/shared-method-not-calling-shared-constructor1Shared Method not calling Shared ConstructorMagicKat2009-08-12T22:50:04Z2009-08-12T23:28:26Z
<p>Given in the following <a href="http://msdn.microsoft.com/en-us/library/aa711965%28VS.71%29.aspx" rel="nofollow">language specification</a>, for me at least, calling Db.Foobar() [In the following code] does not indeed call off to the Shared Constructors of the base classes. I am curious as to a) is this my own fault for doing something wrong or b) is this an error in the language specification</p>
<pre><code>Public MustInherit Class D1
Shared Sub New()
Console.WriteLine("D1 Static Constructor Called")
End Sub
End Class
Public MustInherit Class D2
Inherits D1
End Class
Public Class Da
Inherits D2
Public Sub New()
Console.WriteLine("Public Da Constructor Called")
End Sub
End Class
Public Class Db
Inherits D2
Shared Sub New()
Console.WriteLine("Db Static Constructor Called")
End Sub
Public Sub New()
Console.WriteLine("Public Db Constructor Called")
End Sub
Public Shared Sub FooBar()
Console.WriteLine("FooBar Called")
End Sub
End Class
</code></pre>
http://stackoverflow.com/questions/417261/vbc-nant-error-compiling-winform0VBC + NAnt. Error compiling WinFormMagicKat2009-01-06T16:43:41Z2009-06-16T10:00:02Z
<p>It should first be noted that I am trying to avoid rewriting all my scripts to use msbuild.</p>
<p>I have noticed that there are several problems when using NAnt with the VBC task and compiling a WinForms application. The main problem seems to be that VBC can't find Sub Main. This is odd, since from within VS, there is no indication that there is any sort of difference between my call to vbc and msbuild's call to vbc.</p>
<p>Does anyone have any insight into a solution to this problem or a way to force the creation of the rest of the partial classes that might/might not be being produced by MSBuild/VS?</p>
<p>Sample Build Script:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<project xmlns="http://nant.sf.net/release/0.85/nant.xsd" name="Test" default="build">
<target name="build">
<vbc target="winexe" output="C:\Test.exe" main="WindowAppNantTest.My.MyApplication" verbose="true" rootnamespace="WindowAppNantTest">
<imports>
<import namespace="Microsoft.VisualBasic"/>
<import namespace="System.Windows.Forms"/>
</imports>
<sources>
<include name="**/**/*.vb"/>
</sources>
</vbc>
</target>
</project>
</code></pre>
<p>Error(s):
[vbc] vbc : error BC30420: 'Sub Main' was not found in 'WindowAppNantTest.My.MyApplication'.</p>
http://stackoverflow.com/questions/135841/marking-a-class-static-in-vb-net4Marking A Class Static in VB.NETMagicKat2008-09-25T20:30:32Z2009-01-07T16:20:40Z
<p>As just stated in a recent <a href="http://stackoverflow.com/questions/135759/why-cant-i-inherit-iodirectory">question</a> and <a href="http://stackoverflow.com/questions/135759/why-cant-i-inherit-iodirectory#135772">answer</a>, you can't inherit from a static class. How does one enforce the rules that go along with static classes inside VB.NET? Since the framework is compatible between C# and VB it would make sense that there would be a way to mark a class static, but there doesn't seem to be a way.</p>
http://stackoverflow.com/questions/418878/command-line-compiling-settings-settings-using-vbc0Command Line Compiling Settings.settings using VBCMagicKat2009-01-07T01:34:43Z2009-01-07T03:11:41Z
<p><a href="http://stackoverflow.com/questions/417261/vbc-nant-error-compiling-winform">To an earlier question of mine, invovling VBC and NAnt with WinForms</a>, I have since come up with a better way of stating this.</p>
<p>Within vbproj file, you have the following:</p>
<pre><code><ItemGroup>
<None Include="My Project\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<CustomToolNamespace>My</CustomToolNamespace>
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="My Project\Application.myapp">
<Generator>MyApplicationCodeGenerator</Generator>
<LastGenOutput>Application.Designer.vb</LastGenOutput>
</Content>
</ItemGroup>
</code></pre>
<p>When one runs build from within Visual Studio (Debug Verbosity set to Normal), one of the lines produces is:</p>
<pre><code>Target CoreCompile:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Vbc.exe ...
</code></pre>
<p>Which includes all of the settings required for vbc.exe to run. However, taking that string from Visual Studio, and running it directly on the command line yields:</p>
<pre><code>... My Project\Settings.Designer.vb(67) : error BC30002: Type 'My.MySettings' is not defined.
Friend ReadOnly Property Settings() As Global.My.MySettings
...\My Project\Settings.Designer.vb(69) : error BC30456: 'My' is not a member of '<Default>'.
Return Global.My.MySettings.Default
</code></pre>
<p>How does one get the above Generators to run from a command line, or is there a call somewhere that will generate the correct temp files that are needed for vbc.exe to run the command string correctly?</p>
http://stackoverflow.com/questions/150581/when-to-use-ienumerable-over-ienumerable1When to use IEnumerable over IEnumerable<>MagicKat2008-09-29T20:49:44Z2009-01-03T15:14:47Z
<p>Due to the lack of generic variance in the .NET framework, is it more "correct" to have methods that handle the non-generic versions of the System.Collection interfaces, if the methods are being designed to handle multiple types?</p>
<p>Ideally, once moved to .NET 3.5, the code would modified to change these methods into extension methods.</p>
http://stackoverflow.com/questions/187913/c-fastest-convert-from-collection-to-listt/187957#1879570Answer by MagicKat for C# Fastest Convert from Collection to List<T>MagicKat2008-10-09T16:02:41Z2008-10-09T16:02:41Z<p>As long as ManagementObjectCollection implements IEnumerable<ManagementObject> you can do:</p>
<pre><code>List<ManagementObject> managementList = new List<ManagementObjec>(managementObjects);
</code></pre>
<p>If it doesn't, then you are stuck doing it the way that you are doing it.</p>
http://stackoverflow.com/questions/184681/is-vs-typeof/184697#1846976Answer by MagicKat for is vs typeofMagicKat2008-10-08T20:21:03Z2008-10-08T20:21:03Z<p><a href="http://blogs.msdn.com/vancem/archive/2006/10/01/779503.aspx" rel="nofollow">This should answer that question, and then some.</a></p>
<p>The second for those that don't want to read the article.</p>
http://stackoverflow.com/questions/183953/how-to-get-visual-studio-2008-to-edit-ssrs-2005-report-projects-w-o-installing-sq/184035#1840350Answer by MagicKat for How to get Visual Studio 2008 to edit SSRS 2005 Report Projects w/o Installing SQL Business Intelligence Development Studio 2005?MagicKat2008-10-08T18:04:12Z2008-10-08T18:04:12Z<p>Do you just not have access to a copy of VS2005? If so, you can try opening the project in <a href="http://www.microsoft.com/express/2005/download/default.aspx" rel="nofollow">VS2005 Exrpess</a>. Not sure if it will work or not, since I haven't done it or have SSRS projects to test with.</p>
http://stackoverflow.com/questions/180939/net-must-have-development-tools/180973#1809738Answer by MagicKat for .NET "must-have" development toolsMagicKat2008-10-08T00:41:51Z2008-10-08T00:41:51Z<ul>
<li><a href="http://www.jetbrains.com/resharper/index.html" rel="nofollow">Resharper</a></li>
<li><a href="http://www.red-gate.com/products/reflector/index.htm" rel="nofollow">Reflector</a></li>
<li><a href="http://lacuny.cuny.edu/committees/eis/fall2002/duckyshotorig.jpg" rel="nofollow">Rubber Ducky</a></li>
</ul>
http://stackoverflow.com/questions/179128/reading-compound-documents-in-c/179205#1792051Answer by MagicKat for Reading compound documents in c#MagicKat2008-10-07T16:04:37Z2008-10-07T16:04:37Z<p><a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.outlook.aspx" rel="nofollow">Outlook Interop</a>. While I have never used the outlook interop, you <strong>SHOULD</strong> be able to open the email messages with it.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.outlook._mailitem.aspx" rel="nofollow">MailItem Interface</a> should be the interface that you need to access it.</p>
<p>Also, make sure that you release the <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.releasecomobject(VS.80).aspx" rel="nofollow">com references</a> after you are done with them</p>
http://stackoverflow.com/questions/175323/should-you-display-whats-happening-in-the-unit-test-as-it-runs3Should you display what's happening in the unit test as it runs?MagicKat2008-10-06T17:34:47Z2008-10-06T21:14:43Z
<p>As I am coding my unit tests, I tend to find that I insert the following lines:</p>
<pre><code>Console.WriteLine("Starting InteropApplication, with runInBackground set to true...");
try
{
InteropApplication application = new InteropApplication(true);
application.Start();
Console.WriteLine("Application started correctly");
}
catch(Exception e)
{
Assert.Fail(string.Format("InteropApplication failed to start: {0}", e.ToString()));
}
//test code continues ...
</code></pre>
<p>All of my tests are pretty much the same thing. They are displaying information as to why they failed, or they are displaying information about what they are doing. I haven't had any <em>formal</em> methods of how unit tests should be coded. Should they be displaying information as to what they are doing? Or should the tests be silent and not display any information at all as to what they are doing, and only display failure messages?</p>
<p>NOTE: The language is C#, but I don't care about a language specific answer.</p>
http://stackoverflow.com/questions/170516/other-than-ironpython-and-f-what-other-net-languages-might-be-useful/170589#1705891Answer by MagicKat for Other than IronPython and F#, what other .NET languages might be useful?MagicKat2008-10-04T16:12:50Z2008-10-04T16:12:50Z<p><a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">Windows Powershell</a>. An interesting scripting environment that uses the .Net Framework.
It is kinda both a shell and language.</p>
http://stackoverflow.com/questions/169310/is-using-resharper-a-time-saver/169327#16932715Answer by MagicKat for Is using resharper a time saver?MagicKat2008-10-03T23:34:12Z2008-10-03T23:41:27Z<p>Things that R# speed up coding for me are:</p>
<ul>
<li>Crtl + Click taking you straight to the defining type [This is the BIGGEST time saver for me] - makes moving through the code painless (Crtl + - to go back to the last definition) </li>
<li>File Structure Window - Easy navigation</li>
<li>Code Analysis - Catches things that FxCop catches</li>
<li>Find Results Window/Find Usages - Helps with navigation</li>
<li>ToDo Explorer - Helps me find all my todos</li>
<li>Alt + Enter inserting usings/Imports at the top of the code file - helps me add namespaces effortlessly to the code file.</li>
<li>The pretty coloring (makes it easier to tell whats what) - I sometimes forget whats a class, namespace and method</li>
<li>NUnit testing inside VS/Unit Test Explorer - I can test without having to go to the NUnit client.</li>
<li>The enhanced refactoring - I refactor a lot. Help with the comments, and looks better imo then the built in VS one.</li>
<li>Go To File</li>
<li>Go To Symbol</li>
<li>Go To File Member</li>
<li>Go To Type</li>
</ul>
http://stackoverflow.com/questions/169275/resharper-unstable-for-anybody-else/169309#1693091Answer by MagicKat for ReSharper-- Unstable for anybody else?MagicKat2008-10-03T23:28:01Z2008-10-03T23:28:01Z<p>The one thing that I have seen that makes VS slow when R# is on is the lack of RAM and a slow CPU.</p>
<p>That being said, the only time I see slowness is when working in VB. C# is blazing fast ALL the time. The current computer I have isn't as good as my last one, but it does have 2GB of RAM and dual core P4 (3.20GHz).</p>
<p>Things that CAN slow R# down though are:</p>
<ul>
<li>Solution Errors setting</li>
<li>Code that has lots and lots and lots of errors</li>
<li>Code that has lots of analysis errors</li>
<li>Code Rush installed as well</li>
</ul>
http://stackoverflow.com/questions/169276/is-the-region-directive-really-useful-in-net/169298#1692980Answer by MagicKat for Is the #region directive really useful in .NET?MagicKat2008-10-03T23:23:19Z2008-10-03T23:23:19Z<p>There really isn't a benefit. They are a code smell. After using them for awhile, I got sick of them. If you need to break things out by functionality, use a partial class.</p>
http://stackoverflow.com/questions/167904/how-do-you-stop-interim-solutions-from-lasting-forever/167925#1679254Answer by MagicKat for How do you stop interim solutions from lasting forever?MagicKat2008-10-03T17:15:49Z2008-10-03T17:15:49Z<p>It is a hard call. I have done hacks personally cause, sometimes you <strong>HAVE</strong> to get that product out the door and into the customers hands. However, the way that I take care of it is to just do it.</p>
<p>Tell the project lead or your boss, or the customer: There are some spots that need to be cleaned up, and coded better. I need a week to do it, and it is going to cost less to do it now, then it will be to do it 6 months from now, when we need to implement an extension onto the subsystem.</p>
http://stackoverflow.com/questions/167714/most-wanted-features-for-visual-basic-10-0/167762#1677620Answer by MagicKat for Most Wanted Features for Visual Basic 10.0MagicKat2008-10-03T16:30:43Z2008-10-03T16:40:07Z<p>Anonymous Delegates</p>
<p>EDIT: Changed to reflect updated information.</p>
http://stackoverflow.com/questions/167714/most-wanted-features-for-visual-basic-10-0/167755#1677550Answer by MagicKat for Most Wanted Features for Visual Basic 10.0MagicKat2008-10-03T16:29:46Z2008-10-03T16:29:46Z<p>It is more of a .NET addition but, Java style Enums.</p>
http://stackoverflow.com/questions/164996/how-do-i-discover-the-return-value-at-the-end-of-a-function-when-debugging-in-vs2/165004#1650041Answer by MagicKat for How do I discover the return value at the end of a function when debugging in VS2008?MagicKat2008-10-02T23:17:01Z2008-10-02T23:17:01Z<p>You can put </p>
<pre><code>(x.Func() > y.Func())
</code></pre>
<p>in a watch window to evaluate it, and see the result. Unless the statement is</p>
<pre><code>return ValueChangesAfterEveryCall();
</code></pre>
<p>you should be fine. </p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164464#1644641Answer by MagicKat for What real life bad habits has programming given you?MagicKat2008-10-02T20:37:03Z2008-10-02T20:37:03Z<p>First, not so much programming per say, but I have been caught saying brb instead of saying be right back a few times.</p>
http://stackoverflow.com/questions/164425/determining-if-enum-value-is-in-list-c/164435#1644351Answer by MagicKat for Determining if enum value is in list (C#)MagicKat2008-10-02T20:31:39Z2008-10-02T20:31:39Z<p>use the FlagsAttribute. That will allow you to use the enum as a bit mask.</p>
http://stackoverflow.com/questions/164342/should-repositories-implement-iqueryablet/164380#1643805Answer by MagicKat for Should repositories implement IQueryable<T>?MagicKat2008-10-02T20:21:02Z2008-10-02T20:21:02Z<p>Depends on if you want a Has-A or an Is-A relationship.</p>
<p>The first one is an Is-A relationship. The IRepository interface is a IQueryable interface. The second is a has-a. The IRepository has an IQueryable interface. In the process of writing this, I actually like the second better then the first, simply because when use your second IRepository, I can give the Query() method ANYTHING that returns IQueryable. To me, that is more flexible then the first implementation.</p>
http://stackoverflow.com/questions/163913/how-do-you-decide-if-a-project-should-be-web-based-or-desktop-based/163955#1639554Answer by MagicKat for How do you decide if a project should be web-based or desktop-based?MagicKat2008-10-02T18:50:58Z2008-10-02T18:58:45Z<p>I base my choice on the GUI mostly. If the GUI is going to be complex, and (needs to be fast or will have aspects of it that will take a lot of time to process) then I will go with the Desktop. If it is simple, and will always have small data sets to work with at once, the I will go with the Web.</p>
<p>I have worked on an app that was made as a web app, when clearly it was better suited for the desktop. It was a massive failure. I don't know HOW customers put up with it, cause I certainly wouldn't have used it. The desktop version (which took over 6 months to re-write) blew the web version out of the water.</p>
<p>That being said, I have seen some nice web apps.</p>
http://stackoverflow.com/questions/163550/streamwriter-max-write-length/163595#1635950Answer by MagicKat for StreamWriter: Max Write Length?MagicKat2008-10-02T17:37:51Z2008-10-02T17:37:51Z<p>Make sure that you are calling .Flush()</p>
http://stackoverflow.com/questions/163022/high-resolution-timer-in-net/163030#16303012Answer by MagicKat for High resolution timer in .NETMagicKat2008-10-02T15:31:12Z2008-10-02T15:51:00Z<p>The System.Diagnostics.StopWatch class is awesome for profiling.</p>
<p>Here is a link to <a href="http://blogs.msdn.com/vancem/archive/2006/09/21/765648.aspx" rel="nofollow">Vance Morrison's Code Timer Blog</a> if you don't want to write your own measurement functions.</p>
http://stackoverflow.com/questions/160514/partial-classes-in-c/160533#1605333Answer by MagicKat for Partial Classes in C#MagicKat2008-10-02T01:51:36Z2008-10-02T01:51:36Z<p>I use partial classes as a means of separating out the different sub elements of custom controls that I write. Also, when used with entity creation software, it allows products like LLBLGen to create generated versions of classes, as well as a custom, user edited version, that won't get replaced if the entities need to be regenerated.</p>
http://stackoverflow.com/questions/159317/when-should-you-override-onevent-as-opposed-to-subscribing-to-the-event-when-inhe4When should you override OnEvent as opposed to subscribing to the event when inherittingMagicKat2008-10-01T19:33:49Z2008-10-01T23:43:31Z
<p>When should one do the following?</p>
<pre><code>class Foo : Control
{
protected override void OnClick(EventArgs e)
{
// new code here
}
}
</code></pre>
<p>As opposed to this?</p>
<pre><code>class Foo : Control
{
public Foo()
{
this.Click += new EventHandler(Clicked);
}
private void Clicked(object sender, EventArgs e)
{
// code
}
}
</code></pre>
http://stackoverflow.com/questions/159920/poll-if-todo-comments-were-more-visible-would-you-resolve-them-faster/159929#1599290Answer by MagicKat for Poll: If TODO comments were more "visible", would you resolve them faster?MagicKat2008-10-01T21:53:16Z2008-10-01T21:53:16Z<p>in .Net, I have R# ... which has a handy To-Do Explorer ... which shows me all of my todos, as well as other things.</p>
http://stackoverflow.com/questions/159568/linq-to-xml-for-a-small-appliction-can-it-replace-a-small-database/159577#1595777Answer by MagicKat for LINQ to XML for a small appliction can it replace a small database?MagicKat2008-10-01T20:35:17Z2008-10-01T20:35:17Z<p>I would avoid it. I personally would use something like SqlExpress for the DB, or an .mdb file. The problem becomes when that Xml file starts getting large, or requires a change to the format (i.e. an update to a table's structure), processing that becomes a PITA.</p>
http://stackoverflow.com/questions/418878/command-line-compiling-settings-settings-using-vbc/419074#419074Comment by MagicKat on Command Line Compiling Settings.settings using VBCMagicKat2009-01-07T15:53:58Z2009-01-07T15:53:58ZThe vbc line in the output file appears to be the same.http://stackoverflow.com/questions/417261/vbc-nant-error-compiling-winform/417399#417399Comment by MagicKat on VBC + NAnt. Error compiling WinFormMagicKat2009-01-06T17:24:10Z2009-01-06T17:24:10ZSame error. I believe that VS is doing behind the scenes magic with the My namespaces. But I have no proof that it is happening. Also, if it is happening, then there should be a command line tool that I can access to produce them so that VBC can run.http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218341#218341Comment by MagicKat on What was the strangest coding standard rule that you were forced to follow?MagicKat2008-10-22T15:14:46Z2008-10-22T15:14:46ZOddly, in C/C++ that did hold true, an instructor gave us an example from back in the day. Although, not sure if it still applies.http://stackoverflow.com/questions/169275/resharper-unstable-for-anybody-else/169309#169309Comment by MagicKat on ReSharper-- Unstable for anybody else?MagicKat2008-10-14T18:57:31Z2008-10-14T18:57:31ZSolution Errors setting is a setting in R# that displays all the errors, in all the files, that R# sees. It can hog the CPU.http://stackoverflow.com/questions/187913/c-fastest-convert-from-collection-to-listt/187957#187957Comment by MagicKat on C# Fastest Convert from Collection to List<T>MagicKat2008-10-09T16:19:38Z2008-10-09T16:19:38ZBut we don't know which framework he is using.http://stackoverflow.com/questions/187913/c-fastest-convert-from-collection-to-listt/187957#187957Comment by MagicKat on C# Fastest Convert from Collection to List<T>MagicKat2008-10-09T16:16:55Z2008-10-09T16:16:55Z@Marc Gravell: Then he is stuck doing it the way that he is doing it. The IEnumerable<T> ctor is doing the same thing basically anyways.http://stackoverflow.com/questions/187913/c-fastest-convert-from-collection-to-listtComment by MagicKat on C# Fastest Convert from Collection to List<T>MagicKat2008-10-09T16:07:11Z2008-10-09T16:07:11ZPlease tell us which framework that you are using. 2.0 has a different solution from 3.5http://stackoverflow.com/questions/175323/should-you-display-whats-happening-in-the-unit-test-as-it-runs/175563#175563Comment by MagicKat on Should you display what's happening in the unit test as it runs?MagicKat2008-10-06T18:31:08Z2008-10-06T18:31:08Ze.ToString() displays the StackTrace.http://stackoverflow.com/questions/174662/a-c-to-vb-net-conversion-utility-that-handles-automatic-properties-correctlyComment by MagicKat on A C# to VB.Net conversion utility that handles Automatic properties correctly?MagicKat2008-10-06T15:09:02Z2008-10-06T15:09:02ZWhy, if the rest of the team is coding in VB, are you NOT coding in VB but in C# instead?http://stackoverflow.com/questions/169332/is-there-a-timer-class-in-c-that-isnt-in-the-windows-forms-namespace/169333#169333Comment by MagicKat on Is there a Timer class in C# that isn't in the Windows.Forms namespace?MagicKat2008-10-03T23:43:38Z2008-10-03T23:43:38ZSystem.Threading.Timer is another one as wellhttp://stackoverflow.com/questions/167904/how-do-you-stop-interim-solutions-from-lasting-forever/167925#167925Comment by MagicKat on How do you stop interim solutions from lasting forever?MagicKat2008-10-03T22:35:40Z2008-10-03T22:35:40Z@Bill K: so in this case, sure the code base isn't DRY, but you are a hero to the customer. Then once in the customers hand, you can easily refactor the code. Whats more important in the LONG TERM, a nonDRY code base for an hour but a happy customer, or a DRY code base and an unhappy customer.http://stackoverflow.com/questions/167904/how-do-you-stop-interim-solutions-from-lasting-forever/167925#167925Comment by MagicKat on How do you stop interim solutions from lasting forever?MagicKat2008-10-03T22:33:30Z2008-10-03T22:33:30Z@Bill K: Poorly programmed was never in my statement. Less desirable solution perhaps. Its about debt, you take no debt, I take small debts that I can pay off quickly. I can always refactor later, the customer doesn't care, but they care about the report they need for the board in one hour.http://stackoverflow.com/questions/167904/how-do-you-stop-interim-solutions-from-lasting-forever/167996#167996Comment by MagicKat on How do you stop interim solutions from lasting forever?MagicKat2008-10-03T17:34:04Z2008-10-03T17:34:04ZThis is very true.http://stackoverflow.com/questions/167714/most-wanted-features-for-visual-basic-10-0/167756#167756Comment by MagicKat on Most Wanted Features for Visual Basic 10.0MagicKat2008-10-03T16:32:36Z2008-10-03T16:32:36ZHaving a yield keyword would be awesome. Although, I heard that they are working on an Iterator keyword.http://stackoverflow.com/questions/164425/determining-if-enum-value-is-in-list-c/164435#164435Comment by MagicKat on Determining if enum value is in list (C#)MagicKat2008-10-02T20:40:16Z2008-10-02T20:40:16ZAh, I didn't know that it just changed the ToString(). Interesting.