6
votes
When is it better to use String.Format vs string concatenation?
My initial preference (coming from a C++ background) was for String.Format. I dropped this later on due to the following reasons:
String concatenation is arguably "safer". It happe …
2
votes
Modifications of arrays passed by reference (C#)
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 …
1
vote
type.Parse vs Type.parse (c#)
There is none. int, decimal, string etc. are just aliases for their corresponding types.
In general, I prefer the Type.Parse over the type.Parse, but this is just a matter of personal choic …
1
vote
How to find out whether two ICollection<T> collections contain the same objects
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 …
19
votes
Are variable prefixes ( Hungarian ) really necessary anymore?
The only places I see fit to bend the standards and prefix variables:
control names: txtWhatever - and I see I'm not the only one. The nice thing is that you can come …
1
vote
Setting an Event handler without doing it manually in the classname.designer.cs file
Sure. Use myControl.Event += new EventHandler(SomeHandlerMethodInYourClass) somewhere during initialization, e.g. in the form's constructor.
…
2
votes
Why does C# XmlDocument.LoadXml(string) fail when an XML header is included?
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 </Report>?
Here's my test code:
…
3
votes
Help With Overriding and Inheritance…
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. protected virtual string getMood() …
2
votes
ReSharper syntax suggestion
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.
For insta …
1
vote
Factory pattern in C#: How to ensure an object instance can only be created by a factory class?
Yet another (lightweight) option is to make a static factory method in the BusinessObject class and keep the constructor private.
public class BusinessObject
{
public static Busine …
0
votes
Writing to a TextBox from another thread?
Have a look at Control.BeginInvoke method. The point is to never update UI control …
1
vote
Tiny way to get the first 25 characters
One way to do it:
int length = Math.Min(Description.Length, 25);
return Description.Substring(0, length) + "...";
There are two lines instead of one, but shorter o …
2
votes
In C#, how to instantiate a passed generic type inside a method?
To extend on the answers above, adding where T:new() constraint to a generic method will require T to have a public, parameterless constructor.
If you want to avoid that - and …
1
vote
C#: Should I bother checking for null in this situation?
It always depends on the context (in my opinion).
For instance, when writing a library (for others to use), it certainly makes sense to fully check each and every parameter and throw the ap …
1
vote
Passing an IDisposable object by reference causes an error?
Here's an option for your example (can't verify it against a compiler right now, but you'll get the idea):
private void DisposeObject<T>(ref T obj) where T : IDisposable
{
…
