Changes between Version 10 and Version 11 of LibraryTopics
- Timestamp:
- 11/17/10 21:04:19 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LibraryTopics
v10 v11 1 1 == Library Topics == 2 2 3 === Library-related Wiki Pages === 3 4 * StandardLibraryExtensionMethods 4 5 * PrimitiveTypeMembers … … 6 7 * StringBuilder 7 8 8 Key Classes at MSDN 9 === Key Classes at MSDN === 9 10 * [http://msdn.microsoft.com/en-us/library/system.string.aspx String] 10 11 * [http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx List<of T>] … … 12 13 * [http://msdn.microsoft.com/en-us/library/system.environment.aspx Environment] 13 14 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 === 21 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/. 22 23 === How To === 24 The HowToPrograms show some of the library calls you will use when coding. 25 26 === See Also === 15 27 * RelatedProjects - typically implemented in Cobra 16 28 * DotNetProjects - any project related to .NET/Mono 17 18 Related: 19 * HowToPrograms 29 * LanguageTopics 20 30 * WebDevelopment 21 * RelatedProjects22 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