このコードで「=」パラメータが何に使用されているか説明してもらえますか? の代わりに、他にどのパラメータを使用できます=
か? それはどのような違いを生むでしょうか?MSDN は、この件に関してあまり明確ではありません。
//Declaration
auto prerequisite = task<void>([](){});
//Here is where I don't understand the '=' parameter
prerequisite.then([=](task<void> prerequisite){/*custom code goes here*/})