際際滷

際際滷Share a Scribd company logo
Builders & Developers
Workshop
session three
Prepared &
presented by:
Moatasim
Magdy
Calculator Demo
Arrays
Arrays
static void Main(string[] args)
{
int []grades = new int[3];
int[] grades2 = { 12, 3, 4 };
grades[0] = int.Parse(Console.ReadLine());
grades[1] = int.Parse(Console.ReadLine());
grades[2] = int.Parse(Console.ReadLine());
for ( int i=0; i < 3; i++ )
Console.WriteLine(grades[i]);
Console.ReadKey();
}
Functions
Functions
 What do you want the function to do ?
 what`s the output type ?
 What inputs do you want to get the output.
 How to call the function ?
Functions
Calling The Functions
class MyClass
{
String name = "Moatasim";
int summation (int x,int y)
{
return x+y;
}
static void Main(string[] args)
{
MyClass s = new MyClass();
s.summation(5,13);
Console.WriteLine(s.name);
Console.ReadKey();
}
Where
We Are Now ?
What`s our aim ?
Session three Builders & developers workshop Microsoft Tech Club 2015
We can develop it using Visual Studio .. But
first, What`s this ?
Windows Applications
Grid Application
Session three Builders & developers workshop Microsoft Tech Club 2015
Split Application
Session three Builders & developers workshop Microsoft Tech Club 2015
Windows Phone Applications
Panorama Application
Example
Pivot application
Session three Builders & developers workshop Microsoft Tech Club 2015
Universal Applications
Blank Application
Hub Application
windows phone
Windows Hub
Application
Our first
Universal
app
Session three Builders & developers workshop Microsoft Tech Club 2015
Session three Builders & developers workshop Microsoft Tech Club 2015
 /moatasim.magdy
 /moatasimmagdy
 mo3tasim_94@hotmail.com
Session three Builders & developers workshop Microsoft Tech Club 2015

More Related Content

Session three Builders & developers workshop Microsoft Tech Club 2015