Tagged Questions

1
vote
2answers
71 views

System.Type; implicit cast to string

Hello all, While looking at the System.Type class under the Code Definition Window, I cannot seem to understand how an instance of this class is implicitly cast to string. For example, on the …
1
vote
3answers
70 views

No implicit int -> short conversion in ternary statement

short s; s = (EitherTrueOrFalse()) ? 0 : 1; This fails with: error CS0266: Cannot implicitly convert type 'int' to 'short'. An explicit conversion exists (are you missing a cast?) Can …
-2
votes
4answers
112 views

Will the c# compiler perform multiple implicit conversions to get from one type to another?

Let's say you have yourself a class like the following: public sealed class StringToInt { private string _myString; private StringToInt(string value) { _myString = value; …
1
vote
3answers
107 views

Which Json deserializer renders IList<T> collections?

I'm trying to deserialize json to an object model where the collections are represented as IList<T> types. The actual deserializing is here: JavaScriptSerializer serializer = new …
1
vote
1answer
61 views

Runtime InvalidCastException with implicit cast operator

I have a C# library that internal clients configure with VB.Net Their scripts are throwing an InvalidCastException where they really shouldn't. So the code is something like this (massively …
1
vote
5answers
126 views

Getting rid of error C2243

Is it possible to getting rid of error C2243? class B {}; class D : protected B {}; D d; B *p = &d; // conversion from 'D *' to 'B &' exists, but is inaccessible I had this error in my …
1
vote
10answers
180 views

Why is implicit conversion allowed from superclass to subclass?

Can someone tell me why the line with "//Compiles" compiles, and why the line with "//Doesn't Compile" does not? I don't understand why A would be implicitly convertible to B, not the other way …
0
votes
8answers
273 views

C++ rely on implicit conversion to bool in conditions?

I found the following rule in a coding standards sheet : Do not rely on implicit conversion to bool in conditions. if (ptr) // wrong if (ptr != NULL) // ok How …
4
votes
4answers
345 views

What is the difference between static_cast and Implicit_cast?

What is implicit_cast? when should I prefer implicit_cast rather than static_cast?