Wiki

Changes between Version 10 and Version 11 of LibraryTopics

Show
Ignore:
Timestamp:
11/17/10 21:04:19 (13 years ago)
Author:
Charles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LibraryTopics

    v10 v11  
    11== Library Topics == 
    22 
     3=== Library-related Wiki Pages === 
    34 * StandardLibraryExtensionMethods 
    45 * PrimitiveTypeMembers 
     
    67 * StringBuilder 
    78 
    8 Key Classes at MSDN 
     9=== Key Classes at MSDN === 
    910 * [http://msdn.microsoft.com/en-us/library/system.string.aspx String] 
    1011 * [http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx List<of T>] 
     
    1213 * [http://msdn.microsoft.com/en-us/library/system.environment.aspx Environment] 
    1314 
    14 Third-party Projects 
     15=== Searching === 
     16 1. You can search this wiki using the search box in the upper right. 
     17 1. You can search the forums (currently a separate search). 
     18 1. Cobra currently runs on .NET/Mono which means that you can often search for the web for phrases like "C# parse xml" and find an example that you can readily adapt to your code. Or search for ""msdn !SomeClass someMethod" and find the reference information for a method. 
     19 
     20=== Reading Source === 
     21Cobra's standard library is a small set of additions on top of .NET/Mono. You can browse the source code in !CobraWorkspace/Source/Cobra.Lang/. 
     22 
     23=== How To === 
     24The HowToPrograms show some of the library calls you will use when coding. 
     25 
     26=== See Also === 
    1527 * RelatedProjects - typically implemented in Cobra 
    1628 * DotNetProjects - any project related to .NET/Mono 
    17  
    18 Related: 
    19  * HowToPrograms 
     29 * LanguageTopics 
    2030 * WebDevelopment 
    21  * RelatedProjects 
    22  
    23 Cobra currently runs on .NET/Mono which means that you can often search for the web for phrases like "C# parse xml" and find an example that you can readily adapt to your code. Or search for ""msdn !SomeClass someMethod" and find the reference information for a method. 
    24  
    25 Cobra's standard library is a small set of additions on top of .NET/Mono. You can browse the source code in !CobraWorkspace/Source/Cobra.Lang/. 
    26  
    27 See also: LanguageTopics, OtherLanguages, CommandLine