Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是想知道有什么区别
public Task somethod()和public int somethod()
public Task somethod()
public int somethod()
第一个方法返回一个Task类型对象。
Task
第二种方法返回一个int类型的值。
这些函数返回不同的类型。
有很大很大的不同。
.Task通常用于异步
而public int somethod()in 唯一的回报int
int