The explicit-interface tag has no wiki summary.
0
votes
0answers
12 views
Exclude explicit interface method with PostSharp attribute multicast
Let's say I have an interface:
namespace MyCompany.Security
{
public interface IMySecurable
{
string GetContext();
}
}
Which is implemented by a number of classes, e.g.
...
1
vote
1answer
30 views
How to create an explicit interface declaration index property with CodeDOM
I am trying to create an explicit interface declaration index property. So for example:
public interface IFoo
{
int this[int i]
}
public abstract class Foo : IFoo
{
int IFoo.this[int i]
}
...
0
votes
1answer
96 views
Fortran - explicit interface
I'm very new to Fortran, and for my research I need to get a monster of a model running, so I am learning as I am going along. So I'm sorry if I ask a "stupid" question.
I'm trying to compile (Mac ...
0
votes
1answer
99 views
C# Explicit inheritance breaks my INotifyPropertyChanged
This might be little bit stupid question but I could not find any work-around or think of any solutions to the following problem...
public class Example: IExample, INotifyPropertyChanged
{
...
-1
votes
2answers
106 views
Using the new-keyword to join a method of two interfaces
I have two Interfaces A,B (residing in different components). Both declare a method with the same signature ( MyMethod ). The two interfaces are inherited by a third Interface (C).
The method which ...
2
votes
2answers
98 views
Optional parameters in explicitly implemented interfaces
public interface IFoo
{
void Foo(bool flag = true);
}
public class Test : IFoo
{
void IFoo.Foo(bool flag = true) //here compiler generates a warning
{
}
}
The warning says that the ...
1
vote
2answers
278 views
Single fortran module in multiple files
I just read the very good question/answers here about proper ways to use modules in Fortran. By writing subroutines in modules, one makes them explicit, in addition to clarifying the code.
To my ...
1
vote
1answer
31 views
Interface property fails when defining explicitly
I'm learning about interface properties and ran into something that I thought should work based on MSDN and book examples, but it doesn't. If I implement the interface property explicitly, it's not ...
2
votes
2answers
163 views
F# Explicit Interface Method for Two Interfaces
What is the correct way to handle this situation. I have one method in my F# class DogTree that should fulfill the requirement of implementing a Bark() method for both interfaces.
type ITree =
...
2
votes
1answer
166 views
Implementing Interfaces Explictly in F#
Ok, C# has Explictit Interface Implementation
I'l like to do similar in F#.
I have some Interfaces (and classes)
type IState = interface
abstract member Update : IAction-> IState
...
end
...
2
votes
1answer
96 views
Explicit overriding
msft compilers for C++ support explicit overriding (see http://msdn.microsoft.com/en-us/library/ksek8777.aspx)
// could be declared __interface I1, making the public scope and pure virtual implied
// ...
5
votes
3answers
404 views
call a base-class explicit interface method in F#
Ok I derive a type B from a base class A.
A implements IDisposable explicit but I have to do additional cleanup in B, so I implement IDisposable in B:
interface IDisposable with
member ...
3
votes
1answer
633 views
why does the Array class implement the Ilist Interface Explicitly not Implicitly?
My target language is C# with .net framework . I want to know what is the point or the reason behind this topic ?
any advice and suggestions would be highly Appreciated .
EDIT
why i asked this ...
-4
votes
2answers
84 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 ...
4
votes
4answers
185 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
5answers
753 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 ...
6
votes
3answers
2k 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
520 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
477 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 ...
0
votes
2answers
146 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 ...
5
votes
1answer
284 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() ...
12
votes
2answers
602 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 ...
8
votes
3answers
545 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 ...
0
votes
1answer
117 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 ...
5
votes
6answers
710 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 ...
3
votes
6answers
2k 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 ...
2
votes
2answers
114 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() {
...
11
votes
4answers
646 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 ...
0
votes
1answer
347 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 ...
9
votes
2answers
2k 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 ...
6
votes
2answers
351 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
{
...
2
votes
4answers
901 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>>,
...
0
votes
3answers
285 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(
...
5
votes
4answers
804 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 ...
2
votes
1answer
241 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 ...
6
votes
2answers
1k 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 ...
6
votes
2answers
1k 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 ...
3
votes
3answers
3k 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 ...
0
votes
4answers
402 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:
...
1
vote
1answer
717 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 ...
2
votes
3answers
600 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 ...
4
votes
3answers
2k 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 ...
10
votes
9answers
6k 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;
...


