Where can I see all the built in function of C#? Any recommendation excluding books please :0)
+3
A:
C# doesn't have any "built in functions" as such.
If you mean "types in the .NET framework" then MSDN is your friend.
Jon Skeet
2010-10-28 18:03:57
How about default keyword?
Yuriy Faktorovich
2010-10-28 18:10:56
@Yuriy: That's an operator, not a function.
Jon Skeet
2010-10-28 18:13:11
A:
If using Visual Studio ide, you can also use the object browser to inspect all manner of assemblies. Or reflector for that matter.
brumScouse
2010-10-28 18:06:42
A:
That would be an empty list. There are no functions defined in C#. C# is object oriented, it has no "native" functions as part of the langauge.
TomTom
2010-10-28 18:06:58
Googling with MSDN as one of your search params will be much faster and more effective. F1 stinks.
Paul Sasik
2010-10-28 18:09:17
@Paul Sasik: Well yeah, of course. But it still contains documentation of all the library functions. Just one more way to do things.
Sorax
2010-10-28 18:33:37
@Sorax: The documentation itself isn't too bad and actually seems to be getting better with each .NET release but my point is that there are better paths to the final info than M$'s. I've noticed years ago that Google does a much better job indexing MSDN than Microsoft. Sad but true and good to know.
Paul Sasik
2010-10-28 18:47:30