Visual Studio'yu açtık ve Console App (.Net Framework) uygulaması oluşturduk using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TypesAndVariables { class Program { static void Main(string[] args) { //Value Types //Console.WriteLine("Hello World!"); int number1 = 2147483647; //it takes integer value of between -2147483648, 2147483647 //4 Byte - 32 Bit long number2 =... Okumaya Devam et →
