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

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,690 questions

55,449 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 150 views
1 answer 195 views
2 answers 233 views
233 views asked Aug 15, 2022 by avibootz
1 answer 182 views
1 answer 255 views
2 answers 312 views
1 answer 245 views
...