From b48e8ad00a2f082880afbf761604179102ac1411 Mon Sep 17 00:00:00 2001
From: Armin Shoeibi <68565441+ArminShoeibi@users.noreply.github.com>
Date: Mon, 17 Apr 2023 13:49:54 +0330
Subject: [PATCH] Use auto-property instead of expression-bodied syntax

---
 .../fundamentals/recording-metrics.md              | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/content/getting-started/fundamentals/recording-metrics.md b/content/getting-started/fundamentals/recording-metrics.md
index 5337ed2..12c43c9 100644
--- a/content/getting-started/fundamentals/recording-metrics.md
+++ b/content/getting-started/fundamentals/recording-metrics.md
@@ -16,31 +16,31 @@ Each metric being measured is defined via one the available [metric types]({{< r
 ```csharp
 public static class MyMetricsRegistry
 {
-    public static GaugeOptions Errors => new GaugeOptions
+    public static GaugeOptions Errors { get; } = new GaugeOptions
     {
         Name = "Errors"
     };
 
-    public static CounterOptions SampleCounter => new CounterOptions
+    public static CounterOptions SampleCounter { get; } = new CounterOptions
     {
         Name = "Sample Counter",
         MeasurementUnit = Unit.Calls,
     };
 
-    public static HistogramOptions SampleHistogram => new HistogramOptions
+    public static HistogramOptions SampleHistogram { get; } = new HistogramOptions
     {
         Name = "Sample Histogram",
         Reservoir = () => new DefaultAlgorithmRReservoir(),
         MeasurementUnit = Unit.MegaBytes
     };
 
-    public static MeterOptions SampleMeter => new MeterOptions
+    public static MeterOptions SampleMeter { get; } = new MeterOptions
     {
         Name = "Sample Meter",
         MeasurementUnit = Unit.Calls
     };
 
-    public static TimerOptions SampleTimer => new TimerOptions
+    public static TimerOptions SampleTimer { get; } = new TimerOptions
     {
         Name = "Sample Timer",
         MeasurementUnit = Unit.Items,
@@ -49,7 +49,7 @@ public static class MyMetricsRegistry
         Reservoir = () => new DefaultForwardDecayingReservoir(sampleSize: 1028, alpha: 0.015)
     };
 
-    public static ApdexOptions SampleApdex => new ApdexOptions
+    public static ApdexOptions SampleApdex { get; } = new ApdexOptions
     {
         Name = "Sample Apdex"
     };
@@ -93,4 +93,4 @@ using (metrics.Measure.Apdex.Track(MyMetricsRegistry.SampleApdex))
 ## Next Steps
 
 - [Metric Types]({{< ref "getting-started/metric-types/_index.md" >}})
-- [Configuration Options]({{< ref "getting-started/fundamentals/configuration.md" >}})
\ No newline at end of file
+- [Configuration Options]({{< ref "getting-started/fundamentals/configuration.md" >}})