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
2 番目のメソッドはint型の値を返します。
これらの関数は異なる型を返します。
大きな違いがあります。
.Taskは一般的に非同期に使用されます
とpublic int somethod()でのみ戻りますint
int