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 works great except one thing.. If I write:

CssUnitBase c1 = 10;
Console.WriteLine(c1);

I get "10" instead of "10px" - implicit conversion to int is used instead ToString() method. How can I prevent that?

link|improve this question

49% accept rate
Can you post the code to the CssUnitBase class? From the way you use it it appears to be a wrapper around int. – Oded Jun 23 '10 at 9:56
ut dipends on how you store internally the value in CssUnitBase and how you return it. "Talk is cheap, show us the code" – vaitrafra Jun 23 '10 at 9:58
1  
@vaitrafra: I don't see how it depends on that at all. There's an implicit conversion to/from int, and an override for ToString. Those are the bits of the public API which are relevant in this question, and I don't think their implementation matters at all. It's what gets called which is relevant. – Jon Skeet Jun 23 '10 at 10:14
feedback

3 Answers

Yes, there's an implicit conversion to int and the overload of WriteLine(int) is more specific than WriteLine(object), so it'll use that.

You could explicitly call the WriteLine(object) overload:

Console.WriteLine((object)c1);

... or you could call ToString yourself, so that Console.WriteLine(string) is called:

Console.WriteLine(c1.ToString());

... or you could just remove the implicit conversion to int. Just how useful is it to you? I'm generally not in favour of implicit conversions for this sort of thing... (You could keep the implicit conversion from int of course, if you really wanted to.)

link|improve this answer
I've done that quite another way. Implicit conversion to int is now explicit and I have 4 operators (+-*/) overloaded that operate on CssUnitBase. This way I have both - ToString is called by default and arithmetic operations are working well(on mixture of int and CssUnitBase operands) without much code. All operations like CssUnitBase * int should always return CssUnitBase so this is in every aspect the way I want it. – kubal5003 Jun 23 '10 at 13:09
@kubal5003: That sounds like the right way of doing things, yes. Glad it worked out for you. – Jon Skeet Jun 23 '10 at 13:21
feedback

Override the "ToString()" method and use c1.ToString().

link|improve this answer
feedback

Just override the ToString method in CssUnitBase and call that when you want it as a string.

link|improve this answer
I've already done that! – kubal5003 Jun 23 '10 at 13:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.