Hi friends
am new to C# but not to programming ofcourse.
i was writing a small program where adding some text to a text box.it took 1/2 hr to find out how to add a new line in the textbox .
my question is what is best way find out common functions in C sharp (like string functions ,math functions etc.,
Thanks

common functions
sanchita
Some more useful links:
For Fundamentals/Basics see this link:
http://msdn.microsoft.com/vcsharp/programming/fundamentals/default.aspx
For a good listing of books:
http://msdn.microsoft.com/vcsharp/programming/books/default.aspx
For Videos on C#:
http://msdn.microsoft.com/vcsharp/programming/videos/default.aspx
Regards,
Vikram
phil_johnson38
Prakash Channagiri - MSFT
If by new line you mean appending Environment.NewLine to the Text property, that's a rare instance of needing an external class, but mostly, intellisense will show you what's available.
Elizabeth_Maher_MS
Hi,
One good option is to buy a book and study the Framework a bit. If you only want string related and math related then, check the System.String class and its members and the System.Math class and its members.
Also read some articles related to string manipulation. Some links below:
http://www.developerfusion.co.uk/show/4398/
http://www.csharphelp.com/archives/archive59.html
Regards,
Vikram
Aruna S Ramachandran
The links are very useful especially first one.
BTW actually i want to getaround my head with C# basics and was going thru MS help which is not very easy to follow.
anyway thanks again.