Tagged Questions
31
votes
4answers
506 views
Why array implements IList?
See the definition of System.Array class
public abstract class Array : IList, ...
Theoretically, I should be able to write this bit and be happy
int[] list = new int[] {};
IList iList = ...
14
votes
4answers
848 views
Layered Service Provider in C#
I'm looking to write a LSP in C# to capture and re-direct UDP packets..
I have little experience with LSP's but I've heard they can do this sort of thing, please correct me if I'm wrong, but is this ...
13
votes
7answers
546 views
Is the ReadOnlyCollection class a good example of Bad Design?
Look at the specification of the ReadOnlyCollection class, it does implements the IList interface, right.
The IList interface have Add/Update/Read methods, which we call it pre-conditions of the ...
8
votes
2answers
587 views
Liskov Substition and Composition
Let say I have a class like this:
public sealed class Foo
{
public void Bar
{
// Do Bar Stuff
}
}
And I want to extend it to add something beyond what an extension method could ...
6
votes
2answers
2k views
Can you explain Liskov Substitution Principle with a good C# example?
Can you explain Liskov Substitution Principle (The 'L' of SOLID) with a good C# example covering all aspects of the principle in a simplified way? -If it is really possible.
Thanks!
5
votes
2answers
109 views
Hierarchy violates Liskov - so what?
I am using an API that violates the Liskov substitution principle : it throws its own Exception type that extends Exception, but puts the exception message from the base class in a new ErrorCode field ...
4
votes
4answers
357 views
Does this violate the Liskov substitution principle, and if so, what do I do about it?
Use case: I'm using data templates to match a View to a ViewModel. Data templates work by inspecting the most derived type of the concrete type provided, and they don't look at what interfaces it ...
3
votes
6answers
3k views
C# Interface Implementation relationship is just “Can-Do” Relationship?
Today somebody told me that interface implementation in C# is just "Can-Do" relationship, not "Is-A" relationship. This conflicts with my long-time believing in LSP(Liskov Substitution Principle). I ...
1
vote
6answers
1k views
Interface inheritance: what do you think of this: [closed]
When reviewing our codebase, I found an inheritance structure that resembles the following pattern:
interface IBase
{
void Method1();
void Method2();
}
interface IInterface2 : IBase
{
...
0
votes
1answer
317 views
Type parameter constraints for the liskov principle in C#.NET
I try to create a generic interface that inherits the System.ICloneable interface but where the returntype of the Clone()-method is T. Of course the T-type needs constraints to be sure it's an ...
0
votes
2answers
1k views
Why can't I use AddRange to add subclassed items?
I have two classes.... Parcel and FundParcel...and I'm trying to convert an IEnumerable of the subtype to an IList of the supertype....
public class FundParcel : Parcel
{
/* properties defined here ...