copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
Reference Source Browse the NET Framework source code online, with search and navigation powered by Roslyn See details at the NET Framework blog How to configure Visual Studio for debugging NET framework Find type and member declarations, files, assemblies and GUIDs
Download - referencesource. microsoft. com Download the entire source code of NET Framework as a zip file The archive includes a solution and project files that can be opened in Visual Studio This solution will not build because it is missing crucial components such as resources, XAML files, etc but it will be sufficient to browse the source code inside Visual Studio
ConcurrentQueue. cs - referencesource. microsoft. com Assert(m_high >= SEGMENT_SIZE - 1); Segment newSegment = new Segment(m_index + 1, m_source); m_index is Int64, we don't need to worry about overflow m_next = newSegment; return newSegment; } < summary > Create a new segment and append to the current one Update the m_tail pointer This method is called when there is no
list. cs - referencesource. microsoft. com File: system\collections\generic\list cs Project: ndp\clr\src\bcl\mscorlib csproj (mscorlib) ==++== Copyright (c) Microsoft Corporation
Enumerable. cs - referencesource. microsoft. com Select(source, selector)); } public static int Min(this IEnumerable<int> source) { if (source == null) throw Error ArgumentNull("source"); int value = 0; bool hasValue = false; foreach (int x in source) { if (hasValue) { if (x < value) value = x; } else { value = x; hasValue = true; } } if (hasValue) return value; throw Error NoElements
Overview - referencesource. microsoft. com Browse the NET Framework source code online, with search and navigation powered by Roslyn See details at the NET Framework blog How to configure Visual Studio for debugging NET framework Find type and member declarations, files, assemblies and GUIDs
URI. cs - referencesource. microsoft. com EnabledDefaultValue; Value from config Uri section On by default in NET 4 5+ and cannot be disabled by config private static volatile bool s_IriParsing = (UriParser ShouldUseLegacyV2Quirks? IriParsingElement