Może być za późno, ale może być przydatne dochodzenie:
Chodzi o wewnętrzną strukturę skompilowanego kodu ( IL ):
public static async Task<int> GetTestData()
{
return 12;
}
staje się w IL:
.method private hidebysig static class [mscorlib]System.Threading.Tasks.Task`1<int32>
GetTestData() cil managed
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.AsyncStateMachineAttribute::.ctor(class [mscorlib]System.Type) = ( 01 00 28 55 73 61 67 65 4C 69 62 72 61 72 79 2E
53 74 61 72 74 54 79 70 65 2B 3C 47 65 74 54 65
73 74 44 61 74 61 3E 64 5F 5F 31 00 00 )
.custom instance void [mscorlib]System.Diagnostics.DebuggerStepThroughAttribute::.ctor() = ( 01 00 00 00 )
.maxstack 2
.locals init ([0] class UsageLibrary.StartType/'<GetTestData>d__1' V_0,
[1] valuetype [mscorlib]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32> V_1)
IL_0000: newobj instance void UsageLibrary.StartType/'<GetTestData>d__1'::.ctor()
IL_0005: stloc.0
IL_0006: ldloc.0
IL_0007: call valuetype [mscorlib]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> valuetype [mscorlib]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32>::Create()
IL_000c: stfld valuetype [mscorlib]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32> UsageLibrary.StartType/'<GetTestData>d__1'::'<>t__builder'
IL_0011: ldloc.0
IL_0012: ldc.i4.m1
IL_0013: stfld int32 UsageLibrary.StartType/'<GetTestData>d__1'::'<>1__state'
IL_0018: ldloc.0
IL_0019: ldfld valuetype [mscorlib]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32> UsageLibrary.StartType/'<GetTestData>d__1'::'<>t__builder'
IL_001e: stloc.1
IL_001f: ldloca.s V_1
IL_0021: ldloca.s V_0
IL_0023: call instance void valuetype [mscorlib]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32>::Start<class UsageLibrary.StartType/'<GetTestData>d__1'>(!!0&)
IL_0028: ldloc.0
IL_0029: ldflda valuetype [mscorlib]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32> UsageLibrary.StartType/'<GetTestData>d__1'::'<>t__builder'
IL_002e: call instance class [mscorlib]System.Threading.Tasks.Task`1<!0> valuetype [mscorlib]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32>::get_Task()
IL_0033: ret
}
I bez metody asynchronicznej i zadaniowej:
public static int GetTestData()
{
return 12;
}
staje się :
.method private hidebysig static int32 GetTestData() cil managed
{
.maxstack 1
.locals init ([0] int32 V_0)
IL_0000: nop
IL_0001: ldc.i4.s 12
IL_0003: stloc.0
IL_0004: br.s IL_0006
IL_0006: ldloc.0
IL_0007: ret
}
Jak widać, duża różnica między tymi metodami. Jeśli nie używasz await w metodzie async i nie zależy Ci na używaniu metody async (na przykład wywołanie API lub program obsługi zdarzeń), dobrym pomysłem jest przekonwertowanie jej na normalną metodę synchronizacji (oszczędza to wydajność aplikacji).
Zaktualizowano:
Istnieją również dodatkowe informacje z Microsoft Docs https://docs.microsoft.com/en-us/dotnet/standard/async-in-depth :
metody async muszą mieć słowo kluczowe await w swoim ciele, w przeciwnym razie nigdy się nie uda! Należy o tym pamiętać. Jeśli await nie jest używany w treści metody asynchronicznej, kompilator C # wygeneruje ostrzeżenie, ale kod zostanie skompilowany i uruchomiony tak, jakby był zwykłą metodą. Zauważ, że byłoby to również niewiarygodnie nieefektywne, ponieważ maszyna stanu wygenerowana przez kompilator C # dla metody asynchronicznej niczego by nie osiągnęła.
async
?