Wednesday, July 17, 2013
Learn C# 5: If if...else Switch
My Ebay Page
http://full.sc/189PL2x
my blog
http://allaboutwilliam.com
follow me on twitter
http://twitter.com/basiccomputer
Monday, August 10, 2009
Things are a coming.
I am planning on making a new learn C# video, The first video i will have made in this site in over 7 months. sorry for the long delay video will be out tomorrow about it.
Friday, January 9, 2009
Learn C# Programming #1 hello world REMAKE
Youtube video
http://www.youtube.com/watch?v=Olv19adOryo
Microsoft Visual C# 2008 Express edition
http://www.microsoft.com/express/vcsharp/
Sharp Develop
http://icsharpcode.net/OpenSource/SD/
Hello world Source
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main ( string[] args )
{
Console.WriteLine ( “hello World!” );
Console.ReadKey ();
}
}
}
Tuesday, December 2, 2008
Learn C# programming #4 Condition expressions
http://www.youtube.com/watch?v=n-GF-It7e3A
In this Video we will be talking about Conditional expressions
Friday, August 22, 2008
What is the Most important Operating System
this video is to hold over tell i can get chapter 4 finished.
If you what to get into programming this video is important
I Do not own the video Microsoft does
Tuesday, August 5, 2008
youtube video location
http://www.youtube.com/watch?v=K3I1l7tIic0
http://learncsprogramming.blogspot.com/
Download The Source Code here
http://sourceforge.net/project/showfiles.php?group_id=233492&package_id=283314&release_id=615914
This i will teach you functions also teach parameters and return types
Wednesday, July 16, 2008
Built in Types for C#
void = System.Void : Nothing and in C# can only be used as a return type
bool = System.Boolean : This is a Boolean (true, false) value
short = System.Int16 : this is a small 16 bit Integer number
ushort = System.UInt16 : a Unsigned 16 bit integer all numbers are positive and cannot be negative
int = System.Int32 : This is your basic Integer number
uint = System.UInt32 : This is an unsigned Integer Number all numbers are positive and cannot be negative
long = System.Int64 : a Integer that is 2 times the size of your basic int
ulong = System.UInt64 : a Unsigned 64 bit Integer agian all numbers are positive and cannot be negative
float = System.Single : single-precision floating-point number. Numbers must have a f after it like this 10.0f
double = System.Double : double-precision floating-point number. Numbers do not have to have a f but it is recommended to have a decimal point like this 1.0
char = System.Char : A single Character (when assigned must be in single quotes like this 'c'
string = System.String : A string Used to represent words and Characters
My Youtube channel