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,945 questions

51,887 answers

573 users

How to convert char array to bytes in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        char[] char_array = { 'a', 'g', '\x6F' };
        
		foreach (char ch in char_array) {
		   try {
			  byte b = Convert.ToByte(ch);
			  Console.WriteLine("{0} converted to {1}", ch, b);
		   }
		   catch (OverflowException) {
			  Console.WriteLine("Unable to convert");
		   }
		}
    }
}




/*
run:

a converted to 97
g converted to 103
o converted to 111

*/

 



answered Jan 21, 2021 by avibootz

Related questions

1 answer 171 views
2 answers 266 views
2 answers 215 views
1 answer 86 views
86 views asked Aug 20, 2023 by avibootz
1 answer 119 views
119 views asked Aug 20, 2023 by avibootz
1 answer 165 views
...