¡@

Home 

c# Programming Glossary: jeff

Auto-implemented getters and setters vs. public fields

http://stackoverflow.com/questions/111461/auto-implemented-getters-and-setters-vs-public-fields

still insist on verbose properties for all classes. Jeff Atwood dealt with this a few years ago. The most important point..

How do I invoke an extension method using reflection?

http://stackoverflow.com/questions/1452261/how-do-i-invoke-an-extension-method-using-reflection

MyObject new MyObject Name Jon Simpson new MyObject Name Jeff Atwood Func MyObject bool NameEquals BuildEqFuncFor MyObject..

Displaying the build date

http://stackoverflow.com/questions/1600962/displaying-the-build-date

c# date time compilation share improve this question Jeff Atwood had a few things to say about this issue in Determining.. some C# code by Joe Spivey for that from the comments to Jeff's article private DateTime RetrieveLinkerTimestamp string filePath..

Should I *always* favour implictly typed local variables in C# 3.0?

http://stackoverflow.com/questions/17032/should-i-always-favour-implictly-typed-local-variables-in-c-sharp-3-0

code to know. It's especially annoying in code samples. Jeff wrote a post on this saying he favors var . But that guy's crazy..

Random playlist algorithm

http://stackoverflow.com/questions/1816534/random-playlist-algorithm

algorithm the rest should be easy. Here's more detail from Jeff Atwood. Lastly here's Jon Skeet's implementation and description..

When to use StringBuilder?

http://stackoverflow.com/questions/1825781/when-to-use-stringbuilder

to read The Sad Tragedy of Micro Optimization Theater by Jeff Atwood. It treats Simple Concatenation vs. StringBuilder vs...

How scalable is System.Threading.Timer?

http://stackoverflow.com/questions/31581/how-scalable-is-system-threading-timer

1 for processing running timers. Edit Just been looking in Jeff Richter's book. He says of Threading.Timer that it uses a single..

Popularity algorithm

http://stackoverflow.com/questions/32397/popularity-algorithm

is that it is approximately the following from another Jeff Atwood post t time of entry post Dec 8 2005 x upvotes downvotes..

What is Difference between Property and Variable in C#

http://stackoverflow.com/questions/4142867/what-is-difference-between-property-and-variable-in-c-sharp

more reasons. I would also like to point to a blog post of Jeff Atwood And conclude with a quote from this article The really..

Is BCrypt a good hashing algorithm to use in C#? Where can I find it?

http://stackoverflow.com/questions/481160/is-bcrypt-a-good-hashing-algorithm-to-use-in-c-where-can-i-find-it

good password security doesn't matter. Other resources Jeff Atwood .NET Encryption Simplified great for an overview of hashing.. Encryption Simplified great for an overview of hashing Jeff Atwood I just logged in as you Jeff Atwood You're probably storing.. an overview of hashing Jeff Atwood I just logged in as you Jeff Atwood You're probably storing passwords incorrectly Jeff Atwood..

Why are there no lifted short-circuiting operators on `bool?`?

http://stackoverflow.com/questions/5204366/why-are-there-no-lifted-short-circuiting-operators-on-bool

question on this but found none of the answers satisfying. Jeff Yates's answer shows a nice reason for why lifting the true..

C# code to linkify urls in a string

http://stackoverflow.com/questions/758135/c-sharp-code-to-linkify-urls-in-a-string

link Regex.Replace Method at MSDN The Problem With URLs by Jeff Atwood Parsing URLs with Regular Expressions and the Regex Object..

Why is the C# compiler emitting a callvirt instruction for a GetType() method call?

http://stackoverflow.com/questions/845657/why-is-the-c-sharp-compiler-emitting-a-callvirt-instruction-for-a-gettype-meth

methods.. they valued safety over performance. See Also Jeff Richter does a better job at this in his 'Designing Types' chapter..

C# get type of null object [duplicate]

http://stackoverflow.com/questions/930147/c-sharp-get-type-of-null-object

name in this situation c# share improve this question Jeff is correct. That's like asking what kind of cake would have..

Unhandled Exception Handler in .NET 1.1

http://stackoverflow.com/questions/944/unhandled-exception-handler-in-net-1-1

still displayed before the exception handler is called . Jeff talks about this problem on his blog here and here . But there's.. uncaught exceptions and display a friendly dialog box Edit Jeff's response was marked as the correct answer because the link..