3
votes
Questions every good .NET developer should be able to answer?
Martin Fowler prefers design skills over platform knowledge. On the other hand you can ask a question which will s …
1
vote
How to make a class protected for inheritance?
In general you should mark your type with sealed keyword in case you want prevent derivation. However is some cases it is not appropriate. For example, you want to allow types from your assembly to …
0
votes
Getting started with socket programming in C# - Best practices
Consider using asynchronous sockets. You can find more information on the subject in
Using an Asynchron …
2
votes
Is ViewState relevant in ASP.NET MVC?
Yes, that is correct. ViewState is not relevant. More on differencies between Page Model and MVC here:
Compati …
4
votes
C# ?: Conditional Operator
The type of the operator will be object and in case the result must be 0 it will be implicitly boxed. But 0 literal is by default has int type so you box int. But with explicit cast to decimal you …
3
votes
Mixture of types in generic list
C# doesn't support covariance for generics. Consider this Covariance a …
2
votes
Enterprise library for .NET
We use Web Client Software Factory, Composite Application Guidance - both are frameworks from Microsoft for building composite applications (web and wpf).
…
1
vote
How to inject an object into a WCF validator class
In general custom validator is assigned programmatically (there is also possibility to do so from config file) something like this and it is done just before service host is opened and basically th …
1
vote
1
vote
C# Circular Dependency Problem Solving Technique
Point your attention to Dependency Inversion Principle.
…
0
votes
C# creating attribute that indicate running code after property call
You can also use interception mechanism provided by Unity dependency injection containe …
1
vote
Purpose of having API wrapped around interface
It seems the author of MyApi mixed factory and consumer. I do not see any reason to access interface members indirectly when it is defined at compile time.
…
3
votes
1
vote
Objects, parameters and the ref keyword in C#.
Eric Lippert explains in Why do ref and out parameters not …
0
votes
vb.net C# property overiding mechanism
Here is excerpt from 10.6.3 Virtual, sealed, override, and abstract accessors:
A …
