We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b08e3b2 commit 9b09996Copy full SHA for 9b09996
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