Selection Statement in C# Language
Objective
In programming language, selection statement is very important. With selection statement, you can control the flow of program, and produce a valid output. This section will guide you how to use some selection statements in basic.
Let's go
Selection statement enable you to execute specific blocks of code based on the results of a condition. Here we have two basic selection statement: If statement and switch statement.
If statement
Photo Gallery (Edited, with Login and Upload)
Bantas Programming Language
How to Create Registration Page in PHP/MySQL Using PDO Query
Creating Our Database
First we are going to create our database which stores our data. To create a database: 1. Open phpmyadmin 2.Converting Data Types in C# Language
Objective
This tutorial will explain you to understand how and why a conversion of data type occur in C#. Understanding the conversion will help you to avoid error and lose data when operation happen.
Let's go
When you copy a value from one variable to another variable, a conversion must occur. Also when you want to do a operation on two difference data types, a conversion might also need occur. There are two types of conversion: implicit and explicit conversion.
Implicit Conversion
Page Navigation Using PDO Query in PHP/MySQL
Creating Our Database
First we are going to create our database which stores our data. To create a database: 1. Open phpmyadmin 2. Then create database and name it as "pdo_ret". 3.Understanding C# Language
Objective
In this tutorial, you will understand some basic components in C# Language include:- Types in C# Language
- Variables and Constants
- Identifier and Keywords
- Statements and Expression
- Class
Let's go
In a C# program, we will usually see some basic components like variable, expression, keywords, class. Let's start with all of them to investigate what they are and how to use these components.
Types