Search Results

13
votes

Why would you choose a fixed-width design?

It's already a pain to make a website that renders correctly across all popular browsers; if you also want it to render correctly at all text sizes, it's quite a lot of work. A lot of web develope …
6
votes

Is it bad practice to use LINQ to loop over and perform actions rather than just select data?

List<T> has a ForEach() method that is designed for this. …
6
votes

List of Structs or Dataset in C#?

DataSets and DataTables are often more verbose and have some overhead to access, but usually are interoperable with whatever data-binding sort of stuff you're using. …
0
votes

Do you compile and run code very often or write large code pieces at once?

Every time I write a piece of code I can test, I test it right away, so I compile and run every 5 to 20 minutes depending on how well I can break down the task that I'm doing. That said, I …
0
votes

How to decide between C# static and non-static methods?

In general, I would say that "copying" oneself, as far as an object is concerned, usually means cloning one's data into a new object. The "copying" described here is something the filesystem is do …
1
vote

Instance vs Static methods for multiple variable methods

I prefer the static version, but depending on how you use it or expect it to be used, I'd consider including an instance method DistanceTo that calls the static method. Sometimes inst …
0
votes

How do I unit test for machine specific behaviour?

I don't understand why you can't mock this. Your method should take a bool SupportsIPv6 parameter, and in the real code, you pass it System.Net.Sockets.Socket.OSSupportsIPv6 …
0
votes

How would you classify this type of design for classes?

It's not really object-oriented in any sense, since the object is nothing but a clump of data sticking together. Not that that's a terrible thing. …
5
votes

Guidelines for internal class member grouping

Maybe this is overly strict, but I'd think that if you have so many class members that you're worried about how to group them to maintain readability, you should probably break your classes up into …
1
vote

How to format lambda expressions and anonymous methods for maximum readibility?

Sorter.Filter(array, a => a.IsOK); Sorter.SortBy(array, (a, b) => a > b); Collection.Apply(array, (a) => a * a, // i like lining things up (x, y, …
10
votes

How defensively should I program?

Well, it depends who your audience is. If you're writing library code that you expect to be used by a lot of other people, who won't be talking to you about how to use it, then it's not ove …
7
votes

Starting my first business application?

My tip is to get started and come back when you actually have a concrete question. If it makes you feel more prepared, go read some more C# and SQL books first. …
0
votes

What’s the best way to return the status of multiple conditions?

It sounds fine to me. You want to return a list of the conditions that failed, and you're returning a list of the conditions that failed. …