DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs0029-11.cs
123456789
// CS0029: Cannot implicitly convert type `int' to `string' // Line: 5 class A { public static implicit operator string (A a) { return 42; } }