We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30219f6 + 9b09996 commit 29fa7feCopy full SHA for 29fa7fe
README.md
@@ -110,7 +110,11 @@ And then after running with enabled Profile you'll see:
110
### 🫡 Reset Timer
111
112
```csharp
113
-using (_timer.Measure("Name of Sample")) HeavyMethod();
+using (_timer.Measure())
114
+{
115
+ // Here you can call any methods you want to measure
116
+ HeavyMethod();
117
+}
118
119
if (_timer.State.countOfCalling == 1000) _timer.Reset();
120
```
@@ -128,4 +132,4 @@ Result:
128
132
## 📄 License
129
133
130
134
This project is licensed under the **MIT License**.
131
-See the [LICENSE.md](LICENSE.md) file for full terms.
135
+See the [LICENSE.md](LICENSE.md) file for full terms.
0 commit comments