== Library Topics == === Library-related Wiki Pages === * StandardLibraryExtensionMethods * PrimitiveTypeMembers * VisitorPattern * StringBuilder * DllImport === Key Classes at MSDN === * [http://msdn.microsoft.com/en-us/library/system.object.aspx Object] * [http://msdn.microsoft.com/en-us/library/system.string.aspx String] * [http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx List] * [http://msdn.microsoft.com/en-us/library/xfhwa508.aspx Dictionary] * [http://msdn.microsoft.com/en-us/library/system.environment.aspx Environment] === Searching for information on libraries === 1. You can search this wiki using the search box in the upper right. 1. You can search the forums (currently a separate search). 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. === Reading Source === 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/. === How To === The HowToPrograms show some of the library calls you will use when coding. === See Also === * RelatedProjects - typically implemented in Cobra * DotNetProjects - any project related to .NET/Mono * LanguageTopics * WebDevelopment