.NET C#

Identifiers & Keywords

Identifiers C# Identifiers are the name given to entities such as variables, methods, classes, etc. They are tokens in a program which uniquely identify an element. For example, From code above value is the variable which is why we call it the identifier. As you will find out later int is consider a “reserved” keyword
navigation drawer

Android Navigation Drawer

Hello programming world, today it looks like you are interested in trying to implement a navigational drawer within you application. Within this tutorial we are going to be focusing on drawer implementation with Kotlin but if you are interested in learning how in Java or Swift. NavigationDrawer or also known NavigationView which is a panel

Discovering C# with Console

“Hello World!” program in C#. This will get you familiar with the basic syntax and requirements of a C# program.
With Swift there are multiple ways to loop through a collection of "items"
val vs var

Val vs Var

Will learn What is the actual difference between val and var.

Android w/ Fragments

A whole activity which we can see on our screen and if we only need to modify a small part, how we can do that with any modification in activity? So, we need a fragment.
TOP