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 |
What is a PID? How is it useful when troubleshooting a system?
you have an unlimited supply of $3 and $7 poker chips. What is the largest integer value that you cannot make by combining different numbers of chips?
what is the difference between uservariables and systemvariables (in Environmental variables)???
what are stubs related to foxpro?
how to add Servlet-api.jar file into eclipse 3.3.2 ?
Difference between delegates and Events?
what is polymorphism in java.
Difference between views and index in sas programming
in teradata level primary in table level allows duplicates why?
Diff between IF and where ?
i want to open a helkp file that is txt file on link buttons click
One boy has to climb steps. He can climb 1 or 2 steps at a time. Write a function that will returns number of way a boy can climb the steps. Int WaytoSteps(int n) (eg:- suppose number of steps is n=4 ,the function will return 5 (one-one-one-one ,one-one-two, one-two-one-,two-one-one, two-two)