Tags:OOPS Questions | 85 views
It’s up to you to implement the method inside your own class, so implementation is left entirely up to you. This might cause a problem on a higher-level scale if similarly named methods from different interfaces expect different data, but as far as compiler cares you’re
okay.
Tags:OOPS Questions | 83 views
Cursor is a programming device that allows the SELECT to find a set of rows but return them one at a time.Cursor should be used because the host language can deal with only one row at a time.
Tags:OOPS Questions | 74 views
A subquery in which the inner ( nested ) query refers back to the table in the outer query. Correlated subqueries must be evaluated for each qualified row of the outer query that is referred to.
Tags:OOPS Questions | 76 views
Use the new modifier to explicitly hide a member inherited from a base class. To hide an inherited member, declare it in the derived class using the same name, and modify it with the new modifier.
C# Language features