Home »
VB.Net »
VB.Net Programs
VB.Net program to demonstrate the Copy() method of the String class
By Nidhi Last Updated : November 11, 2024
String.Copy() Method in VB.Net
The Copy() method is used to create a new string with the value of the existing string.
Syntax
Function Copy (ByVal str as String) as String
Parameter(s)
- Str: String to be copied.
Return Value
It returns the string value to create a new instance of the string with the same value.
VB.Net code to demonstrate the example of String.Copy() method
The source code to demonstrate the Copy() method of the String class is given below. The given program is compiled and executed successfully.
'VB.NET program to demonstrate the Copy()
'method of String class.
Imports System
Module Module1
Sub Main()
Dim str1 As String = "Hello World"
Dim str2 As String
str2 = String.Copy(str1)
Console.WriteLine("Str1: {0}", str1)
Console.WriteLine("Str2: {0}", str2)
End Sub
End Module
Output
Str1: Hello World
Str2: Hello World
Press any key to continue . . .
Explanation
In the above program, we created a module Module1 that contains the Main() function. The Main() function is the entry point for the program.
In the Main() function, we created two strings str1 and str2. Here, we copy the value of str1 to str2 using Copy() method and printed the values of both strings on the console screen.
VB.Net String Programs »