Question: How can we access parent class variable in child class. We can use base.PropertyName. Question: Explain CTS. Common Type System (CTS) is a standard that specifies how type definitions and specific values of types are represented in computer memory…. Continue Reading →
Question: Write a program which return a length of string without using any existing function in C#. Answer: using System; namespace consoleProgram { class Program { static void Main(string[] args) { string str = “my name is pramod kumar thakur”;… Continue Reading →
In this article we learn the difference between var, dynamic and object keyword in c#.
In this article we learn how to add two datatable in c#.
Console.WriteLine(“1234”.GetType()); What is output of this code snippet.