Skip to content

Commit fd43dcd

Browse files
committed
update refs
1 parent 506fca6 commit fd43dcd

File tree

483 files changed

+2528
-2528
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

483 files changed

+2528
-2528
lines changed

xml/Microsoft.CSharp/CSharpCodeProvider.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This class provides methods that can be used to retrieve instances of the C# <xr
4949
> The `CompileAssemblyFrom*` methods aren't supported on .NET Core and .NET 5+. This example only runs on .NET Framework.
5050
5151
:::code language="csharp" source="~/snippets/csharp/Microsoft.CSharp/CSharpCodeProvider/Overview/source.cs" id="Snippet1":::
52-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/CodeDom_CodeProviders/VB/source.vb" id="Snippet1":::
52+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.CSharp/CSharpCodeProvider/Overview/source.vb" id="Snippet1":::
5353
5454
]]></format>
5555
</remarks>
@@ -357,7 +357,7 @@ In .NET Framework apps, you can obtain the value for `providerOptions` from the
357357
The following code example shows the use of the <xref:Microsoft.CSharp.CSharpCodeProvider.GenerateCodeFromMember%2A> method to create a code fragment to be used in a CodeDOM graph. This code example is part of a larger example provided for the <xref:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromMember%2A> method of the <xref:System.CodeDom.Compiler.CodeDomProvider> class.
358358
359359
:::code language="csharp" source="~/snippets/csharp/Microsoft.CSharp/CSharpCodeProvider/GenerateCodeFromMember/program.cs" id="Snippet3":::
360-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/CodeDom_GenerateCodeFromMember/vb/module1.vb" id="Snippet3":::
360+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.CSharp/CSharpCodeProvider/GenerateCodeFromMember/module1.vb" id="Snippet3":::
361361
362362
]]></format>
363363
</remarks>

xml/Microsoft.VisualBasic/VBCodeProvider.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
The following example uses either the C# or Visual Basic code provider to compile a source file. The example checks the input file extension and uses the corresponding <xref:Microsoft.CSharp.CSharpCodeProvider> or <xref:Microsoft.VisualBasic.VBCodeProvider> for compilation. The input file is compiled into an executable file, and any compilation errors are displayed to the console.
4848
4949
:::code language="csharp" source="~/snippets/csharp/Microsoft.CSharp/CSharpCodeProvider/Overview/source.cs" id="Snippet2":::
50-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/CodeDom_CodeProviders/VB/source.vb" id="Snippet2":::
50+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.CSharp/CSharpCodeProvider/Overview/source.vb" id="Snippet2":::
5151
5252
]]></format>
5353
</remarks>
@@ -159,7 +159,7 @@ In .NET Framework apps, you can obtain the value for `providerOptions` from the
159159
160160
The following example shows how to specify the compiler version when creating a new instance of the <xref:Microsoft.VisualBasic.VBCodeProvider> class.
161161
162-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/vbprovider.provideroptions/vb/program.vb" id="Snippet1":::
162+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.VisualBasic/VBCodeProvider/.ctor/program.vb" id="Snippet1":::
163163
164164
]]></format>
165165
</remarks>
@@ -355,7 +355,7 @@ In .NET Framework apps, you can obtain the value for `providerOptions` from the
355355
The following code example shows the use of the <xref:Microsoft.VisualBasic.VBCodeProvider.GenerateCodeFromMember%2A> method to create a code fragment to be used in a CodeDOM graph. This code example is part of a larger example provided for the <xref:System.CodeDom.Compiler.CodeDomProvider.GenerateCodeFromMember%2A> method of the <xref:System.CodeDom.Compiler.CodeDomProvider> class.
356356
357357
:::code language="csharp" source="~/snippets/csharp/Microsoft.CSharp/CSharpCodeProvider/GenerateCodeFromMember/program.cs" id="Snippet3":::
358-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/CodeDom_GenerateCodeFromMember/vb/module1.vb" id="Snippet3":::
358+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.CSharp/CSharpCodeProvider/GenerateCodeFromMember/module1.vb" id="Snippet3":::
359359
360360
]]></format>
361361
</remarks>

xml/Microsoft.Win32.SafeHandles/SafeFileHandle.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
The following code example demonstrates how to open a file using the <xref:Microsoft.Win32.SafeHandles.SafeFileHandle> class and the unmanaged `CreateFile` function.
9696
9797
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32.SafeHandles/SafeFileHandle/Overview/sample.cs" id="Snippet1":::
98-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.SafeHandles.SafeFileHandle/vb/sample.vb" id="Snippet1":::
98+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32.SafeHandles/SafeFileHandle/Overview/sample.vb" id="Snippet1":::
9999
100100
]]></format>
101101
</remarks>
@@ -191,7 +191,7 @@
191191
The following example demonstrates how to open a file by using the <xref:Microsoft.Win32.SafeHandles.SafeFileHandle> class and the unmanaged `CreateFile` function.
192192
193193
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32.SafeHandles/SafeFileHandle/.ctor/sample.cs" id="Snippet1":::
194-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.SafeHandles.SafeFileHandle.ctor/vb/sample.vb" id="Snippet1":::
194+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32.SafeHandles/SafeFileHandle/.ctor/sample.vb" id="Snippet1":::
195195
196196
]]></format>
197197
</remarks>

xml/Microsoft.Win32.SafeHandles/SafeWaitHandle.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The <xref:Microsoft.Win32.SafeHandles.SafeWaitHandle> class is used by the <xref
8282
The following code example demonstrates how to use interop to create a mutex using the <xref:Microsoft.Win32.SafeHandles.SafeWaitHandle> class and the unmanaged `CreateMutex` function.
8383
8484
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32.SafeHandles/SafeWaitHandle/Overview/sample.cs" id="Snippet1":::
85-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.SafeHandles.SafeWaitHandle/vb/sample.vb" id="Snippet1":::
85+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32.SafeHandles/SafeWaitHandle/Overview/sample.vb" id="Snippet1":::
8686
8787
]]></format>
8888
</remarks>
@@ -180,7 +180,7 @@ The following code example demonstrates how to use interop to create a mutex usi
180180
The following code example demonstrates how to use interop to create a mutex using the <xref:Microsoft.Win32.SafeHandles.SafeWaitHandle> class and the unmanaged `CreateMutex` function.
181181
182182
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32.SafeHandles/SafeWaitHandle/.ctor/sample.cs" id="Snippet1":::
183-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.SafeHandles.SafeWaitHandle-ctor/vb/sample.vb" id="Snippet1":::
183+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32.SafeHandles/SafeWaitHandle/.ctor/sample.vb" id="Snippet1":::
184184
185185
]]></format>
186186
</remarks>

xml/Microsoft.Win32/Registry.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The following code example stores values of several data types in an example key
5959
6060
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/CPP/source.cpp" id="Snippet1":::
6161
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/Overview/source1.cs" id="Snippet1":::
62-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/VB/source.vb" id="Snippet1":::
62+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/Overview/source.vb" id="Snippet1":::
6363
6464
]]></format>
6565
</remarks>
@@ -333,7 +333,7 @@ The following code example stores values of several data types in an example key
333333
334334
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/CPP/source.cpp" id="Snippet1":::
335335
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/Overview/source1.cs" id="Snippet1":::
336-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/VB/source.vb" id="Snippet1":::
336+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/Overview/source.vb" id="Snippet1":::
337337
338338
]]></format>
339339
</remarks>
@@ -486,7 +486,7 @@ The following code example stores values of several data types in an example key
486486
487487
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/CPP/source.cpp" id="Snippet1":::
488488
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/Overview/source1.cs" id="Snippet1":::
489-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/VB/source.vb" id="Snippet1":::
489+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/Overview/source.vb" id="Snippet1":::
490490
491491
]]></format>
492492
</remarks>
@@ -576,7 +576,7 @@ The following code example stores values of several data types in an example key
576576
577577
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/CPP/source.cpp" id="Snippet1":::
578578
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/Overview/source1.cs" id="Snippet1":::
579-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/VB/source.vb" id="Snippet1":::
579+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/Overview/source.vb" id="Snippet1":::
580580
581581
]]></format>
582582
</remarks>
@@ -677,7 +677,7 @@ The following code example stores values of several data types in an example key
677677
678678
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/CPP/source.cpp" id="Snippet1":::
679679
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/Overview/source1.cs" id="Snippet1":::
680-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.Registry.GetSet/VB/source.vb" id="Snippet1":::
680+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/Overview/source.vb" id="Snippet1":::
681681
682682
]]></format>
683683
</remarks>

xml/Microsoft.Win32/RegistryHive.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
5555
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR/Microsoft.Win32.RegistryKey.OpenRemoteBaseKey/CPP/source.cpp" id="Snippet1":::
5656
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/RegistryHive/Overview/source.cs" id="Snippet1":::
57-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/Microsoft.Win32.RegistryKey.OpenRemoteBaseKey/VB/source.vb" id="Snippet1":::
57+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/RegistryHive/Overview/source.vb" id="Snippet1":::
5858
5959
]]></format>
6060
</remarks>

0 commit comments

Comments
 (0)