Tagged Questions

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

68
votes
9answers
2k views

How did Microsoft create assemblies that have circular references?

In the .NET BCL there are circular references between: System.dll and System.Xml.dll System.dll and System.Configuration.dll System.Xml.dll and System.Configuration.dll Here's a screenshot from ...
29
votes
6answers
1k 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"); ...
23
votes
5answers
744 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 ...
18
votes
1answer
415 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 ...
12
votes
1answer
239 views

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

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 ...
11
votes
11answers
4k views

Why is there no Char.Empty like String.Empty?

Is there a reason for this? I am asking this because if you needed to use lots of empty char, then you get into the same situation as you would when you use lots of empty strings. Edit: The reason ...
11
votes
13answers
1k views

Go To Statement Considered Harmful?

If the statement above is correct, then why when I use reflector on .Net BCL I see it is used a lot? EDIT: let me rephrase: are all the GO-TO's I see in reflector written by humans or compilers?
10
votes
1answer
200 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 ...
9
votes
6answers
533 views

Efficient, Immutable, Extensible Collections for .NET

It seems to me there is an extreme lack of safe, immutable collection types for .NET, in particular BCL but I've not seen much work done outside either. Do anyone have any pointers to a (preferably) ...
8
votes
1answer
2k views

How to create multiple directories from a single full path in C#?

If you have a full path like: "C:\dir0\dir1\dir2\dir3\dir4\" how would you best implement it so that all directories are present? Is there a method for this in the BCL? If not, what's the most ...
7
votes
9answers
316 views

Would .NET be able to function just as well without the use of type Object?

I am asking this because it seems like using Object seems to be an easy way out to solve certain problems, like "I don't have a specific type, so use Object", etc. Also the reason this made me ...
6
votes
1answer
94 views

Why no AutoResetEventSlim in BCL?

Why isn't there an AutoResetEventSlim class in BCL? Can it be simulated using ManualResetEventSlim?
6
votes
3answers
223 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 ...
6
votes
3answers
187 views

Why we use flush parameter with Encoder.GetBytes method

This link explains the Encoder.GetBytes Method and there is a bool parameter called flush explained too . The explanation of flush is : true if this encoder can flush its state at the end of the ...
6
votes
5answers
258 views

What's the reason of using implicit/explicit convertions instead of constructors?

An example would be: XNamespace ns = "my namespace" Why not?: XNamespace ns = new XNamespace ( "my namespace" ) What's the idea behind using implicit/explicit convertions instead of ...
6
votes
5answers
409 views

What is the reason for IEnumerable/IEnumerable<T> interfaces to only have MoveNext?

Basically I am wondering why MS decided to implement an enumerator that only supports going forward: MoveNext(). Is it not more flexible to also enforce MovePrevious for this widely used interface ...
4
votes
2answers
181 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. ...
4
votes
2answers
153 views

Why does not IDictionary (non-generic) inherit from IEnumerable<DictionaryEntry>?

IDictionary<TKey, TValue> inherits from IEnumerable<KeyValuePair<TKey, TValue>>, but IDictionary for some reason doesn't inherit from IEnumerable<DictionaryEntry>. I wonder ...
3
votes
1answer
91 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 ...
3
votes
1answer
91 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 ...
2
votes
4answers
51 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 ...
2
votes
2answers
89 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
53 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 ...
2
votes
1answer
67 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.
2
votes
2answers
68 views

Why doesn't the BCL have CRC classes?

I don't know how to expand really, my question is the title. Thanks.
2
votes
4answers
366 views

What is the maximum amount of characters or length for a Directory?

What is the maximum amount of characters that a typical path can contain for a directory when using C#? For example C:\test\ has 7 characters in length , what is the maximum length?
2
votes
4answers
642 views

How to represent countries and languages in C#?

I will retrieve this data from an xml to initialize it for thousands of objects. So if MyObject has a Country and Language property, what should they be, and how should they be represented both in ...
1
vote
1answer
37 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 ...
1
vote
2answers
73 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 ...
1
vote
2answers
768 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 ...
1
vote
3answers
156 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 ...
1
vote
4answers
129 views

Is there a “Number” struct/class in .NET?

I am attempting to store a variable length number that can have leading zeros as a part of that number. Is there a class in the .NET framework capable of storing values like this without losing ...
0
votes
0answers
38 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 ...
0
votes
1answer
43 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: ...
0
votes
0answers
61 views

How can you get a list of all MUI Languages installed using pure C#?

Is there any functionality within the .Net BCL that allows for getting a list of all the MUI Languages installed programmatically? I know I can use P/Invoke and call the MUI Function EnumUILanguages ...
0
votes
1answer
39 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 ...
0
votes
1answer
136 views

What types are required by C#? [closed]

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 ...
0
votes
0answers
144 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 ...
0
votes
3answers
200 views

Good books for the .NET 3.5 BCL? [closed]

I'm looking for a good book that covers the .NET 3.5 base class library, using C# as the language. I'm going to be bringing my team up to speed on .NET in general, and I'd like to use the book as a ...
0
votes
2answers
236 views

Is Environment.TickCount affected by system time adjustments?

I'm curious as to how the .NET BCL property Environment.TickCount is implemented. In particular I'd like to now if it is affected by system time adjustments. My first guess as to how the property was ...
-2
votes
2answers
36 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 ...