python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Can C++ coroutines contain plain `return` statements?
I am writing a C++ coroutine for a UWP control using C++/WinRT:
winrt::fire_and_forget MyControl::DoSomething()
{
if (/* some condition */)
{
// Why does this work?!
return;
...
citelao
Votes: 0
Answers: 1
Cannot compile WinUI 3.0 app that references a custom Windows Runtime component
I have a Visual Studio 2019 solution that contains two project.
The first project has been created using the "Windows Runtime Component (WinUI 3) Visual Studio template (library project). It gene...
ackh
Votes: 0
Answers: 0