What is Partial class and its use?
Answer / shahab qureshi
Partial class definitions can be split up across multiple
physical files. But it doesn’t have that much effect on
compiler. Partial classes are grouped together and treated as
one class. One common usage of partial class is it divides
automatically generated code from programmer written code.
| Is This Answer Correct ? | 1 Yes | 0 No |
Hi guys... I have one doubt ..Exception is a runtime error then why we have checked exception... Thanks in advance
what is the purpose of checked Menu options
In staad pro, how can we design ROOF SLAB?
why you have to became a software developer?
how to data grid use in data bind?
Plz sent me in .net 2.0 interview Question & answers?
in a company 30% are supervisors and 40% employees are male if 60% of supervisors are male. what is the probability that a randomly choosen employee is a male or female?need steps to solve this?
2. What do you mean by DHCP?
What is a programming language?
In Java what is the difference between following two statements ? int a[],b; int []a,b;
What is Meaning of Windows Application & the use of Windows Applications? with Description.
SAS question: I have 50 fils a1,a2,...,a50. the primary key is upc. then if i want to merge all 50 files, the code is as follows, data test; merge a1 ... a50; by upc; run; we know that writing all 50 files name is time consuming, is there any standard format of this code?