Tagged Questions

38
votes
9answers
806 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 …
27
votes
12answers
2k views

Why should you remove unnecessary C# using directives?

For example, I rarely need: using System.Text; but it's always there by default. I assume the application will use more memory if your code contains unnecessary using directives. But is there …
22
votes
4answers
3k views

What are differences between AssemblyVersion, AssemblyFileVersion and AssemblyInformationalVersion?

There are three assembly version attributes. What are differences? Is it ok if I use AssemblyVersion and ignore the rest? MSDN says: AssemblyVersion: Specifies the version of the assembly …
19
votes
15answers
567 views

How to stop Visual Studio adding assemblies to my web.config?

Every time i build, or publish, a web-site, Visual Studio attempts to check out the web.config file so that it can add numerous assemblies that are not required. In other words: web.config before: …
17
votes
7answers
1k views

What are the best practices for using Assembly Attributes?

I have a solution with multiple project. I am trying to optimize AssemblyInfo.cs files by linking one solution wide assembly info file. What are the best practices for doing this? Which attributes …
12
votes
3answers
423 views

What exactly is an Assembly in C# or .NET?

Could you please explain what is an Assembly in C# or .NET? Where does it begin and where does it end? What important information should I know about Assemblies?
12
votes
6answers
785 views

How slow is Reflection (C#)

I recently created an interface layer to distinguish the DataAccessProvider from our Business logic layer. With this approach we can change our choice of DataAccessProvider whenever we want by …
12
votes
6answers
1k views

Best practices for signing .NET assemblies?

I have a solution consisting of 5 projects, each of which compile to separate assemblies. Right now I'm code-signing them, but I'm pretty sure I'm doing it wrong. What's the best practice here? Sign …
10
votes
3answers
2k views

What is the best practice for compiling Silverlight and WPF in one project?

I've just completed a Silverlight project and it's time to have a little clean up. I'd like to take my core files and put them into a separate project which I will reference from my main Silverlight …
8
votes
11answers
538 views

Version numbers is 1.13 > 1.2?

I know from the .NET perspective that an assembly with a version of 1.13 is considered a newer release than version 1.2 because each number in the version is evaluated individually. However from a …
8
votes
8answers
688 views

Does .NET assembly size affect performance?

Hi, Does the size of a .net assembly affect performance at all? How about the number of assemblies in your windows forms/web forms project?
8
votes
3answers
2k views

How to determine if .NET assembly was built for x86 or x64?

I've got an arbitrary list of .NET assemblies. I need to programmatically check if each dll was built for x86. (As opposed to x64 or AnyCPU.) Is this possible?
7
votes
3answers
860 views

Can strong naming an assembly be used to verify the assembly author?

After reading the proper article in MSDN and related stackoverflow.com questions here, I finally return to the community. To which extent can a strong-named assembly be verified to avoid tampering? …
7
votes
2answers
630 views

.NET assemblies and DLL rebasing

According to this article rebasing is not necessary for .NET assemblies due to JIT compilation of the code. The article states: "JIT-compiled code does not have a rebasing problem since the …
7
votes
5answers
702 views

Embedding assemblies inside another assembly

If you create a class library that uses things from other assemblies, is it possible to embed those other assemblies inside the class library as some kind of resource? i.e. Instead of having …

1 2 3 4 5 36 next
15 30 50 per page