Search

Released: Code Contracts VS2012 Editor Extensions
Code Contracts is an experimental project from Microsoft Research which provides a language-agnostic way to express coding assumptions in .NET programs, thus allowing for improved testability, static verification at compile time and automatic ... המשך לקרוא>
Eran Stiller , 03-24-2013 5:02
WF 4.5 and Code Contracts: Slide Decks and Code
I’d like to thank all those who attended yesterday’s sessions at the Israeli .NET Developer User Group. I had a good time delivering the sessions, and I hope you enjoyed them as well. What’s New in Windows Workflow Foundation (WF) 4.5? Sample ... המשך לקרוא>
Eran Stiller , 03-21-2013 8:36
Upcoming Event: Code Contracts Lecture
If you ever used a 3rd party API, you surely know the importance of proper documentation - Can this method return "null"? Do I have to check this return value? What are the valid values of this argument? You also probably know that ... המשך לקרוא>
Eran Stiller , 03-11-2013 10:58
Upcoming Event: WF 4.5 Lecture
Windows Workflow Foundation (WF) is Microsoft's .NET implementation of a Workflow authoring and hosting environment. With WF 4.5 developers can easily author workflows using the Visual-Studio built-in WF designer, host them in multiple application ... המשך לקרוא>
Eran Stiller , 03-05-2013 7:03
Accessing the AggregateException with await
The await keyword is a new keyword in C# 5.0 which, in tandem with async keyword, allows us to easily author methods which execute asynchronously in regards to the calling code. In previous posts I’ve shown certain issues you should look out ... המשך לקרוא>
Eran Stiller , 12-31-2012 9:44
Task.Wait() vs. await
The await keyword is a new keyword in C# 5.0 which, in tandem with async keyword, allows us to easily author methods which execute asynchronously in regards to the calling code. In a previous post I’ve shown a certain issue you should look out ... המשך לקרוא>
Eran Stiller , 12-23-2012 9:19
VS2012 WF Designer Issues with High DPI Settings
Windows Workflow Foundation (WF) is a core .NET technology for authoring long-running, scalable & integrated business processes. The WF designer that ships with VS2012 is the main tool of choice for declaratively creating workflows in .NET ... המשך לקרוא>
Eran Stiller , 12-12-2012 11:49
Assembly Binding Redirect Not Working
Assembly Binding Redirect is a .NET mechanism allowing developers who's application was compiled against a certain strongly-named assembly version to swap that assembly with a different version without recompiling the entire assembly. One ... המשך לקרוא>
Eran Stiller , 11-28-2012 8:35
Windows Phone 8 Emulator Hardware Requirements & SLAT
Windows Phone 8 SDK was released during the BUILD conference about 3 weeks ago, and an increasing number of developers are actively developing new apps for the new platform. This post focuses on the software and hardware requirements for running ... המשך לקרוא>
Eran Stiller , 11-19-2012 13:02
The async Keyword and Thrown Exceptions
async is a new keyword in C# 5.0 which allows us to easily author methods which execute asynchronously in regards to the calling code. The calling code can call the async method and continue its execution until it decides to join with the called ... המשך לקרוא>
Eran Stiller , 11-12-2012 19:31