LoginSignup
0

More than 5 years have passed since last update.

Visual Studio > typo > Asynchronous Programming with Async and Await (C# and Visual Basic) > Task<T>がTaskになっているようだ

Last updated at Posted at 2017-12-20
動作環境
Windows 8.1 Pro (64bit)
Microsoft Visual Studio 2017 Community
Sublime Text 2

Asynchronous Programming with Async and Await (C# and Visual Basic)
を読んでいるが、誤植(typo)があるようだ。

What Happens in an Async Method

項目3つ目。

GetStringAsync returns a Task where TResult is a string,

GetStringAsync returns a Task<T> where TResult is a string,
の気がする。
もしくはTask<string>

Return Types and Parameters

returns a Task or a Task

a Task or a Task<T>

二か所ある。

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0