.NET Fireside Chats - Bill Wagner on 'More Effective C#'
Join the DZone community and get the full member experience.
Join For Freedzone recently had a chance to sit down with bill wagner, author of ' more effective c#: 50 specific ways to improve your c# '. in this interview, bill discusses new features of the c# language, his views on 'effective code', and the future of c#.
dzone has also made available a portion of chapter 3 from bill's book, which can be downloaded here .
dzone -
tell us a little about what you do at srt solutions?
bill wagner -
i'm one of the two founders. the company has a very flat organization, so i suppose i'd say i'm one of the most senior software folks. that means i get to spend my days building software, and helping our less experienced folks learn to be better software engineers and developers.
as a company, we build software for our customers, help mentor customers' development teams, and try to provide guidance for building better software.
dzone -
what value does srt solutions provide to its customers?
bill -
we've got really smart developers that understand that the goal of software is to help customers succeed. creating great software only works if that great software fulfills real business needs. they do a great job understanding that software isn't the end goal, it's the means to a real end.
dzone -
what new features in the c# language motivated you to write this follow-up to "effective c#"?
bill -
linq, and the functional language features have had a tremendous effect on how software gets written today. those additions to the language meant there was enough new features and techniques to justify an entire new book. of course, so many features in c# 3.0 are enabled by generics, so that's another area that had a lot of coverage.
overall, there were quite a few new features, and those new features add up to new paradigms for c# developers.
dzone -
what is your definition of effective code?
bill -
effective code meets expectations, and expresses the design intent clearly. it's also resilient over time. finally, any competent developer should be able to read effective code, understand its intent, and make any modifications or updates without degrading the quality of the code.
dzone -
what is your background with c# and .net development?
bill -
i've been developing with c# since public betas were available for c# 1.0. i came to c# from c++ and java. i've been working with c# ever since. i've helped several customers utilize c# for their strategic software needs. along the way, i've developed the list of practices that are covered in both effective c#, and more effective c#. i believe it's got a great future as a premier language on the .net platform.
dzone -
what do you think the next big improvements in the c# language will be?
bill -
i'm most excited about the support for dynamic dispatch in c#. that capability will make it much easier for developers to use c# for core algorithms, that are likely statically typed, and still interact with high-productivity dynamic languages. those additions will make it easier for developers to consistently use the best tools possible for every task.
right now, mixing static and dynamic languages requires a lot of work. it's a lot of plumbing code, using reflection and casts and other error-prone techniques. that's where the biggest shift will be in the next couple years.
dzone - what do you do as a regional director for microsoft?
bill -
regional directors are an amazing community. we are asked to provide early feedback on product ideas, and discuss competitive offerings with respect to microsoft offerings. in return, we are often asked to discuss new technologies with customers and other members of the software community.
dzone -
dzone is very focused on the developer community. can you tell our readers a little about your involvement in user groups and other community activities?
bill -
i'm the president of the ann arbor .net developers group. i'm past president and past program chair for the great lakes .net user group. as a past board member, i make sure i'm available if anyone needs any help. thankfully, our region has some fantastic leaders stepping up, so no one needs to be the single driving force for any of our user groups for very long. our offices also host the ann arbor group. i also try to get to all the user groups in our areas to speak at least once a year. finally, i'm speaking at codemash again in january of 2009 (www.codemash.org). that's a fantastic community-organized conference in sandusky ohio.
dzone - who should buy your book?
bill -
an effective book is meant to be your second book on a subject. i assume you've used c# professionally, and you've probably read one of the comprehensive tutorials on the subject. as a second book on c#, i can concentrate more on techniques and idioms, rather than syntax. i'd recommend it to any professional c# developer that wants to improve.
dzone -
do you have any future books in the works?
bill -
writing a book is a huge time commitment. right now, i'm enjoying the break, and just working one job. i'm sure i'll write another book, but i haven't put anything together yet.
Opinions expressed by DZone contributors are their own.
Comments