¡@

Home 

c# Programming Glossary: abstractions

is it good to use BlockingCollection<T> as single-producer, single-consumer FIFO query?

http://stackoverflow.com/questions/10103072/is-it-good-to-use-blockingcollectiont-as-single-producer-single-consumer-fifo

for producer consumer collections so that higher level abstractions such as System.Collections.Concurrent.BlockingCollection Of..

How much is there to LINQ?

http://stackoverflow.com/questions/1418106/how-much-is-there-to-linq

and computation expressions both being monadic abstractions Scala for x expr1 y expr2 yield x y F# monad let x expr1 let..

What are the 'big' advantages to have Poco with ORM?

http://stackoverflow.com/questions/2635953/what-are-the-big-advantages-to-have-poco-with-orm

your domain. Another advantage is that there is less leaky abstractions. Because persistance concerns are not pushed to domain layer...

In C# would it be better to use Queue.Synchronized or lock() for thread safety?

http://stackoverflow.com/questions/338712/in-c-sharp-would-it-be-better-to-use-queue-synchronized-or-lock-for-thread-saf

EDIT As noted in comments if you can use higher level abstractions that's great. And if you do use locking be careful with it document.. etc. In .NET 4 there's a lot more support for higher level abstractions including lock free code . Either way I still wouldn't recommend..

How to do the processing and keep GUI refreshed using databinding?

http://stackoverflow.com/questions/4522583/how-to-do-the-processing-and-keep-gui-refreshed-using-databinding

clever structure to keep all the strings. Edit Remark on abstractions call me old timer but I started learning computer convinced.. of computers not humans. No matter how you call it MVVM abstractions interface single inheritance if you write the same code over..

Write-Only properties, what's the point? [duplicate]

http://stackoverflow.com/questions/4695551/write-only-properties-whats-the-point

a single name user . In this way we use classes to create abstractions . User is an abstraction that allows us to reason about all.. a user password name birthday etc. . Now there are good abstractions and there are bad abstractions. I believe that write only properties.. etc. . Now there are good abstractions and there are bad abstractions. I believe that write only properties are bad abstractions because..

Validation: How to inject A Model State wrapper with Ninject?

http://stackoverflow.com/questions/4776396/validation-how-to-inject-a-model-state-wrapper-with-ninject

are hard with VAB or DataAnnotations. Note that the use of abstractions such as IProductService and ICustomerService violates the SOLID..

When should I choose inheritance over an interface when designing C# class libraries?

http://stackoverflow.com/questions/5816563/when-should-i-choose-inheritance-over-an-interface-when-designing-c-sharp-class

general classes are the preferred construct for exposing abstractions. The main drawback of interfaces is that they are much less..

Whats the difference between WCF Web API and ASP.NET Web API

http://stackoverflow.com/questions/9451298/whats-the-difference-between-wcf-web-api-and-asp-net-web-api

20Web 20API 20to 20ASP.NET 20Web 20API The WCF Web API abstractions map to ASP.NET Web API roughly as follows WCF Web AP ASP.NET..

OData with ServiceStack?

http://stackoverflow.com/questions/9577938/odata-with-servicestack

a poor fit for ServiceStack who vehemently opposes heavy abstractions and magic behavior which we view as a classic example of Every..