Tagged Questions

92
votes
10answers
9k views

When should I use a struct instead of a class?

MSDN says that you should use structs when you need lightweight objects. Are there any other scenarios when a struct is preferable over a class? Edit: Some people have forgotten that: 1. structs can ...
55
votes
12answers
2k views

Is there an alternative to bastard injection? (AKA poor man's injection via default constructor)

I most commonly am tempted to use "bastard injection" in a few cases. When I have a "proper" dependency-injection constructor: public class ThingMaker { ... public ThingMaker(IThingSource ...
41
votes
7answers
853 views

Refactoring Singleton Overuse

Today I had an epiphany, and it was that I was doing everything wrong. Some history: I inherited a C# application, which was really just a collection of static methods, a completely procedural mess of ...
35
votes
4answers
6k views

How to mark a class Deprecated?

How to mark a class deprecated? I do not want to use a class anymore in my project, but do not want to delete it beforea period of 2 weeks.
22
votes
5answers
645 views

Why are function pointers not considered object oriented?

In the C# language specifications it explicitly states: Delegates are similar to the concept of function pointers found in some other languages, but unlike function pointers, delegates are ...
22
votes
4answers
814 views

Why does this polymorphic C# code print what it does?

I was recently given the following piece of code as a sort-of puzzle to help understand Polymorphism and Inheritance in OOP - C#. // No compiling! public class A { public virtual string ...
22
votes
10answers
20k views

Shadows vs. Overrides in VB.Net

Would some OO guru mind explaining the significance of these two keywords--what they do and for which context is one or the other preferable?
19
votes
7answers
1k views

Is this bad oop design?

I have class called Chicken and in Chicken I have some methods, so in another class where I instantiate and call methods on Chicken, I might do something like this: Chicken chicken = new ...
19
votes
8answers
3k views

How do you effectively model inheritance in a database?

What are the best practices for modeling inheritance in databases? What are the trade-offs (e.g. queriability)? (I'm most interested in SQL Server and .NET, but I also want to understand how other ...
18
votes
10answers
2k views

Why are circular dependencies considered harmful?

Why is it a bad design for an object to refer to another object that refers back to the first one?
16
votes
5answers
510 views

How to avoid having very large objects with Domain Driven Design

We are following Domain Driven Design for the implementation of a large website. However by putting the behaviour on the domain objects we are ending up with some very large classes. For example on ...
15
votes
7answers
383 views

How can I improve this design?

Let's assume that our system can perform actions, and that an action requires some parameters to do its work. I have defined the following base class for all actions (simplified for your reading ...
15
votes
11answers
874 views

ASP.NET — How to effectively use design patterns without over-engineering!

I'd appreciate people's thoughts on a dilemma I've been struggling with ever since ASP.NET came out. In classic ASP, the layers of code were minimal. The ASP page contained HTML and script combined. ...
14
votes
5answers
294 views

C#: why have all static methods/variables in a non-static class?

I have come across a class which is non-static, but all the methods and variables are static. Eg: public class Class1 { private static string String1 = "one"; private static string String2 = ...
13
votes
6answers
504 views

Any limit to number of properties on a .NET Class?

Received a spec to add over 800 properties to an object. Is their any 'limits' to the number of Properties an object can have in C# (or .NET)? Is their any performance impacts to be concerned with ...
13
votes
2answers
244 views

Are variables in the main methods static

Its a well known fact that a static method can work only on static members. public static void Main() { Test t1 = new Test(); } Here the Main method is static, but I haven't declared t1 as ...
13
votes
4answers
412 views

Where Can I Find Examples of Procedural Code Converted to Object Code

I'm trying to wrap my head around Object Oriented programming. But I'm having some trouble. I (think) I understand the general concepts and the arguments for why OOP is a 'good' design. My problem ...
13
votes
7answers
2k views

Why are we not allowed to specify a constructor in an interface?

Well the title says it all really. I know that you cannot specify a constructor in an interface in .Net, but why can we not? It would be really useful for my current project to be able to specify ...
13
votes
9answers
3k views

Best way to learn .NET/OOP best practices?

I'm relatively new to .NET programming (and OOP in general) and I want to make sure I'm not developing bad beginner habits when designing my applications. If you were hiring a new .NET developer and ...
12
votes
13answers
512 views

Should I recommend sealing classes by default?

In a big project I work for I am considering recommending other programmers to always seal their classes if they haven't considered how their classes should be sub classed. Often times less ...
12
votes
15answers
2k views

Why do we use .NET properties instead of plain old get/set functions?

I understand the many benefits of providing an interface to access the members of a class indirectly. My question is: isn't that already something you can accomplish in just about any OO language ...
12
votes
5answers
1k views

Is reflection really THAT slow that I shouldn't use it when it makes sense to?

The "elegant" solution to a problem I am having is to use attributes to associate a class and its properties with another's. The problem is, to convert it to the other, I'd have to use reflection. I ...
12
votes
3answers
2k views

Static and Instance methods with the same name?

I have a class with both a static and a non-static interface in C#. Is it possible to have a static and a non-static method in a class with the same name and signature? I get a compiler error when I ...
11
votes
7answers
267 views

How should I model my code to maximize code re-use in this specific situation?

Updated: See end of question for how I implemented the solution. Sorry for the poorly-worded question, but I wasn't sure how best to ask it. I'm not sure how to design a solution that can be re-used ...
11
votes
4answers
444 views

Should one interface inherit another interface

I can't seem to find an answer on this and just want to make sure it's an ok coding standard. I have Interface A that is used by many different classes and don't want interface A to change. I came ...
11
votes
2answers
331 views

What use is this code?

I can't figure out the use for this code. Of what use is this pattern? [code repeated here for posterity] public class Turtle<T> where T : Turtle<T> { }
11
votes
9answers
725 views

New .NET architecture concepts

I posted this community wiki in the hopes of creating a thread of expertise. My question is thus ... "Where do the experts go to learn about the newest .NET coding techniques?". I'm basically looking ...
10
votes
4answers
258 views

Are Interfaces Compatible With Polymorphism

I am having trouble with the concept of interfaces interacting with polymorphic types (or even polymorphic interfaces). I'm developing in C# and would appreciate answers staying close to this ...
10
votes
9answers
212 views

C# - Downside to Setting Initial Value in Declaration

Is there any downside to a class like: class Example1 { protected string UserId = (string)Session["user"]; } //versus class Example2 { protected string UserId; public Example2() { ...
10
votes
6answers
1k views

I can't create a clear picture of implementing OOPS concepts, though I understand most of the OOPS concepts. Why? [closed]

I have been working on some of the projects of my own and dont have any indrustial exposure. Currently i use simple approach for developing small applications with negligible OO approach like creating ...
10
votes
19answers
1k views

What does it take to be a better OO programmer?

I’ve almost 6 years of experience in application development using .net technologies. Over the years I have improved as a better OO programmer but when I see code written by other guys (especially the ...
10
votes
10answers
1k views

How can you require a constructor with no parameters for types implementing an interface?

Is there a way? I need all types that implement a specific interface to have a parameterless constructor, can it be done? I am developing the base code for other developers in my company to use in a ...
9
votes
8answers
406 views

Event parameter; “sender as Object”, or “sender as T”?

When I write public events for my business objects, I've adapted the habit of always passing the instance as "sender as Object", in addition to additional specific parameters. I just asked myself now ...
9
votes
7answers
544 views

In .NET can a class have virtual constructor?

Can a class have virtual constructor?? If yes, why it is required?
9
votes
5answers
2k views

What are the advantages of instance-level thread-local storage?

This question led me to wonder about thread-local storage in high-level development frameworks like Java and .NET. Java has a ThreadLocal<T> class (and perhaps other constructs), while .NET has ...
9
votes
14answers
6k views

How can a static class derive from an object?

I am trying to inherit a non-static class by a static class. public class foo { } public static class bar : foo { } And I get: Static class cannot derive from type. Static classes must ...
9
votes
2answers
4k views

How do I specify multiple constraints on a generic type in C#?

What is the syntax for placing constraints on multiple types? The basic example: class Animal<SpeciesType> where SpeciesType : Species I would like to place constraints on both types in the ...
8
votes
7answers
311 views

Polymorphism design question

First of all sorry for the long question, but I couldn't write it any shorter :) Real world example: we have large roll of paper, which contains small 'stickers' printed on them. Each sticker has a ...
8
votes
3answers
251 views

Abstract Classes and ReadOnly Properties

Let's have three classes; Line PoliLine SuperPoliLine for all that three classes a Distance is defined. But only for the Line a Distance can be Set. Is there a possibility to build a common ...
8
votes
4answers
284 views

How to convey the importance/role of application architecture to business heads & junior developers

This question is subjective and can reasonably only be answered by those seasoned developers with leadership experience and management personnel with a sound technical proficiency. For the past year ...
8
votes
3answers
1k views

Shadows vs Overloads in VB.NET

When we have new in C#, that personally I see only as a workaround to override a property that does not have a virtual/overridable declaration, in VB.NET we have two "concepts" Shadows and Overloads. ...
8
votes
4answers
780 views

How DID Microsoft do this? (an OO question about their .NET HttpServerUtility class)

HttpServerUtility contains a public function called UrlEncode. It is not a shared function. HttpServerUtility does not have any public constructors. Doing this fails: Dim encodeMe As String = "a ...
8
votes
11answers
553 views

Interface should not have properties?

My office colleague told me today that is bad practice to use properties in interfaces. He red that in some MSDN article(s), which I couldn't find (well I was trying few times on google, probably with ...
7
votes
10answers
1k views

Are global static classes and methods bad?

It's generally agreed upon that relying heavily on global stuff is to be avoided. Wouldn't using static classes and methods be the same thing?
7
votes
4answers
326 views

What does Protected Internal means in .Net

Protected Means, we can access this member only in a deriving class, and internal means we can access this member in any type in the same assembly using a object. So can I consider a Protected ...
7
votes
6answers
579 views

In C# or OOP, should 2 classes reference each other that are related?

I am working on a class library using C#. I have designed 3 main classes to help model our data. They are designed such that class A contains a list of class B instances, and class B contains a ...
7
votes
4answers
445 views

How do I copy an instance of an object?

I'm trying to write some code that populates a List (actually, it's a series of Lists, but we can pretend it's just one List). The idea is to add an IPackage to the List for the total quantity of ...
7
votes
3answers
210 views

Memory taken from a c# object

I was wondering how much memory does an object that inherits from "object" and has no fields/properties take ? And I guess methods don't. Right ? I am talking for .net objects.
7
votes
10answers
2k views

Why do both the abstract class and interface exist in .Net?

Why do both the abstract class and interface exist in .Net ( or in C# ) if we can achieve the interface feature by making all the members in the class as abstract. Is it because: Interface exists to ...
7
votes
3answers
786 views

OO: Why should constructors on abstract classes be protected, not public?

C# code: Resharper suggests changing the accessibility of a public constructor in an abstract class to protected, but it does not state the rationale behind this. Can you shed some light?

1 2 3 4 5 11