Posted by anandkumar2004 on November 20, 2006
DEVCON 2006 is a great success , thanks to core and UG members .Here is my presentation and code sample of Core Features of C# 2.0
Core Features of C# 2.0 ( Presentation)
Demos
Note : Please rename Demos.doc to Demos.zip and then unzip it to walk through the sample code of the presentation .
Cheers
Anand
Posted in .NET | Leave a Comment »
Posted by anandkumar2004 on November 9, 2006
Folks ! Dev Con is back for you!Microsoft User Group, Hyderabad (MUGH) presents the most awaited developer event for you, focusing all brand new and cutting edge technologies you always loved to work on. Come, join us to celebrate the exciting fun tech stuff, Quizzing !.Yes…we owe you an event t-shirt and you will get it too !
Registration is Absolutely Free. Thanks to our Sponsorers.
Mark your calendars for 19th November, 2006
Venue : MPR Rooms, Microsoft Campus -2, Gachibowli. ( Venue Map & Directions)
[ Register Here ]
|
The Agenda
|
|
Registration (Starts from 9:00 AM onwards)
|
|
Introduction
|
MUGH Core Team |
|
SOA Platforms and The Green Field Myth
|
Vignesh Swaminathan, Lead Product Manager, Cordys R& D
India.
Anandhakrishnan Duraisami, Architect, Cordys R &D
India
|
|
Sponsorer Speak
|
|
Exploring
Mobile Computing & .NET CF
|
Harshal, MAQ Software
|
|
Fun Time & Goodies
|
|
LUNCH Break
|
|
|
.NET Track (Hall 1)
|
SQL Track (Hall 2)
|
|
.NET Security Best Practices
|
G. Gnana Arun Ganesh, Accenture |
Understanding Indexing Strategies
|
Anjana Ramamoorthy, Satyam Computers. |
|
Web 2.0 & ASP.NET Ajax
|
Sudhakar S, Microsoft
India.
|
SQL Server 2005 Tools |
Vinod Kumar,
Microsoft
India.
|
| Q & A Session , Fun Time |
| Snacks & Tea Break |
| Core features of C# 2.0 |
Anand Kumar, Accenture |
DW & Business Intelligence Groud-up |
Ramakrishnan,
Microsoft
India
|
| Web Services, and Software Factories |
Pratap Ladhani,
Microsoft
India.
|
|
|
Quick Break
|
|
|
Posted in General | 3 Comments »
Posted by anandkumar2004 on November 3, 2006
VSTS provides a very interesting tool called static analysis tool which helps to maintain better code quality .This tool is nothing but the advancement of FXCop . static analyzer examines managed assembly against a checklist know as rules , report the defects and poor programming practices based on these rules. Static analyzer ships with variety of rules like design rules ,globalization rules , naming rules , performance rules and many more . These rules are extendable by the developer that means you can define your application/project specific rules (custom rule) and run against the code. This is not mandatory that your code must follow all rules , its up to us to select all or few of them for example globalization is may not necessary/applicable to your application but naming convention or security rule is important then select these two rules and run against your code.
To specify the rules for you application , click on project property | Code Analysis Tab .Select all or applicable rules and make sure you have select enable Code Analysis check box .The next step is recompile your code and the code analyzer report the defects in the error window.This tool is very much helpful to avoid bad coding practices .
Posted in VSTS | 1 Comment »