Tagged Questions
7
votes
1answer
114 views
How often do you create implicit conversions for your classes?
I've been developing .NET applications for 4 years. So far, I did not need to create any implicit conversions for the classes I authored.
Could you provide real-life situations when you could not do ...
0
votes
4answers
161 views
Class implicit conversions
I know that I can use implicit conversions with a class as follows but is there any way that I can get a instance to return a string without a cast or conversion?
public class Fred
{
public ...