Base Class Library : The .NET Framework class library 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.

learn more… | top users | synonyms

0
votes
2answers
42 views

Convert projects to .Net 4.5 ( that uses TPL)

Currently own a few projects with .net 3.5 and .net 4.0. It was decided to migrate all to .NET 4.5. All projects are already in VS2012 (C# 5.0) and all projects using async-await keywords On .net ...
1
vote
1answer
82 views

Async WebClient is so slow?

I'm playing with the most simplest case of usage bcl.async in wp7. private async void loadButton_Click1(object sender, RoutedEventArgs e) { var client = new WebClient(); string ...
2
votes
1answer
202 views

Microsoft.Bcl.Async doesn't work

I try to use Async with Portable Class Library. I use Profile 104, which includes: .NET 4.5 Silverlight 4 WP 7.5 WinRT Installation works and I can use System.Threading.Tasks but I can't compile ...
3
votes
3answers
102 views

Why does List<T> implement IReadOnlyList<T> in .NET 4.5?

Why does List<T> implement IReadOnlyList<T> in .NET 4.5? List<T> isn't read only...
6
votes
2answers
141 views

How is the intention of IServiceLocator.GetInstance(Type) different from the intention of IServiceProvider.GetService(Type)?

Is there a difference in intentions of the method signatures IServiceProvider.GetService(Type serviceType) and IServiceLocator.GetInstance(Type serviceType)? If so, what is the distinction? I've ...
1
vote
1answer
158 views

BCL Immutable Collections: equality is non-symmetric

Since immutable data strucutures are first-class values we can compare them for equality or order as we do with any other values. But things became complicated in BCL immutable collections preview ...
5
votes
3answers
105 views

Using Bcl ImmutableDictionary in private field

Let's say I have a class that will be called from multiple threads, and am going to store some data in an ImmutableDictionary in a private field in this class public class Something { private ...
0
votes
1answer
39 views

What is the “correct” exception type to throw for an error in an external application?

I have a helper method that shells out to an external (command line) utility. Upon process completion it checks the exit code and if it detects an error throws an exception with the contents of ...
2
votes
1answer
82 views

Why doesn't HashSet<T> implement IReadOnlyCollection<T>?

The new read-only interfaces in .NET 4.5 such as IReadOnlyCollection<T> and IReadOnlyDictionary<TKey,TValue> are very useful, especially since they have been implemented on common BCL ...
11
votes
1answer
302 views

Wrong logarithm of BigInteger when size of BigInteger exceeds ¼ gigabyte

When I have a BigInteger whose size exceeds 2 gigabits (that's ¼ gigabyte; I found this threshold by trial and error), the logarithm method gives a wrong answer. This simple code illustrates: ...
1
vote
2answers
67 views

What value does System.Drawing.Color -state have?

System.Drawing.Color has a private field int state which makes equality a bit more tricky than one would expect from a struct. Anyone know what on earth it's for? Who, what and why sets and reads it? ...
1
vote
0answers
50 views

Cannot instantiate simple BCL objects in Silverlight XAML

If I declare the correct XML namespace, I can create/instantiate any of my own classes with a public and default constructor in a Silverlight XAML ResourceDictionary. However, if I try that with any ...
3
votes
2answers
155 views

Enum.TryParse: Is there a guarantee or contract for the out parameter value when the return value is `false`?

According to the documentation for Int32.TryParse, if the method returns false, it will set the out parameter to zero. I do not see a similar guarantee for Enum.TryParse in its documentation. It ...
0
votes
2answers
414 views

Can a byte[] buffer for a MemoryStream have variable size?

I'm serializing an object to a byte[] using MemoryStream: byte[] serialized = new byte[1000]; using (MemoryStream stream = new MemoryStream(serialized)) using (TextWriter textWriter = new ...
0
votes
1answer
248 views

MemoryCache get in Disposed state Magically

I did many tests, my MemoryCache instances get disposed after some time and always returns null when I call Get method. I think that is after PollingInterval. To simulate you can start a new webapp ...
5
votes
4answers
331 views

What does RuntimeHelpers.GetHashCode do

The RuntimeHelpers.GetHashCode(object) method allows generating hash codes based on the identity of an object. MSDN states: The RuntimeHelpers.GetHashCode method always calls the ...
13
votes
1answer
356 views

When does the UnderlyingSystemType differ from the current Type instance

System.Type contains a UnderlyingSystemType property. Msdn states that it: Indicates the type provided by the common language runtime that represents this type. In most cases, this property ...
2
votes
1answer
77 views

Why does .NET differentiate String from Character?

Isn't having String enough? Just as an example, why can String class lets you pass either char array or string array to its Split method? while it's perfectly valid to use just string version? ...
1
vote
1answer
231 views

.NET TcpClient/NetworkStream implementation that supports async operations and respects timeouts

Based on the number of questions, forum posts, etc, it appears that the TcpClient/NetworkStream implementation in the BCL lacks decent support for cancelling IO operations. With the addition of Async ...
10
votes
3answers
833 views

Is there a memory leak in the ConcurrentBag<T> implementation? [duplicate]

Possible Duplicate: Possible memoryleak in ConcurrentBag? Edit1: The actual question is. Can you confirm this or is my sample wrong and I am missing somthing obvious? I have thought that ...
0
votes
1answer
87 views

Correct me if I am wrong about some terms (mfc, win32, in vc++

From what I understand, using Wiki and this question I posted, Microsoft has its own compiler called VC++ which is included in the .net framework along with many other things. And it can make very ...
1
vote
2answers
147 views

Implications of Lazy<T> and threadsafe false

What are the implications of the using the Lazy<T> class and marking isThreadSafe: false during initialization? In a scenario where lazy needs to access instance members and not static members ...
9
votes
1answer
693 views

.NET 4.5 CustomReflectionContext: what is it useful for?

What's New in the .NET Framework 4.5 Developer Preview mentions Ability to customize a reflection context to override default reflection behavior through the CustomReflectionContext class. ...
0
votes
3answers
815 views

how to launch a (.exe) file in C++ using a window form application?

, when the user clicks on Pre sets button for example it would launch another (.exe) file , same goes for Bread board button . This is the code i have been using namespace RC_lab { using ...
2
votes
1answer
370 views

managed c++ string compare working oddly

I am trying to compare 2 strings but getting weird results. On some computers, the comparison works correctly and on others, it does not. The codes is written in Visual Studio 2010 using managed C++.I ...
2
votes
4answers
213 views

Working with IComparable.Compare without magic numbers

I really hate working with IComparer - to this day, after years of working with .Net, I still get regularly confused by those 1s and -1s. Can I somehow replace the Compare result values with some ...
4
votes
1answer
309 views

How to create testable code using .Net IO classes?

I want to create unit testable code that mocks out the calls to the .Net System.IO classes, so I can really unit test instead of depending on the filesystem. I am using the SystemWrapper classes to ...
0
votes
1answer
66 views

BCL.XPRB dll isn't initializing in C#.Net application

I am trying to resolve an initialization error for the optimizer library. I have a license for and installed Xpress-IVE 64bit studio, however, I need to link and use xprb facilities in a C#.Net ...
18
votes
1answer
790 views

Meaning of confusing comment above “string.Empty” in .NET/BCL source?

I'm trying to understand why string.Empty is readonly and not a const. I saw this Post but I don't understand the comment Microsoft wrote about it. As Jon Skeet wrote in a comment "I don't know - it ...
8
votes
1answer
606 views

Why no AutoResetEventSlim in BCL?

Why isn't there an AutoResetEventSlim class in BCL? Can it be simulated using ManualResetEventSlim?
0
votes
1answer
183 views

Why does PrincipalPermission(Attribute) not respect authentication type?

IIdentity interface exposes AuthenticationType property which i would like to take into account because things are bit different if a user logs on with x509 or basic username/password auth, you know: ...
12
votes
1answer
485 views

why math.Ceiling (double a) not return int directly? [duplicate]

Possible Duplicate: Why doesn't Math.Round/Floor/Ceiling return long or int? msdn defined this method:Returns the smallest integer greater than or equal to the specified ...
2
votes
2answers
430 views

Difference between XElement.CreateNavigator() and XPathDocument().CreateNavigator()

The following test fails. r1 seems to be missing angle brackets, does anyone know way? I imagine its some sort of encoding error? var nav1 = XElement.Load(stream).CreateNavigator(); var nav2 = new ...
-2
votes
2answers
44 views

Is there a built-in function to get the “ghi” from www.abc.com/def/ghi in the BCL?

Is there a built-in function to get the ghi from www.abc.com/def/ghi in the BCL? I know it is dead easy to create a small method that does just that, but I wonder if there is something already that ...
0
votes
1answer
76 views

Good up-to-date .NET BCL reference [closed]

I am looking for a good reference book or a website that is up-to-date to .NET 4. I searched from Amazon and found this book, however it is from year 2004 and looks dated(if I am wrong then please ...
1
vote
0answers
66 views

.net Install Namespace Guidance

MS has an overview page of central classes within the system.configuration.install namespace. But the one-sentence description it gives for each of them just isn't enough to understand when each is ...
31
votes
6answers
2k views

Why is a Dictionary “not ordered”?

I have read this in answer to many questions on here. But what exactly does it mean? var test = new Dictionary<int, string>(); test.Add(0, "zero"); test.Add(1, "one"); test.Add(2, "two"); ...
2
votes
2answers
82 views

SyncHashtable this[Object key] does not use locking

I went through the implementation of SyncHashtable in defined in .Net framework BCL. This class provides synchronized access to multiple readers and writers. One of the methods is implemented as ...
3
votes
1answer
138 views

Is there equivalent to java's File.deleteOnExit() in .NET BCL?

Probably I could make an application domain and hook to DomainUnload event, but I'd like to do that on primary app domain.
0
votes
1answer
144 views

What types are required by C#? [duplicate]

Possible Duplicate: Which parts of C# .NET framework are actually parts of the language? There are some features of C# that require specific type (“the type has to implement ...
2
votes
2answers
291 views

Why doesn't the BCL have CRC classes?

Why doesn't the .NET Base Class Libary have CRC classes?
2
votes
2answers
116 views

How does the BCL relate to the CLS?

Some .net Theory question: Which libraries are actually standardized? I know that there is the Common Type System which specifies things like 32-Bit Integers and all this low level info, but I'm ...
3
votes
1answer
202 views

How to find out a list of types in Base Class Library that implement specific interface?

Sometimes I want to find out a list of all standard .NET types that implement a specific interface. Usually it is out of curiosity, sometimes there is also some practical purpose (but that's not the ...
0
votes
0answers
216 views

Easiest way to serialize a binary serializable object to xml in .Net

I have no idea why this is so difficult to find. I have a fairly simple object that is currently binary serializable. I am using NHibernate to serialize it and store it in a single table in the ...
11
votes
1answer
337 views

More trivia than really important: Why no new() constraint on Activator.CreateInstance<T>()?

I think there are people who may be able to answer this, this is a question out of curiosity: The generic CreateInstance method from System.Activator, introduced in .NET v2 has no type constraints on ...
5
votes
2answers
341 views

Is there any kind of “ReferenceComparer” in .NET?

There are several places in BCL where one can make use of IEqualityComparer. Like Enumerable.Contains or Dictionary Constructor. I can provide my comparer if I'm not happy with the default one. ...
1
vote
2answers
2k views

Is Java SE still GPL?

Is Java SE still open source? Can Oracle change the licensing after its been dedicated to GPL? However, on the Oracle Java FAQ it states that it is Binary Code Licence. "Sun begins releasing Java ...
2
votes
3answers
202 views

Nullable<> types are a BCL, CLR, or both implementation?

Some time ago I thought that Nullable<> value types are classes, encapsulating value types and a bool to HasValue. With some implicit cast operador for null, just implemented at BCL. But being a ...
25
votes
5answers
2k views

Why does TimeSpan.FromSeconds(double) round to milliseconds?

TimeSpan.FromSeconds takes a double, and can represent values down to 100 nanoseconds, however this method inexplicably rounds the time to whole milliseconds. Given that I've just spent half an hour ...
8
votes
3answers
649 views

Bug in Directory.GetParent?

I was hit in the face by a very weird behavior of the System.IO.Directory.GetParent method: string path1 = @"C:\foo\bar"; DirectoryInfo parent1 = Directory.GetParent(path1); Console.WriteLine ...

1 2