Operator Overloading Deployment / Runtime Reqs.

Posts   
 
    
Devildog74
User
Posts: 719
Joined: 04-Feb-2004
# Posted on: 16-Jan-2006 16:16:48   

I have started using Operator Overloading in my data access code. So far, I have only used it to construct predicate expressions.

I am writing the data access code in VS.NET 2003 with C# v1.1. In my development environment, I have .NET FW v2.0 installed. In my production environment, I only have .NET FW v1.1 installed.

My question is this: when I deploy my code to production, what version of the .NET framework must be installed? v1.1?

Obviously, I will need to deploy the LLBLGen ORM and SQL DQE runtimes v1.0.2005.1.

bclubb
User
Posts: 934
Joined: 12-Feb-2004
# Posted on: 17-Jan-2006 02:52:27   

As long as you have compiled with C# you should be fine. Operator Overloading is not supported in VB.NET 1.x.

Devildog74
User
Posts: 719
Joined: 04-Feb-2004
# Posted on: 17-Jan-2006 03:35:33   

Ok, great, thanks for the help.