¡@

Home 

c# Programming Glossary: bcl

Are static methods thread safe

http://stackoverflow.com/questions/1090650/are-static-methods-thread-safe

try to make them thread safe. I can't think of any .NET BCL static methods which aren't thread safe. Instance methods are..

Why does my C# gzip produce a larger file than Fiddler or PHP?

http://stackoverflow.com/questions/11435200/why-does-my-c-sharp-gzip-produce-a-larger-file-than-fiddler-or-php

output from 11 bytes of input. See my comments at Why does BCL GZipStream with StreamReader not reliably detect Data Errors..

Multi-key dictionary in c#?

http://stackoverflow.com/questions/1171812/multi-key-dictionary-in-c

key dictionary in c# I know there isn't one in the BCL but can anyone point me to a good opensource one By Multi I..

Single-assembly multi-language Windows Forms deployment (ILMerge and satellite assemblies / localization) - possible?

http://stackoverflow.com/questions/1952638/single-assembly-multi-language-windows-forms-deployment-ilmerge-and-satellite-a

articles but no clue as to how it would be modified BCL Team Blog Article on ResourceManager . Does anyone have any..

Should you declare methods using overloads or optional parameters in C# 4.0?

http://stackoverflow.com/questions/251868/should-you-declare-methods-using-overloads-or-optional-parameters-in-c-sharp-4-0

distinct note I know this change will not be made in the BCL I'm talking hypothetically for this type of situation . What..

ObservableCollection that also monitors changes on the elements in collection

http://stackoverflow.com/questions/269073/observablecollection-that-also-monitors-changes-on-the-elements-in-collection

on the elements in collection Is there a collection BCL or other that has the following characteristics Sends event.. ContainerElementChanged Thoughts EDIT Should note that the BCL ObservableCollection only exposes the INotifyPropertyChanged..

What requirement was the tuple designed to solve?

http://stackoverflow.com/questions/3089706/what-requirement-was-the-tuple-designed-to-solve

users they are an extremely useful set of data types. The BCL team decided to work with the F# team to standardize on one..

Reading csv file

http://stackoverflow.com/questions/3507498/reading-csv-file

the wheel. Take advantage of what's already in .NET BCL. add a reference to the Microsoft.VisualBasic yes it says VisualBasic..

Question about terminating a thread cleanly in .NET

http://stackoverflow.com/questions/3632149/question-about-terminating-a-thread-cleanly-in-net

works by injecting an exception inside one of the canned BCL blocking calls. These include Thread.Sleep WaitHandle.WaitOne.. algorithm does not use one of the blocking calls in the BCL then this method will not work for you. The theory here is that.. it. I am sure there are several other areas in the BCL where similiar techniques can be used to unblock a thread. ..

.NET: Simplest way to send POST with data and read response

http://stackoverflow.com/questions/4088625/net-simplest-way-to-send-post-with-data-and-read-response

nearly as simple as this from what I can tell in the .NET BCL byte response Http.Post url http dork.com service contentType..

Comparing two byte arrays in .NET

http://stackoverflow.com/questions/43289/comparing-two-byte-arrays-in-net

a2 i return false return true but I'm looking for either a BCL function or some highly optimized proven way to do this. Edit..

Why is TypedReference behind the scenes? It's so fast and safe… almost magical!

http://stackoverflow.com/questions/4764573/why-is-typedreference-behind-the-scenes-its-so-fast-and-safe-almost-magical

.NET Framework Class Library and Base Class Library. BCL is the only thing required for a conforming implementation of.. profile either . As soon as you use a method outside BCL you are giving up a bit of portability and this is becoming..

Creating a blocking Queue<T> in .NET?

http://stackoverflow.com/questions/530211/creating-a-blocking-queuet-in-net

there an object that already enables this behavior in the BCL that I should be using internal class BlockingCollection T CollectionBase..

Get all inherited classes of an abstract class [duplicate]

http://stackoverflow.com/questions/5411694/get-all-inherited-classes-of-an-abstract-class

in GUI applications that I'm surprised there isn't a BCL class to do this out of the box. Here's how I do it. public..

Immutability of structs [duplicate]

http://stackoverflow.com/questions/608542/immutability-of-structs

like the ones in xna. Probably there are many more in the BCL. What are the pros and cons of not following this guideline..

Quickest way to convert a base 10 number to any base in .NET?

http://stackoverflow.com/questions/923771/quickest-way-to-convert-a-base-10-number-to-any-base-in-net

to convert to any base I'm not aware of any method in the BCL which is capable to convert numbers to any base so you would..