Author: zakilive

25
Aug
2017

.NET Components

  http://www.developerin.net/a/39-Intro-to-.Net-FrameWork/23-Components-of-.Net-Framework

12
Aug
2017

Calling Method Example in C#

code: with object creation from class: using System; namespace CallingMethods { class Program { int Add(int a,…

07
Aug
2017

Data Structure in C#

ArrayList Implementation Example: using System; using System.Collections; namespace ArrayListIntroApp { class Program { static void Main(string[] args)…

03
Aug
2017

Playing with C#

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace for_loop { class Program { static…

01
Aug
2017

Swap without a temp variable

It’s possible with addition: #include<iostream> using namespace std; int main(){ int x=10,y=15; cout<<“Before swapping: x=”<<x<<“y=”<<y<<endl; x=x+y; //25…

30
Jul
2017

Functional and Non-functional Requirement Software Engineering