Author: Ebubekir Sezer

Monday November 5th, 2018

Operation Research Problem Solving Using With Excel

Sometimes it can be hard to solve problems in operation research, we can solve problems easily using with the excel. We just have to find Constraints before the using Excel. We just have to follow these steps to solve problem; Open the Excel, click the folder and go the Options. From the Options go to the Additions and choose the Solver and click the Manage. Solver added […]

Friday October 26th, 2018

Visual Studio Android Emulator Internet Connection

In the Visual Studio, when i wrote my codes and try to run it,my emulator did not connect the wifi(internet) and i could not control the my project. To solve this problem follow the steps; Open the Hyper-V Manager and go to the options of your emulator(Which you are using). As you can see there are two Emulator External Network Adapter, delete the Emulator External Network […]

Friday September 7th, 2018

Visual Studio “Waiting for run time checks to complete” Error

Recently, Visual Studio gives errors to build process. In this article, i will tell the solution of why emulator cannot connect with the Visual studio and “Waiting for run time checks to complete” error. Here are the steps of the solution; We will open the run from the start button and run the Registry Editor. In the Regesitry Editor, we should click the HKEY_LOCAL_MACHINE folder from […]

Tuesday May 1st, 2018

Xamarin Pages Types

There are 6 types of pages in Xamarin. These are; Content Page MasterDetail Page Navigation Page Tabbed Page Templated Page Carousel Page You can continue with the pages type which available for your projects. CONTENT PAGE Content Page is the simplest and most using page type. Content Page has 1 page and usually arrange by the StackLayout, Grid or ScrollView. MASTER DETAIL PAGE Master Detail […]

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 […]