Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,000 members, 7,806,913 topics. Date: Wednesday, 24 April 2024 at 06:48 AM

Application Development Using Csharp (C#) - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Application Development Using Csharp (C#) (9541 Views)

Csharp Question: My Debug Wont Work, How Do I Solve This? / Learn Mobile Development Using Flutter LIVE / Are You at beginners Or Mid-level With Web Development Using Python? See This! (2) (3) (4)

(1) (2) (3) (4) (5) (Reply) (Go Down)

Application Development Using Csharp (C#) by omoluabiguy: 5:02am On Nov 23, 2017
Homage to all the programmers in the House!
Before I proceed, I’ll like to crave your indulgence on my programming background and current profile.

I have been coding Java, C++, PhP and C# for a little over 7 years now and lately I have been getting really deep into some Advance CSharp Application development; Infact I have been digging more research in the entire .Net Framework as a whole.
That being said,

I’ll like to create a thread to teach interested followers some C# programming from basics to intermediate to Advance.

As we proceed, kindly click on the link below to subscribe to my YouTube channel for more video tutorials

https://www.youtube.com/channel/UCwNrlP_X_VV4vg00P2QmDnw

#FollowMe!
Re: Application Development Using Csharp (C#) by omoluabiguy: 5:09am On Nov 23, 2017
This tutorial will teach you basic C# programming and will also take you through various advanced concepts related to C# programming language.

You would need a Visual Studio community or enterprise IDE downloaded on your PC to get your hands dirty on the practical aspects
Re: Application Development Using Csharp (C#) by EXICON(m): 5:11am On Nov 23, 2017
Great
Following
Re: Application Development Using Csharp (C#) by bigtt76(f): 5:12am On Nov 23, 2017
Great! I'm on the trail with you
Re: Application Development Using Csharp (C#) by omoluabiguy: 5:18am On Nov 23, 2017
using System;

namespace HelloWorldApplication {

class HelloWorld {

static void Main(string[] args) {
/* my first program in C# */
Console.WriteLine("Hello World"wink;
Console.ReadKey();
}
}
}

Explanation line by line:
Namespace HelloWorldApplication comes up automatically after creating your project in the Visual studio IDE

HelloWorld is the class name you set while creating a new project in your IDE

Static void main also comes with the IDE frame work, you literally don’t need to worry about that. The .Net framework has already made programming easy with default syntax and some intelisence

Console.WriteLine is a command used for whatever you want to be printed as output after compiling.

Console.ReadKey() or Console.ReadLine() is a codeline command that allows the printed output to remain visible after compiling. Without the Console.ReadKey(), once your program run, it will automatically close by itself, but if you include the Console.ReadKey(), it keeps the output visible after running without closing or exiting by itself
Re: Application Development Using Csharp (C#) by omoluabiguy: 6:34am On Nov 23, 2017
Advanced Coders can also chip in and rub ideas while I take the beginners thru basics

1 Like

Re: Application Development Using Csharp (C#) by LotusFan: 7:40am On Nov 23, 2017
Hnmmmmn cool...
Re: Application Development Using Csharp (C#) by omoluabiguy: 7:47am On Nov 23, 2017
The following reasons make C# a widely used professional language −

It is a modern, general-purpose programming language
It is object oriented.
It is component oriented.
It is easy to learn.
It is a structured language.
It produces efficient programs.
It can be compiled on a variety of computer platforms.
It is a part of .Net FrameworK

1 Like

Re: Application Development Using Csharp (C#) by omoluabiguy: 7:48am On Nov 23, 2017
Following is the list of few important features of C# −

Boolean Conditions
Automatic Garbage Collection
Standard Library
Assembly Versioning
Properties and Events
Delegates and Events Management
Easy-to-use Generics
Indexers
Conditional Compilation
Simple Multithreading
LINQ and Lambda Expressions
Integration with Windows
Re: Application Development Using Csharp (C#) by eyecode: 12:34pm On Nov 23, 2017
Cool
Re: Application Development Using Csharp (C#) by rushman003: 4:25pm On Nov 23, 2017
omoluabiguy:
Following is the list of few important features of C# −

Boolean Conditions
Automatic Garbage Collection
Standard Library
Assembly Versioning
Properties and Events
Delegates and Events Management
Easy-to-use Generics
Indexers
Conditional Compilation
Simple Multithreading
LINQ and Lambda Expressions
Integration with Windows
Wow! I would love to participate or even have one on one training with you omoluabi!
There's opportunity in there for you sir. Recently in my firm we had to build a software for one of our security system called ids, we are into it security networking in particular, I know a little bit of PHP so I was given the program to write but PHP couldn't do the work because we are dealing with a network device , had to invite a friend who's good in vb.net tho he used c# and he was well paid. Please check your pm and let discuss

1 Like

Re: Application Development Using Csharp (C#) by omoluabiguy: 7:07pm On Nov 23, 2017
rushman003:

Wow! I would love to participate or even have one on one training with you omoluabi!
There's opportunity in there for you sir. Recently in my firm we had to build a software for one of our security system called ids, we are into it security networking in particular, I know a little bit of PHP so I was given the program to write but PHP couldn't do the work because we are dealing with a network device , had to invite a friend who's good in vb.net tho he used c# and he was well paid. Please check your pm and let discuss


Interesting, glad to know there is a huge demand for C# these days. C# and Java is really taking over the programming market hence the awareness for people to key into some object oriented programming
Re: Application Development Using Csharp (C#) by omoluabiguy: 8:22pm On Nov 23, 2017
Building a fully functional Hospital management from the scratch!

Beginners would have a deep understanding of using CSharp as an object oriented programming to build a fully functional system that comes with a Microsoft SQL server database.

Before diving into the coding part, we’ll be going thru some functional requirements...

Stay Tuned
Re: Application Development Using Csharp (C#) by 4kings: 10:04pm On Nov 23, 2017
Following...
Re: Application Development Using Csharp (C#) by omoluabiguy: 10:09pm On Nov 23, 2017
In developing a fully functional hospital management system, we would have to create windows forms on the front end and a lot of coding events on the back end.

It wouldn’t be fair using abstract terms as my thread is focused on carrying followers along from the basic so that brings us back to learning the basics of CSharp. I hope you guys have been able to download Visual studio and also run the “Hello World” code I recently put up there.

Stay Tuned
Re: Application Development Using Csharp (C#) by omoluabiguy: 11:40pm On Nov 23, 2017
Don’t worry about some terms you might be hearing for now, it still doesn’t take us away from the basics, they are just terms you would have to get use to as we proceed.


The .Net framework is a revolutionary platform that helps you to write the following types of applications −

Windows applications
Web applications
Web services
The .Net framework applications are multi-platform applications. The framework has been designed in such a way that it can be used from any of the following languages: C#, C++, Visual Basic, Jscript, COBOL, etc. All these languages can access the framework as well as communicate with each other.

The .Net framework consists of an enormous library of codes used by the client languages such as C#. Following are some of the components of the .Net framework −

Common Language Runtime (CLR)
The .Net Framework Class Library
Common Language Specification
Common Type System
Metadata and Assemblies
Windows Forms
ASP.Net and ASP.Net AJAX
ADO.Net
Windows Workflow Foundation (WF)
Windows Presentation Foundation
Windows Communication Foundation (WCF)
LINQ
Re: Application Development Using Csharp (C#) by omoluabiguy: 11:42pm On Nov 23, 2017
But for now, we would start with Console application development and then slowly dive into Windows for applications which is basically use in developing desktop applications


Stay Tuned
Re: Application Development Using Csharp (C#) by rushman003: 12:25pm On Nov 24, 2017
we are with you sir! you've not responded to my PM
Re: Application Development Using Csharp (C#) by omoluabiguy: 6:13pm On Nov 24, 2017
rushman003:
we are with you sir! you've not responded to my PM

Sorry bro, I no longer have access to the email I used for this NL account. If there is any other way I can contact you, let me know
Re: Application Development Using Csharp (C#) by rushman003: 7:59pm On Nov 24, 2017
omoluabiguy:


Sorry bro, I no longer have access to the email I used for this NL account. If there is any other way I can contact you, let me know

lets talk on whasapp 07039090014
Re: Application Development Using Csharp (C#) by omoluabiguy: 8:02pm On Nov 24, 2017
rushman003:


lets talk on whasapp 07039....

Ok bro. I’ll holla you
Re: Application Development Using Csharp (C#) by Dollypop34: 9:06am On Nov 28, 2017
omoluabiguy:


Sorry bro, I no longer have access to the email I used for this NL account. If there is any other way I can contact you, let me know

Bro I've been trying to reach you through your mail. Could you please chat me on WhatsApp. 08136190459. I will really appreciate that. I need your help
Re: Application Development Using Csharp (C#) by braindee(m): 12:16am On Dec 07, 2017
omoluabiguy:


Sorry bro, I no longer have access to the email I used for this NL account. If there is any other way I can contact you, let me know

Wonderful thread. Please, can we chat on WhatsApp if you don't mind? Thanks 08165771760
Re: Application Development Using Csharp (C#) by braindee(m): 12:18am On Dec 07, 2017
omoluabiguy:
Homage to all the programmers in the House!
Before I proceed, I’ll like to crave your indulgence on my programming background and current profile.

I have been coding Java, C++, PhP and C# for a little over 7 years now and lately I have been getting really deep into some Advance CSharp Application development; Infact I have been digging more research in the entire .Net Framework as a whole.
That being said,

I’ll like to create a thread to teach interested followers some C# programming from basics to intermediate to Advance.

#FollowMe!

I know you're busy and all but please don't let the thread die off. I beg you go
Re: Application Development Using Csharp (C#) by omoluabiguy: 2:48am On Dec 07, 2017
braindee:


I know you're busy and all but please don't let the thread die off. I beg you go

I will be back to continue Sir! I just have to finish up some stuff right now. smiley

1 Like

Re: Application Development Using Csharp (C#) by kels4fun(m): 11:31am On Dec 07, 2017
Please can you tag me along when you are back.


Am currently learning web development with c#
Re: Application Development Using Csharp (C#) by asalimpo(m): 12:00pm On Dec 07, 2017
first show how to install the sdk/ide - and how to edit-write and compile and run the first program on it.
Jumping to show code without that is futile.
I've tried downloading and installing the ide multiple time but failed.
Either cant login to ms despite putting the correct password and email or something.
A very frustrating experience.
Show that.
Then ... be sure of what your saying here - many threads have died promising to teach language x.
The longest living was on java by fulaman, where is it today?
So threads like this are ... with experience vaporware.
Goodluck though.
Re: Application Development Using Csharp (C#) by omoluabiguy: 2:01pm On Dec 07, 2017
kels4fun:
Please can you tag me along when you are back.


Am currently learn web development with c#

Alright bro. Definitely... you have your Visual studio ide running already?

1 Like

Re: Application Development Using Csharp (C#) by kels4fun(m): 3:49pm On Dec 07, 2017
omoluabiguy:


Alright bro. Definitely... you have your Visual studio ide running already?

Yes bro
Re: Application Development Using Csharp (C#) by braindee(m): 8:10am On Dec 08, 2017
omoluabiguy:


I will be back to continue Sir! I just have to finish up some stuff right now. smiley

Okay. Can we chat on WhatsApp please? Thanks Boss
Re: Application Development Using Csharp (C#) by llade(m): 1:46pm On Dec 09, 2017
omoluabiguy:
But for now, we would start with Console application development and then slowly dive into Windows for applications which is basically use in developing desktop applications


Stay Tuned
Re: Application Development Using Csharp (C#) by gracefoundmme(m): 4:08pm On Dec 09, 2017
please ride on ..we following you back to back

2 Likes 1 Share

(1) (2) (3) (4) (5) (Reply)

Programmers, How Do You Cope With Generator Noise In Your Area? / Help On Java / Female Programmers Stand Up And Be Counted

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 43
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.