is and as in C#
In this post, you will learn how to work with is and as so that you can use that same knowledge and thus evolve. is serves to check if a certain object is compatible with a certain type; a as works as if it were...
In this post, you will learn how to work with is and as so that you can use that same knowledge and thus evolve. is serves to check if a certain object is compatible with a certain type; a as works as if it were...
In this post, you will learn how to work with delegate so that you can use that same knowledge and thus evolve. the delegate is a type that represents references to methods with a parameter list and a return type; in short, when a delegate...
In this post, you will learn how to work with abstract so that you can use that same knowledge and thus evolve. the abstract is used to indicate that a given class cannot be instantiated; in short, abstract classes are considered “incomplete” classes; it is...
In this post, you will learn how to work with partial so that you can use that same knowledge and thus evolve. the partial is used to inform the compiler that the given class exists in another file (or much more than one); in short,...
In this post, you will learn how to work with struct so that you can use that same knowledge and thus evolve. the structs (structures) are almost the same as the classes, however, they are much more limited; the differences are that: when we are...
In this post, you will learn how to work with interfaces so that you can use that same knowledge and thus evolve. an interface contains definitions for a group of related features that a class or structure (we’ll talk about structs in the next video)...