Tagged Questions

25
votes
3answers
950 views

Conditional operator cannot cast implicitly?

I'm a little stumped by this little C# quirk: Given variables: Boolean aBoolValue; Byte aByteValue; The following compiles: if (aBoolValue) aByteValue = 1; else aByteValue = 0; But ...
10
votes
4answers
460 views

Explanation of casting/conversion int/double in C#

I coded some calculation stuff (I copied below a really simplifed example of what I did) like CASE2 and got bad results. Refactored the code like CASE1 and worked fine. I know there is an implicit ...
6
votes
3answers
283 views

C# Implicit operators and ToString()

I'm creating my own type for representing css values (like pixels eg. 12px ). To be able to add/subtract/multiply/... my type and ints I've defined two implicit operators to and from int. Everything ...
5
votes
4answers
55 views

Implicit casting of Null-Coalescing operator result

With the following understanding about null coalescing operator (??) in C#. int? input = -10; int result = input ?? 10;//Case - I //is same as: int result = input == null? input : 10; // Case - II ...
3
votes
4answers
90 views

Is there a way to disable implicit casts from UInt32 to char?

I am working on code that takes as input a ton of ascii text defined by specific protocol. The original author interpreted "string(1)" datatypes in the original protocol as char's in the code. There ...
3
votes
2answers
46 views

Invalid implicit cast when casting array of interfaces to an array of structs

I have a struct that implements some interface. This works fine until I have an array of the struct implementation and try to implicitly cast that array to another array of the interface type. (See ...
3
votes
3answers
806 views

C# enum to string auto-conversion?

Is it possible to have the compiler automatically convert my Enum values to strings so I can avoid explicitly calling the ToString method every time. Here's an example of what I'd like to do: enum ...
2
votes
2answers
294 views

C# implicit cast “overloading” and reflection problem

I've got a problem with the following code (which compiles but crashes): using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Reflection; namespace ...
2
votes
2answers
140 views

How do you directly type cast a boxed struct in C#?

I have a namespace of structs which represent various units of measure (Meters, Feet, Inches, etc.) ... anout 12 in total, generated courtesy of T4 templates :) . Each struct carries implicit casting ...
2
votes
3answers
133 views

inconsistent behavior with string+=int in c#

I'm looking at some code golf in LINQPad and wondering why: int c; string o; o+=c;//this works o+=P==2?"."+c:c;//this doesn't o+=P==2?"."+c:""+c;//this does mostly why the first one works and ...
2
votes
2answers
554 views

Is there a way to do dynamic implicit type casting in C#?

Given this class with an implicit cast operator: public class MyDateTime { public static implicit operator MyDateTime(System.Int64 encoded) { return new MyDateTime(encoded); } ...
2
votes
1answer
366 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
1answer
348 views

C# Bitwise Operations on shorts - Why cast to an int?

short BitwiseTest(short value) { short test1 = ((value >> 8) & 0xFF); short test2 = unchecked((short)((value << 8) & 0xFF00)); return (test1 | test2); } The above ...
1
vote
1answer
357 views

C# Implicit casting to List<T> returns runtime error

I have a class similar to the following that uses an internal List: public class MyList<T> : IEnumerable<T> { private List<T> _lstInternal; public MyList() { ...
1
vote
3answers
403 views

Implicit array casting in C#

I have the following classes with an implicit cast operator defined: class A { ... } class B { private A m_a; public B(A a) { this.m_a = a; } public static implicit ...
1
vote
1answer
105 views

How do i cast A to object to class A when B can typcast to A?

Basically i want to do this. aa causes a bad cast exception. NOTE: o can be ANYTHING. It may not be B, it can be C, D, E, F etc. But this should work as long as o is a class that can typecast into A ...
1
vote
2answers
234 views

System.Type; implicit cast to string

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 following code: ...
1
vote
3answers
393 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 ...
1
vote
3answers
2k 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 ...
0
votes
4answers
166 views

Safe & Simple Access to Explicit Interface Members in C#

When I am working with explicit interface implementations in C#, it often becomes necessary to cast an object to one of its interfaces in order to access a member of that interface. Because of the ...
0
votes
2answers
306 views

Implicit version of IsAssignableFrom?

In my code using reflections i wrote if (f.FieldType.IsAssignableFrom("".GetType())) I have a class that has an implicit conversion to strings. However the if statement above doesnt catch it. How ...
-1
votes
4answers
230 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; ...