最近,您创建了一个应用程序,包括如下所示的代码。
public delegate string GetFileContentsDel ();
public string GetFileContents () {
//Process file and return results
}
现在,您需要以异步方式调用 GetFileContents 方法。
您必须确保您用来调用 GetFileContents 方法的代码将继续处理其他用户的说明,并显示结果,尽快完成的 GetFileContents 方法的处理。你应该做什么?()