Search Results

2
votes

What is an example of “this” assignment in C#?

using the this keyword ensures that only variables and methods scoped in the current type are accessed. This can be used when you have a naming conflict between a field/property an …
0
votes

Business Objects, Validation And Exceptions

I my opinion this is an example where throwing an exception is okay. Your property probably does not have any context by which to correct the problem, as such an exception is in order and the calli …
1
vote

How to make a method exclusive in a multithreaded context ?

I think Microsoft recommends using the …
1
vote

Why is “null” present in C# and java?

There are situations in which null is a nice way to signify that a reference has not been initialized. This is important in som scenarios. For instance: MyResource …
2
votes

ICollection, readonly collections, and synchronisation. Is this right?

Yes this is an issue in some cases. Even though the collection is read only and cannot be changed, the objects the collection references are not read only. Thus if the clients use the SyncRoot to p …