Questions tagged [.net-bcl]

The Base Class Library, is a library of functionality available to all languages using the .NET Framework.

The BCL, or Base Class Library, is a library of functionality available to all languages using the .NET Framework. The BCL provides classes that encapsulate a number of common functions, including file reading and writing, graphic rendering, database interaction, and XML document manipulation.

3 questions
2
votes
2 answers

Is System.AddIn mostly about making it easier to use Remoting or does it make it harder to do so?

It takes at least 7 assemblies and restricting my AddIn's data model to data types that remoting can deal with before the appdomain isolation features begin to work. It is so complex! The System.AddIn teams blog implies to me they were trying to…
MatthewMartin
  • 32,326
  • 33
  • 105
  • 164
1
vote
1 answer

What is Purpose of use of ReactiveUI in Xamarin

I am a regular stack overflow user and I have been in the Android community for a while, Recently I am seeing a lot of questions related to ReactiveUI in xamarin and I am not sure what it is, I tried googling about it but did'nt get any satisfactory…
FreakyAli
  • 13,349
  • 3
  • 23
  • 63
1
vote
1 answer

Unnecessary null check in KeyedCollection.Contains(TKey)

Just found an unnecessary null check in KeyedCollection.Contains(TKey). Appreciate it's only a very small optimization, but shouldn't thought this sort of inefficiency be picked up by an automated code analysis tool? Here's the C# generated by…
si618
  • 16,580
  • 12
  • 67
  • 84