Skip to content

Commit e878da9

Browse files
authored
Small punctuation fix
1 parent 7741df2 commit e878da9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/csharp/programming-guide/concepts/serialization/walkthrough-persisting-an-object-in-visual-studio.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Although you can set an object's properties to default values at design time, an
2828
In this walkthrough, you will create a simple `Loan` object and persist its data to a file. You will then retrieve the data from the file when you re-create the object.
2929

3030
> [!IMPORTANT]
31-
> This example creates a new file, if the file does not already exist. If an application must create a file, that application must `Create` permission for the folder. Permissions are set by using access control lists. If the file already exists, the application needs only `Write` permission, a lesser permission. Where possible, it is more secure to create the file during deployment, and only grant `Read` permissions to a single file (instead of Create permissions for a folder). Also, it is more secure to write data to user folders than to the root folder or the Program Files folder.
31+
> This example creates a new file if the file does not already exist. If an application must create a file, that application must `Create` permission for the folder. Permissions are set by using access control lists. If the file already exists, the application needs only `Write` permission, a lesser permission. Where possible, it is more secure to create the file during deployment, and only grant `Read` permissions to a single file (instead of Create permissions for a folder). Also, it is more secure to write data to user folders than to the root folder or the Program Files folder.
3232
3333
> [!IMPORTANT]
3434
> This example stores data in a binary format file. These formats should not be used for sensitive data, such as passwords or credit-card information.
@@ -85,7 +85,7 @@ Although you can set an object's properties to default values at design time, an
8585

8686
### To create a test application
8787

88-
1. To add a Windows Forms Application project to your solution, on the **File** menu, choose **Add**,**New Project**.
88+
1. To add a Windows Forms Application project to your solution, on the **File** menu, choose **Add**, **New Project**.
8989

9090
2. In the **Add New Project** dialog box, choose **Windows Forms Application**, and enter `LoanApp` as the name of the project, and then click **OK** to close the dialog box.
9191

@@ -227,4 +227,4 @@ Although you can set an object's properties to default values at design time, an
227227

228228
## See Also
229229
[Serialization (C# )](../../../../csharp/programming-guide/concepts/serialization/index.md)
230-
[C# Programming Guide](../../../../csharp/programming-guide/index.md)
230+
[C# Programming Guide](../../../../csharp/programming-guide/index.md)

0 commit comments

Comments
 (0)