Showing posts from August, 2024

What is Namespace ?

What is Namespace ? A namespace is a concept used in programming and databases to organize and group entities like variables, functions, classes, or objects so that they can be uniquely identified and managed within a broader sy…

How to disabled Type Functionality in Asp Webform TextBox ?

How to disabled Type Functionality in Asp Webform TextBox ? Sometimes we need to without type anything text box get a value , Like when Textmode is calender that time only give Date Choose option  Example <asp:TextBox ID=”t…

What is Boxing and Unboxing in C# ?

What is Boxing and Unboxing in C# ? Boxing Definition : the process of converting a value type to the object type or any interface type implemented by this value type Boxing is implicit Example int i = 10; object o = i; //perf…

What is Arraylist?

What is  Arraylist ? ArrayList is a non-generic collection of objects whose size increases dynamically. It is the same as Array except that its size increases dynamically. An ArrayList can store elements of any data type, includi…

What is Partial class ?

What is Partial class ? A class in which code can be written in two or more files is known as a partial class. Partial class is a feature that allows a class to be split into multiple files.  These files are then combined into a …

What is Logging in Dot net core ?

What is Logging in Dot net core ? Logging in ASP.NET Core is a fundamental feature that provides developers with the ability to track and record runtime information about the project This information typically includes events, …

Load More
That is All