In this article we will try to understand what is event and how to handle and raise Events. Note: Before start reading this article please hold a clear concept on delegates. Follow the link to read the previous article on Delegates.
Category: C# Advance
Delegates
In this article we will try to understand what is delegate, how to use it. Dictionary meaning: “A person sent or authorized to represent others “or “A person designated to act for or represent another or others”
Encapsulation VS Abstraction
This is a bit confusing while both are like same, cause the definition where abstraction is showing only necessary and the encapsulation is hiding complexity. It’s seems that they are similar, but actually they’re not, here’s how they are differ: Abstraction: Abstraction is a concept of hiding mechanism (কি লুকাব) Only showing those parts which is necessary. It […]
Constant VS Read-Only
Dictionary Meaning: The meaning of “Constant” is “Something that does not or cannot change or vary.” What is Constant? Constants are unchangeable value that do not change for the life of the program. Constants are declared with the const modifier.