We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 725b38a commit 7fb481cCopy full SHA for 7fb481c
samples/logging/datadog/Core_10/Endpoint/LoadSimulator.cs
@@ -43,10 +43,7 @@ TimeSpan NextDelay()
43
return delay;
44
}
45
46
- Task Work()
47
- {
48
- return endpointInstance.SendLocal(new SomeCommand());
49
- }
+ Task Work() => endpointInstance.SendLocal(new SomeCommand());
50
51
public Task Stop()
52
{
samples/logging/datadog/Core_10/Endpoint/SomeCommand.cs
@@ -1,5 +1,3 @@
1
using NServiceBus;
2
3
-class SomeCommand : ICommand
4
-{
5
-}
+class SomeCommand : ICommand;
0 commit comments