What are the Different kinds of methods?
Answers were Sorted based on User's Feedback
these are of two types
1.Concrete:which have implementation.
2.Abstract:which doesn't have any functionality.
Is This Answer Correct ? | 15 Yes | 5 No |
Answer / sarathi soja
Instance methods,abstract method,static methods,sealed
methods,virtual method
Is This Answer Correct ? | 11 Yes | 3 No |
Answer / manish
All of you are right!
However one more categorization can be done depending on
RETURN of METHOD.
INTERROGATIVE - HAS SOME RETURN value (FUNCTIONS in VB.NET)
IMPERATIVE - NOTHING TO RETURN BUT JUST SOME EXECUTION (SUB
in VB.NET and VOID RETURN TYPE METHODS IN C#)
Is This Answer Correct ? | 6 Yes | 3 No |
What is meant by collections in c#?
can you create a function in c# which can accept varying number of arguments
What?s the difference between the System.Array.CopyTo() and System.Array.Clone()?
List out two different types of errors in c#?
What is the default value of datetime in c#?
what is output parameter and parameter array?
What are Custom Control and User Control?
Explain about Destructor method?
if i used stored procedure for retrieving the data from sql server.in front end i had used data reader.when 100 records are there in table.when it has displayed ten records in frontend database has been collapsed.then where should our data available...
What is difference between int and int32 in c#?
What is Co- and Contra-Variance in C#?
Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?