Skip to main content

Questions tagged [explicit]

0 votes
1 answer
148 views

If a class is written well, you should be able to gleam all relevant information about the class simply by looking at its header. If one sees that the constructor is marked explicit: What should one ...
Anon's user avatar
  • 3,649
0 votes
5 answers
215 views

Simplified a little, I have this code: public class TaskProcessCases{ private Assessment assessment ; public void execute() { // the actual name for (Case case : cases) { ...
Mark's user avatar
  • 682
-1 votes
3 answers
458 views

So, I'm working on a project that takes a very complex entity from a third party framework and converts it into the native object that defines that entity. This entity has several one-to-many ...
Sidney's user avatar
  • 181
10 votes
2 answers
6k views

I'm programming a library (so I have complete access to all the mentioned classes). Two classes (A and B) are essentially the same and differ only by their implementation, so they can easily be ...
user avatar
11 votes
1 answer
9k views

I think I understand the actual limitations of compile-time polymorphism and run-time polymorphism. But what are the conceptual differences between explicit interfaces (run-time polymorphism. ie ...
Chris Morris's user avatar
7 votes
4 answers
2k views

Consider the following code: DerivedClass drbObj = (DerivedClass)obj; Here obj is of type Object and this is reasonable since Object is the base type of every Class in C#. Here, since the type of ...
Shamim Hafiz - MSFT's user avatar