0 Reputation Points
100% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
2 Posted Topics
Just see this book for C# http://www.flipkart.com/programming-c-0070702071/p/itmczynwjz6pvdcu?pid=9780070702073 or http://www.shroffpublishers.com/listing.aspx?cat=234&v=0&l=0&p=1 these are the good books that u can look.
Using system Class Example { private void himanshu() { int starting=10; int returned =Docalculation(starting); } private int Docalculation(int receiving) { int multip=receiving *2; return multip; } static Void Main() { example ex=new example() ex.Docalculation(); } }
The End.
himanshu04