0% found this document useful (0 votes)
13 views

Objective:: Header Files

Uploaded by

Varshini Varsha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Objective:: Header Files

Uploaded by

Varshini Varsha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 2

Assembly:

it is a smallest unit of deployment code

it can be either .dll or .exe

types:

private: accessed by single application-bin

shared:accessed by more than one application-GAC(global application class)

satellite: it is non executable-images

Features:

cross platform integration

supports multiple technologies and languages

type safety, oops concept, rich set of class libraries

----------------------------------------------------------------------------------------

C2-P1: Programming Basics:

-------------------------------------

objective:

· program

· program structure

· keywords and identifiers

· editor

Program: set of instruction or coding used to create or develop an application

program structure:

· header files

· application name
· classname

· method name

· set of code

Syntax:

using System;// header file-class library

namespace applicationname

class classname

static void Main(string[] args)

//set of code

Keyword: predefined word or preserved word

: C# has totally 79 keywords

Ex: using, namespace, class, static, void ,string etc

identifier: used to identify the part of programs

Name of application,class,method etc.

You might also like