ابدأ بالتواصل مع الأشخاص وتبادل معارفك المهنية

أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.

متابعة

What will be the output of the following conversion?

           static void Main(string[] args)

 {

     char a = 'A';

     string b = "a";

     Console.WriteLine(Convert.ToInt(a));

     Console.WriteLine(Convert.ToInt(Convert.Tochar(b)));

     Console.ReadLine();

 

 }

 

a)1,b),c),d),1

user-image
تم إضافة السؤال من قبل Mohannad Bakbouk , Full Stack Web Developer , Almohtaseb
تاريخ النشر: 2016/10/19
Chetan Bhadra
من قبل Chetan Bhadra , Software Engineer , Verve System Pvt. Ltd.

Answer is: A: 97 & B: 98

Because we converting character to integer so it give us ascii value

المزيد من الأسئلة المماثلة