Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Xml;
- internal class Program
- {
- private static void Main()
- {
- Bar(XmlWriter => XmlWriter.Flush());
- Bar(XmlReader => XmlReader.Flush());
- }
- private static void Bar(Action<XmlWriter> x)
- {
- Console.WriteLine("W");
- }
- private static void Bar(Action<XmlReader> x)
- {
- Console.WriteLine("R");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment