Month: March 2018

Friday March 30th, 2018

C# Array

Array is the structure which keep the variables consecutively on the ram. Arrays are important for the all programing languages. With C programming language, I made the some programs and we can make these programs with C#. For the examples click here. Firstly, I will make fibonacci loops using with the arrays.  Code Sequence; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp2 { class […]

Thursday March 29th, 2018

C# Methods (Functions)

In object-oriented programming languages, functions are called methods. We do everything same with when we doing something with functions using with the methods. Briefly methods and functions are same thing. Purpose of using methods is instead of coding same thing again and again, we just define method and call that method. Methods make the coding easier. Firstly, I will use already existing method. This method is Random method. Program will be […]

Wednesday March 28th, 2018

C# If Else

In programming language, to make decisions are important and for make a decision, we use some terms. I will use If Else terms in C#.Actually, I was talk about the if else terms in C programming language but For the starting programming with the C#, they can click here and they can read my essay. Program will ask the user income for a month and […]

Sunday March 18th, 2018

C# – Class

In C# , We can define the class and thanks to this class we can define the objects. In defined class, we can fill the objects later. In this essay, I will talk about the using the class. You can also understand from the code sequence. When we define the class, we should determine the class name because we call this class with the class name. If you make a […]

Saturday March 10th, 2018

C#

C# , is a language which Microsoft developed. C# was made by being influenced by Java and C++ programming language. C# improved the things which you can do using by the C or C++.  For coding using with the C# , I will use the Visual Studio. You can click here for the install Visual Studio. I can do everything which i did in C with the C#. There […]