Memory requirements for C# windows application

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I designed a C# windows application which should run on Windows XP SP2 PC,
using .NET framework ver 1.1.
My program uses a SQL server database, and works on 3 PC machines which are
on the same network (one of the PC has the sql server installed and the other
2 are connecting to this server), I wanted to know what are the memory
requirements for working that way?

Thanks,
Gidi.
 
Gidi,

That depends on what your application is going to do, really. You can't
specify requirements for a framework, since it is how you use the framework
that dictates how much memory is consumed.
 
Gidi said:
Hi,

I designed a C# windows application which should run on Windows XP SP2 PC,
using .NET framework ver 1.1.
My program uses a SQL server database, and works on 3 PC machines which
are
on the same network (one of the PC has the sql server installed and the
other
2 are connecting to this server), I wanted to know what are the memory
requirements for working that way?

Without knowing specifics about the type of application I would say no less
than 512 Mb. For the machine that will run SQL Server then 1 Gb would be
good and I would install the SQL Server on the fastest machine.

SP
 
Back
Top