From 7dbe814be2064adf93f1ad525ef55f49a5f806bd Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Wed, 24 Feb 2021 10:52:18 +0100 Subject: [PATCH] Update docs/sdks/dot_net.md --- docs/sdks/dot_net.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sdks/dot_net.md b/docs/sdks/dot_net.md index 7720818cb4..3030362e32 100644 --- a/docs/sdks/dot_net.md +++ b/docs/sdks/dot_net.md @@ -50,7 +50,7 @@ You should change the URL and the Authorization header (API secret) with the cor Now that we have initialized the client SDK we can start using feature toggles defined in Unleash in our application. To achieve this we have the “isEnabled” method available, which will allow us to check the value of a feature toggle. This method will return true or false based on whether the feature should be enabled or disabled for the current request. -```java +```csharp if (unleash.IsEnabled("Demo")) { //do some magic