How to hava a Complex Password in C#

Submitted by donbermoy on
Today in C#, we will create a program that can determine if the inputted password is complex or not. Strong passwords meet a number of requirements for complexity - including length and character categories - that make passwords more difficult for attackers to determine. Establishing strong password policies for your organization can help prevent attackers from impersonating users and can thereby help prevent the loss, exposure, or corruption of sensitive information. Now, let's start this tutorial! 1.

Introduction to Arrays

Submitted by moazkhan on

Introduction to Arrays

In this part you will learn: 1. Arrays 2. Sorting using arrays 3. Constants 4. Showing output In this tutorial I will teach you how to use arrays. What is an Array ? An array is a set of variables which you can declare in a single statement. For example if you want to make a result calculating program you need to declare the total number of students first. So instead of declaring student1, student2 etc you can write int students[40]; in this way we declared 40 variables in a single statement.

Random Line of Text Selector in C#

Submitted by donbermoy on
This tutorial will teach you how to create a program that selects a line of text from a text file using C#. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Applicationin C# for this tutorial by following the following steps in Microsoft Visual Studio 2010: Go to File, click New Project, and choose Windows Application. 2. Next, add a button named Button1 to have the random line selector.

Get Name of Multiple TextBoxes Control in C#

Submitted by donbermoy on
This is a simple tutorial in which we are going to get all the name of multiple textboxes in C# using a loop. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio 2010: Go to File, click New Project, and choose Windows Application. 2. Drag any textbox that you want and only one Button.

Time Interval in C#

Submitted by donbermoy on
Today in C#, i will teach you to get a time interval in C#. In here, we will use the TimeSpan properties for getting the time interval. It segregates the hours, minutes, seconds, millisecond and even the tick of the clock. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio 2010: Go to File, click New Project, and choose Windows Application and name it as TimeInterval. 2.

Uploading POST Data to PHP in C#

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create POST data uploader in C#. POST or GET? If you don't know what the difference is between POST and GET, these are the methods used by PHP to gain information from external sources that parse the data to those PHP pages. GET is URL based such as; index.php?id=2 Id is 2. And POST is behind the scenes for sensitive information such as passwords. Project: So first we want to create a basic C# project through the File > New Project wizard.

Learning Do while LOOP

Submitted by moazkhan on
In this part you will learn: 1. Do while LOOP 2. C syntax 3. Showing output In this tutorial I will teach you how to use do while loops in C. We have already covered for loops and now we know what are loops. In this tutorial I will teach you how to use a Do while loop in C. We have previously covered how to use a and now we know how loops work. What is a DO WHILE LOOP? A Do while loop is somewhat similar to a While loop. It has there necessary statements initialization, condition and increment.