The .NET Framework Base Class Library (BCL) is a library of classes, interfaces, and value types that provides access to system functionality and is designed to be the foundation on which .NET Framework applications, components, and controls are built.
Is there a reason for this? I am asking because if you needed to use lots of empty chars then …
c# .net string char base-class-libraryI'm interested: What is C#'s analog of std::pair in C++? I found System.Web.UI.Pair class, but …
c# .net data-structures std-pair base-class-libraryI have a BitArray with the length of 8, and I need a function to convert it to a byte. How …
c# .net binary bitarray base-class-libraryIf you have a full path like: "C:\dir0\dir1\dir2\dir3\dir4\" how would you best implement it so …
c# .net base-class-libraryHow can I convert BitArray to a single int?
c# .net binary integer base-class-libraryi am trying to install Microsoft.Bcl.Build 1.0.14 nuget returns Installing 'Microsoft.Bcl.Build 1.0.14'. Successfully installed 'Microsoft.Bcl.Build 1.0.14…
c# visual-studio nuget base-class-libraryI am trying to use CallerMemberName attribute in .NET 4.0 via BCL portability pack. It is always returning an empty string …
c# .net .net-4.0 base-class-library callermembernameI was wondering why nuget added the following code to my applications app.config file, after installing the Microsoft.Bcl.…
c# .net app-config base-class-libraryWhat is the maximum amount of characters that a typical path can contain for a directory when using C#? For …
c# .net base-class-libraryWhy is there only a SortedList<TKey, TValue> which looks more like a dictionary, but no SortedList<…
.net sortedlist base-class-library