From 5408f5c4d09cf76aebffb3abfc964bc3a0d2cfdf Mon Sep 17 00:00:00 2001 From: MHDeveloper30 <61367601+MHDeveloper30@users.noreply.github.com> Date: Mon, 2 Nov 2020 17:36:09 +0000 Subject: [PATCH] Update how-to-validate-application-settings.md (#101) --- .../winforms/advanced/how-to-validate-application-settings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet-desktop-guide/framework/winforms/advanced/how-to-validate-application-settings.md b/dotnet-desktop-guide/framework/winforms/advanced/how-to-validate-application-settings.md index bfe3397..be62bb8 100644 --- a/dotnet-desktop-guide/framework/winforms/advanced/how-to-validate-application-settings.md +++ b/dotnet-desktop-guide/framework/winforms/advanced/how-to-validate-application-settings.md @@ -46,7 +46,7 @@ The following procedures show how to test for a valid birth date using either th - If you created your settings using the Visual Studio Application Settings dialog box in the **Property Editor**, you can retrieve the default settings object generated for your language through the following expression. ```csharp - Configuration.Settings.Default + Properties.Settings.Default ``` ```vb