Skip to content

Commit 5392e97

Browse files
authored
formatting fixes (#5481)
* formatting fixes * Update processing-the-xml-file.md
1 parent 4fcee62 commit 5392e97

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/csharp/programming-guide/xmldoc/processing-the-xml-file.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The compiler generates an ID string for each construct in your code that is tagg
3535

3636
- Intrinsic types (for example, ELEMENT_TYPE_I4, ELEMENT_TYPE_OBJECT, ELEMENT_TYPE_STRING, ELEMENT_TYPE_TYPEDBYREF. and ELEMENT_TYPE_VOID) are represented as the fully qualified name of the corresponding full type. For example, System.Int32 or System.TypedReference.
3737

38-
- ELEMENT_TYPE_PTR is represented as a '*' following the modified type.
38+
- ELEMENT_TYPE_PTR is represented as a '\*' following the modified type.
3939

4040
- ELEMENT_TYPE_BYREF is represented as a '\@' following the modified type.
4141

@@ -63,11 +63,11 @@ The compiler generates an ID string for each construct in your code that is tagg
6363

6464
- For conversion operators only (op_Implicit and op_Explicit), the return value of the method is encoded as a '~' followed by the return type, as encoded above.
6565

66-
- For generic types, the name of the type will be followed by a back tick and then a number that indicates the number of generic type parameters. For example,
66+
- For generic types, the name of the type is followed by a backtick and then a number that indicates the number of generic type parameters. For example:
6767

6868
``<member name="T:SampleClass`2">`` is the tag for a type that is defined as `public class SampleClass<T, U>`.
6969

70-
For methods taking generic types as parameters, the generic type parameters are specified as numbers prefaced with back ticks (for example \`0,`1). Each number representing a zero-based array notation for the type's generic parameters.
70+
For methods taking generic types as parameters, the generic type parameters are specified as numbers prefaced with backticks (for example \`0,\`1). Each number representing a zero-based array notation for the type's generic parameters.
7171

7272
## Examples
7373
The following examples show how the ID strings for a class and its members would be generated:

0 commit comments

Comments
 (0)