Showing posts with label Visual Studio 2010. Show all posts
Showing posts with label Visual Studio 2010. Show all posts

26.6.13

Basics of OOPs (Object Oriented Programming System)


Introduction

Object Oriented Programming system or OOPs or OOP model come into light when the 'Structural Programming Methodology/Approach' had been became unsuccessful to manage large chunk of codes and could not able to much help in 'reusability' of existing code & as well as in 'performance'. Also 'security' of data could not be maintained effectively. Lets start with understanding what is actually OOP system.

11.6.13

Select start up project in just 3 steps in visual studio 2008/2010/2012

Hello guys,

Well sometimes, you have to add more than one project in Solution explorer. Then you may struck in that the desired project is not executing when you press either Ctrl+F5 or F5. So lets drive into it without wasting a second to do something else...

9.6.13

Starting with array variable

Intro to Array variable

Array is just like another variable in C#, which holds the same type of value under the same name.
E.g. nameOfStudents (string type array), marksOfSubject (integer/Number type array), listOfTemperature (double/float type array).


So here is a quick and short work around on Arrays...

whether to press F5 or ctrl+F5 to execute my program

(in the previous post you have read about to write your first c# program under Visual Studio environment. Today we shall come across the differences of using F5 and ctrl+F5 to run/execute our program.)

3.6.13

How to write c sharp program in 8 simple steps using visual studio 2008/2010


How to write a program in visual studio 2008/2010

It is really very easy to use an Integrated Development Environment or IDE to practice any programming language.

However, doing programming practice in that is good but don't wish to rely on 'Intellisense' feature. Other wise you would not be able to recall which syntax you would type or which class you should write after '.'

Well to do just open visual studio. And follow these steps
>> click on File menu and then New.
>> click on New Project.
>> Select your project type, lets pick, Console Application.
>> Now proceed, type the name that you want to give to your namespace, in first box labelled as Name.
>> Browse the location or let visual studio save this in its own place created already under Library folder by the name of Visual Studio 2010.
>> now type the solution name which is of Visual studio use and also you could remember by it that this specific programs have been stored here.

>> So it will another Tab/window under its environment which is named as Program.cs

>> now you can write your c# code under the 'firstprogram' namespace.
(you can find this is in following snapshot)



So it was a short and sweet example of how you may create a c# program. I have not given screen shots of each steps, because i assume the above are self-explanatory. Just do it buddies. However in case of any just write under here in comment box.

Good Luck!
Thanks!!

Search This Blog

Let make your friend aware about this post