2
votes
Is ViewState relevant in ASP.NET MVC?
Yes, that is correct. ViewState is not relevant. More on differencies between Page Model and MVC here:
Compati …
3
votes
ASP.NET MVC ViewModel Pattern
There are couple of things that bother me.
The terminology. ViewModel is this case is a simple view data that is populated and later consumed by controller. View knows nothing abo …
5
votes
Hiding Properties in Derived C# Classes
I believe you should rethink your inheritance hierarchy. Consider the following heuristics:
If two or more classes share only common data (no common behavior), then that common data should …
1
vote
Does parallel work in an ASP.NET work process block connection threads?
You can have a look at Use Threads and Build Asynchronous Handlers in Your Server-Side Web Code and …
1
vote
How to handle null values in my business objects
You can create such helper methods:
static T Map<T>(object obj, Func<object, T> map, T def)
{
if (obj != null)
{
return map(obj);
}
return def;
}
sta …
0
votes
Will CLR handle both CLS-Complaint and non-CLS complaint exceptions?
Although the C# compiler allows developers to throw Exception-derived objects only, prior to
C# version 2.0, the C# compiler did allow developers to catch non-CLS-compliant exceptions
by using code …
3
votes
default accessmodifier of the class ?
In C# if the type is not nested (within other class or struct) and doesn't have access modifier applied it is internal. If it is nested - private.
From C# specification:
…
2
votes
Multithreading on ASP .NET 2.0 (begginer question)
You can have a look at Use Threads and Build Asynchronous Handlers in Your Server-Side Web Code and …
