Questions tagged [.net-3.5]

The 3.5 version of the .NET Framework, which is based on the 2.0 .NET Framework with extra assemblies (including 3.0). Use for questions specifically related to .NET Framework 3.0. For questions on .NET Framework generally, use the .net tag.

The 3.5 version of the Microsoft .NET Framework, which is based on the 2.0 .NET Framework. In addition, it installs .NET Framework 2.0 SP1, (installs .NET Framework 2.0 SP2 with 3.5 SP1) and .NET Framework 3.0 SP1 (installs .NET Framework 3.0 SP2 with 3.5 SP1).

What's New in .NET Framework 3.5
.NET Framework 3.5 System Requirements

Released by Microsoft Corporation
Version Number: 3.5.21022.8
Release Date: 2007-11-19

5938 questions
4
votes
2 answers

What assembly is erxkab1r2c2ibqtnnxtpzrumqv3gqlpl?

A .NET EXE application is crashing on startup. An event is logged to the Event Log: EventType clr20r3, P1 erxkab1r2c2ibqtnnxtpzrumqv3gqlpl, P2 1.0.2.0, P3 4f4b95e0, P4 mscorlib, P5 2.0.0.0, P6 4a7ce2b8, P7 f8b, P8 80, P9…
Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
4
votes
1 answer

How to build a nested query with the dynamic LINQ library

How can I build the following LINQ query with the Dynamic Linq library (System.Linq.Dynamic)? var roles = rolesCollection.Where(r => r.AssignedUsers.Where(u => u.Name.FirstName == "Patrick").Count() > 0); rolesCollection and AssignedUsers are…
Patrick Koorevaar
  • 1,219
  • 15
  • 24
4
votes
6 answers

ASP.NET 3.5 on Windows 2000

I am trying to get an ASP.NET 3.5 site to run on a Windows 2000 machine (not my idea!!!) but am having some problems. I have been working through copying required DLL files from C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5 into my…
SiC
  • 457
  • 1
  • 9
  • 14
4
votes
0 answers

Mono: Problems with Parallel.For

I'm using Task.Parallel class from the Microsoft Reactive Extensions (the .NET 3.5 library, not the ones from .NET 4, since my app is running on 3.5). Everything works fine on .NET, but when I run it in Mono (2.10.5, on Linux), it throws an…
Igor Brejc
  • 18,714
  • 13
  • 76
  • 95
4
votes
0 answers

MSbuild: compile project then iterate [reflect, generate code, recompile] until it converges

I have a custom .targets file that I use to support post-compile code generation. I override a handful of targets, with the intention being to have the AfterBuild task run the code generator, call CoreBuild again, then tail-recurse until the result…
3
votes
5 answers

How would I load an assembly from the GAC?

I'm trying to use Assembly.Load() to load an assembly that is in the GAC. For example, say I want to list out all of the types that exist in PresentationCore.dll, how would I go about loading PresentationCore.dll? When I try this: Assembly a =…
Rob
  • 25,984
  • 32
  • 109
  • 155
3
votes
4 answers

Is my SqlCommand variable overworked? Did it get tired?

In my testing project, I have a static class called FixtureSetup which I use to setup my integration testing data for validation. I use the same SqlCommand and SqlParameter variable (not the object itself) within that class, repeatedly, using the…
The Evil Greebo
  • 7,013
  • 3
  • 28
  • 55
3
votes
5 answers

Alternative to Thread.Sleep

Working on a windows service, which has to process request in every predefined interval of time. Thread.Sleep does the work perfectly fine but problem with this is when service is invoked to be stopped, service freeze if thread is in sleep mode. I…
user1290171
  • 31
  • 1
  • 2
3
votes
2 answers

References between versions . NET Framework

I have an assembly written in C # compiled with version 3.5 that uses WCF. This library must be used by another application written in vb.net an outside firm that compiled with version 2.0 . Is it possible ?
3
votes
1 answer

SilverLight file upload?

I would like to upload file from the client to the server with a Front End in SilverLight. My problem is that the file is NOT in the isolation storage (that would be easy!). The application in few word require to upload images from the user computer…
Patrick Desjardins
  • 136,852
  • 88
  • 292
  • 341
3
votes
2 answers

C#: Events & Thread Safe GUI Updates

I am in the process of writing an application that communicates with several devices through GPIB commands, running a test on some equipment. I've set up a class, TestProcedure, which will start a new thread, and run the testing. Throughout testing,…
Corey
  • 398
  • 1
  • 4
  • 18
3
votes
3 answers

Creating a WPF ValueConverter for a Brush

On the Nerd Plus Art blog today, there was a post about creating WPF Resources for arrows, which the author uses frequently. I have a side project that has Back and Forward buttons, so I thought that the Left and Right arrows would work great on…
Andy
  • 30,088
  • 6
  • 78
  • 89
3
votes
3 answers

Generic Interface with TDelegate as an event?

I am trying to create this simple interface. I want it somehow to be able to fire an event. This is what I have till now (doesn't compile, just my thoughts) public interface IAsyncSearch
Odys
  • 8,951
  • 10
  • 69
  • 111
3
votes
1 answer

WCF Security Problem with UserName clientCredentialType

First of all I apologize for my english... Then: I have a problem! I wrote the code for a simple WCF Service and with the configuration #1 all works fine. Conf #1 - server
Alberto
3
votes
6 answers

Are .NET 3.5 XPath classes and methods XSLT 2.0 compatible?

I'd like to use regular expressions in selecting elements using the match function. I'd prefer not to use an external library (such as saxon) to do this.
user1228