DEV Community

Discussion on: What's the one thing you always need to google?

Collapse
 
andreasjakof profile image
Andreas Jakof

operator syntax in C#

public static operator implicit TargetType(SourceType obj)
{
    // transformation from source to target 
}