Tagged Questions
2
votes
2answers
74 views
Immutable Dictionary Vs Dictionary Vs C5 Vs F# - performance
Our application uses plenty of dictionaries which have multi level lookup that are not frequently changing. We are investigating at converting some of the critical code that does a lot of lookup using ...
3
votes
2answers
107 views
Why is my C# program faster in a profiler?
I have a relatively large system (~25000 lines so far) for monitoring radio-related devices. It shows graphs and such using latest version of ZedGraph.
The program is coded using C# on VS2010 with ...
5
votes
2answers
103 views
WPF program launches super fast on one computer but super slow on another
My wpf program has a strange problem regarding the startup performance on different computer with same specs.
One computer loads my program less than a second.
Another computer with the same spec ...
0
votes
0answers
22 views
Multiplying two or more arrays effectively
I have arrays of Doubles which need to be multiplied with each other and with some constant value(s).
Array1 = [1.002, 1.009, 1.016 , 1.019]
Array2 = [106, 109, 113 , 119]
Constant1 = 6.54
The ...
2
votes
0answers
34 views
Memory Model: preventing store-release and load-aquire reordering
It is known that, unlike Java's volatiles, .NET's ones allow reordering of volatile writes with the following volatile reads. When it is a problem MemoryBarier is recommended to be placed between ...
1
vote
0answers
31 views
.NET WebBrowser poor JavaScript performance
I am using the .NET WebBrowser Control (2.0) for viewing web sites on the Internet in my application – which works fine! Unfortunately we discovered a huge drawback on that: Speed. As far as I have ...
-4
votes
0answers
32 views
Improving performance in a specific situation [closed]
public class testPage
{
void Page_Load(object sender, EventArgs e)
{
System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
sw.Start();
...
1
vote
0answers
75 views
Why I lose performance if I use LINQ on MongoDB?
this is the situation. I have a Domain object Product like this...
[DataContract]
public class Product : IStorableEntity
{
[DataMember]
public String Id { get; set; }
...
2
votes
1answer
71 views
Efficiently filtering a large collection of POCO entities
I'm working on improving the performance of a linq filter against a large collection of POCOs, but local testing is indicating a CPU bottleneck.
I was initially trying to do this to reduce the load ...
2
votes
1answer
26 views
Managed Windows Service starts up slowly after digital signing
We recently tried out digitally signing our .NET binaries. We have a Windows Service which typically starts up within 10 seconds. However after we started digitally signing it, the time increased to ...
0
votes
1answer
45 views
Is it possible to fill two DropDown controls on same page using different threads?
I have multiple multi-select DropDown controls (user controls) on a page. Even though it is not a good practice to load thousands of items in a DropDown, but I can't change the existing project ...
0
votes
0answers
29 views
Set Buffer Size on EventLogEntryCollection.CopyTo
I have an application that reads in event log entries from various servers and returns them to a GUI. We recently moved our servers so now the latency in getting the event logs has increased ...
21
votes
4answers
493 views
Array.Count() much more slower than List.Count()
When using the extension method of IEnumerable<T> Count(), an array is at least two times slower than a list.
Function Count()
List<int> 2,299
...
-1
votes
2answers
59 views
Performance measurement of .NET application [duplicate]
I have converted 32-bit application to 64-bit. How do I measure performance of application in both versions.
Is there any benchmarking/ performance measurement tool/dll?
Is it possible to measure ...
0
votes
2answers
53 views
What consumes less resources and is faster File.AppendText or File.WriteAllText storing first in StringBuilder?
I have to write thousands of dynamically generated lines to a text file.
I have two choices, Which consumes less resources and is faster than the other?
A. Using StringBuilder and File.WriteAllText
...
0
votes
1answer
36 views
Is IL performance related to its code size?
When looking at intermediate language, each instruction has a particular byte size.
If I have a method with a total code size (the sum of instructions sizes) of 10 bytes and a method with a total ...
3
votes
2answers
85 views
C# Performance penalty for Int32 literals to floats
In c#, you can define a number literal as either int or double
Double var1 = 56.1;
int var2 = 51;
These are the default types the literals are assigned. However, the game engine I'm working ...
0
votes
1answer
26 views
Performance of the FrameworkElementAdapters class
Can't figure why cross-domain calls is so slow for FrameworkElementAdapters class. Here is a simple code:
class Program
{
[STAThread]
static void Main()
{
AppDomain domain = ...
3
votes
1answer
78 views
C# performance counter data is “all over the map”
I need to calculate CPU and RAM usage for the overall system as well as for a specific process. I've never done this in C#. So I was able to come up with the following code (that I took primarily from ...
0
votes
0answers
28 views
.Net Smart card performance
I am developing .Net smart card app and I am wondering what is best regarding the performance to access the card once to retrive all the objects stored or to access it multiple time to retreive each ...
0
votes
0answers
44 views
Where and how to search bottleneck in Winforms + Direct3D app
We have a legacy app entirely written in native C++, using MFC + DirectDraw for its GUI.
We intend to replace this app with another one with the exact same functionalities, but written in managed C# ...
6
votes
2answers
111 views
Entity Framework is taking 3 seconds to execute the simplest query I've seen in my life for the first time. It becomes instantaneous thereafter
I use Entity Framework 4.5 with Object Context. My model has around 200 entities type. The first time I make a ridiculous query in a 10 records database that returns 1 record, it will take 3 seconds. ...
0
votes
0answers
38 views
Pre-generating views to improve performance still have any impact in .NET 4.5 Entity Framework?
I have read some articles about performance improvements by pre-compiling queryes. This one for instance.
The problem is that these articles target Entity Framework 4.0 and I use 4.5. Another reason ...
0
votes
1answer
53 views
I'm using .NET 4.5 version of Entity Framework. If I import Entity Framework 5.0 Nuget package, will I have any performance improvements?
I have read a lot of articles about Entity Framework performance. This one for instance. They all say Entity Framework 5.0 has performance improvements.
What bugs me is that I don't quite understand ...
2
votes
1answer
53 views
How to convert IDictionary<TKey, List<TValue> > to IDictionary<TKey, IEnumerable<TValue> >?
I have a function that return a IDictionary<TKey, List<TValue> >.
I have another function that takes a IDictionary<TKey, IEnumerable<TValue> >.
I need to pass the return of ...
0
votes
1answer
81 views
Game Graphics - Quality Dependent Speed Control (vb.net)?
I'm currently making a game (in vb.net) that uses the Graphics class to draw most of the game objects, but i've run into the old problem of performance. To combat the lagging i've added some code to ...
0
votes
0answers
70 views
Advantages of ANTS performance profiler over the Visual Studio 2010 Ultimate profiler [closed]
Are there any advantages of the ANTS performance profiler over the Visual Studio 2010 Ultimate profiler? If there are, what are they, specifically? From my limited testing, I can't see anything ...
5
votes
1answer
177 views
Fastest implementation of log2(int) and log2(float)
The question is
Are there any other (and/or faster) implementations of a basic 2log?
Applications
The log2(int) and log2(float) operations are very useful in a lot of different contexts. To name a ...
2
votes
1answer
67 views
More efficient way of loading children of entity objects in linq to entity query
I have a rather complex linq to entity query that I'm performing, in the end, I have a result set. I loop through that result set, build business objects and return that list of business objects. it's ...
2
votes
1answer
95 views
servicestack self-hosted service uses chunked encoding - is unbuffered?
I am trying to learn ServiceStack with the hello world examples and self-hosted example. I am making requests for JSON content.
I have noticed the following in the response headers:
Basic service ...
0
votes
5answers
192 views
Which .NET collection is faster: enumerating foreach Dictionary<>.Values or List<>?
Are one of these enumerations faster than the other or about the same? (example in C#)
Case 1:
Dictionary<string, object> valuesDict;
// valuesDict loaded with thousands of objects
foreach ...
2
votes
2answers
43 views
Memory and CPU impact when a DLL is embedded inside a .NET DLL / EXE?
We have a DLL we distribute that has external dependencies on other DLLs. Rather than risking missing DLLs or having potential mix-and-matching situations, we embed the DLLs inside our own DLL/EXE and ...
4
votes
2answers
144 views
Fast rotation/transformation matrix multiplications
I am looking for the most efficient way to do matrix * matrix and matrix * vector operations for 3x3 rotation and 4x4 transformation matrices in C#.
I currently store my matrices in multidimensional ...
0
votes
0answers
76 views
WPF performance, terrible lag on textBox
last few days, we faced serious problems with the WPF performance.
When one keep the key pressed in a textbox, terrible lag appears. The
characters simply don't appear immediately but it takes some ...
0
votes
1answer
49 views
Is it possible to call .Net API from javascript without COM/activeX?
Background
I am working on an integration project where our webapp will talk to a 3rd party desktop application developed in .Net. The third party application exposes .Net API(as well as ActiveX ...
3
votes
1answer
121 views
MS Access Batch Update via ADO.Net and COM Interoperability
This is kind of a follow-up to this thread. This is all with .Net 2.0; for me, at least.
Essentially, Marc (OP from above) tried several different approaches to update an MS Access table with 100,000 ...
0
votes
2answers
48 views
Searching a lot of text files for a specific text written in textbox and display them
I am trying to search many text files from a particular directory and then textchanged event to find text in all files and display on screen only lines which contain that text.
Currently it is ...
8
votes
2answers
358 views
Performance of Func<T> and inheritance
I've been having trouble with understanding the performance characteristics of using Func<...> throughout my code when using inheritance and generics - which is a combination I find myself using ...
4
votes
3answers
132 views
Make .NET executable to load faster in the first time
I made a simple Windows Forms executable in C# (by simple, I mean it has about 20 methods, but it's just one window), targeting .NET Framework 2.0. When the application loads, it doesn't do anything ...
0
votes
0answers
31 views
Best way to search data in dataview with multiple criteria
I have to find rows in my dataview with different sort. Sometimes I use column 1 and sometimes I use column 2 & 3.
As I have a large amount of data, there is a huge time consumption each time I ...
6
votes
1answer
246 views
When should I use a linear algebra library like Math.NET
I am not certain there is one correct answer to the question, but here we go. While numerous numerical problems can be stated in a linear algebra form, it seems from my limited experience that there ...
8
votes
1answer
114 views
How does WPF optimise the layout / rendering cycle?
How does WPF optimize the Layout / Rendering cycle in a highly volatile application?
For example, imagine I invalidate a custom control twice in quick succession, will it render twice? Are there ...
10
votes
4answers
1k views
Field vs Property. Optimisation of performance
Please note this question related to performance only. Lets skip design guidelines, philosophy, compatibility, portability and anything what is not related to pure performance. Thank you.
Now to the ...
14
votes
8answers
1k views
Which is better to use array or List<>?
I was wondering which type would have better performance and which you think should be used.
For example I have a List of strings not knowing how many items I will need so having the .Add(String) ...
2
votes
7answers
2k views
A faster replacement to the Dictionary<TKey, TValue>
I need a fast replacement for the System.Collections.Generic.Dictionary<TKey, TValue>. My application should be really fast. So, the replacement should support:
Generics
Add
Get
Contains
... ...
3
votes
2answers
858 views
Delete a LINQ to SQL record without loading it first
Is it possible to get LINQ to SQL to delete a record using the PK, without loading the record first? Similar to NHibernate's proxy object functionality?
32
votes
5answers
11k views
What is the recommended batch size for SqlBulkCopy?
What is the recommended batch size for SqlBulkCopy? I'm looking for a general formula I can use as a starting point for performance tuning.
72
votes
32answers
31k views
In .NET, which loop runs faster, 'for' or 'foreach'?
In C#/VB.NET/.NET, which loop runs faster, for or foreach?
Ever since I read that a for loop works faster than a foreach loop a long time ago I assumed it stood true for all collections, generic ...
51
votes
11answers
27k views
HashSet vs. List performance
It's clear that a search performance of the generic HashSet<T> class is higher than of the generic List<T> class. Just compare the hash-based key with the linear approach in the ...
34
votes
8answers
16k views
Horrible redraw performance of the DataGridView on one of my two screens
I've actually solved this, but I'm posting it for posterity.
I ran into a very odd issue with the DataGridView on my dual-monitor system. The issue manifests itself as an EXTREMELY slow repaint of ...



