tags:

views:

76

answers:

5

Where can I see all the built in function of C#? Any recommendation excluding books please :0)

+9  A: 

You're looking for MSDN.

SLaks
+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
How about default keyword?
Yuriy Faktorovich
@Yuriy: That's an operator, not a function.
Jon Skeet
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
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
+1  A: 

Hit "F1" in Visual Studio. The documentation is a great reference.

Sorax
Googling with MSDN as one of your search params will be much faster and more effective. F1 stinks.
Paul Sasik
@Paul Sasik: Well yeah, of course. But it still contains documentation of all the library functions. Just one more way to do things.
Sorax
@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