|
46 | 46 | <typeparam name="T">Specifies the element type of the linked list.</typeparam>
|
47 | 47 | <summary>Represents a node in a <see cref="T:System.Collections.Generic.LinkedList`1" />. This class cannot be inherited.</summary>
|
48 | 48 | <remarks>
|
49 |
| - <format type="text/markdown"><![CDATA[ |
50 |
| - |
51 |
| -## Remarks |
52 |
| - Each element of the <xref:System.Collections.Generic.LinkedList%601> collection is a <xref:System.Collections.Generic.LinkedListNode%601>. The <xref:System.Collections.Generic.LinkedListNode%601> contains a value, a reference to the <xref:System.Collections.Generic.LinkedList%601> that it belongs to, a reference to the next node, and a reference to the previous node. |
53 |
| - |
54 |
| - |
55 |
| - |
56 |
| -## Examples |
57 |
| - The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
58 |
| - |
| 49 | + <format type="text/markdown"><![CDATA[ |
| 50 | +
|
| 51 | +## Remarks |
| 52 | + Each element of the <xref:System.Collections.Generic.LinkedList%601> collection is a <xref:System.Collections.Generic.LinkedListNode%601>. The <xref:System.Collections.Generic.LinkedListNode%601> contains a value, a reference to the <xref:System.Collections.Generic.LinkedList%601> that it belongs to, a reference to the next node, and a reference to the previous node. |
| 53 | +
|
| 54 | +
|
| 55 | +
|
| 56 | +## Examples |
| 57 | + The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
| 58 | +
|
59 | 59 | :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/cpp/llnctor.cpp" id="Snippet1":::
|
60 | 60 | :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/CS/llnctor.cs" interactive="try-dotnet" id="Snippet1":::
|
61 | 61 | :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/VB/llnctor.vb" id="Snippet1":::
|
62 |
| - |
| 62 | +
|
63 | 63 | ]]></format>
|
64 | 64 | </remarks>
|
65 | 65 | </Docs>
|
|
105 | 105 | <param name="value">The value to contain in the <see cref="T:System.Collections.Generic.LinkedListNode`1" />.</param>
|
106 | 106 | <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> class, containing the specified value.</summary>
|
107 | 107 | <remarks>
|
108 |
| - <format type="text/markdown"><![CDATA[ |
109 |
| - |
110 |
| -## Remarks |
111 |
| - The <xref:System.Collections.Generic.LinkedListNode%601.List%2A>, <xref:System.Collections.Generic.LinkedListNode%601.Next%2A>, and <xref:System.Collections.Generic.LinkedListNode%601.Previous%2A> properties are set to `null`. |
112 |
| - |
113 |
| - |
114 |
| - |
115 |
| -## Examples |
116 |
| - The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
117 |
| - |
| 108 | + <format type="text/markdown"><![CDATA[ |
| 109 | +
|
| 110 | +## Remarks |
| 111 | + The <xref:System.Collections.Generic.LinkedListNode%601.List%2A>, <xref:System.Collections.Generic.LinkedListNode%601.Next%2A>, and <xref:System.Collections.Generic.LinkedListNode%601.Previous%2A> properties are set to `null`. |
| 112 | +
|
| 113 | +
|
| 114 | +
|
| 115 | +## Examples |
| 116 | + The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
| 117 | +
|
118 | 118 | :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/cpp/llnctor.cpp" id="Snippet1":::
|
119 | 119 | :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/CS/llnctor.cs" interactive="try-dotnet" id="Snippet1":::
|
120 |
| - :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/VB/llnctor.vb" id="Snippet1"::: |
121 |
| - |
| 120 | + :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/VB/llnctor.vb" id="Snippet1"::: |
| 121 | +
|
122 | 122 | ]]></format>
|
123 | 123 | </remarks>
|
124 | 124 | </Docs>
|
|
165 | 165 | <summary>Gets the <see cref="T:System.Collections.Generic.LinkedList`1" /> that the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> belongs to.</summary>
|
166 | 166 | <value>A reference to the <see cref="T:System.Collections.Generic.LinkedList`1" /> that the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> belongs to, or <see langword="null" /> if the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> is not linked.</value>
|
167 | 167 | <remarks>
|
168 |
| - <format type="text/markdown"><![CDATA[ |
169 |
| - |
170 |
| -## Examples |
171 |
| - The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
172 |
| - |
| 168 | + <format type="text/markdown"><![CDATA[ |
| 169 | +
|
| 170 | +## Examples |
| 171 | + The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
| 172 | +
|
173 | 173 | :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/cpp/llnctor.cpp" id="Snippet1":::
|
174 | 174 | :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/CS/llnctor.cs" interactive="try-dotnet" id="Snippet1":::
|
175 |
| - :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/VB/llnctor.vb" id="Snippet1"::: |
176 |
| - |
| 175 | + :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/VB/llnctor.vb" id="Snippet1"::: |
| 176 | +
|
177 | 177 | ]]></format>
|
178 | 178 | </remarks>
|
179 | 179 | </Docs>
|
|
214 | 214 | <summary>Gets the next node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
|
215 | 215 | <value>A reference to the next node in the <see cref="T:System.Collections.Generic.LinkedList`1" />, or <see langword="null" /> if the current node is the last element (<see cref="P:System.Collections.Generic.LinkedList`1.Last" />) of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</value>
|
216 | 216 | <remarks>
|
217 |
| - <format type="text/markdown"><![CDATA[ |
218 |
| - |
219 |
| -## Examples |
220 |
| - The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
221 |
| - |
| 217 | + <format type="text/markdown"><![CDATA[ |
| 218 | +
|
| 219 | +## Examples |
| 220 | + The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
| 221 | +
|
222 | 222 | :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/cpp/llnctor.cpp" id="Snippet1":::
|
223 | 223 | :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/CS/llnctor.cs" interactive="try-dotnet" id="Snippet1":::
|
224 | 224 | :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/VB/llnctor.vb" id="Snippet1":::
|
225 |
| - |
| 225 | +
|
226 | 226 | ]]></format>
|
227 | 227 | </remarks>
|
228 | 228 | </Docs>
|
|
263 | 263 | <summary>Gets the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
|
264 | 264 | <value>A reference to the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1" />, or <see langword="null" /> if the current node is the first element (<see cref="P:System.Collections.Generic.LinkedList`1.First" />) of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</value>
|
265 | 265 | <remarks>
|
266 |
| - <format type="text/markdown"><![CDATA[ |
267 |
| - |
268 |
| -## Examples |
269 |
| - The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
270 |
| - |
| 266 | + <format type="text/markdown"><![CDATA[ |
| 267 | +
|
| 268 | +## Examples |
| 269 | + The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
| 270 | +
|
271 | 271 | :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/cpp/llnctor.cpp" id="Snippet1":::
|
272 | 272 | :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/CS/llnctor.cs" interactive="try-dotnet" id="Snippet1":::
|
273 | 273 | :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/VB/llnctor.vb" id="Snippet1":::
|
274 |
| - |
| 274 | +
|
275 | 275 | ]]></format>
|
276 | 276 | </remarks>
|
277 | 277 | </Docs>
|
|
321 | 321 | <summary>Gets the value contained in the node.</summary>
|
322 | 322 | <value>The value contained in the node.</value>
|
323 | 323 | <remarks>
|
324 |
| - <format type="text/markdown"><![CDATA[ |
325 |
| - |
326 |
| -## Remarks |
327 |
| - This property is set in the <xref:System.Collections.Generic.LinkedListNode%601.%23ctor%2A>. |
328 |
| - |
329 |
| - |
330 |
| - |
331 |
| -## Examples |
332 |
| - The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
333 |
| - |
| 324 | + <format type="text/markdown"><![CDATA[ |
| 325 | +
|
| 326 | +## Remarks |
| 327 | + This property is set in the <xref:System.Collections.Generic.LinkedListNode%601.%23ctor%2A>. |
| 328 | +
|
| 329 | +
|
| 330 | +
|
| 331 | +## Examples |
| 332 | + The following code example creates a <xref:System.Collections.Generic.LinkedListNode%601>, adds it to a <xref:System.Collections.Generic.LinkedList%601>, and tracks the values of its properties as the <xref:System.Collections.Generic.LinkedList%601> changes. |
| 333 | +
|
334 | 334 | :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/cpp/llnctor.cpp" id="Snippet1":::
|
335 | 335 | :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/CS/llnctor.cs" interactive="try-dotnet" id="Snippet1":::
|
336 |
| - :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/VB/llnctor.vb" id="Snippet1"::: |
337 |
| - |
| 336 | + :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Collections.Generic.LinkedListNode/VB/llnctor.vb" id="Snippet1"::: |
| 337 | +
|
338 | 338 | ]]></format>
|
339 | 339 | </remarks>
|
340 | 340 | </Docs>
|
|
0 commit comments