Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
Syntax
Public Shared Function Copy ( _
str As String _
) As Stringpublic static string Copy(
string str
)public:
static String^ Copy(
String^ str
)static member Copy :
str:string -> string
Parameters
- str
- Type: System
. . :: . String
The string to copy.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | str is |
Examples
The following example displays two disimilar strings referenced by two variables, creates a copy of the first string, assigns a reference to the new string to the second variable, then displays the two strings referenced by the variables to demonstrate that the strings are now identical.
' Sample for String.Copy()
Imports System
Class Sample
Public Shared Sub Main()
Dim str1 As String = "abc"
Dim str2 As String = "xyz"
Console.WriteLine("1) str1 = '{0}'", str1)
Console.WriteLine("2) str2 = '{0}'", str2)
Console.WriteLine("Copy...")
str2 = [String].Copy(str1)
Console.WriteLine("3) str1 = '{0}'", str1)
Console.WriteLine("4) str2 = '{0}'", str2)
End Sub 'Main
End Class 'Sample
'
'This example produces the following results:
'1) str1 = 'abc'
'2) str2 = 'xyz'
'Copy...
'3) str1 = 'abc'
'4) str2 = 'abc'
'
// Sample for String.Copy()
using System;
class Sample {
public static void Main() {
string str1 = "abc";
string str2 = "xyz";
Console.WriteLine("1) str1 = '{0}'", str1);
Console.WriteLine("2) str2 = '{0}'", str2);
Console.WriteLine("Copy...");
str2 = String.Copy(str1);
Console.WriteLine("3) str1 = '{0}'", str1);
Console.WriteLine("4) str2 = '{0}'", str2);
}
}
/*
This example produces the following results:
1) str1 = 'abc'
2) str2 = 'xyz'
Copy...
3) str1 = 'abc'
4) str2 = 'abc'
*/
// Sample for String::Copy()
using namespace System;
int main()
{
String^ str1 = "abc";
String^ str2 = "xyz";
Console::WriteLine( "1) str1 = '{0}'", str1 );
Console::WriteLine( "2) str2 = '{0}'", str2 );
Console::WriteLine( "Copy..." );
str2 = String::Copy( str1 );
Console::WriteLine( "3) str1 = '{0}'", str1 );
Console::WriteLine( "4) str2 = '{0}'", str2 );
}
/*
This example produces the following results:
1) str1 = 'abc'
2) str2 = 'xyz'
Copy...
3) str1 = 'abc'
4) str2 = 'abc'
*/
Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.