dynamic
dynamic bypasses compile‑time type checking and resolves types at runtime.
dynamic data = 10;Console.WriteLine(data + 5);data = "Hello";Console.WriteLine(data.Length);Run the Application
Section titled “Run the Application”dotnet runResult
Section titled “Result”155