User Kyralessa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T05:18:42Zhttp://stackoverflow.com/feeds/user/5486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1868294/c-dataset-sql-questions/1868865#18688650Answer by Kyralessa for C# dataset sql questionsKyralessa2009-12-08T18:19:31Z2009-12-08T18:19:31Z<p><code>DataTable.Columns</code> and <code>DataTable.Rows</code> are not generic collections. They're of type <code>DataColumnCollection</code> and <code>DataRowCollection</code>, respectively. These are collection types that predate .NET 2.0; before generics in .NET 2.0, you had to create a specific class for any strongly-typed collection.</p>
<p>To get something compatible with LINQ methods, do one of these:</p>
<p><code>dataset.Tables[0].Columns.OfType<DataColumn>()</code></p>
<p><code>dataset.Tables[0].Columns.Cast<DataColumn>()</code></p>
<p>The difference is that <code>OfType</code> will get only those items that can be cast to that type, and discard the rest, whereas <code>Cast</code> will expect the collection to contain <em>only</em> items that can be cast to that type, and will throw an exception if it encounters one that can't be.</p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/1860923#18609230Answer by Kyralessa for Hidden Features of SQL ServerKyralessa2009-12-07T16:01:31Z2009-12-07T16:01:31Z<p>Here's a simple but useful one:</p>
<p>When you're editing table contents manually, you can <strong>insert NULL in a column</strong> by typing <strong>Control-0</strong>.</p>
http://stackoverflow.com/questions/75273/could-not-reformat-the-document-in-asp-net-vs20080"Could not reformat the document" in ASP.NET, VS2008Kyralessa2008-09-16T18:11:47Z2009-12-05T03:02:43Z
<p>I'm in an <strong>ASP.NET UserControl</strong>. When I type Control-K, Control-D to reformat all the markup, I get a series of messages from VS 2008:</p>
<p>"Could not reformat the document. The original format was restored."</p>
<p>"Could not complete the action."</p>
<p>"The operation could not be completed. The parameter is incorrect."</p>
<p>Anybody know what causes this?</p>
<p><strong>Edit</strong>: OK, that is just...weird.</p>
<p>The problem is here:</p>
<pre><code><asp:TableCell>
<asp:Button Text="Cancel" runat="server" ID="lnkCancel" CssClass="CellSingleItem" />
</asp:TableCell>
</code></pre>
<p>Somehow that asp:Button line is causing the problem. But if I delete any individual attribute, the formatting works. Or if I add a new attribute, the formatting works. Or if I change the tag to be non-self-closing, it works. But if I undo and leave it as-is, it doesn't work.</p>
<p>All I can figure is that this is some sort of really obscure, bizarre bug.</p>
http://stackoverflow.com/questions/1848312/how-can-i-store-different-objects-in-a-single-list/1848951#18489512Answer by Kyralessa for How can I store different objects in a single listKyralessa2009-12-04T18:53:18Z2009-12-04T18:53:18Z<p>If you're in .NET 3.5 or above, you can make this a bit less ugly this way:</p>
<pre><code>List<Entity> entities = new List<Entity>();
// add some lines and some arcs
var lines = entities.OfType<Line>();
</code></pre>
<p>Then you just loop through <code>lines</code>, which will contain all the lines (strongly-typed as Lines) and nothing else.</p>
<p>I'm not saying this is the best approach; I'm only saying this is one way to do what you're doing. I agree with Shmoopty that it's an architecture problem.</p>
http://stackoverflow.com/questions/387076/how-can-i-use-linq-with-dataset-xsd-files/387170#3871702Answer by Kyralessa for How can I use Linq with Dataset.xsd files?Kyralessa2008-12-22T19:58:30Z2009-12-04T05:11:00Z<p>A DataSet is just a container for your data, so you need to fill it first. <strong>LINQ to SQL</strong> will create SQL and go to the database for you...but when you're working with DataSets, you're using <strong>LINQ to Objects</strong>, which won't create SQL. So you need to make sure that <strong>all</strong> tables you need in the DataSet are filled before you start writing LINQ to query your DataSet.</p>
<p>I think you're looking for something along these lines:</p>
<pre><code>Dim taFields As New TestDSTableAdapters.FieldTableAdapter()
Dim taFieldTypes As New TestDSTableAdapters.FieldTypesTableAdapter()
Dim ds As New TestDS
taFields.Fill(ds.Fields)
taFieldTypes.Fill(ds.FieldTypes)
Dim results = From f In ds.Fields Select f
For Each field In results
Response.Write( _
field.FieldID & " " & field.Label & " " &
field.FieldTypeRow.FieldTypeLabel)
Next
</code></pre>
http://stackoverflow.com/questions/269436/how-can-you-align-a-canvas-background-in-wpf/270883#2708834Answer by Kyralessa for How can you align a canvas background in WPF?Kyralessa2008-11-07T00:27:07Z2009-12-04T04:54:04Z<p>Will this work? (It worked for me, anyway.)</p>
<pre><code> <Canvas>
<Canvas.Background>
<ImageBrush ImageSource="someimage.jpg" AlignmentX="Right"
AlignmentY="Bottom" Stretch="None" />
</Canvas.Background>
</Canvas>
</code></pre>
http://stackoverflow.com/questions/1233469/a-few-c-naming-convention-questions/1843698#18436980Answer by Kyralessa for A few C# naming convention questionsKyralessa2009-12-03T23:06:16Z2009-12-03T23:06:16Z<p>In C# visibility defaults to the most limited visibility possible. Without a modifier:</p>
<ul>
<li>non-inner classes are internal</li>
<li>inner classes are private</li>
<li>class members are private</li>
</ul>
<p>Because it's a good idea to limit visibility as much as possible anyway, I try to <em>always</em> leave off the modifier where the default visibility is all I need. This makes those members that <em>aren't</em> the default more obvious, which helps keep me attentive to whether they really need to be that visible.</p>
<p>For constants, my preference would be to put them in their own class(es) so that the ClassName.ConstantName format makes it obvious what they are.</p>
<p>In general I follow Microsoft's <a href="http://msdn.microsoft.com/en-us/library/ms229042.aspx" rel="nofollow">Design Guidelines for Developing Class Libraries</a>.</p>
http://stackoverflow.com/questions/1842010/c-dictionary-each-key-has-an-identical-value-can-i-remove-the-redundancy/1842039#18420391Answer by Kyralessa for C# Dictionary: Each Key Has An Identical Value - Can I Remove the Redundancy?Kyralessa2009-12-03T18:48:59Z2009-12-03T18:48:59Z<p>Inherit from <a href="http://msdn.microsoft.com/en-us/library/ms132397.aspx" rel="nofollow">System.Collections.ObjectModel.Collection</a> and override <a href="http://msdn.microsoft.com/en-us/library/ms132412.aspx" rel="nofollow">InsertItem</a> (which is protected).</p>
<p>Then you can do your duplicate check and throw when someone inserts a duplicate item. InsertItem is called on any of the methods that can put in a new item: Add, Insert, etc.</p>
http://stackoverflow.com/questions/1833289/is-it-acceptable-to-have-useless-code/1836660#18366600Answer by Kyralessa for Is it acceptable to have useless code?Kyralessa2009-12-02T23:39:22Z2009-12-02T23:39:22Z<p>Useless one-liner code can and should be removed.</p>
<p>Useless code that took time to write can and should be removed...but people in charge tend to get queasy about this. Perhaps the best solution is to have a ProbablyUselessButWhoKnows project where everyone can check in pointless code that might be used again in two or three years. If nothing else, this way people don't have to feel nervous about deleting it.</p>
<p>(Yes, in theory you can get it out of source control, but old deleted code in source control is not exactly highly discoverable.)</p>
http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1836103#18361031Answer by Kyralessa for Hidden Features of VB.NET?Kyralessa2009-12-02T21:56:40Z2009-12-02T21:56:40Z<p>Here's a funny one that I haven't seen; I know it works in VS 2008, at least:</p>
<p><strong>If you accidentally end your VB line with a semicolon</strong>, because you've been doing too much C#, <strong>the semicolon is automatically removed</strong>. It's actually impossible (again, in VS 2008 at least) to accidentally end a VB line with a semicolon. Try it!</p>
<p>(It's not perfect; if you type the semicolon halfway through your final class name, it won't autocomplete the class name.)</p>
http://stackoverflow.com/questions/1827019/when-to-use-c-vs-c-for-performance-london-stock-exchange/1827083#18270830Answer by Kyralessa for When To Use C# vs C++ For Performance (London Stock Exchange)Kyralessa2009-12-01T15:53:49Z2009-12-01T15:53:49Z<p>It could have to do with flash orders. As I understand it, this is a technique used on some stock exchanges where orders are flashed to a select group of traders for a few milliseconds before the general market can see them, which allows those traders to make money through their own anticipatory (and automated) trades. The performance requirements might be too high for managed code.</p>
<p>(The New York Times has had some articles on flash orders in recent months.)</p>
http://stackoverflow.com/questions/1822373/what-do-all-these-save-dts-package-options-mean0What do all these "Save DTS Package" options mean?Kyralessa2009-11-30T21:02:37Z2009-11-30T21:20:54Z
<p>I'm creating a DTS package. After specifying the source, destination, and tables, I get the <strong>Save, schedule, and replicate package</strong> step, which has a <strong>Save DTS Package</strong> checkbox.</p>
<p>If I check the box to save, I get these options:</p>
<ul>
<li>SQL Server</li>
<li>SQL Server Meta Data Services</li>
<li>Structured Storage File</li>
<li>Visual Basic File</li>
</ul>
<p>Can anyone give a good explanation of what each option means, and the pros and cons of using it to save my DTS package? (Particularly if you have experience with the different options, and aren't just regurgitating <a href="http://www.microsoft.com/mspress/books/sampchap/4885d.aspx" rel="nofollow">something like this</a>.)</p>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/1810646#18106460Answer by Kyralessa for What are the best code refactoring strategies ?Kyralessa2009-11-27T21:12:15Z2009-11-27T21:12:15Z<p><strong>Excel.</strong></p>
<p>I'd guess that 90% of my refactoring consists of replacing duplicated code with method calls. Unfortunately, there's no tool that I know of to do this automatically (though there are plenty of tools to extract methods and such). And it's hard for the human eye to spot tiny differences in code that's <em>mostly</em> the same.</p>
<p>So I use an Excel template which can compare from two to six sets of code. I use one worksheet for each number of duplicates. In the one for three sets of code, for instance, columns A through C are blank. Column D contains this:</p>
<pre><code>=IF(AND(A1=B1,B1=C1),"=","***")
=IF(AND(A2=B2,B2=C2),"=","***")
=IF(AND(A3=B3,B3=C3),"=","***")
</code></pre>
<p>etc. for a thousand lines or so down.</p>
<p>When I have code that <em>appears</em> to be duplicated, I copy each set of code and paste it in parallel columns in my spreadsheet. The lines that really are the same show up as <code>=</code>. The lines that are different show up as <code>***</code>.</p>
<p>This keeps me from introducing bugs by replacing code that isn't really duplicated. I can then go back and focus on the lines that have differences, often by replacing literals with parameters. (For instance, if one set of code has <code>int myNumber = 5;</code> and another set has <code>int myNumber = 6;</code>, I pull the 5 and 6 out into a parameter so the line ends up as <code>int myNumber = myParam;</code> in both cases.)</p>
<p>After a bit of work, I paste the code sets again and compare. Through this iteration, eventually I end up with <code>=</code> all the way down, at which point the code is genuinely duplicated, and I can replace all instances of it with an extracted method.</p>
http://stackoverflow.com/questions/1772791/solitaire-game-design/1772855#17728550Answer by Kyralessa for Solitaire game designKyralessa2009-11-20T19:53:29Z2009-11-20T19:53:29Z<p>Consider, instead of doing a bunch of up-front design, focusing on creating things that work. What will your program need to do?</p>
<p>It'll need to shuffle, so design a way to represent 52 cards and shuffle them. It's pretty easy to implement, but it's a good starting point.</p>
<p>Then you'll need to lay out the cards. So come up with a way to lay out the cards and put the rest in the draw pile.</p>
<p>And so forth. Instead of analyzing objects, focus on <em>behaviors</em>. Create objects only as needed in order to support the behaviors of your program. That will help you avoid getting lost in the analysis and excess code and ensure that you have a program that actually does some useful things.</p>
<p>(What if you need to turn in your design before doing anything? Not a problem; do your <em>thinking</em> the way I've described above. The implementation will be left for later, but even just thinking out how routines like the above will work will be more valuable than designing a bunch of objects without knowing what you'll do with them.)</p>
http://stackoverflow.com/questions/1772614/using-background-worker-with-multiple-classes-in-c/1772773#17727730Answer by Kyralessa for Using background worker with multiple classes in C#Kyralessa2009-11-20T19:37:50Z2009-11-20T19:37:50Z<p>Instead of using BackgroundWorker as-is, consider inheriting from it. This gives you more flexibility about how you get data in and out. Consider this example, where you pass in data in the constructor and get it out with a property:</p>
<pre><code>class BackgroundDoerOfSomething : BackgroundWorker
{
string _SomeData;
public string SomeResult { get; private set; }
public BackgroundDoerOfSomething(string someData)
{
_SomeData = someData;
}
protected override void OnDoWork(DoWorkEventArgs e)
{
base.OnDoWork(e);
// do some processing, and then assign the result
SomeResult = "some other data";
}
}
</code></pre>
<p>You would use it like this:</p>
<pre><code>class DoSomethingInBackground
{
BackgroundDoerOfSomething _doer;
void DoSomething()
{
_doer = new BackgroundDoerOfSomething("abc");
_doer.RunWorkerCompleted += _doer_RunWorkerCompleted;
_doer.RunWorkerAsync();
}
void _doer_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
var myResult = _doer.SomeResult;
// then do something with the result
}
}
</code></pre>
http://stackoverflow.com/questions/18533/c-what-else-do-you-use-besides-dataset/1766372#17663720Answer by Kyralessa for C#: What Else Do You Use Besides DataSetKyralessa2009-11-19T20:42:46Z2009-11-19T20:42:46Z<p>I've used typed DataSets for several projects. They model the database well, enforce constraints on the client side, and in general are a solid data access technology, especially with the changes in .NET 2.0 with TableAdapters.</p>
<p>Typed DataSets get a bad rap from people who like to use emotive words like "bloated" to describe them. I'll grant that I like using a good O/R mapper more than using DataSets; it just "feels" better to use objects and collections instead of typed DataTables, DataRows, etc. But what I've found is that if for whatever reason you can't or don't want to use an O/R mapper, typed DataSets are a good solid choice that are easy enough to use and will get you 90% of the benefits of an O/R mapper.</p>
http://stackoverflow.com/questions/1749462/when-should-we-create-a-new-method/1758265#17582650Answer by Kyralessa for When should we create a new method?Kyralessa2009-11-18T19:00:09Z2009-11-18T19:00:09Z<p>You should <strong>almost always</strong> create a new method when you're repeating code.</p>
<p>It removes the repeated code, and it's self-documenting if you choose a good name.</p>
<p>The same single line of code occurring in two places isn't too short to make a method out of unless the line is trivial and its intent is screamingly obvious.</p>
http://stackoverflow.com/questions/1381733/insert-a-snippet-from-a-visual-studio-macro0Insert a snippet from a Visual Studio macroKyralessa2009-09-04T21:51:17Z2009-11-10T14:00:03Z
<p>I have a situation where I want to run a Visual Studio macro that has the user type something in an InputBox, then inserts a snippet and includes that text somewhere in it. Unfortunately, I can't figure out how to insert the snippet from macro code. It seems like it'd be something like</p>
<pre><code>DTE.ExecuteCommand("Edit.InvokeSnippetFromShortcut")
</code></pre>
<p>or</p>
<pre><code>DTE.ExecuteCommand("Edit.InvokeSnippetFromShortcut", "theSnippetName")
</code></pre>
<p>but those don't work. Any ideas?</p>
http://stackoverflow.com/questions/1704406/so-i-want-to-make-a-basic-music-visualizer-in-c-as-practice-is-there-a-library/1704478#17044781Answer by Kyralessa for So I want to make a basic music visualizer in C# as practice. Is there a library that lets me handle sound files easily in C#?Kyralessa2009-11-09T22:46:31Z2009-11-09T22:46:31Z<p>If you need more than just .wav files, as it appears you do, and you're using .NET 3.0 or higher, have a look at:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.media.mediaplayer.aspx" rel="nofollow">MediaPlayer Class</a></p>
<p>It's basically a wrapper around Windows Media Player, and will let you do in code most (if not all) of what WMP can do.</p>
<p>If you're still in .NET 2.0, have a look at the Windows Media Player SDK, which is a significantly uglier wrapper around Windows Media Player. <a href="http://stackoverflow.com/questions/129642/how-to-play-a-sound-file/129750#129750">See this answer</a>.</p>
http://stackoverflow.com/questions/523220/awesome-visual-studio-macros/1545872#15458720Answer by Kyralessa for Awesome Visual Studio MacrosKyralessa2009-10-09T20:24:08Z2009-10-27T20:48:08Z<p>You know how the Start Page hangs around after you open a solution and don't need it anymore?</p>
<p>You know how you close it, and then later when you close your solution and might need it, it doesn't come back?</p>
<p>Problem solved! Put this code in your EnvironmentEvents module:</p>
<pre><code>Private Sub SolutionEvents_AfterClosing() Handles SolutionEvents.AfterClosing
DTE.ExecuteCommand("View.StartPage")
End Sub
Private Sub SolutionEvents_Opened() Handles SolutionEvents.Opened
Dim startPageGuid As String = "{387CB18D-6153-4156-9257-9AC3F9207BBE}"
Dim startPage As EnvDTE.Window = DTE.Windows.Item(startPageGuid)
If startPage IsNot Nothing Then startPage.Close()
End Sub
</code></pre>
<p>This will cause your Start Page to hide itself when you open a solution. When you close the solution, the Start Page comes back.</p>
http://stackoverflow.com/questions/151005/create-excel-xls-and-xlsx-file-from-c/151432#1514320Answer by Kyralessa for Create Excel (.XLS and .XLSX) file from C#Kyralessa2008-09-30T01:39:05Z2009-10-22T15:30:48Z<p>Here's a way to do it with LINQ to XML, complete with sample code:</p>
<p><a href="http://blogs.msdn.com/bethmassi/archive/2007/10/30/quickly-import-and-export-excel-data-with-linq-to-xml.aspx" rel="nofollow">Quickly Import and Export Excel Data with LINQ to XML</a></p>
<p>It's a little complex, since you have to import namespaces and so forth, but it does let you avoid any external dependencies.</p>
<p>(Also, of course, it's VB .NET, not C#, but you can always isolate the VB .NET stuff in its own project to use XML Literals, and do everything else in C#.)</p>
http://stackoverflow.com/questions/1546736/a-cumbersome-linq-query/1546927#15469271Answer by Kyralessa for A cumbersome linq queryKyralessa2009-10-10T03:15:17Z2009-10-10T03:15:17Z<p>Personally, I'd do it something like this:</p>
<pre><code>var tasks = db.TasksAndAccounts.Where(x => x.AccountId == accountId);
var groups = db.AccountsInGroups.Where(x => x.AccountId == accountId);
var groupIDs = groups.Select(x => x.GroupId);
var groupTasks = db.TasksAndAccounts.Where(x => groupIDs.Contains(x.GroupId));
var allTasks = tasks.Union(groupTasks);
</code></pre>
<p>It's more than one line, but it's a lot clearer than trying to cram the whole thing into one line, in my opinion. Since LINQ uses deferred execution, you still won't be executing anything until you're actually <em>using</em> the allTasks result set.</p>
http://stackoverflow.com/questions/523220/awesome-visual-studio-macros/1545900#15459000Answer by Kyralessa for Awesome Visual Studio MacrosKyralessa2009-10-09T20:29:40Z2009-10-09T20:29:40Z<p>Are you working in one of those shops that insists on regions around <em>everything</em>, so that when you collapse to definitions, you can't see any code?</p>
<p>What you really need is a collapse-to-definitions-but-expand-regions macro, like this one:</p>
<pre><code>Sub CollapseToDefinitionsButExpandAllRegions()
DTE.ExecuteCommand("Edit.CollapsetoDefinitions")
DTE.SuppressUI = True
Dim objSelection As TextSelection = DTE.ActiveDocument.Selection
objSelection.StartOfDocument()
Do While objSelection.FindText("#region",
vsFindOptions.vsFindOptionsMatchInHiddenText)
Loop
objSelection.StartOfDocument()
DTE.SuppressUI = False
End Sub
</code></pre>
<p>Put this in a regular macro module, assign it to a hot key, and your code is back.</p>
<p>(Except...if you work with some really nefarious individuals who put regions <em>inside</em> methods, this will unfortunately expand those methods. If anybody knows a way to write this to avoid that, feel free to edit.)</p>
http://stackoverflow.com/questions/296040/wcf-for-the-totally-clueless18WCF for the totally cluelessKyralessa2008-11-17T16:22:38Z2009-10-05T10:42:20Z
<p>I've been hearing about WCF for a couple of years now, and I still don't get it. I understand that it's supposed to be a replacement for web services, remoting, MSMQ, and a few other things.</p>
<p>The trouble is, every tutorial I find assumes that I've <em>done</em> one of those things, and it tends to follow the line of "Here are the differences; you know the rest." But I <em>don't</em> know the rest!</p>
<p>So: Do you know of any tutorial articles, books, etc. that assume that the reader knows C# or VB .NET, but <em>nothing</em> about web services, MSMQ, remoting, and all those other technologies that WCF replaces?</p>
http://stackoverflow.com/questions/577298/program-does-not-contain-a-static-main-method-suitable-for-an-entry-point/1456609#14566090Answer by Kyralessa for Program does not contain a static 'Main' method suitable for an entry pointKyralessa2009-09-21T20:17:02Z2009-09-21T20:17:02Z<p>You can also run into this if you're working on a WPF project that was started in VS 2010 (Beta 1), then moved into VS 2008.</p>
<p>Under the project properties, the .NET framework version gets unset (since .NET 4.0 isn't valid in VS 2008), and for some reason that causes this error.</p>
<p>If you set the .NET framework (e.g. to .NET 3.5), the error goes away.</p>
http://stackoverflow.com/questions/1449665/desktop-development-or-web-development/1449808#14498080Answer by Kyralessa for desktop development or web development?Kyralessa2009-09-19T23:40:36Z2009-09-19T23:40:36Z<p>Do at home whichever one you're not doing at work.</p>
http://stackoverflow.com/questions/1446723/excel-vba-returning-weird-results-with-large-calculations/1446755#14467555Answer by Kyralessa for Excel VBA returning weird results with large calculationsKyralessa2009-09-18T20:44:08Z2009-09-18T20:44:08Z<p>An Integer in VBA is 16 bits, which means a maximum value of 32,767 (and minimum of -32,768).</p>
<p>Instead of Integer, use Long to store your results, which gives you more than 2 billion before it hits the limit.</p>
http://stackoverflow.com/questions/1440187/server-explorer-window-does-not-display-in-visual-studio/1440254#14402541Answer by Kyralessa for Server Explorer window does not display in Visual StudioKyralessa2009-09-17T17:36:37Z2009-09-17T17:36:37Z<p>Have you tried the menu item Window > Reset Window Layout? I've gotten my windows garbled before, and this sometimes fixes them.</p>
http://stackoverflow.com/questions/1411297/equivalent-of-winforms-textbox-validating-event-in-wpf0Equivalent of WinForms TextBox.Validating event in WPFKyralessa2009-09-11T14:39:57Z2009-09-12T14:11:54Z
<p>In WinForms I could handle the Validated event to do something after the user changed text in a TextBox. Unlike TextChanged, Validated didn't fire for every character change; it only fired when the user was done.</p>
<p>Is there anything in WPF I can use to get the same result, an event raised only after the user is <em>done</em> changing the text?</p>
http://stackoverflow.com/questions/1411289/catching-specific-vs-generic-exceptions-in-c/1411409#14114091Answer by Kyralessa for Catching specific vs. generic exceptions in c#Kyralessa2009-09-11T14:56:53Z2009-09-11T14:56:53Z<p>Have a look at this article by Krzysztof Cwalina, which I've found very helpful in understanding when to catch or ignore exceptions:</p>
<p><a href="http://blogs.msdn.com/kcwalina/archive/2007/01/30/ExceptionHierarchies.aspx" rel="nofollow">How to Design Exception Hierarchies</a></p>
<p>All the principles it describes about designing exception hierarchies are also applicable when deciding when to catch, throw, or ignore exceptions. He divides exceptions into three groups:</p>
<ul>
<li><strong>Usage errors</strong>, such as <code>DivideByZeroException</code>, which indicate errors in code; you shouldn't handle these because they can be avoided by changing your code.</li>
<li><strong>Logical errors</strong>, such as <code>FileNotFoundException</code>, which you need to handle because you can't guarantee they won't happen. (Even if you check for the file's existence, it could still be deleted in that split-second before you read from it.)</li>
<li><strong>System failures</strong>, such as <code>OutOfMemoryException</code>, which you can't avoid or handle.</li>
</ul>
http://stackoverflow.com/questions/1868294/c-dataset-sql-questions/1868865#1868865Comment by Kyralessa on C# dataset sql questionsKyralessa2009-12-08T21:19:32Z2009-12-08T21:19:32ZYou can get each column's data in a similar way like this: <code>table.AsEnumerable().ToList().ForEach(row => Debug.Print(string.Join("|", row.ItemArray.Select(x => x.ToString()).ToArray())));</code>http://stackoverflow.com/questions/1868294/c-dataset-sql-questions/1868865#1868865Comment by Kyralessa on C# dataset sql questionsKyralessa2009-12-08T21:07:19Z2009-12-08T21:07:19ZYou can get your column names, separated by vertical bars, by doing something like this: <code>string.Join("|", table.Columns.Cast<DataColumn>().Select(x => x.ColumnName).ToArray());</code>http://stackoverflow.com/questions/1868294/c-dataset-sql-questions/1868865#1868865Comment by Kyralessa on C# dataset sql questionsKyralessa2009-12-08T20:05:41Z2009-12-08T20:05:41Z<code>OfType</code> and <code>Cast</code> "work", but that doesn't necessarily mean that everything you put after them works. Remember that you're getting an <code>IEnumerable<DataColumn></code> or <code>IEnumerable<DataRow></code> out of them. You need to use operations that work on DataColumns or DataRows. It looks to me like you're using Aggregate incorrectly. What are you really trying to do?http://stackoverflow.com/questions/1868294/c-dataset-sql-questionsComment by Kyralessa on C# dataset sql questionsKyralessa2009-12-08T18:51:48Z2009-12-08T18:51:48ZWhen people offer answers, and the answers don't work, you need to be specific about why they don't work if you want to get more help.http://stackoverflow.com/questions/1868294/c-dataset-sql-questions/1868865#1868865Comment by Kyralessa on C# dataset sql questionsKyralessa2009-12-08T18:46:26Z2009-12-08T18:46:26ZIf you want help, you're going to have to give a lot more explanation than that. "Neither worked" because of <i>what</i>!? You got an error? Your code wouldn't compile? Your power went out?http://stackoverflow.com/questions/26086/how-do-you-make-wrong-code-look-wrong-what-patterns-do-you-use-to-avoid-semantic/81526#81526Comment by Kyralessa on How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?Kyralessa2009-12-08T15:49:41Z2009-12-08T15:49:41ZFor the specific case you've put in this answer, have a look here for another option: <a href="http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/632632#632632" rel="nofollow" title="hidden net base class library classes">stackoverflow.com/questions/122784/…</a>http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1285089#1285089Comment by Kyralessa on What is your best programmer joke?Kyralessa2009-12-08T02:05:03Z2009-12-08T02:05:03ZBad documentation is to good documentation as carbon monoxide is to oxygen.http://stackoverflow.com/questions/170284/examples-of-programmers-being-stupid/446120#446120Comment by Kyralessa on Examples of programmers being stupidKyralessa2009-12-07T23:43:50Z2009-12-07T23:43:50ZTo someone who writes "throw ex" and doesn't know why it's bad in the first place, "corrupt the stack trace" is not likely to have any meaning.http://stackoverflow.com/questions/1862593/constant-abuse/1862619#1862619Comment by Kyralessa on Constant abuse?Kyralessa2009-12-07T23:39:17Z2009-12-07T23:39:17ZIf you have to do that much string comparison, define extension methods on string: <code>string.IsLessThan(string)</code> and/or <code>string.IsGreaterThan(string)</code>. But for equality, please, use <code>string.Equals(string)</code>. That's what it's for.http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1764108#1764108Comment by Kyralessa on What are the biggest potential time wasters in development?Kyralessa2009-12-04T21:06:36Z2009-12-04T21:06:36ZOf course, Xaero, what this means is that compile time is the real time-waster. If compilation were instantaneous, you wouldn't flip over to StackOverflow in the first place. Perhaps this makes a case for separating projects by interface boundaries, for instance, so that a change in one project doesn't cause a cascading recompile in everything else.http://stackoverflow.com/questions/144833/most-useful-attributes-in-c/144909#144909Comment by Kyralessa on Most Useful Attributes in C#Kyralessa2009-12-04T15:22:57Z2009-12-04T15:22:57ZThat's certainly not the DefaultValue attribute I was thinking of. Are you sure you didn't mean this one? <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/490420/favorite-clever-defensive-programming-best-practices/490456#490456Comment by Kyralessa on Favorite (Clever) Defensive Programming Best PracticesKyralessa2009-12-04T15:18:42Z2009-12-04T15:18:42ZInstead of this kind of <code>if</code>, I'd prefer the opposite: an <code>if</code> that throws exceptions or whatever if any of those conditions aren't met. The kind of <code>if</code> you're using just hides the errors.http://stackoverflow.com/questions/490420/favorite-clever-defensive-programming-best-practices/490942#490942Comment by Kyralessa on Favorite (Clever) Defensive Programming Best PracticesKyralessa2009-12-04T15:16:36Z2009-12-04T15:16:36ZBy the way, for anyone converting old code that didn't use Option Strict to use it, note that in the case of items that were autoconverted to String, they're not using ToString(); they're using a cast to string. In my early .NET days I'd change these to use ToString(), and it would break things, especially with enums.http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1471020#1471020Comment by Kyralessa on What's the worst security hole you've ever seen?Kyralessa2009-12-04T15:11:02Z2009-12-04T15:11:02ZIt's refreshing to hear about a company that actually <i>thanked</i> someone for alerting them to a security hole instead of trying to <i>blame</i> them for it.http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/234194#234194Comment by Kyralessa on What was the strangest coding standard rule that you were forced to follow?Kyralessa2009-12-04T05:00:05Z2009-12-04T05:00:05ZUgh. Now I'm seeing this in my current job too: Methods that use <i>ref</i> on parameters because the methods change properties of the reference type passed in, and the developer didn't understand how reference types work.