TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
ratneshwar tekale
NA
1
999
C# windows application slows down all other Applications
Oct 16 2014 5:26 AM
I have developed a C# windows application in Visual Studio 12. When I run this application, it slows down all other apps and makes PC slow., I think it takes too much of physical memory. Pls suggest some work around to avoid slowing down my PC.
Below is the introduction to application developed :
The application is very data intensive. The application contains one for loop which loops through around 80000 times and this "for loop" also have one "inner for loop" which loops through 100000 time. I store all the data in lists, arrays and objects(I think these data structures consuming memory)
E.X. for(i=0;i<80000;i++)
{
for(j=0; j<10000;j++)
{
//do some scientific calculations using mathematical formulas (sine, cos, sqr roots) and calls some user defined functions
}
}
Also suggest how to make this application fast!!!
Reply
Answers (
1
)
Load data from XML file in One ListBox
saving values in xml and retrieving them