CSharp examples for Language Basics:Variable
Create variables for various types
using System;//from w w w .j a v a 2 s. c o m class Program { static void Main(string[] args) { dynamic anotherName = "Ahmed"; int length = anotherName.Length; } }