User Dan C. - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T08:08:32Zhttp://stackoverflow.com/feeds/user/26391http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/844995/convert-a-string-to-string-with-out-using-foreach/845006#84500618Answer by Dan C. for convert a string[] to string with out using foreachDan C.2009-05-10T09:30:57Z2009-05-11T06:56:51Z<p>Assuming C#, have you tried String.Join()? Or is using lambdas mandatory?</p>
<p>Example:</p>
<pre><code>string[] myStrings = ....;
string result = String.Join(",", myStrings);
</code></pre>
<p><strong>EDIT</strong></p>
<p>Although the original title (and example) was about concatenating strings with a separator (to which <code>String.Join()</code> does the best job in my opinion), the original poster seems to ask about the broader solution: how to apply a custom format a list of strings.</p>
<p>My answer to that is write your own method. String.Join has a purpose, reflected by its name (joins some strings). It's high chance that your format logic has a meaning in your project, so write it, give it a proper name and use it. </p>
<p>For instance, if you want to output <code><li>text</li></code> for every item, make something as this:</p>
<pre><code>string FormatAsListItems(string[] myStrings)
{
StringBuilder sb = new StringBuilder();
foreach (string myString in myStrings)
{
sb.Append("<li>").Append(myString).Append("</li>");
}
}
</code></pre>
<p>I think the intent is clearer, and you also don't take the performance hit of concatenating strings in a loop.</p>
http://stackoverflow.com/questions/807757/winforms-control-action-after-it-is-fully-initialized/807776#8077761Answer by Dan C. for WinForms Control - Action after it is fully initializedDan C.2009-04-30T16:19:44Z2009-04-30T16:19:44Z<p>Have you tried wiring up to the form's Load event and doing the work there? (note this fires up every time you show the form...)</p>
http://stackoverflow.com/questions/807594/refactoring-an-enable-disable-button-toggle-function/807726#8077260Answer by Dan C. for Refactoring an enable/disable button toggle function.Dan C.2009-04-30T16:11:04Z2009-04-30T16:11:04Z<p>An alternative (and I'm not saying it's a better one) is to have the selection changed event for the radio control update the model (an Employer entity?), which in turn fires some kind of DepositorChanged event that the UI subscribes to and enables/disables the schedule button accordingly. The Observer pattern, more or less.</p>
<p>That said, the above alternative generates lots more complexity and I would suggest leaving this to the UI code (add a comment about it or use an intermediate boolean variable to state the intent to the reader). Especially if this is the only place the rule is being used.</p>
<p>A side note regarding the code: it's a religious debate between prefixing the class fields with underscores or using <code>this.</code> instead. I think everybody agrees that using both is redundant...</p>
http://stackoverflow.com/questions/796607/how-do-i-override-tostring-in-c-enums/796709#7967091Answer by Dan C. for How do I override ToString in C# enums?Dan C.2009-04-28T07:53:15Z2009-04-28T07:53:15Z<p>I would write a generic class for use with any type. I've used something like this in the past:</p>
<pre><code>public class ComboBoxItem<T>
{
/// The text to display.
private string text = "";
/// The associated tag.
private T tag = default(T);
public string Text
{
get
{
return text;
}
}
public T Tag
{
get
{
return tag;
}
}
public override string ToString()
{
return text;
}
// Add various constructors here to fit your needs
}
</code></pre>
<p>On top of this, you could add a static "factory method" to create a list of combobox items given an enum type (pretty much the same as the GetDescriptions method you have there). This would save you of having to implement one entity per each enum type, and also provide a nice/logical place for the "GetDescriptions" helper method (personally I would call it FromEnum(T obj) ...</p>
http://stackoverflow.com/questions/794128/passing-an-idisposable-object-by-reference-causes-an-error/794251#7942511Answer by Dan C. for Passing an IDisposable object by reference causes an error?Dan C.2009-04-27T16:24:21Z2009-04-27T16:24:21Z<p>Here's an option for your example (can't verify it against a compiler right now, but you'll get the idea):</p>
<pre><code>private void DisposeObject<T>(ref T obj) where T : IDisposable
{
// same implementation
}
</code></pre>
<p>To call it, use</p>
<pre><code>DisposeObject<Baz>(ref _Baz);
DisposeObject<Bar>(ref _Bar);
</code></pre>
<p>As pointed in the other comments, the compiler error you get has its own purpose (preventing you to assign some other type of IDisposable inside your method, leading to an inconsistent state).</p>
http://stackoverflow.com/questions/702519/when-do-you-add-a-new-project-for-a-nested-namespace/703039#7030391Answer by Dan C. for When do you add a new project for a nested namespace?Dan C.2009-03-31T21:01:52Z2009-03-31T21:01:52Z<p>Just adding my 2 cents to this question, to expand Jon's answer with some "been there - done that" experience:</p>
<p>I did use, in several solutions, at least two projects named by namespace (well, sort of). For instance, working on MyApp solution, I'd have <code>MyApp.Web</code> and <code>MyApp.Web.Controls</code>. </p>
<p>Or: <code>MyApp.Service</code>, <code>MyApp.Core</code>, <code>MyApp.Core.Entities</code> and so on. Pretty well known naming convention, where the root namespace goes like <code>MyCompany.MyApp.Service etc...</code></p>
<p><strong>Advantage</strong>:
- found it very useful when working in a team, to highlight the dependencies between app modules. If your <code>Web.Controls</code> module (it's just an example, don't pick on it :) is shared across the web UI, you typically don't want app-specific code in your custom controls. Keeping the "child/nested" module separate (referenced by the main project) enforces this.
- at least thinking of it will potentially help you create a better project structure. Which namespace goes in a separate project and which doesn't? Answering the question alone is helpful enough.</p>
<p><strong>Disadvantage</strong>:
- it's very easy to get "trigger happy" and create a hundred projects instead of making appropriate folders/namespaces.</p>
<p>That said, usually tend to create folders instead of separate projects, except for the case when it's really a "sub-module".</p>
http://stackoverflow.com/questions/665454/c-should-i-bother-checking-for-null-in-this-situation/665477#6654771Answer by Dan C. for C#: Should I bother checking for null in this situation?Dan C.2009-03-20T09:31:19Z2009-03-20T09:59:48Z<p>It always depends on the context (in my opinion).</p>
<p>For instance, when writing a library (for others to use), it certainly makes sense to fully check each and every parameter and throw the appropriate exceptions.</p>
<p>When writing methods that are used inside a project, I usually skip those checks, attempting to reduce the size of the codebase. But even in this case, there might be a level (between application layers) where you still place such checks. It depends on the context, on the size of the project, on the size of the team working on it...</p>
<p>It certainly doesn't make sense doing it for small projects built by one person :)</p>
http://stackoverflow.com/questions/658951/in-c-how-to-instantiate-a-passed-generic-type-inside-a-method/659011#6590112Answer by Dan C. for In C#, how to instantiate a passed generic type inside a method?Dan C.2009-03-18T16:25:36Z2009-03-18T16:25:36Z<p>To extend on the answers above, adding <code>where T:new()</code> constraint to a generic method will require T to have a public, parameterless constructor.</p>
<p>If you want to avoid that - and in a factory pattern you sometimes force the others to go through your factory method and not directly through the constructor - then the alternative is to use reflection (<code>Activator.CreateInstance...</code>) and keep the default constructor private. But this comes with a performance penalty, of course.</p>
http://stackoverflow.com/questions/595004/tiny-way-to-get-the-first-25-characters/595027#5950271Answer by Dan C. for Tiny way to get the first 25 charactersDan C.2009-02-27T14:39:10Z2009-02-27T15:25:36Z<p>One way to do it:</p>
<pre><code>int length = Math.Min(Description.Length, 25);
return Description.Substring(0, length) + "...";
</code></pre>
<p>There are two lines instead of one, but shorter ones :).</p>
<p>Edit:
As pointed out in the comments, this gets you the ... all the time, so the answer was wrong. Correcting it means we go back to the original solution.</p>
<p>At this point, I think using string extensions is the only option to shorten the code. And that makes sense only when that code is repeated in at least a few places...</p>
http://stackoverflow.com/questions/519233/writing-to-a-textbox-from-another-thread/519250#5192500Answer by Dan C. for Writing to a TextBox from another thread?Dan C.2009-02-06T05:48:07Z2009-02-06T05:48:07Z<p>Have a look at <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.begininvoke.aspx" rel="nofollow">Control.BeginInvoke</a> method. The point is to never update UI controls from another thread. BeginInvoke will dispatch the call to the UI thread of the control (in your case, the Form).</p>
<p>To grab the form, remove the static modifier from the sample function and use this.BeginInvoke() as shown in the examples from MSDN.</p>
http://stackoverflow.com/questions/515269/factory-pattern-in-c-how-to-ensure-an-object-instance-can-only-be-created-by-a/515331#5153311Answer by Dan C. for Factory pattern in C#: How to ensure an object instance can only be created by a factory class?Dan C.2009-02-05T10:31:47Z2009-02-05T10:31:47Z<p>Yet another (lightweight) option is to make a static factory method in the BusinessObject class and keep the constructor private.</p>
<pre><code>public class BusinessObject
{
public static BusinessObject NewBusinessObject(string property)
{
return new BusinessObject();
}
private BusinessObject()
{
}
}
</code></pre>
http://stackoverflow.com/questions/436026/how-to-improve-data-access-layer-select-method-pattern/444995#4449951Answer by Dan C. for How to improve data access layer select method PatternDan C.2009-01-14T22:45:19Z2009-01-14T22:45:19Z<p>First, I think you already considered using an ORM vs. rolling your own. I won't go into this one.</p>
<p>My thoughts on rolling your own data access code:</p>
<ul>
<li>Over time, I found it easier not to have separate DAL/BL objects, but rather merge them into a single object (some time later after reaching this conclusion I found out it's a pretty well known pattern - namely ActiveRecord). It might look nice and decoupled to have separate DAL assemblies, but the overhead in maintenance costs will add up. Everytime you add a new feature, you'll have to create more code/modify more classes. In my experience, the team that maintains the application is often way less than the original team of developers that built it, and they'll hate the extra work required.</li>
<li>For large teams, it might make sense to separate the DAL (and let a group work on it while the others. But this makes a good incentive for code bloat.</li>
<li>Coming down to your specific sample: how do you use the resulting DataTable? Iterate the rows, create typed objects and get the data from the row? If the answer is yes, think of the extra DataTable you created just for moving data between the DAL and the BL. Why not take it directly from the DataReader?</li>
<li>Also about the sample: if you return an untyped DataTable, then I guess you have to use the column names (of the result set the SP call returns) way up in the calling code. This means if I have to change something in the database, it might affect both layers.</li>
</ul>
<p>My suggestion (I tried both methods - the suggestion is the latest working approach I came up with - it sort of evolved over time).</p>
<ul>
<li>Make a base class for your typed business objects.</li>
<li>Keep object state in the base class (new, modified etc.)</li>
<li>Put the main data access methods in this class, as static methods. With a little effort (hint: generic methods + Activator.CreateInstance) you can create one business object per each row returned in the reader.</li>
<li>make an abstract method in the business object for parsing the row data (directly from the DataReader!) and fill the object.</li>
<li>make static methods in the derived business objects that prepare the stored proc parameters (depending on various filter criteria) and call the generic data access methods from the base class.</li>
</ul>
<p>The aim is to end up with usage such as:</p>
<pre><code>List<MyObject> objects = MyObject.FindMyObject(string someParam);
</code></pre>
<p>The benefit for me was that I only have to change one file in order to cope with changes in the database column names, types etc. (small changes in general). With some well thought regions, you can organize the code so that they're separate "layers" in the same object :). The other benefit is that the base class is really reusable from one project to another. And the code bloat is minimal (well, compared with the benefits. You could also fill datasets and bind them to UI controls :D</p>
<p>The limitations - you end up with one class per domain object (usually per main database table). And you can't load objects in existing transactions (although you could think of passing on the transaction, if you have one).</p>
<p>Let me know if you're interested in more details - I could expand the answer a bit.</p>
http://stackoverflow.com/questions/434897/resharper-syntax-suggestion/434966#4349661Answer by Dan C. for ReSharper syntax suggestionDan C.2009-01-12T09:55:04Z2009-01-12T09:55:04Z<p>In such cases, "readability" is much affected by the reader's personal style. Once you get used at writing stuff in a certain format, you also get used at reading it the same way.</p>
<p>For instance, I'd go for the ReSharper's suggestion. But it's just a matter of personal preference, combined with the fact that I don't find return statements at the end of the line very readable either. Scanning code is somewhat easier when all keywords are at the beginning of the line.</p>
<p>Again, there's no "true answer". You can just disable that suggestion and go with whatever you're used to.</p>
http://stackoverflow.com/questions/361910/is-there-any-native-way-in-asp-net-to-do-a-success-message/362147#3621473Answer by Dan C. for Is there any native way in ASP.NET to do a "success message"?Dan C.2008-12-12T07:48:25Z2008-12-12T08:59:17Z<p>As far as I know, there is no native way of doing this. You may rant about it, maybe Microsoft will hear it :).</p>
<p>Resetting the "success message" on Page_Load, or wherever in your code-behind, won't work. This is because ASP.NET validation is usually done both client and server-side. This means for every validation control you put on the page, ASP.NET generates some client-side Javascript that does the validation and renders the error on the client, <strong>without</strong> going back to the server. So you're stuck with both the success message and the error message at the same time.</p>
<p>What you can do about it:</p>
<ul>
<li>place a <code><div></code> control on your page, that would show up the success message (as already suggested by others above). Whenever you update something (in server-side code), show up the control and set a meaningful "Successful!" message text.</li>
<li>register a custom Javascript function that would lookup the <code><div></code> and hide it on every page submit. Be aware that the function needs to be called before the autogenerated client script that does the validation.</li>
</ul>
<p>If you look at the client source of an ASP.NET page (with validators on it), here's what you can find:</p>
<p><code><form name="aspnetForm" method="post" action="MyPage.aspx" onsubmit="javascript:return WebForm_OnSubmit();id="aspnetForm"></code></p>
<p>The WebForm_OnSubmit is generated by ASP.NET and calls the javascript that does the validation. Sample:</p>
<pre><code>function WebForm_OnSubmit() {
if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false)
return false;
return true;
}
</code></pre>
<p>To register your custom code that hides the success message, you should place (in your code-behind) something along these lines:</p>
<pre><code>if (!Page.ClientScript.IsOnSubmitStatementRegistered("ClearMessage"))
{
string script = @"document.getElementById('" +
yourDivControl.ClientID + "').style.display='none'";
Page.ClientScript.RegisterOnSubmitStatement(Page.GetType(), "ClearMessage", script);
}
</code></pre>
<p>This will turn your page's autogenerated WebForm_OnSubmit into the following:</p>
<pre><code>function WebForm_OnSubmit() {
document.getElementById('ctl00_yourDivControl').style.display='none';
if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false)
return false;
return true;
}
</code></pre>
<p>The effect:
On every postback (e.g. when ItemCommand is triggered, or when some Save button is clicked, or anything else), you will show up the div control with the "success" message. On the next postback, just before submitting the page to the server, this message is cleared. Of course, if this postback also triggers a "success", the message is shown again by the code-behind on the server. And so on and so forth.</p>
<p>I hope the above is helpful. It's not the full-blown solution, but it gives sufficient hints to point you in the right direction.</p>
http://stackoverflow.com/questions/337598/help-with-overriding-and-inheritance/337635#3376353Answer by Dan C. for Help With Overriding and Inheritance...Dan C.2008-12-03T15:59:30Z2008-12-03T15:59:30Z<p>As far as I know, in Java all methods are virtual by default. This is not the case with C#, so you need to mark the base class methods with "virtual", e.g. <code>protected virtual string getMood() ...</code> and the overrides with "override", e.g. <code>protected override string getMood()...</code>.</p>
http://stackoverflow.com/questions/333291/are-there-any-reasons-not-to-use-this-self-me/333341#3333412Answer by Dan C. for Are there any reasons not to use "this" ("Self", "Me", ...)?Dan C.2008-12-02T08:26:25Z2008-12-02T08:26:25Z<p>I personally find that <code>this.whatever</code> is less readable. You may not notice the difference in a 2-line method, but wait until you get <code>this.variable</code> and <code>this.othervariable</code> everywhere in a class.</p>
<p>Furthermore, I think that use of <code>this.</code> was found as a replacement for a part of the much hated Hungarian notation. Some people out there found out that it's still clearer for the reader to see that a variable is a class member, and <code>this.</code> did the trick. But why fool ourselves and not use the plain old <code>"m_"</code> or simply <code>"_"</code> for that, if we need the extra clarity? It's 5 characters vs. 2 (or even 1). Less typing, same result.</p>
<p>Having said that, the choice of style is still a matter of personal preference. It's hard to convince somebody used to read code in a certain way that is useful to change it.</p>
http://stackoverflow.com/questions/320007/is-this-an-ok-database-design-concept/320283#3202830Answer by Dan C. for Is this an OK Database design concept?Dan C.2008-11-26T10:52:08Z2008-11-26T10:52:08Z<p>I'd personally say 'no' to this design. Reasons:</p>
<ul>
<li>(might not apply) trying to keep the address field normalized implies you need to process this field to make sure you avoid unintended duplicates. I.e. you must make sure the user enters the address in the correct format (otherwise '1 mystreet' could also be entered as '1, mystreet' or whatever - need to check this to avoid duplicates, otherwise normalization is good for nothing)</li>
<li>even if you find a reason to normalize (i.e. keep separate table for address), the concept of "dummy" address is strange to me. Why not use a nullable FK relationship, i.e. store a NULL address ID in the parent user table, instead of just putting a dummy ID in there.</li>
</ul>
http://stackoverflow.com/questions/310669/why-does-c-xmldocument-loadxmlstring-fail-when-an-xml-header-is-included/310676#3106762Answer by Dan C. for Why does C# XmlDocument.LoadXml(string) fail when an XML header is included?Dan C.2008-11-22T01:13:33Z2008-11-22T01:13:33Z<p>Don't get it. I tried the same here and I get no such exception. Are you sure the root tag (Report) is closed, i.e. ending with <code></Report></code>?</p>
<p>Here's my test code:</p>
<pre><code>string body = "<?xml version=\"1.0\" encoding=\"utf-16\"?><Report> ......</Report>";
XmlDocument bodyDoc = new XmlDocument();
bodyDoc.LoadXml(body);
</code></pre>
http://stackoverflow.com/questions/310561/mysql-terminology-constraints-vs-foreign-keys-difference/310593#3105932Answer by Dan C. for MySQL terminology "constraints" vs "foreign keys" difference?Dan C.2008-11-22T00:01:51Z2008-11-22T00:01:51Z<p>In general (not necessary MySQL), foreign keys are constraints, but constraints are not always foreign keys. Think of primary key constraints, unique constraints etc.</p>
<p>Coming back to the specific question, you are correct, omitting CONSTRAINT [symbol] part will create a FK with an auto-generated name.</p>
http://stackoverflow.com/questions/310307/mocking-vs-test-db/310336#3103363Answer by Dan C. for Mocking vs. Test DB?Dan C.2008-11-21T21:54:17Z2008-11-21T21:54:17Z<p>I didn't find mocking very useful when testing data access code. The purpose of unit testing is to verify the database-related code works and mocking the database would hinder the test.</p>
<p>Mocking does indeed become useful when testing the business code. You can mock your database calls to return test data and verify the behavior of business logic in those circumstances.</p>
<p>Regarding the use of transactions - it's certainly possible, as long as your architecture has room for starting a transaction at the beginning of the test, and then doing all database-related calls of your unit test inside that transaction. Never tried it, though.</p>
http://stackoverflow.com/questions/309802/setting-an-event-handler-without-doing-it-manually-in-the-classname-designer-cs-f/309810#3098101Answer by Dan C. for Setting an Event handler without doing it manually in the classname.designer.cs fileDan C.2008-11-21T19:02:56Z2008-11-21T19:02:56Z<p>Sure. Use <code>myControl.Event += new EventHandler(SomeHandlerMethodInYourClass)</code> somewhere during initialization, e.g. in the form's constructor.</p>
http://stackoverflow.com/questions/309205/are-variable-prefixes-hungarian-really-necessary-anymore/309265#30926519Answer by Dan C. for Are variable prefixes ( Hungarian ) really necessary anymore? Dan C.2008-11-21T16:11:05Z2008-11-21T19:00:21Z<p>The only places I see fit to bend the standards and prefix variables:</p>
<ul>
<li><p>control names: <code>txtWhatever</code> - and I see I'm not the only one. The nice thing is that you can come up with stuff like lblName next to txtName, and you don't need to go into the NameLabel/NameTextBox direction.</p></li>
<li><p>class member variables: <code>_whatever</code>. I've tried both m_ and no prefix at all and ended up with simple underscore. m_ is more difficult to type and having no prefix becomes confusing sometimes (especially during maintenance, I know all of you know their code by heart while writing it)</p></li>
</ul>
<p>I didn't find any consistent situation where prefixing a variable with its type would make the code more readable, though.</p>
<p>EDIT: I did read the Microsoft guidelines. However I consider that coding styles are allowed to evolve and/or be "bent", where appropriate. As I mentioned above, I found using underscore prefix useful by trial and error, and is certainly better than using this.whatever everywhere in the code.</p>
<p>Supporting the "evolving" theory - back in .NET 1.x when Microsoft released coding guidelines, they advised using Camel casing for everything, even constants. I see now they've changed and advise using Pascal case for constant or public readonly fields.</p>
<p>Furthermore, even .NET Framework class library is currently full of m_ and _ and s_ (try browsing the implementation with the Reflector). So after all, it's up to the developer, as long as consistency is preserved across your project.</p>
http://stackoverflow.com/questions/308476/how-to-find-out-whether-two-icollectiont-collections-contain-the-same-objects/308504#3085041Answer by Dan C. for How to find out whether two ICollection<T> collections contain the same objectsDan C.2008-11-21T11:37:18Z2008-11-21T11:37:18Z<p>If the entries need to be in the same order (besides being the same), then I suggest - as an optimization - that you iterate both collections at the same time and compare the current entry in each collection. Otherwise, the brute force is the way to go.</p>
<p>Oh, and another suggestion - you could override Equals for the collection class and implement the equality stuff in there (depends on you project, though).</p>
http://stackoverflow.com/questions/305500/type-parse-vs-type-parse-c/305522#3055221Answer by Dan C. for type.Parse vs Type.parse (c#)Dan C.2008-11-20T14:49:53Z2008-11-20T14:49:53Z<p>There is none. int, decimal, string etc. are just aliases for their corresponding types.</p>
<p>In general, I prefer the Type.Parse over the type.Parse, but this is just a matter of personal choice (looks more readable to me).</p>
http://stackoverflow.com/questions/304909/best-practices-for-referencing-3rd-party-assemblies/305008#3050082Answer by Dan C. for Best practices for referencing 3rd party assembliesDan C.2008-11-20T11:26:32Z2008-11-20T11:26:32Z<p>An alternate I've been using on many (C#) projects is:</p>
<ul>
<li>Make a "Bin" folder in the solution directory (same level as the project directories)</li>
<li>Make the output of all projects ../Bin instead of bin/debug or bin/release</li>
<li>Put whatever files that are not a result of the build in "Bin", including library dependencies, certain data files or whatever, depending on the project</li>
<li>Contents of "Bin" also goes to source control (without the build output, of course)</li>
<li>Whatever libraries directly referenced by your projects goes to a "References" or "Libs" folder (sometimes I've also tried putting them in Bin too, but in this case you need to remember to disable copying of references to output dir when adding the reference to your project, which becomes tedious on large projects)</li>
</ul>
<p>Not really sure if it's a good solution, but has worked for me till now.</p>
http://stackoverflow.com/questions/303109/modifications-of-arrays-passed-by-reference-c/303153#3031532Answer by Dan C. for Modifications of arrays passed by reference (C#)Dan C.2008-11-19T19:56:43Z2008-11-19T19:56:43Z<p>You guessed right, the assignment is modifying the byteData array reference to point to the newly allocated array (because of the 'ref' keyword). The callers of the function will "see" the contents of the recvData array (whatever was filled in there).</p>
<p>And yes, the array sticks around as long as there's one reference to it left (in this case, whatever array you passed along to this function).</p>
http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/301813#3018137Answer by Dan C. for Why didn't unit testing work out for your project?Dan C.2008-11-19T12:57:40Z2008-11-19T12:57:40Z<p>I employed unit testing in a couple of projects I worked on (web applications, using business objects + stored procedures to perform CRUD operations on SQL databases).</p>
<p><strong>Heavy use of SQL</strong> prevented us of creating really fine-grained tests. To properly test some database-interaction method you need data in the database (that is, if you're intending to automate tests). And data can only be added via another method... so you're testing both.</p>
<p>I ended up either writing not-so-grained tests that verified all inter-related methods - or living with the fact that a single error brought down multiple tests (for those of you thinking about mocking: part of the bugs found during unit test were in SQL, so mocking was excluded on purpose and I'm glad we did it).</p>
http://stackoverflow.com/questions/296978/when-is-it-better-to-use-string-format-vs-string-concatenation/299541#2995416Answer by Dan C. for When is it better to use String.Format vs string concatenation?Dan C.2008-11-18T17:45:49Z2008-11-18T21:18:31Z<p>My initial preference (coming from a C++ background) was for String.Format. I dropped this later on due to the following reasons:</p>
<ul>
<li><p>String concatenation is arguably "safer". It happened to me (and I've seen it happen to several other developers) to remove a parameter, or mess up the parameter order by mistake. The compiler will not check the parameters against the format string and you end up with a runtime error (that is, if you're lucky enough not to have it in an obscure method, such as logging an error). With concatenation, removing a parameter is less error prone. You could argue the chance of error is very small, but it <strong>may</strong> happen.</p></li>
<li><p>String concatenation allows for null values, <code>String.Format</code> does not. Writing "<code>s1 + null + s2</code>" does not break, it just treats the null value as String.Empty. Well, this may depend on your specific scenario - there are cases where you'd like an error instead of silently ignoring a null FirstName. However even in this situation I personally prefer checking for nulls myself and throwing specific errors instead of the standard ArgumentNullException I get from String.Format.</p></li>
<li><p>String concatenation performs better. Some of the posts above already mention this (without actually explaining why, which determined me to write this post :). </p></li>
</ul>
<p>Idea is the .NET compiler is smart enough to convert this piece of code:</p>
<pre><code>public static string Test(string s1, int i2, int i3, int i4,
string s5, string s6, float f7, float f8)
{
return s1 + " " + i2 + i3 + i4 + " ddd " + s5 + s6 + f7 + f8;
}
</code></pre>
<p>to this:</p>
<pre><code>public static string Test(string s1, int i2, int i3, int i4,
string s5, string s6, float f7, float f8)
{
return string.Concat(new object[] { s1, " ", i2, i3, i4,
" ddd ", s5, s6, f7, f8 });
}
</code></pre>
<p>What happens under the hood of String.Concat is easy to guess (use Reflector). The objects in the array get converted to their string via ToString(). Then the total length is computed and only one string allocated (with the total length). Finally, each string is copied into the resulting string via wstrcpy in some unsafe piece of code.</p>
<p>Reasons <code>String.Concat</code> is way faster? Well, we can all have a look what <code>String.Format</code> is doing - you'll be surprised at the amount of code required to process the format string. On top of this (I've seen comments regarding the memory consumption), <code>String.Format</code> uses a StringBuilder internally. Here's how:</p>
<p><code>StringBuilder builder = new StringBuilder(format.Length + (args.Length * 8));</code></p>
<p>So for every passed argument, it reserves 8 characters. If the argument is a one-digit value, then too bad, we have some wasted space. If the argument is a custom object returning some long text on <code>ToString()</code>, then there might be even some reallocation needed (worst-case scenario, of course).</p>
<p>Compared to this, the concatenation only wastes the space of the object array (not too much, taking into account it's an array of references). There's no parsing for format specifiers and no intermediary StringBuilder. The boxing/unboxing overhead is present in both methods.</p>
<p>The only reason I'd go for String.Format is when localization is involved. Putting format strings in resources allows you to support different languages without messing with the code (think about scenarios where formatted values change order depending on the language, i.e. "after {0} hours and {1} minutes" may look quite different in Japanese :).</p>
<p><hr /></p>
<p>To sum up my first (and quite long) post:</p>
<ul>
<li>best way (in terms of performance vs. maintainability/readability) for me is using string concatenation, without any <code>ToString()</code> calls</li>
<li>if you're after performance, make the <code>ToString()</code> calls yourself to avoid boxing (I'm somewhat biased towards readability) - same as first option in your question</li>
<li>if you're showing localized strings to the user (not the case here), <code>String.Format()</code> has an edge.</li>
</ul>
http://stackoverflow.com/questions/1530374/catch-block-choices/1530401#1530401Comment by Dan C. on Catch Block ChoicesDan C.2009-10-07T09:38:08Z2009-10-07T09:38:08ZOption 2 is usually bad idea, you want to pass the caught exception as innerException to the new exception your're throwing, in case the caller in interested in details of what caused the exception.http://stackoverflow.com/questions/903054/when-is-it-ok-for-an-abstract-base-class-to-have-non-static-data-members/903445#903445Comment by Dan C. on When is it OK for an abstract base class to have (non-static) data members?Dan C.2009-05-24T10:29:32Z2009-05-24T10:29:32Z+1 to compensate the downvote. If state is common to all derived classes, then by all means move it up to the base class.http://stackoverflow.com/questions/876473/c-is-there-a-way-to-check-if-a-file-is-in-useComment by Dan C. on C#: Is there a way to check if a file is in use?Dan C.2009-05-18T07:01:25Z2009-05-18T07:01:25Z@Jon Limjap: Laugh as you like, but in this particular situation, a try/catch "check" is the safest method available. Placing a check before opening the file does not make it an atomic operation, and it's still possible for other processes to lock the file between your check and your file open request. See also the comment from BobbyShaftoe above.http://stackoverflow.com/questions/844995/convert-a-string-to-string-with-out-using-foreach/845006#845006Comment by Dan C. on convert a string[] to string with out using foreachDan C.2009-05-11T06:31:57Z2009-05-11T06:31:57Z@decon: If you wanted that, you'd better make it a separate method and use a StringBuilder to format the results in a loop. I still wouldn't use a lambda for that.http://stackoverflow.com/questions/844995/convert-a-string-to-string-with-out-using-foreach/845006#845006Comment by Dan C. on convert a string[] to string with out using foreachDan C.2009-05-10T12:02:56Z2009-05-10T12:02:56Z@Kamarey: the original question was first "convert a string[] to string with out using foreach". If he's going to use lambdas for that... well, it's his code, in his project :).
And if you're adding some extra logic, I still wouldn't use lambdas for that; make it a separate method then.http://stackoverflow.com/questions/844221/which-is-not-a-reason-to-create-a-custom-exception/844583#844583Comment by Dan C. on Which is not a reason to create a custom exception?Dan C.2009-05-10T10:35:12Z2009-05-10T10:35:12ZIf you think of cleanup actions as "common steps when an exception is created" and if you do not consider "created" literally, it might make sense. Brainbench tests have sometimes a misleading wording...http://stackoverflow.com/questions/844995/convert-a-string-to-string-with-out-using-foreach/845006#845006Comment by Dan C. on convert a string[] to string with out using foreachDan C.2009-05-10T09:37:13Z2009-05-10T09:37:13ZSee added example.http://stackoverflow.com/questions/810442/whats-the-most-efficient-way-to-determine-whether-an-untrimmed-string-is-empty-i/810455#810455Comment by Dan C. on What's the most efficient way to determine whether an untrimmed string is empty in C#?Dan C.2009-05-01T08:19:35Z2009-05-01T08:19:35Z@Jon: it <i>could</i>, but it doesn't. MoveNext checks the string length on every call before getting the character from the string, just as a for would on every loop. But as you say, it should be tested.http://stackoverflow.com/questions/810442/whats-the-most-efficient-way-to-determine-whether-an-untrimmed-string-is-empty-i/810455#810455Comment by Dan C. on What's the most efficient way to determine whether an untrimmed string is empty in C#?Dan C.2009-05-01T07:57:51Z2009-05-01T07:57:51Z@Jon: I haven't, it's common knowledge :) (just being ironic, I know one should test before making assumptions). I strongly expect the for to be faster; the foreach involves creating an enumerator object and the MoveNext call is just an indexer access - so in the end, it's just a complicated way of doing char c = myString[i];http://stackoverflow.com/questions/810442/whats-the-most-efficient-way-to-determine-whether-an-untrimmed-string-is-empty-i/810455#810455Comment by Dan C. on What's the most efficient way to determine whether an untrimmed string is empty in C#?Dan C.2009-05-01T07:45:47Z2009-05-01T07:45:47Z@RnR: he just needs a for loop instead of the foreach, as suggested in the later edit.http://stackoverflow.com/questions/810442/whats-the-most-efficient-way-to-determine-whether-an-untrimmed-string-is-empty-i/810455#810455Comment by Dan C. on What's the most efficient way to determine whether an untrimmed string is empty in C#?Dan C.2009-05-01T07:35:57Z2009-05-01T07:35:57Z@Jon: Trim uses substring internally to extract the copy of the "trimmed" string. Substring does not make a copy when asked to duplicate a string, it returns the source string instead.
That said, I can't see a reason that "doing it yourself" could be slower that Trim - as long as you replace the foreach with a plain for.http://stackoverflow.com/questions/810442/whats-the-most-efficient-way-to-determine-whether-an-untrimmed-string-is-empty-i/810473#810473Comment by Dan C. on What's the most efficient way to determine whether an untrimmed string is empty in C#?Dan C.2009-05-01T07:19:08Z2009-05-01T07:19:08Z@womp: string.IsNullOrEmpty checks the string Length too (besides doing the null check); in this situation, I would very much prefer checking it directly - option 1.http://stackoverflow.com/questions/807757/winforms-control-action-after-it-is-fully-initialized/807776#807776Comment by Dan C. on WinForms Control - Action after it is fully initializedDan C.2009-04-30T16:58:52Z2009-04-30T16:58:52ZYep. If you want it to run only once when the Form object is created, put it in the Form's constructor, AFTER the InitializeComponent call.http://stackoverflow.com/questions/807594/refactoring-an-enable-disable-button-toggle-function/807736#807736Comment by Dan C. on Refactoring an enable/disable button toggle function.Dan C.2009-04-30T16:26:58Z2009-04-30T16:26:58Z@Dave: the code is not 100% equivalent to the original. If the Value is null, the original code doesn't change the button's enabled state (while yours does). However, it might work, the poster knows better the context.http://stackoverflow.com/questions/807594/refactoring-an-enable-disable-button-toggle-functionComment by Dan C. on Refactoring an enable/disable button toggle function.Dan C.2009-04-30T16:16:35Z2009-04-30T16:16:35ZFair enough. I gave you one option in the answer below. However, personally I would leave it as it is and just commenting it for the person doing the replacement; in general it makes sense only when you share the business rules between multiple UIs...