Custom Search

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

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

Wednesday, July 16, 2008

Built in Types for C#

All the built-in Types in C# are the fallowing and the classes they go to

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