Tagged Questions

8
votes
7answers
260 views

Why cant we change Values of a dictionary while enumerating its keys?

class Program { static void Main(string[] args) { var dictionary = new Dictionary<string, int>() { {"1", 1}, {"2", …
1
vote
3answers
28 views

InvalidOperationException on object from a thread that’s done

In a WPF application I had a BackgroundWorker thread creating an object. Let's call the object foo. Background worker code: SomeClass foo = new SomeClass(); // Do some operation …
1
vote
3answers
383 views

The query results cannot be enumerated more than once?

Hi, I'm using LINQ to SQL to get a search result of a FullTextSearch stored procedure in Sql server 2008. I dragged the procedure from the server explorer to the designer, and got …
2
votes
2answers
359 views

ASP.NET MVC: No parameterless constructor defined for this object.

Server Error in '/' Application. -------------------------------------------------------------------------------- No parameterless constructor defined for this object. Descriptio …
1
vote
1answer
125 views

How can I add logic to an existing dependency-property callback?

I'm trying to add a PropertyChangedCallback to UIElement.RenderTransformOriginProperty. An exception is thrown when I try to override the PropertyMetadata. I have searched MSDN …
4
votes
4answers
372 views

Modifying Collection when using a foreach loop in c#

Hi, Basically, I would like to remove an item from a list whilst inside the foreach loop. I know that this is possible when using a for loop, but for other purposes, I would like …
0
votes
4answers
405 views

Invalid Operation Exception from C# Process Class

When I use VSTS debugger to see the properties of instance of class Process, many of the properties are marked with InvalidOperationException. Why? Am I doing anything wrong? I am …
1
vote
1answer
325 views

Compiling a Delegate with Expression.Lambda() - Parameter Out Of Scope, but is it really?

I came across an interesting problem today whilst implementing a feature into a dynamic expression building library. More specifically, but irrelevantly, a feature to define operat …
0
votes
3answers
426 views

InvalidOperationException - object is currently in use elsewhere - red cross

Hello I have a C# desktop application in which one thread that I create continously gets an image from a source(it's a digital camera actually) and puts it on a panel(panel.Imag …
0
votes
1answer
380 views

InvalidOperationException - When ending editing a cell & moving to another cell

I made a program in which I wanted to manually update the Data Grid View. -I have a Method to Refresh the DGV by clearing it and then reinserting the data. -Using the designer, I m …
4
votes
1answer
216 views

what does this error mean?

Hi All, I'm getting this error: Cannot use a DependencyObject that belongs to a different thread than its parent Freezable What does that even mean? Is it in English? Is the …
0
votes
2answers
412 views

InvalidOperationException when executing SqlCommand with transaction

I have this code, running parallel in two separate threads. It works fine for a few times, but at some random point it throws InvalidOperationException: The transaction is either …
0
votes
1answer
131 views

How do I fix EmbeddedRessources in a ASP.NET web site?

I am trying to reference a js file in a class in an ASP.NET and I receive this error: Assembly 'XXX' contains a Web resource with name 'XXX' but does not contain an embedded reso …
0
votes
2answers
325 views

SQLConnection Pooling - Handling InvalidOperationExceptions

I am designing a Highly Concurrent CCR Application in which it is imperative that I DO NOT Block or Send to sleep a Thread. I am hitting SQLConnection Pool issues - Specifically g …
3
votes
3answers
724 views

Unit test MSBuild Custom Task without “Task attempted to log before it was initialized” error

I have written a few MSBuild custom tasks that work well and are use in our CruiseControl.NET build process. I am modifying one, and wish to unit test it by calling the Task's Exe …

1 2 next
15 30 50 per page