Tagged Questions

The tag has no wiki summary.

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 ...
8
votes
2answers
156 views

Why do the overloads of String.Format exist?

I was using Reflector to look at the implementation of String.Format and had always been under the impression that the overloads of String.Format that took 1, 2 & 3 arguments were optimized ...
6
votes
2answers
151 views

Is using System.* Namespaces on your own classes considered Bad Practice?

I have a class called ConfigurationElementCollection<T> It's a generic implementation of System.Configuration.ConfigurationElementCollection It's stored in our solutions', Project.Utility.dll ...
6
votes
1answer
595 views

Why did .NET's EnableDecompression default value change between 2.0 and 3.0?

We use .NET Web Services--both non-WCF and WCF, though the overwhelming majority is non-WCF, for legacy reasons--pretty heavily, and as I was testing something in Fiddler, I noticed that the response ...
6
votes
6answers
686 views

Exactly how large is the .NET (3.5) Framework Class Library?

I've regularly read that the framework is just too large for one developer to have experience with every part of it. Having some actual numbers would certainly help put things in perspective. MSDN ...
5
votes
6answers
115 views

Are there significant performance gains inherent in using .NET's built in classes?

Quick little question... I know that sometimes in other languages libraries have part of their code written in platform-specific straight C for performance reasons. In such cases you can get huge ...
5
votes
1answer
84 views

Is it legal to quote from the Microsoft Reference Source or from reflected BCL code?

I've noticed that some questions here on StackOverflow (example) are answered by quoting either some part of the .net Reference Code or some decompiled parts of the .net base class library (using ...
4
votes
3answers
1k views

bundle .NET dlls to run application in .NET-less machine?

AFAIK, ngen turns MSIL into native code (also reffered to as pre-JIT), however I never payed too much attention at it's startup performance impact. Ngen'd applications still require the .NET base ...
2
votes
5answers
164 views

Converting Object.GetHashCode() to Guid

I need to assign a guid to objects for managing state at app startup & shutdown It looks like i can store the lookup values in a dictionary using ...
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
5answers
389 views

Why is there no SortedList<T> in .NET?

Why is there only a SortedList<TKey, TValue> which looks more like a dictionary, but no SortedList<T> that is actually just a list that is always sorted? According to the MSDN ...
1
vote
4answers
317 views

Updating only .dll of a reference in my ASP.NET Application

I have a deployed web application project that references my Utility.dll class library. I want to make a change to the Utlity.dll and roll only that .dll out. The problem is that when I do that, I ...
1
vote
5answers
228 views

What sort of mathematics do you use in your .Net app?

Excluding everything that's in System.Math. I think that System.Math is woefully inadequate. For example, in several official .Net frameworks, I can count 3 different implementations of matrices. ...
0
votes
1answer
133 views

Tool to determine .NET assembly framework dependencies

I'm looking for a tool that can tell me what frameworks a .NET assembly will work under. Or more specifically, what BCL (base class libraries) versions the methods within it requires. What triggered ...
0
votes
1answer
40 views

Why need to mention “Supported by the .NET Compact Framework” for classes members?

In MSDN documentation, many .NET classes methods (like ArrayList ) mentioned that "Supported by the .NET Compact Framework". How internally it has been modified so that it has been supported by .NET ...