Click here to Skip to main content
15,897,273 members
Home / Discussions / C#
   

C#

 
GeneralRe: c# project issue on 64-bit vista system Pin
Dave Kreskowiak1-Aug-11 3:27
mveDave Kreskowiak1-Aug-11 3:27 
GeneralRe: c# project issue on 64-bit vista system Pin
Aisha sharma1-Aug-11 18:43
Aisha sharma1-Aug-11 18:43 
GeneralRe: c# project issue on 64-bit vista system Pin
Aisha sharma3-Aug-11 2:27
Aisha sharma3-Aug-11 2:27 
GeneralRe: c# project issue on 64-bit vista system Pin
Dave Kreskowiak3-Aug-11 3:37
mveDave Kreskowiak3-Aug-11 3:37 
GeneralRe:[solved] c# project issue on 64-bit vista system Pin
Aisha sharma6-Aug-11 2:27
Aisha sharma6-Aug-11 2:27 
GeneralRe:[solved] c# project issue on 64-bit vista system Pin
Dave Kreskowiak6-Aug-11 2:42
mveDave Kreskowiak6-Aug-11 2:42 
QuestionDo Lambda expressions smell? Pin
Member 448708329-Jul-11 10:02
Member 448708329-Jul-11 10:02 
AnswerRe: Do Lambda expressions smell? Pin
Ian Shlasko29-Jul-11 10:22
Ian Shlasko29-Jul-11 10:22 
They're useful shortcuts. Func is just a shortcut for when you don't want to define a delegate yourself. These are all pretty much equivalent:
C#
Func<string, bool>
Predicate<string>
delegate bool MyStringTest(string s)


Lambda expressions themselves, I find extremely useful... I love being able to type:
C#
People.Where(a=>a.FirstName.StartsWith("B"));


This use of lambdas has nothing to do with SQL, aside from a syntax resemblance between the long-form LINQ queries and SQL queries (I prefer the shorthand notation).

Remember that LINQ extensions aren't only made for database access... They're great for working with collections.
Proud to have finally moved to the A-Ark. Which one are you in?
Author of the Guardians Saga (Sci-Fi/Fantasy novels)

GeneralRe: Do Lambda expressions smell? Pin
Member 444846031-Jul-11 10:59
Member 444846031-Jul-11 10:59 
AnswerIMHO Linq is a poor example of a good example Pin
Ennis Ray Lynch, Jr.29-Jul-11 10:25
Ennis Ray Lynch, Jr.29-Jul-11 10:25 
GeneralRe: IMHO Linq is a poor example of a good example Pin
Lutosław30-Jul-11 10:42
Lutosław30-Jul-11 10:42 
AnswerRe: Do Lambda expressions smell? Pin
PIEBALDconsult30-Jul-11 6:24
mvePIEBALDconsult30-Jul-11 6:24 
GeneralRe: Do Lambda expressions smell? Pin
jschell30-Jul-11 7:45
jschell30-Jul-11 7:45 
AnswerRe: Do Lambda expressions smell? Pin
jschell30-Jul-11 7:46
jschell30-Jul-11 7:46 
AnswerRe: Do Lambda expressions smell? Pin
BobJanova31-Jul-11 22:45
BobJanova31-Jul-11 22:45 
QuestionCreate array in class. Pin
Herboren29-Jul-11 9:49
Herboren29-Jul-11 9:49 
AnswerRe: Create array in class. Pin
Member 448708329-Jul-11 10:06
Member 448708329-Jul-11 10:06 
GeneralRe: Create array in class. [modified] Pin
Herboren29-Jul-11 10:35
Herboren29-Jul-11 10:35 
GeneralRe: Create array in class. Pin
Keith Barrow30-Jul-11 0:28
professionalKeith Barrow30-Jul-11 0:28 
GeneralRe: Create array in class. Pin
BobJanova31-Jul-11 22:49
BobJanova31-Jul-11 22:49 
GeneralRe: Create array in class. Pin
Keith Barrow1-Aug-11 2:16
professionalKeith Barrow1-Aug-11 2:16 
QuestionSOAP versioning limits - loading legacy assembly Pin
lukeer29-Jul-11 3:04
lukeer29-Jul-11 3:04 
AnswerRe: SOAP versioning limits - loading legacy assembly Pin
jschell29-Jul-11 8:27
jschell29-Jul-11 8:27 
GeneralRe: SOAP versioning limits - loading legacy assembly Pin
lukeer31-Jul-11 22:54
lukeer31-Jul-11 22:54 
GeneralRe: SOAP versioning limits - loading legacy assembly Pin
jschell1-Aug-11 7:44
jschell1-Aug-11 7:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.