douts
plz explain me about how create a class and method
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kirtan PatelPosted Dec 23, 2009, 8:03 AM
Just Right Click on your project in Solution Explorer then >> Add New Item >> Select Class
Now after that Write Functions in the Class For Example
public void myfunction()
{
MessageBox.Show("Hello");
}
thats it :)
please check "Do you like this answer" check box if it helps you :)
Lalit MPosted Dec 23, 2009, 5:35 AM
You can show this articles to understand Class,method and properties.
http://www.codeguru.com/csharp/csharp/cs_syntax/anandctutorials/article.php/c5829/
Abstract classes and methods