-
- Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Description
Example benchmark method:
[Benchmark] public void System() { }Fails with
error CS0119: 'Benchmarks.System()' is a method, which is not valid in the given context We should use base.MethodName for instance methods, or <FullyQualifiedTypeName>.MethodName for static methods, rather than the simple MethodName. And qualify all types with global::