Tagged Questions

MSDN ArgumentNullException is thrown when a method is invoked and at least one of the passed arguments is null but should never be null. ArgumentNullException behaves identically to ArgumentException. It is provided so that application code can differentiate between exceptions caused by null ...

learn more… | top users | synonyms

15
votes
16answers
953 views

Is there any reason to throw a DivideByZeroException?

Are there any cases when it's a good idea to throw errors that can be avoided? I'm thinking specifically of the DivideByZeroException and ArgumentNullException For example: double numerator = 10; ...
8
votes
4answers
469 views

In C#, should one check references passed to methods against null?

Well, a few months ago I asked a similar question about C and C++, but I've been paying more attention to C# lately due to the whole "Windows Phone" thing. So, in C#, should one bother to check ...
5
votes
6answers
3k views

Design by contract/C# 4.0/avoiding ArgumentNullException

I'm terribly tired of checking all my arguments for null, and throwing ArgumenutNullExceptions when they are. As I understand it, C# 4.0 enables some design by contract constructs. Will it be ...
5
votes
3answers
2k views

How do I Unit Test Actions without Mocking that use UpdateModel?

I have been working my way through Scott Guthrie's excellent post on ASP.NET MVC Beta 1. In it he shows the improvements made to the UpdateModel method and how they improve unit testing. I have ...
3
votes
3answers
391 views

System.NullReferenceException When checking if != null

I'm using an ASHX handler, i want the handler to check if Session != null. if (context.Session["Username"] != null) And i get this error pointing this line: System.NullReferenceException: ...
2
votes
2answers
230 views

streamReader ArgumentNullException

Hey there, I have a program that uses a sql express local DB. I want to be able to update that DB using the program to run the necessary scripts. A text files has been added as an embedded resource to ...
2
votes
7answers
1k views

Create class instance from string

I have a C# method which creates a new instance of a class from a string, however, I get an error when running the code. obj = (ClassX)Activator.CreateInstance(Type.GetType("classPrefix_" + ...
1
vote
2answers
123 views

REST 4.0 & Ninject.Extensions.Wcf 2.3 NullReferenceException

I am trying to make a simple REST Service with .NET 4.0 that uses ninject to inject any dependencies for the service. This is what my service looks like currently: [ServiceContract] ...
1
vote
2answers
63 views

Best Practices - Is it necessary to check for certain preconditions if another method does so?

Here's an example. I saw a "ReadOnlyDictionary" class online and it had the following code: void ICollection.CopyTo(Array array, int index) { ICollection collection = new ...
1
vote
2answers
113 views

JavaScriptSerializer throwing ArgumentNullException on deserialization

I'm writing an application that posts and gets JSON to/from a backend in Visual C# 4.0. Obviously, the easiest way to serialize/deserialize the JSON is ...
1
vote
3answers
122 views

Need solution for troubled null problem

For a day now i'm stuck with this null problem in my repository. here is my piece of code writen for linq to sql... i've tried a lot of options but no help for this. the problem here is if the ...
0
votes
3answers
70 views

ArgumentNullException was unhandled - Value cannot be null. Parameter name: first

I am currently using the DotSpatial library for .NET (GIS Library). I am getting an error within my AppManager class. The AppManager is a Component that manages the loading of extensions (including ...
0
votes
3answers
37 views

Collection initialisation using iif() throws ArgumentNullException

Can anyone tell me why this gives an error at run-time: Dim mightBeNothing As List(Of String) = Nothing Dim a As List(Of String) = IIf(mightBeNothing Is Nothing, New List(Of String)(), New List(Of ...
0
votes
1answer
91 views

BLToolkit + T4 generation + PostgreSQL database, posible?

want to generate my data layer using bltoolkit, T4 templates and postgreSQL. I receive an exception running my T4 template, based on the one suggested by the documentation: Error 5 Running ...
0
votes
2answers
115 views

wpf binging throws argumentnullexception

How do you handle when the editor (xaml / design) in visual studio throws an argumentnullexception, "value cannot be null" ? I am reading some values from the database using entity framework and ...
0
votes
2answers
54 views

Working around an ArgumentNullException

I'm trying to return the five most recent articles from my database so I can put links to them in some secondary navigation I have on my index page. I've divided up my MVC project into two ...
0
votes
0answers
227 views

ArgumentNullException when adding a data object to an DBContext

I am using ASP.NET MVC 3. I have a couple of basic controllers, views, and models. In one of my controllers i have a create action, shown below: [HttpPost] public ActionResult ...
0
votes
1answer
397 views

wp7 - application.current as app Value can not be null

I put some properties in the App.xaml.cs file which I am using to store data and populate textboxes as I navigate through my application: public String appRXName { set; get; } public String ...
0
votes
1answer
253 views

System.ArgumentNullException, P10 NIL and proper dmp fie locations?

We have an application that is written in .NET 3.5. This app works on all our systems except one (the one that we had hoped it would work :/), where it has the following error in EventViewer ...
0
votes
1answer
431 views

ArgumentNullException when accessing a FormView instance

Background: I have an ASP.NET page which has a numebr of user controls within it. There are 2 user controls which are of interest. I need to display either one of them or neither of them, depending ...
0
votes
1answer
420 views

Why is EditorFor in my ASP.NET MVC 2 application throwing ArgumentNullException?

I have a weird problem with EditorFor in one of my views. The following code throws an ArgumentNullException. <%: Html.EditorFor(x => x.Name) %> However, the following code is fine. ...
0
votes
0answers
92 views

actionlistener returning a nullexception on jbutton

I have an action listener set up on my main jframe menu for the buttons listed on it, and they work fine, bringing up other jframes as needed. The problem is when a person clicks the buttons on the ...
0
votes
2answers
108 views

Null Pointer Error Again

So I have this compiler class that compiles some .mjava files but others it fails on and wondering if anyone can help me figure out why. I have two methods that break for two different files. The ...