Tagged Questions

The 3.5 version of the .NET Framework, which is based on the 2.0 .NET Framework with extra assemblies (including 3.0).

learn more… | top users | synonyms (2)

141
votes
34answers
39k views

What is the best logging solution for a C# .NET 3.5 project? [closed]

My team is about to start a new enterprise wide ASP.NET development project, quite possibly the largest undertaken by my department so far and the largest project that I've ever worked on. I'm looking ...
138
votes
9answers
113k views

LINQ query on a DataTable

I'm trying to perform a LINQ query on a DataTable object and bizarrely I am finding that performing such queries on DataTables is not straightforward. For example: var results = from myRow in ...
92
votes
3answers
22k views

What is the difference between IQueryable<T> and IEnumerable<T>?

What is the difference between IQueryable<T> and IEnumerable<T>?
82
votes
7answers
6k views

How can I take more control in ASP.NET?

I'm trying to build a very, very simple "micro-webapp" which I suspect will be of interest to a few Stack Overflow'rs if I ever get it done. I'm hosting it on my C# in Depth site, which is vanilla ...
78
votes
20answers
3k views

Am I getting left behind by not using the new features of the .NET framework (.NET 3.0 & 3.5)?

Where I work I see a lot of otherwise very talented C++ developers produce ugly C# code, purely because they are not as familiar with the .NET framework and the features of C#. Now I only started ...
69
votes
5answers
42k views

Creating a byte array from a stream

What is the preffered method for creating a byte array from an input stream? Here is my current solution with .NET 3.5. Is it still a better idea to read and write chunks of the stream? Stream s; ...
67
votes
21answers
55k views

Could not find default endpoint element

I've added a proxy to a webservice to a VS2008/.NET 3.5 solution. When constructing the client .NET throws this error: Could not find default endpoint element that references contract ...
64
votes
10answers
60k views

How do I tell if .NET 3.5 SP1 is installed?

How can I find out if SP1 has been installed on a server which has .NET 3.5?
56
votes
1answer
1k views

How to tell Pex not to stub an abstract class that has concrete implementations

I'm trying to use Pex to test some code. I have an abstract class with four concrete implementations. I have created factory methods for each of the four concrete types. I had also created one for ...
54
votes
10answers
21k views

Memcached with Windows and .NET

Is there anyone already implement memcached for production use in Windows environment? Because many blogs that I've read, it's not recommended to run memcached in Windows especially for production ...
51
votes
12answers
10k views

Named string formatting in C#

Is there any way to format a string by name rather than position in C#? In python, I can do something like this example (shamelessly stolen from here): >>> print '%(language)s has %(#)03d ...
49
votes
12answers
18k views

Tools for finding unused references

Are there any good tools or tricks for determining if there are any referenced but unused dependencies (such as dlls) in a project? My specific case is C# .net3.5.
47
votes
34answers
10k views

When creating a new GUI, is WPF the preferred choice over Windows Forms? [closed]

Most restrictions and tricks with windows forms are common to most programmers. But since .NET 3.0 there is also WPF available, the Windows Presentation Foundation. It is said that you can make "sexy ...
47
votes
16answers
19k views

How to parse a string into a nullable int in C# (.NET 3.5)

I'm wanting to parse a string into a nullable int in C#. ie. I want to get back either the int value of the string or null if it can't be parsed. I was kind of hoping that this would work int? val ...
46
votes
5answers
28k views

WCF - How to Increase Message Size Quota

I have a WCF Service which returns 1000 records from database to the client. I have a ASP.NET WCF client - (I have added service reference in asp.net web application project to consume WCF). I get the ...
41
votes
8answers
17k views

Concat all strings inside a List<string> using LINQ

Wondering if there is an easy LINQ Expression to concatenate my entire List collection items to a single string with a Delimiter character. UPDATE: What if the collection is of custom objects instead ...
39
votes
3answers
13k views

How to bind inverse boolean properties in WPF?

I am open to suggestions with the title. It really is pretty bad. What I have is an object that has an IsReadOnly property. If this property is true, I would like to set the IsEnabled property on a ...
35
votes
2answers
3k views

Which method performs better: .Any() vs .Count() > 0?

in the System.Linq namespace, we can now extend our IEnumerable's to have theAny() and Count() extension methods. I was told recently that if i want to check that a collection contains 1 or more ...
35
votes
9answers
7k views

How to join int[] to a character separated string in .NET?

I have a array of integers: int [] number = new int[] { 2,3,6,7 }; What is the easiest way of converting these in to a single string where the number are separated by a character (like: "2,3,4,7")? ...
30
votes
11answers
15k views

Conditional Linq Queries

We're working on a Log Viewer. The use will have the option to filter by user, severity, etc. In the Sql days I'd add to the query string, but I want to do it with Linq. How can I conditionally add ...
29
votes
5answers
17k views

Linq Distinct on a particular Property

I am playing with Linq to learn about it but I can't figure out how to Distinct when I do not have a simple list (a simple list of integer is pretty easy to do, this is not the question). What if want ...
29
votes
11answers
20k views

'Contains()' workaround using Linq to Entities?

I'm trying to create a query which uses a list of ids in the where clause, using the Silverlight ADO.Net Data Services client api (and therefore Linq To Entities). Does anyone know of a workaround to ...
28
votes
13answers
7k views

Wait until file is unlocked in .NET

What's the simplest way of blocking a thread until a file has been unlocked and is accessible for reading and renaming? For example, is there a WaitOnFile() somewhere in the .NET Framework? I have a ...
27
votes
7answers
16k views

How can I get gzip compression in IIS7 working?

I have installed Static and dynamic compression for IIS7, as well as setting the two web.config values at my application ( Virtual Folder ) level. As I understand it, I don't need to enable ...
27
votes
8answers
3k views

What to use: var or object name type?

this is a question that when programming I always wonder: What to use when we are writting code: var myFiles = Directory.GetFiles(fullPath); or string[] myFiles = Directory.GetFiles(fullPath); ...
27
votes
12answers
7k views

How to begin WPF development?

I've been using Winforms since .NET 1.1 and I want to start learning WPF. I'm looking for some good resources for a beginner in WPF. What should I read, what tools do I need, and what are the best ...
26
votes
3answers
7k views

Is there a DesignMode property in WPF?

In Winforms you can say if ( DesignMode ) { // Do something that only happens on Design mode } is there something like this in WPF?
26
votes
16answers
12k views

Beginners Guide to LINQ

During the beta of Stack Overflow, I have seen quite a few questions about LINQ SQL but know nothing about it... it sounds very interesting. What is LINQ and how do I get started? Links guides or ...
25
votes
20answers
2k views

Convince me to move to .net 3.5 (from 2.0)

I am into new desktop app development. I feel at home with .NET 2.0 and c#. I guess I don't need linq, nor care for WPF and other Vista-oid fancy keywords. I also like rather tight and slim 2.0 ...
25
votes
5answers
3k views

LINQ: Dot Notation vs Query Expression

I am beginning to use LINQ in general (so far toXML and toSQL). I've seen that sometimes there are two or more ways to achieve the same results. Take this simple example, as far as I understand both ...
25
votes
8answers
6k views

WCF book recommendations [closed]

Which WCF book(s) would you recommend? (It is touched on in other questions, but not directly...)
23
votes
4answers
2k views

A Linq to Sql - Multiple .DBML files or one .DBML File

I am working on a web application using ASP.NET 3.5. The application has hundreds of tables. I was told in a seminar that I should use one .DBML file for the entire application instead of using ...
23
votes
9answers
11k views

WPF CommandParameter is NULL first time CanExecute is called

I have run into an issue with WPF and Commands that are bound to a Button inside the DataTemplate of an ItemsControl. The scenario is quite straight forward. The ItemsControl is bound to a list of ...
23
votes
15answers
10k views

Error when using extension methods in C#

I came across an issue that makes me think there is bug in the 3.0 framework. When I try to use extension methods I get the following error: Missing compiler required member ...
23
votes
16answers
7k views

Cloud Hosting options for ASP.NET 3.5 and SQL Server 2008

I would like to get a list of good cloud hosting companies and what is offered by each. I specifically would like to focus on companies that can handle ASP.NET 3.5 and SQL Server 2008. Hopefully their ...
22
votes
5answers
1k views

What are some good alternatives to multiple-inheritance in .NET?

I've run into a bit of a problem with my class hierarchy, in a WPF application. It's one of those issues where you have two inheritance trees merging together, and you can't find any logical way to ...
22
votes
6answers
4k views

StringDictionary vs Dictionary<string, string>

Does anyone have any idea what the practical differences are between the System.Collections.Specialized.StringDictionary object and System.Collections.Generic.Dictionary? I've used them both in the ...
22
votes
9answers
10k views

What are some good LINQ resources?

I have just finished reading "LINQ in Action" which I have found to be a great resource. What are some other resources available?
21
votes
5answers
982 views

C# Why can't an anonymous method be assigned to var?

I have the following code: Func<string, bool> comparer = delegate(string value) { return value != "0"; }; However, the following does not compile: var comparer = delegate(string value) { ...
21
votes
7answers
942 views

When can a == b be false and a.Equals(b) true?

I ran into this situation today. I have an object which I'm testing for equality; the Create() method returns a subclass implementation of MyObject. MyObject a = MyObject.Create(); MyObject b = ...
21
votes
6answers
6k views

Serializing anonymous delegates in C#

I am trying to determine what issues could be caused by using the following serialization surrogate to enable serialization of anonymous functions/delegate/lambdas. // see ...
21
votes
12answers
22k views

.NET 3.5 chart controls exception: Error executing child request for ChartImg.axd

Anyone getting this error when using the new free chart controls MS bought from Dundas? "Error executing child request for ChartImg.axd" On the MSDN forum they suggested it was my web.config: MSDN ...
21
votes
7answers
8k views

Embedding one dll inside another as an embedded resource and then calling it from my code

I've got a situation where I have a DLL I'm creating that uses another third party DLL, but I would prefer to be able to build the third party DLL into my DLL instead of having to keep them both ...
21
votes
11answers
5k views

Which .Net collection for adding multiple objects at once and getting notified?

Was considering the System.Collections.ObjectModel ObservableCollection<T> class. This one is strange because it has an Add Method which takes one item only. No AddRange or equivalent. the ...
20
votes
1answer
441 views

Is it possible to intercept Console output?

I call a method, say, FizzBuzz(), over which I have no control. This method outputs a bunch of stuff to the Console using Console.WriteLine. Is it possible for me to intercept the output being ...
20
votes
6answers
4k views

Response.Redirect causes System.Threading.ThreadAbortException

When I use Response.Redirect(...) to redirect my form to a new page I get the error: A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll An exception of ...
20
votes
5answers
13k views

WCF WebService / IIS Hosting & Configuration Issue Behind a Firewall

I have a simple WCF Web service. It's hosted on IIS under the default website in our production domain. (local address: 10.10.20.100) By default this default website was setup for "All Unassigned" ...
20
votes
14answers
2k views

Prerequisite knowledge for ASP.NET MVC

After being frustrated in my attempts to learn the arcana that is ASP.NET, I decided to try ASP.NET MVC. I have extensive experience with C# 2.0 doing just about everything (WinForms, Windows ...
19
votes
4answers
3k views

C# Conditional Compilation and framework targets

There are a few minor places where code for my project may be able to be drastically improved if the target framework were a newer version. I'd like to be able to better leverage conditional ...
19
votes
3answers
2k views

Guid == null should not be allowed by the compiler

Possible Duplicate: C# okay with comparing value types to null The behaviour described below is specific to .net-3.5 only Hello, I just ran across the most astonishing behavior in the ...

1 2 3 4 5 83