using System; namespace implicit_conversion { class Program { static void Main(string[] args) { int num1 =20000; int num2 =50000; long total; /*In this the int values are implicitly converted to long data type;*/ /*Programmer need not to tell compiler to do the conversion, it automatically does.*/ total = num1 + num2; Console.WriteLine("Total is : " + total); Console.ReadLine(); } } }
سبحان الله ... تذكرت مؤاخاة النبي عليه الصلاة والسلام بين المهاجرين والأنصار، بوركت أستاذ حسونة.
وانا والله
جزاك الله عنا الف خير الله يبارك فيك.
لم أفهم ما الفائدة بالضبط
ربنا يجزيك كل خير يا أستاذ احمد
شكرا
أحسنت اخي وجزاك الله كل خير وجعله في ميزان حسناتك
الله يجزيك الخير
using System;
namespace implicit_conversion
{
class Program {
static void Main(string[] args) {
int num1 =20000;
int num2 =50000;
long total; /*In this the int values are implicitly converted to
long data type;*/
/*Programmer need not to tell compiler to do the conversion, it
automatically does.*/
total = num1 + num2;
Console.WriteLine("Total is : " + total);
Console.ReadLine(); }
} }