Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public static void Main()
  2. {
  3. Console.WriteLine(List() + "wtf"); // no compilation error
  4. }
  5.  
  6. public static IEnumerable<string> List() {
  7. yield return "abc";
  8. yield return "xyz";
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement