Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to copy char array into another in C#

1 Answer

0 votes
using System;

// Array.Copy(Array, Int32, Array, Int32, Int32)

public class Example
{
	public static void Main(string[] args) {

		char[] src = new char[] {'a', 'b', 'c', 'd', 'e', 'f', 'g'};
		char[] dest = new char[src.Length];

		Array.Copy(src, 0, dest, 0, src.Length);

		foreach (char ch in dest) {
			Console.WriteLine(ch);
		}
	}
}




/*
run:
   
a
b
c
d
e
f
g

*/

 



answered Aug 15, 2022 by avibootz

Related questions

1 answer 108 views
1 answer 153 views
2 answers 169 views
169 views asked Aug 15, 2022 by avibootz
1 answer 128 views
1 answer 188 views
2 answers 249 views
1 answer 194 views
...