Tagged Questions
The explicit-implementation tag has no wiki summary.
10
votes
1answer
1k views
C#: Property overriding by specifying the interface explicitly
While attempting to override the explicit interface implementation of the ICollection<T>.IsReadOnly property from the Collection<T> class, I came across some documents stating that ...
10
votes
3answers
1k views
C# Language Design: explicit interface implementation of an event
Small question about C# language design :))
If I had an interface like this:
interface IFoo {
int Value { get; set; }
}
It's possible to explicitly implement such interface using C# 3.0 ...
9
votes
2answers
430 views
How to call an explicitly implemented interface-method on the base class
I have a situation, where two classes (one deriving from the other) both implement the same interface explicitly:
interface I
{
int M();
}
class A : I
{
int I.M() { return 1; }
}
class B : A, I
{
...
9
votes
2answers
5k views
Access modifiers on interface members in C#
I am getting a compile error from the following property.
The error is:
"The modifier 'public' is not valid for this item"
public System.Collections.Specialized.StringDictionary ...
8
votes
2answers
257 views
Why can't I call methods within a class that explicitly implements an interface?
Here's the story. I created an interface, IVehicle. I explicitly implemented the interface in my class, Vehicle.cs.
Here is my interface:
Interface IVehicle
{
int getWheel();
}
here is ...
6
votes
1answer
2k views
How to emit explicit interface implementation using reflection.emit?
Observe the following simple source code:
using System;
using System.Linq.Expressions;
using System.Reflection;
using System.Reflection.Emit;
namespace A
{
public static class Program
{
...
6
votes
3answers
509 views
Is the C# “explicit implementation” of the interface present in Java?
In C#, if you have two base interfaces with the same method (say, F()) you can use explicit implementation to perform different impl. for F(). This alloes you to differently treat the 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
203 views
.NET C# Explicit implementation of grandparent's interface method in the parent interface
That title's a mouthful, isn't it?...
Here's what I'm trying to do:
public interface IBar {
void Bar();
}
public interface IFoo: IBar {
void Foo();
}
public class FooImpl: IFoo {
void ...
4
votes
4answers
134 views
How does one choose whether to implement an interface or explicitly implement an interface?
There are two ways to implement an interface:
interface IMyInterface
{
void Foo();
}
class IImplementAnInterface : IMyInterface
{
public void Foo()
{
}
}
// var foo = new ...
2
votes
2answers
193 views
Why doesn't C# support explicitly implemented virtual methods?
Interface methods in C# can be implemented explicitly, so that their implementation is invoked when an instance is explicitly cast to the interface type. Why is this not also supported on virtual ...
1
vote
3answers
84 views
Explicit Conversion to IDisposable
I am using some XmlReader and XmlWriter object to do some needed work on strings inside some try...catch blocks.
I know that using the notation using (XmlReader NewReader = XmlReader.Create(...)) is ...
1
vote
1answer
314 views
access IEnumerable<Type>.GetEnumerator() from IEnumerable<Type>.GetEnumerator()
please find the code there is error that getenuemrator() method is not defined in the class
private sealed class SelfAndBaseClasses : IEnumerable<Type>, IEnumerator<Type>, IEnumerable, ...
1
vote
1answer
176 views
How can I access an explicitly implemented method using reflection?
Usually, I access a method in reflection like this:
class Foo
{
public void M () {
var m = this.GetType ().GetMethod ("M");
m.Invoke(this, new object[] {}); // notice the pun
...
1
vote
3answers
459 views
Explicit C# interface implementation of interfaces that inherit from other interfaces
Consider the following three interfaces:
interface IBaseInterface
{
event EventHandler SomeEvent;
}
interface IInterface1 : IBaseInterface
{
...
}
interface IInterface2 : IBaseInterface
{
...