Tagged Questions

The 2.0 version of the .NET Framework.

learn more… | top users | synonyms (1)

75
votes
13answers
42k views

XmlSerializer - There was an error reflecting type

Using C# .NET 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating an XMLSerializer class and passing that into the constructor: XmlSerializer ...
41
votes
8answers
15k views

Is there an alternative to string.Replace that is case-insensitive?

I need to search a string and replace all occurances of %FirstName% and %PolicyAmount% with a value pulled from a database. The problem is the capitalization of FirstName varies. That prevents me from ...
39
votes
30answers
85k views

Invalid postback or callback argument. Event validation is enabled using '<pages enableEventValidation=“true”/>'

I am getting the following error when I post back a page from the client-side. I have JavaScript code that modifies an asp:ListBox on the client side. How do we fix this? Error details below: ...
38
votes
18answers
36k views

Best way to reverse a string in C# 2.0

I've just had to write a string reverse function in C# 2.0 (i.e. LINQ not available) and came up with this: public string Reverse(string text) { char[] cArray = text.ToCharArray(); string ...
36
votes
3answers
16k views

Can I control the location of .NET user settings to avoid losing settings on application upgrade?

I'm trying to customize the location of the user.config file. Currently it's stored with a hash and version number %AppData%\[CompanyName]\[ExeName]_Url_[some_hash]\[Version]\ I want to it be ...
29
votes
2answers
32k views

How do I get and set Environment variables in C#?

How can I get Environnment variables and if something is missing, set the value?
27
votes
8answers
17k views

Getting key of value of a generic Dictionary?

It's easy to get the value of a key from a .Net 2.0 generic Dictionary: Dictionary<int, string> greek = new Dictionary<int, string>(); greek.Add(1, "Alpha"); greek.Add(2, "Beta"); string ...
26
votes
4answers
9k views

System.Web.Caching vs. Enterprise Library Caching Block

For a .NET component that will be used in both web applications and rich client applications, there seem to be two obvious options for caching: System.Web.Caching or the Ent. Lib. Caching Block. ...
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
31k views

How to create a simple proxy in C#?

I have downloaded Privoxy few weeks ago and for the fun I was curious to know how a simple version of it can be done. I understand that I need to configure the browser (client) to send request to the ...
25
votes
11answers
24k views

Best way to encode text data for XML

I was looking for a generic method in .Net to encode a string for use in an Xml element or attribute, and was surprised when I didn't immediately find one. So, before I go too much further, could I ...
20
votes
11answers
27k views

Sorting Directory.GetFiles()

System.IO.Directory.GetFiles() returns a string[]. What is the default sort order for the returned values? I'm assuming by name, but if so how much does the current culture effect it? Can you ...
18
votes
3answers
12k views

Regex: Named Capturing Groups in .NET

I'm having a hard time finding a good resource that explains how to use Named Capturing Groups in C#. This is the code that I have so far: string page = Encoding.ASCII.GetString(bytePage); Regex ...
17
votes
7answers
21k views

How to get xpath from an XmlNode instance. C#

Could someone supply some code that would get the xpath of a System.Xml.XmlNode instance? Thanks!
17
votes
6answers
10k views

What’s the difference between the System.Array.CopyTo() and System.Array.Clone()?

What’s the difference between the System.Array.CopyTo() and System.Array.Clone()?
16
votes
5answers
2k views

Why do people consistently recommend using appConfig instead of using Settings files? (.NET)

Very often I see the answer to the question like: "How should I store settings in my .NET app?" is to edit the app.config file by manually adding entries to the app.config (or web.config) like so: ...
16
votes
5answers
5k views

Nunit.exe cannot work on Vista 64bits if x86 build

I am on Vista 64 bits and I have a project built with x86 configuration. All work fine. Now, we are at the time to create test. We have NUnit 2.4.8 but we have a lot of problem. The test are loading ...
15
votes
7answers
11k views

Merging two arrays in .Net

Is there a built in function in .Net 2.0 that will take two arrays and merge them into one array? The arrays are both of the same type. I'm getting these arrays from a widely used function within my ...
14
votes
10answers
8k views

Editing dictionary values in a foreach loop

I and trying to build a pie chart from a dictionary. Before I display the pie chart, I want to tidy up the data. I'm removing any pie slices that would be less than 5% of the pie and putting them in a ...
14
votes
6answers
2k views

What is the 'page lifecycle' of an ASP.NET WebForm?

I'm looking to get a more thorough understanding of the ASP.NET page lifecycle. I'm in the process of building custom form controls and have found my knowledge in this area to be lacking. Are there ...
14
votes
7answers
2k views

How to unit test if my object is really serializable?

I am using C# 2.0 with Nunit Test. I have some object that needs to be serialized. These objects are quite complex (inheritance at different levels and contains a lot of objects, events and ...
14
votes
5answers
7k views

How to configure security when calling WCF Service from .Net 2.0 Client

I have a WCF service up and running and am able to communicate between the service and a .Net 2.0 Client using basicHttpBinding. I now need to lock down the WCF service so that it can only be ...
14
votes
8answers
26k views

C#: Getting maximum and minimum values of arbitrary properties of all items in a list

I have a specialized list that holds items of type IThing: public class ThingList : IList<IThing> {...} public interface IThing { Decimal Weight { get; set; } Decimal Velocity { get; ...
14
votes
7answers
4k views

.net: System.Web.Mail vs System.Net.Mail

I am considering converting a project that I've inherited from .net 1.1 to .net 2.0. The main warning I'm concerned about is that it wants me to switch from System.Web.Mail to using System.Net.Mail. ...
13
votes
6answers
9k views

How to decode OAuth 2.0 for Canvas signed_request in C#?

I'm able to successfully validate the signed request for a Facebook canvas app using the example here, but I'm unable to decode the payload. The Facebook documentation states that the 2nd parameter ...
12
votes
1answer
464 views

When executing an application on .net 4.0, complied under .net 2.0

Question With the conditions below, the following (A)c# source code complied under .NET 2.0(CLR 2.0) the above application having the (B)app.config only .NET 4.0(CLR 4.0) installed on environment ...
12
votes
2answers
1k views

yield return statement inside a using() { } block Disposes before executing

I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern. This is all based on the .NET 2.0 Framework (given constraints for the ...
12
votes
4answers
44k views

Compare two Lists for differences

I would like some feedback on how we can best write a generic function that will enable two Lists to be compared. The Lists contain class objects and we would like to iterate through one list, looking ...
12
votes
7answers
5k views

Array.Join in .Net?

Ok, this is a dumb thing that I'm sure I've done dozens of times but for some reason I can't find it. I have an array... And want to get a string with the contents of that array separated by a ...
12
votes
5answers
13k views

Strange Error - CS0012: The type x is defined in an assembly that is not referenced

The type 'x' is defined in an assembly that is not referenced. You must add a reference to assembly 'abc123'. I have a .NET 2.0 web application that references my assembly 'abc123'. The assembly ...
12
votes
10answers
1k views

ASP.Net RSS feed

How do I create an rss feed in ASP.Net? Is there anything built in to support it? If not, what third-party tools are available? I'm thinking webforms, not MVC, though I suppose since this isn't a ...
11
votes
2answers
1k views

Difference between EventLog.WriteEntry and EventLog.WriteEvent methods

I tried using WriteEntry and WriteEvent methods of EventLog class. EventLog.WriteEntry("Saravanan", "Application logs an entry", EventLogEntryType.Information, 2, 3); EventLog.WriteEvent("Saravanan", ...
11
votes
1answer
2k views

What happens when .NET 4.0 references a .NET 2.0 assembly?

What exactly does the .NET 4.0 runtime do if a .NET 4.0 executable contains a reference to a .NET 2.0 assembly? Is the .NET 2.0 assembly run with the .NET 4.0 runtime (in other words, .NET 4.0 must ...
11
votes
2answers
2k views

Can .NET 4.0 code interoperate with .NET 2.0 code?

Are there compatibility barriers with a .NET 4.0 assembly calling code in a .NET 2.0 assembly? And vice versa? More specifically, I'm investigating an upgrade to Visual Studio 2010 when using a ...
11
votes
5answers
6k views

Write file from assembly resource stream to disk

I can't seem to find a more efficient way to "copy" an embedded resource to disk, than the following: using (BinaryReader reader = new BinaryReader( ...
11
votes
4answers
7k views

Migrate VB.NET 2.0 Winform to 3.5 WPF

Is it possible to migrate a VB.NET Winform solution to a 3.5 WPF solution. If so, any suggestions how to do it? Thanks in advance! JFV
11
votes
15answers
698 views

.NET 3.5 published in 11/07 .NET 3.0 in 11/06. Why are most people still using .NET 2.0?

People have been developing own solutions to the following problems: Consistent messaging frameworks for remote information exchange (webservices,rpc,...) SDK's for state managements for things ...
11
votes
8answers
10k views

LINQ on the .NET 2.0 Runtime

Can a LINQ enabled app run on a machine that only has the .NET 2.0 runtime installed? In theory, LINQ is nothing more than syntactic sugar, and the resulting IL code should look the same as it ...
10
votes
8answers
828 views

What issues might I have in opening .NET 2.0 Projects in Visual Studio 2010?

The small software team I work on recently got approved to upgrade to Visual Studio 2010 (we're currently using VS 2005). We have several ASP.NET 2.0 and WinForms (in .NET 2.0) projects in ...
10
votes
15answers
7k views

How to get next( previous) Enum Value in C#

I have got an enum which is defined like this: public enum eRat { A = 0, B=3, C=5, D=8 }; So given value eRat.B, I want to get the next one which is eRat.C The solution I see is (without range ...
10
votes
4answers
3k views

Threading.Timer vs. Forms.Timer

The short form of this question: When, if ever, is it appropriate to use the Forms.Timer in a multithreaded WinForms application? More specifically, I am architecting an application that uses ...
10
votes
4answers
4k views

Is it possible to initialise a New System.Collections.Generic.Dictionary with String key/value pairs?

Is it possible to create and initialise a System.Collections.Generic.Dictionary object with String key/value pairs in one statement? I'm thinking along the lines of the constructor for an array of ...
10
votes
3answers
5k views

Redirect Trace output to Console

Let's say I'm working on a little batch-processing console app in VB.Net. I want to be able to structure the app like this: Sub WorkerMethod() ''//Do some work Trace.WriteLine("Work progress") ...
10
votes
4answers
4k views

VS2008 Setup Project always requires .NET 3.5 at install time but I don't need it!

1, Create and build a default Windows Forms project and look at the project properties. It says that the project is targetting .NET Framework 2.0. 2, Create a Setup project that installs just the ...
10
votes
3answers
2k views

Reserved Keyword in Enumeration in C#

I would like to use "as" and "is" as members of an enumeration. I know that this is possible in VB.NET to write it like this: Public Enum Test [as] = 1 [is] = 2 End Enum How do I write ...
10
votes
9answers
24k views

Best TinyMce editor Image Manager / File upload for Asp.net Mvc

What is the best Image Manager to integrate in TinyMce editor apart the official Moxiecode commercial ones? I'm looking to integrate a light texteditor in an asp.net mvc application and I choosed the ...
9
votes
6answers
205 views

What are the benefits to a client of upgrading a system from .Net 2 to .Net 3.5 or 4

In a recent interview one of the questions I was asked was ‘What is the benefit to our clients if we upgrade to .Net 3.5/4’. In other words If we upgrade all of our systems, all our clients will ...
9
votes
4answers
222 views

Check if date range is sequential in c#?

Assume I have a user interface where the user can select days. Is there a way to check if the days selected are sequential, such as: 4/4, 4/5, 4/6, 4/7, 4/8, 4/9, 4/10 or 4/29, 4/30, 5/1, 5/2, 5/3 ...
9
votes
3answers
1k views

When linking a .NET 2.0 Managed Assembly from a .NET 4.0 Application, which framework is used?

If I have a 2.0 CLR assembly (pure managed code, no mixed mode issues) that I need to link to from a 4.0 CLR Application, does the 2.0 code run on the 2.0 CLR or 4.0. Basically, is there any risk of ...
9
votes
6answers
363 views

C# Pass Generics At Runtime

I have a method like the following: public IEnumerable<T> GetControls<T>() : where T : ControlBase { // removed. } I then created a class: public class HandleBase<TOwner> : ...

1 2 3 4 5 36