Functions list

  • Thread starter Thread starter Chris Jackson
  • Start date Start date
C

Chris Jackson

When I was developing in clasic asp I had the vbscript script56.chm file
to lookup functions, methods and properties.

Is there an equivalent web site or downloadable listing of the C# functions?

Please help.
 
There are no "C# functions" (technically, there are also no C
functions, nor C++ functions). Any function you can call from a C# program,
must be defined in a class somewhere. The .Net framework provides a large
number of class/methods that you can call from your C# program (you may also
call them from a VB.Net program, or, for that matter, your VBScript)

The tip of that iceberg can be found here:
http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystem.asp


--
--
Truth,
James Curran
[erstwhile VC++ MVP]

Home: www.noveltheory.com Work: www.njtheater.com
Blog: www.honestillusion.com Day Job: www.partsearch.com
 
http://msdn.microsoft.com/library/default.asp

It sounds like you are interested in documentation for web development. The
above link takes you to the MSDN Library which is described as:

"The MSDN Library is an essential resource for developers using Microsoft
tools, products, and technologies. It contains a bounty of technical
programming information, including sample code, documentation, technical
articles, and reference guides."

If you look in the table of contents pane you will see a top level category
of Web Development. Under it is all the documentation for the various sub
topics of web development.

For official documentation of web standards you can look to the World Wide
Web Consortium at :

http://www.w3.org/
 
Back
Top