3
votes
1answer
94 views
Library support for Scala’s NotNull trait
As far as I understand, if you want a reference type to be non-nullable you have to mixin the magic NotNull trait, and the compiler will automatically prevent you from putting null …
0
votes
4answers
47 views
Parsing boolean from configuration section in web.config
Hello, I have a custom configuration section in my web.config.
One of my classes is grabbing from this:
<myConfigSection LabelVisible="" TitleVisible="true"/>
I have thin …
0
votes
2answers
38 views
assign nullable objects for returning IQueryable
I am returning IQueryable<Customer> to the other method for some querying operations. The return method looks like:
return from cust in _dbCustList
select new …
8
votes
3answers
338 views
Performance surprise with “as” and nullable types
I'm just revising chapter 4 of C# in Depth which deals with nullable types, and I'm adding a section about using the "as" operator, which allows you to write:
object o = ...;
int? …
0
votes
9answers
202 views
C# newbie with DateTime variable I want to set to null
I have an output data class with a DateTime variable. I want to clear that to a null value in a loader class but the compiler complains with:
Cannot convert null to 'System.Data.T …
2
votes
6answers
212 views
Coding practices for C# Nullable type
I have never used nullable types in my C# code. Now I have decided to change my coding practice by introducing nullable types in my code.
What are the major changes in the coding …
1
vote
1answer
86 views
Iterating through a Enumerable collection with nullable types
Hey,
I'm trying to iterate over an Enumerable collection of mix of nullable types
However I want to compare the nullable type with a intrinsic type such as string or decimal.
i.e. …
0
votes
5answers
741 views
Dataset field DBNull -> int?
SQLServer int field. Value sometimes null.
DataAdapter fills dataset OK and can display data in DatagridView OK.
When trying to retrieve the data programmatically from the dataset …
6
votes
4answers
268 views
Boxing / Unboxing Nullable Types - Why this implementation ?
Extract from CLR via C# on Boxing / Unboxing value types ...
On Boxing: If the nullable instance is not null, the CLR takes the value out of the nullable instance and boxes it. In …
1
vote
4answers
235 views
What is the correct way to serialize nullable types?
I'm implementing IXMLSerializable in one of my classes. It contains a few numeric properties that are nullable (int? double? etc..)
What is the correct way to serialize/serialize …
1
vote
4answers
300 views
Is there such a thing as a nullable bool in vb.net
I am working through my new MVC book and of course, the samples are all in c# as usual.
There is a line of code that says
public bool? WillAttend { get; set; }
The author expla …
1
vote
2answers
602 views
Best way to databind a Winforms control to a nullable type?
I'm currently using winforms databinding to wire up a data editing form. I'm using the netTiers framework through CodeSmith to generate my data objects. For database fields that …
0
votes
3answers
141 views
TimeSpan using a nullable date
How can i subtract 2 dates when one of them is nullable?
public static int NumberOfWeeksOnPlan(User user)
{
DateTime? planStartDate = user.PlanStartDate; // user.PlanStartDate …
4
votes
1answer
100 views
ASP.Net - Strange behavior of nullable types in Application_EndRequest
I am using Global.asax to perform logging at the end of each request via the Application_EndRequest event. However, I am seeing some odd behavior of certain values stored in the HT …
0
votes
3answers
433 views
Why won’t a Nullable Public Property in a VB.net Class accept 0 (zero) as Assignment?
I have a nullable public property on a class using Vb.net 3.5:
Public Property TicketCharge() As Nullable(Of Decimal)
Get
If _TicketCharge = Nothing Then
…
