How I can auto-format code inside lambda-functions?
I know this question asked here,
But the solution of the question didn't work in my case ↓ (maybe updated)
public SyncTableViewModel()
{
LoadCategoryCommand = new Command(o =>
{
Task.Run(() =>
{
Task.WaitAll(
Task.Run(async () =>
{
//....
}),
Task.Run(async () =>
{
//....
}),
Task.Run(async () =>
{
//....
}));
});
});
}
I wonder if there's an update to this in Visual Studio 2017 !?
or there is a shortcut to use it
such as Ctrl+k , Ctrl+D .