¡@

Home 

c# Programming Glossary: colleague

.NET Collection Naming Convention

http://stackoverflow.com/questions/1126256/net-collection-naming-convention

Collection Naming Convention My colleague and I have been having a discussion about what Collections should..

Where clause on collection

http://stackoverflow.com/questions/13903314/where-clause-on-collection

that for a collection of entities. The funny thing is as a colleague of mine found out you can easily do it for a collection of entities..

Generic type parameter covariance and multiple interface implementations

http://stackoverflow.com/questions/14562047/generic-type-parameter-covariance-and-multiple-interface-implementations

two different IObservables . I tried to show to a colleague that this will fail but somehow it didn't c# generics types..

WPF Application that only has a tray icon

http://stackoverflow.com/questions/1472633/wpf-application-that-only-has-a-tray-icon

this question There's no NotifyIcon for WPF yet . A colleague of mine used this freely available library to good effect http..

Google Geolocation API library

http://stackoverflow.com/questions/1535619/google-geolocation-api-library

I can use either one of C C C# . Currently the only way my colleague got it working is using a gears plugin for IE and hosting the..

Is there a performance hit in using the 'var' keyword in C#? [duplicate]

http://stackoverflow.com/questions/1756392/is-there-a-performance-hit-in-using-the-var-keyword-in-c

type performance I use the 'var' keyword extensively. A colleague told me there was a performance hit in using it but couldnt..

TransactionScope bug in .NET? More information?

http://stackoverflow.com/questions/195420/transactionscope-bug-in-net-more-information

.NET More information I have read or perhaps heard from a colleague that in .NET TransactionScope can hit its timeout and then VoteCommit..

reference assignment is atomic so why is Interlocked.Exchange(ref Object, Object) needed?

http://stackoverflow.com/questions/2192124/reference-assignment-is-atomic-so-why-is-interlocked-exchangeref-object-object

new value to the variable all as an atomic operation. my colleague said that on some platforms it's not guaranteed that reference.. not guaranteed that reference assignment is atomic. Was my colleague correct No. Reference assignment is guaranteed to be atomic.. is guaranteed to be atomic on all .NET platforms. My colleague is reasoning from false premises. Does that mean that their..

Does C# support multiple inheritance?

http://stackoverflow.com/questions/2456154/does-c-sharp-support-multiple-inheritance

C# support multiple inheritance A colleague and I are having a bit of an argument over multiple inheritance...

Out of memory when creating a lot of objects C#

http://stackoverflow.com/questions/2727591/out-of-memory-when-creating-a-lot-of-objects-c-sharp

question Ok I've just discussed this situation with a colleague of mine and we've come to the following solution which works..

The request was aborted: Could not create SSL/TLS secure channel

http://stackoverflow.com/questions/2859790/the-request-was-aborted-could-not-create-ssl-tls-secure-channel

idea of what should I do EDIT 1 I should mention that a colleague and I performed tests a few weeks ago and it was working fine..

Trying to run multiple HTTP requests in parallel, but being limited by Windows (registry)

http://stackoverflow.com/questions/2960056/trying-to-run-multiple-http-requests-in-parallel-but-being-limited-by-windows

as long as one did alone so I could rule out that one. A colleague then tipped me that this might be a limitation in Windows. I..

Ninject and DataContext disposal

http://stackoverflow.com/questions/2964673/ninject-and-datacontext-disposal

improve this question I am investigating this for my colleague Bas. I was looking in the Ninject 2 source code http github.com..

Define a generic that implements the + operator [duplicate]

http://stackoverflow.com/questions/3598341/define-a-generic-that-implements-the-operator

checking at compile time. I cannot take full credit as a colleague helped me arrive at this. Anyway here it is Implement an interface..

Is this a bad practice to catch a non-specific exception such as System.Exception? Why?

http://stackoverflow.com/questions/426346/is-this-a-bad-practice-to-catch-a-non-specific-exception-such-as-system-exceptio

code. Do you agree with me If so how do I explain to my colleague that this is wrong stubborn type... Catch a generic exception..

Why are private fields private to the type, not the instance?

http://stackoverflow.com/questions/6983553/why-are-private-fields-private-to-the-type-not-the-instance

a type not an instance. I've been discussing this with a colleague and we're trying to come up with a reason why it works like..