DEBSOURCES
Skip Quicknav
sources / mono / 4.6.2.7%2Bdfsg-1 / 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; } }