Skip to content

Commit ddae95a

Browse files
committed
code fix
1 parent eb1886c commit ddae95a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/key-vault/keys/quick-create-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ In this example, the name of your key vault is expanded to the key vault URI, in
141141

142142
```csharp
143143
var keyVaultName = Environment.GetEnvironmentVariable("KEY_VAULT_NAME");
144-
var kvUri = "https://" + keyVaultName + ".vault.azure.net";
144+
var kvUri = $"https://{keyVaultName}.vault.azure.net";
145145

146146
var client = new KeyClient(new Uri(kvUri), new DefaultAzureCredential());
147147
```

0 commit comments

Comments
 (0)