¡@

Home 

c# Programming Glossary: lippert

C# Performance of nested yield in a tree

http://stackoverflow.com/questions/1043050/c-sharp-performance-of-nested-yield-in-a-tree

entries concerning this Wes Dyer All about iterators Eric Lippert Immutability in C# part 6 Eric again Immutability in C# part..

C# : Is Variance (Covariance / Contravariance) another word for Polymorphism?

http://stackoverflow.com/questions/1078423/c-sharp-is-variance-covariance-contravariance-another-word-for-polymorphis

someone else will do a better job than this . Eric Lippert has an excellent series of blog posts about it. share improve..

Why is there not a `fieldof` or `methodof` operator in C#?

http://stackoverflow.com/questions/1213862/why-is-there-not-a-fieldof-or-methodof-operator-in-c

c# design reflection share improve this question Eric Lippert on the C# design team has an excellent overview discussion on..

Why cannot C# generics derive from one of the generic type parameters like they can in C++ templates? [duplicate]

http://stackoverflow.com/questions/1842636/why-cannot-c-sharp-generics-derive-from-one-of-the-generic-type-parameters-like

examine this fictional declaration class C T T As Eric Lippert has noticed what if What if T is a struct What if T is a sealed..

What to use: var or object name type? [duplicate]

http://stackoverflow.com/questions/236878/what-to-use-var-or-object-name-type

I just reread Jon Skeet's post and this quote from Eric Lippert jumped out at me Implicitly typed locals are just one small..

Casting: (NewType) vs. Object as NewType [duplicate]

http://stackoverflow.com/questions/2483/casting-newtype-vs-object-as-newtype

is certainly the most pronounced difference but as Eric Lippert points out it's not the only one. Other differences include..

Breaking changes in .NET 4.0

http://stackoverflow.com/questions/2548106/breaking-changes-in-net-4-0

and contravariance breaking changes mentioned by Eric Lippert and events changes discussed by Chris Burrows. There are also..

Why does C# forbid generic attribute types?

http://stackoverflow.com/questions/294216/why-does-c-sharp-forbid-generic-attribute-types

decision rather than a runtime one. EDIT Answer from Eric Lippert paraphrased no particular reason except to avoid complexity..

Using the iterator variable of foreach loop in a lambda expression - why fails?

http://stackoverflow.com/questions/3168375/using-the-iterator-variable-of-foreach-loop-in-a-lambda-expression-why-fails

to the world of closures and captured variables Eric Lippert has an in depth explanation of this behaviour Closing over the..

Outer Variable Trap

http://stackoverflow.com/questions/3416758/outer-variable-trap

appreciated. EDIT Incorporating Jon Skeet's diktat Eric Lippert on the Outer Variable Trap c# linq share improve this question..

Why can't yield return appear inside a try block with a catch?

http://stackoverflow.com/questions/346365/why-cant-yield-return-appear-inside-a-try-block-with-a-catch

return Update There's an interesting comment from Eric Lippert here seems that they already have enough problems implementing..

Why are C# 3.0 object initializer constructor parentheses optional?

http://stackoverflow.com/questions/3661025/why-are-c-sharp-3-0-object-initializer-constructor-parentheses-optional

2010 . Thanks for the great question Josh sez Dear Mr. Lippert Give us the inside scoop First off all you bat signal people.. click on the contact link on my blog. Second dude Mr. Lippert is my father . Josh and Chad's answers they add no value so..

Operation could destabilize the runtime?

http://stackoverflow.com/questions/378895/operation-could-destabilize-the-runtime

rest of the Covariance and Contravariance series at Eric Lippert's blog. Although he is dealing with Arrays in the article I.. with the issues of type safety outlined above but as Eric Lippert says Higher Order Functions Hurt My Brain and I am having trouble..

Why class fields cannot be var?

http://stackoverflow.com/questions/4461597/why-class-fields-cannot-be-var

the difference c# share improve this question Eric Lippert answered your question right here Why no var on fields Basically..

GetHashCode Guidelines in C#

http://stackoverflow.com/questions/462451/gethashcode-guidelines-in-c-sharp

implementations is a pain in the butt. Update Eric Lippert has posted a blog that gives excellent information on GetHashCode..

How do I create a HashCode in .net (c#) for a string that is safe to store in a database?

http://stackoverflow.com/questions/5154970/how-do-i-create-a-hashcode-in-net-c-for-a-string-that-is-safe-to-store-in-a

To quote from Guidelines and rules for GetHashCode by Eric Lippert Rule Consumers of GetHashCode cannot rely upon it being stable..

Which exceptions shouldn't I catch?

http://stackoverflow.com/questions/7152354/which-exceptions-shouldnt-i-catch

cannot ensure that it is safe to continue executing. Eric Lippert classifies all exceptions into 4 groups Fatal 'Boneheaded' Vexing..

When should the volatile keyword be used in C#?

http://stackoverflow.com/questions/72275/when-should-the-volatile-keyword-be-used-in-c

think there's a better person to answer this than Eric Lippert emphasis in the original In C# volatile means not only make..

Implicit typing; why just local variables?

http://stackoverflow.com/questions/824739/implicit-typing-why-just-local-variables

implicit typing share improve this question Eric Lippert did an entire blog post on the subject. http blogs.msdn.com..