Tagged Questions
The explicit-interface tag has no wiki summary.
10
votes
2answers
338 views
Why does calling an explicit interface implementation on a value type cause it to be boxed?
My question is somewhat related to this one: How does a generic constraint prevent boxing of a value type with an implicitly implemented interface?, but different because it shouldn't need a ...
10
votes
4answers
297 views
Why would a class implement IDisposable explicitly instead of implicitly?
I was using the FtpWebResponse class and didn't see a Dispose method. It turns out that the class implements IDisposable, but does so explicitly so that you must first cast your instance to ...
9
votes
2answers
658 views
Object initializer with explicit interface in C#
How can I use an object initializer with an explicit interface implementation in C#?
public interface IType
{
string Property1 { get; set; }
}
public class Type1 : IType
{
string IType.Property1 ...
7
votes
3answers
288 views
Explicit implementation of IDisposable
Although there are quite a lot of Q&As regarding IDisposable to be found on SO, I haven't found an answer to this yet:
I usually follow the practice that when one of my classes owns an ...
7
votes
8answers
3k views
How do I use reflection to get properties explicitly implementing an interface?
More specifically, if I have:
public class TempClass : TempInterface
{
int TempInterface.TempProperty
{
get;
set;
}
int TempInterface.TempProperty2
{
get;
...
6
votes
2answers
688 views
How can I call explicitly implemented interface method from PowerShell?
Code:
add-type @"
public interface IFoo
{
void Foo();
}
public class Bar : IFoo
{
void IFoo.Foo()
{
}
}
"@ -Language Csharp
$bar = New-Object ...
5
votes
1answer
100 views
XML Comments — How do you comment explicitly implemented interfaces properly?
Code:
public interface IFoo
{
void Bar();
}
public class FooClass : IFoo
{
/// <summary> ... </summary>
/// <seealso cref="?"/> //How do you reference the IFoo.Bar() ...
5
votes
6answers
266 views
how List<T> does not implement Add(object value)?
I believe it's pretty stupid, and I am a bit embarrassed to ask this kind of question, but I still could not find the answer:
I am looking at the class List<T> , which implemetns IList.
public ...
5
votes
2answers
191 views
Explicitly implemented interface and generic constraint
interface IBar { void Hidden(); }
class Foo : IBar { public void Visible() { /*...*/ } void IBar.Hidden() { /*...*/ } }
class Program
{
static T CallHidden1<T>(T foo) where T : Foo
{
...
4
votes
4answers
70 views
Why does the VS Metadata view does not display explicit interface implemented members
The other day i was looking at C# Boolean struct metadata.
Boolean implements the interface IConvertible. But looking at Boolean's members i could not see most of the IConvertible members.
I've done ...
4
votes
4answers
387 views
C# - Explicit Interfaces with inheritance?
Output:
B->Hello! from Explicit.
Shouldn't it be:?
A->Hello! from Explicit.
Why doesn't explicit cast (IHello)a call IHello.Hello() from class A?
interface IHello
{
void Hello();
}
class ...
3
votes
3answers
257 views
Type parameter 'T' has the same name as the type parameter from outer type '…'
public abstract class EntityBase { ... }
public interface IFoobar
{
void Foo<T>(int x)
where T : EntityBase, new();
}
public interface IFoobar<T>
where T : EntityBase, ...
3
votes
3answers
145 views
FxCop: CA1033 - Microsoft's implementation of a ReadOnlyCollection violates this?
If you look at the code for a read-only collection it does not have an "Add" method, but instead defines the ICollection<T>.Add(T Value) method (explicit interface implementation).
When I did ...
3
votes
1answer
140 views
Is there a way to detect explicit implementation of a method/property via reflection in .NET?
I need to be able to determine if a method or property a given type has comes from a certain interface and is explicitly implemented, by using reflection. Has anyone done this and is it actually ...
3
votes
2answers
747 views
Why is HashSet<T>.IsReadOnly explicit?
This
var h = new HashSet<int>();
var r = h.IsReadOnly;
does not compile. I have to do
var r = ((ICollection<int>)h).IsReadOnly;
why wasn't IsReadOnly implemented normally?
(I'm not ...
2
votes
2answers
90 views
How are explicit interface implementations implemented in IL?
I've been having a look at explicit interface implementations in IL. The method Method in the following class (interface IA has a single Method() on it):
public class B : IA
object IA.Method() {
...
2
votes
4answers
516 views
C# property not available in derived class
I'm not sure what's going on. I have the following base class:
public class MyRow : IStringIndexable, System.Collections.IEnumerable,
ICollection<KeyValuePair<string, string>>,
...
1
vote
4answers
335 views
Explicit interface implementation limitation
I have a very simple scenario : a "person" can be a "customer" or an "employee" of a company.
A "person" can be called by phone with the "Call" method.
Depending on which role the "person" plays in ...
1
vote
1answer
192 views
Using Explicit Interfaces to prevent accidental modification of properties in C#
I stumbled on a feature of C# method resolution that I didn't notice before. Namely, when I explicitly implement an interface that supports a setter, and the implicit interface only offers a protected ...
1
vote
3answers
2k views
C++/CLI: Implementing IList and IList<T> (explicit implementation of a default indexer)
I am trying to implement a C++/CLI class that implements both IList and IList<T>.
Since they have overlapping names, I have to implement one of them explicitly, and the natural choice should be ...
1
vote
1answer
545 views
LinkedList(T) add-method
The Add-method from the ICollection(T) interface has been explicitly implemented by the LinkedList(T)-class. This collection instead have AddFirst- and AddLast-methods (among others). The explicitly ...
1
vote
3answers
506 views
How costly is boxing when explicitly implementing an interface
The current guidlelines for explicit member implementation recommend:
Using explicit members to approximate private interface implementations. If you need to implement an interface for only ...
1
vote
1answer
957 views
Why to Use Explicit Interface Implementation To Invoke a Protected Method?
When browsing ASP.NET MVC source code in codeplex, I found it is common to have a class explicitly implementing interface. The explicitly implemented method/property then invoke another "protected ...
0
votes
3answers
133 views
Explicit interface implementation cannot be virtual
For the record, I've already seen this connect item but I can't really understand what would be the problem in supporting this.
Say I have the following code:
public interface IInterface
{
void ...
0
votes
2answers
67 views
IXmlSerializable and Immutability
I am implementing IXmlSerializable in an immutable class. To keep the class immutable I am implementing the interface explicitly, so as to hide the methods, and using a static ReadXml() method which ...
0
votes
1answer
103 views
Is it a bad idea to have hide methods and have different method implementations behind different interfaces?
I have a interface which currently extends IDictionary<> (and an implementation which Extends Dictionary<>), but I want to have an implementation of this interface which does not allow entries ...
0
votes
1answer
230 views
Stubbing out methods that explicitly implement an interface using Rhino Mocks
How can I stub out methods that explicitly implement an interface using Rhino Mocks?
As I understand it, Rhino Mocks requires stubbed out methods to be virtual, and explicitly implemented interface ...
0
votes
3answers
190 views
How do I determine which interface is referenced by an explicitly-implemented MethodInfo object?
I have a MethodInfo object that represents an explicitly-implemented interface method, as follows.
MethodInfo GetMethod()
{
return typeof(List<>).GetMethod(
...
0
votes
4answers
293 views
Can one reference a same-named implicit property in an explicit Interface implementation?
Say I have a type that implements a property with a string type:
public class Record
{
public string Value { get; set; }
}
Then I have an interface that defines a property with the same name:
...
-4
votes
2answers
48 views
Does type casting in C# occur here?
I have a basic question regarding type casting.
class A { }
class B : A { }
B b = new B();
A a = (A)b;
In the above code whether type casting will occur?
interface IA
{
void ...