34
votes
7answers
3k views
C#: Interfaces - Implicit and Explicit implementation
What are the differences in implementing interfaces implicitly and explicitly in C#?
When should you use implicit and when should you use explicit?
Are there any pros and/or cons …
15
votes
5answers
789 views
Why Can A C# Class Inherit From One Interface Both Implicitly and Explicitly?
Today I happens to find that one C# class can inherit one interface both in implicit and explicit way. This surprises me. If C# works in this way, then one instance can behave diff …
5
votes
5answers
182 views
Strings and ints, implicit and explicit…
Had a coworker ask me this, and in my brain befuddled state I didn't have an answer:
Why is it that you can do:
string ham = "ham " + 4;
But not:
string ham = 4;
If there's …
3
votes
2answers
340 views
Freakishly weird interface polymorphism using interface composition
I ended up with something like the following code in a project I'm working on. I thought it was really odd that I was allowed to do it, but now I'm starting wonder what is most lik …
3
votes
5answers
314 views
Why does the compiler choose bool over string for implicit typecast of L””?
Having recently introduced an overload of a method the application started to fail.
Finally tracking it down, the new method is being called where I did not expect it to be.
We ha …
3
votes
7answers
326 views
Can you use keyword explicit to prevent automatic conversion of method parameters?
I know you can use C++ keyword 'explicit' for constructors of classes to prevent an automatic conversion of type. Can you use this same command to prevent the conversion of parame …
2
votes
1answer
220 views
Improving FOR XML Explicit Perfomance
Although using SQL FOR XML EXPLICIT is cumbersome, I find myself using it often. Since it allows full control over the generated XML document.
My problem is with perfomance, somet …
2
votes
5answers
545 views
How to solve call ambiguity between Generic.IList<T>.this[] and IList.this[]?
I've got a collection that implements an interface that extends both IList<T> and List.
public Interface IMySpecialCollection : IList<MyObject>, IList { ... }
That mea …
1
vote
4answers
90 views
Is there ever an excuse for throwing an Exception from an implicit conversion?
From MSDN:
By eliminating unnecessary casts, implicit conversions can improve source code readability. However, because implicit conversions can occur without the programmer's …
1
vote
6answers
100 views
What variable name do you use for file descriptors?
A pretty silly trivial question. The canonical example is f = open('filename'), but
f is not very descriptive. After not looking at code in a while,
you can forget whether it m …
1
vote
1answer
105 views
Why do we still need a .lib stub file when we’ve got the actual .dll implementation ?
hi folks,
i'm wondering why linkers can not do their job simply by consulting the information in the actual .dll files that got the actual implementation code ? i mean why linkers …
1
vote
2answers
199 views
Incorrectly aligned or overlapped by a non-object field error
I'm trying to create the following structure:
[StructLayout(LayoutKind.Explicit, Size=14)]
public struct Message
{
[FieldOffset(0)]
public ushort X;
…
1
vote
6answers
312 views
explicit and implicit c#
Hi
I'm new to C# and learning new words. I find it difficult to understand what's the meaning of these two words when it comes to programming c#.
I looked in the dictionary for …
1
vote
1answer
121 views
Explicit keyword on multi-arg constructor?
I recently came across some weird looking class that had three constructors:
class Class
{
public:
explicit Class(int );
Class(AnotherClass );
explic …
1
vote
1answer
395 views
Android Override Explicit Intent
Hello,
My app needs to have a intent-filter that responds to a intent that has it's component set (a explicit intent.) Here is a example.
Intent i = new Intent();
i.setClassName …
