Skip to content

Commit dd98687

Browse files
author
Frank Hu
authored
(AzureCXP) Updated Code Sectoin
Removed word new from the builder.build() code. Shouldn't require the new keyword. ------- cc: @jmprieur GitHub Issue: https://github.com/MicrosoftDocs/azure-docs/issues/43324
1 parent efcc49c commit dd98687

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/develop/quickstart-v2-uwp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Then, MSAL is initialized using the following code:
122122

123123
```csharp
124124
public static IPublicClientApplication PublicClientApp;
125-
PublicClientApp = new PublicClientApplicationBuilder.Create(ClientId)
125+
PublicClientApp = PublicClientApplicationBuilder.Create(ClientId)
126126
.Build();
127127
```
128128

0 commit comments

Comments
 (0)