|
| |||||||||
| Tags: c sharp |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| C# For Beginners
C#, pronounced c sharp, is a computer language used to give instructions that tell the computer what to do, how to do it, and when to do it. This is a universal language that is used on many operating systems , including Microsoft Windows. C# is one of the languages used in the Microsoft .NET Framework. The Microsoft .NET Framework is a library of objects that create or draw things on the computer. The C# language is used to create applications that display on a black window referred to as the DOS prompt or DOS window. You should first open a DOS command shell. (If you don't know what it is, clic on the Start menu then run (at the bottom) and type, in the text field: "cmd". exercise: there is an easiest way to do that, try to find it.) You should begin to work in an empty directory for this. let call it "C:\learncs". Type in the shell: Code: > md C:\learncs > cd C:\learncs > C: Code:
using System;
public class Hello
{
public static void Main()
{
Console.WriteLine("Hello C# World :-)");
}
} Save the file. Now you could compile. Type in the DOS Shell again and type: csc /nologo /out:hello.exe hello.cs You probaly have some errors, correct them, compile again, and now you have a working hello.exe program... type hello, see... |
|
#2
| ||||
| ||||
| Re: C# For Beginners
Structure of C# ProgramsProgrammFile
|
|
#3
| |||
| |||
| Re: C# For Beginners
Hello, I have recently read about a solution related to C#. It was about how to create IVR DTMF system. It is software product that can receive incoming calls automatically and answers them. The callers are received by a voice menu. So dealing with calls is perfectly automated. This system can replace a complete customer service. This system based on an SDK. Share your opinion! |
|
#4
| ||||
| ||||
| Re: C# For Beginners Quote:
This instance works with both usual Skype names and with/without Skype Online Numbers plus Business Account Skype names with/without allocated Skype Online Numbers shaped from the Skype Business Manager. The instance works with both the usual and business versions of the Skype clients for Windows. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "C# For Beginners" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| mIRC for Beginners | spookshow | Guides & Tutorials | 3 | 08-05-2011 02:24 AM |
| TCP Optimizer for beginners | yummy- | Networking & Security | 4 | 24-11-2010 12:10 AM |
| Aeromodelling for Beginners | Mr Alfa | Off Topic Chat | 6 | 13-11-2010 11:10 AM |
| Cheap BEGINNERS rig | Jagadayu | Overclocking & Computer Modification | 4 | 24-09-2010 12:23 PM |
| Learning C for beginners | Paul | Tips & Tweaks | 2 | 23-05-2008 01:58 AM |