Skip to content

Commit 0716810

Browse files
authored
Added missing descriptions. (#19699)
* Added missing descriptions. * Edited descriptions.
1 parent 80450c9 commit 0716810

20 files changed

+20
-0
lines changed

docs/csharp/programming-guide/file-system/how-to-copy-delete-and-move-files-and-folders.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "How to copy, delete, and move files and folders - C# Programming Guide"
3+
description: Learn how to copy, delete, and move files and folders using the File, Directory, FileInfo, and DirectoryInfo classes.
34
ms.date: 07/20/2015
45
helpviewer_keywords:
56
- "I/O [C#]"

docs/csharp/programming-guide/file-system/how-to-create-a-file-or-folder.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "How to create a file or folder - C# Programming Guide"
3+
description: Learn how to create a file or folder programmatically. You can create a folder, a subfolder, a file in the subfolder, and write data to that file.
34
ms.date: 07/20/2015
45
helpviewer_keywords:
56
- "folders [C#]"

docs/csharp/programming-guide/file-system/how-to-create-a-key-in-the-registry.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "How to create a key in the registry - C# Programming Guide"
3+
description: Learn how to create a key in the registry. See a code example, compiling instructions, and additional available resources.
34
ms.date: 07/20/2015
45
helpviewer_keywords:
56
- "registry, adding keys and values [C#]"

docs/csharp/programming-guide/file-system/how-to-get-information-about-files-folders-and-drives.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "How to get information about files, folders, and drives - C# Programming Guide"
3+
description: Learn how to get information about files, folders, and drives. See a code example and additional available resources.
34
ms.date: 07/20/2015
45
helpviewer_keywords:
56
- "files [C#], getting information about"

docs/csharp/programming-guide/file-system/how-to-iterate-through-a-directory-tree.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "How to iterate through a directory tree - C# Programming Guide"
3+
description: Learn how to iterate through a directory tree. Access each file in each nested subdirectory under a specified root folder.
34
ms.date: 07/20/2015
45
helpviewer_keywords:
56
- "iterating through folders [C#]"

docs/csharp/programming-guide/file-system/how-to-provide-a-progress-dialog-box-for-file-operations.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "How to provide a progress dialog box for file operations - C# Programming Guide"
3+
description: Learn how to provide a progress dialog box for file operations using the CopyFile (String, String, UIOption) method.
34
ms.date: 07/20/2015
45
helpviewer_keywords:
56
- "progress dialog [C#]"

docs/csharp/programming-guide/file-system/how-to-read-a-text-file-one-line-at-a-time.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "How to read a text file one line at a time - C# Programming Guide"
3+
description: Learn how to read a text file one line at a time. See a code example and view additional available resources.
34
ms.date: 07/20/2015
45
helpviewer_keywords:
56
- "ReadLine method [C#]"

docs/csharp/programming-guide/file-system/how-to-read-from-a-text-file.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "How to read from a text file - C# Programming Guide"
3+
description: Learn how to read from a text file using static methods from the File class. See a code example and view additional available resources.
34
ms.date: 07/20/2015
45
f1_keywords:
56
- "StreamReader.ReadToEnd"

docs/csharp/programming-guide/file-system/how-to-write-to-a-text-file.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "How to write to a text file - C# Programming Guide"
3+
description: Learn how to write a text file with C#. See several code examples and view additional available resources.
34
ms.date: 07/20/2015
45
f1_keywords:
56
- "TextWriter.WriteLine"

docs/csharp/programming-guide/generics/constraints-on-type-parameters.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Constraints on type parameters - C# Programming Guide"
3+
description: Learn about constraints on type parameters. Constraints tell the compiler what capabilities a type argument must have.
34
ms.date: 04/12/2018
45
helpviewer_keywords:
56
- "generics [C#], type constraints"

0 commit comments

Comments
 (0)