Possible Duplicate:
Is there a way to define an implicit conversion operator in VB.NET?

I can't remember ever seeing or hearing of anyone do this; but now I'm in a situation where I think it would be incredibly useful to define my own custom 'type conversion' for my class.

As an example - let's say I have my own class, 'AwesomeDataManager'. It does not inherit from DataTable, but it holds data in a similar fashion to a DataTable. I would to be able to say, 'myDataTable = CType(MyAwesomeDataManager, DataTable)' and have it execute some code inside my class that would return a populated DataTable.

Granted, I could do something like 'MyAwesomeDataManager.GetDataTable' but for the sake of integrating with an existing code base, I'd like to avoid it.

link|improve this question

Doh - yes, I believe this is a duplicate. Sorry! – Rob P. Apr 20 '11 at 15:02
feedback

closed as exact duplicate by Heinzi, Chris Haas, Adam Houldsworth, Rob P., MarkJ Apr 20 '11 at 17:16

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 2 down vote accepted

You could use an implicit or explicit cast, like this: (Note that LetMeChange is implicitly cast to SomethingMoreComfortable)

class Program
{
    static void Main(string[] args)
    {
        LetMeChange original = new LetMeChange { Name = "Bob" };
        SomethingMoreComfortable casted = original;

        Console.WriteLine(casted.Name);
    }
}

public class LetMeChange
{
    public static implicit operator SomethingMoreComfortable(LetMeChange original)
    {
        return new SomethingMoreComfortable() { Name = original.Name };
    }

    public string Name
    {
        get;
        set;
    }
}

public class SomethingMoreComfortable
{
    public string Name
    {
        get;
        set;
    }
}
link|improve this answer
feedback

There are two keywords in C# that help with type conversions: implicit and explicit.

In this case, you would want implicit for code eye-candy. Be careful with this however, as it can cause moments of confusion as people realise what you are doing. I tend to not spot the use of implicit conversions just by reading the code quickly (explicit are hard to miss as they need casts).

link|improve this answer
feedback

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