Showing results for 2014 - Page 2 of 2 - Developer Support

Oct 15, 2014
Post comments count0
Post likes count0

Microsoft Services 101: Premier Developer

Pam Lahoud
Pam Lahoud

When it comes to choosing a service provider to partner with in your business, the field is cluttered with countless vendors and possibilities.  With so many options to choose from, finding just the right fit for your organization can be a daunting task.  Even within Microsoft there are many different types of services offered and groups ...

DiscoverServices
Sep 23, 2014
Post comments count0
Post likes count0

Developer Essentials Passport

Developer Support
Developer Support

If you are a developer or an IT Pro, you know that keeping up with essential skills is a constant challenge.   One of the primary benefits of a Premier Support relationship is having access to the many training options and advisory services available directly from Microsoft.  Workshops, Webcasts, Tech Talks, and Chalk Talks are just ...

Sep 21, 2014
Post comments count0
Post likes count0

Testing the Testing Strategy

Developer Support
Developer Support

Having healthy application lifecycle management (ALM) processes is crucial to producing robust software.  ALM guidance is one of the primary services the Premier Development consulting team delivers and our ALM consultants are highly in demand!  Our team is growing and this past summer we were lucky to have Geoff Gray join our team. ...

Sep 15, 2014
Post comments count0
Post likes count0

Microsoft Unified Support

Developer Support
Developer Support

Software is our era’s driving force of innovation.  It is constantly changing how we live and work, and businesses everywhere are adapting to mobile, connected, and global economies.  Cloud innovations that open new markets and optimize resources are creating competitive advantages on a daily basis – and these advantages are capitalized upon by a m...

DiscoverROI
May 13, 2014
Post comments count0
Post likes count0

So many exceptions… but only one can throw

Andrew Arnott
Andrew Arnott

When a method may throw for more than one reason, the thoughtful programmer might ask “which exception should be thrown?”Consider a method which performs argument validation, is cancelable, and also might throw based on the state of the object. What order should these validations occur so that the best exception is thrown? Here is my ow...

andarno.NETasync
May 7, 2014
Post comments count0
Post likes count1

Asynchronous and multithreaded programming within VS using the JoinableTaskFactory

Andrew Arnott
Andrew Arnott

Everyone appreciates a fast and responsive UI, and Visual Studio is no exception. Extensions that run in Visual Studio play a significant role in how responsive the IDE will be for its users. Visual Studio has been evolving over the past few cycles to not only improve performance, but also responsiveness during operations that may take a while to e...

andarno
Mar 19, 2014
Post comments count7
Post likes count0

Recommended patterns for CancellationToken

Andrew Arnott
Andrew Arnott

Whether you're doing async work or not, accepting a CancellationToken as a parameter to your method is a great pattern for allowing your caller to express lost interest in the result. Supporting cancelable operations comes with a little bit of extra responsibility on your part. Optional CancellationToken parameter I...

andarno