I am translating example code line by line from C # to VB.NET.
The lines that confuse me look like this:
[Kernel(CustomFallbackMethod = "AddCpu")]
I see in the code that these lines appear immediately before the method declaration:
private static void
Which line appears before the method declaration? Or is it a continuation of the latter? Hope this is obvious to the native C Sharper.
source
share