Tagged Questions
2
votes
2answers
555 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);
}
...