using System; public class Buffer { public string get() & public async put(string s) { return s; } } class Test { static void Main(string[] args) { Buffer buf = new Buffer(); buf.put("Hello, world!"); Console.WriteLine(buf.get()); } }