shuralex

Stories kicked by shuralex

The Private Life of a Public API(moserware.com)

submitted by moserwaremoserware(1665) 3 years, 5 months ago

Developing a public API on .NET is hard work, but it can be rewarding. Some reflections on the "Framework Design Guidelines" read more...

1 comment |category: |Views: 325

tags: another

Visual Studio Tip: Split Views(kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 3 years, 9 months ago

There are a couple of ways to get a split view in Visual Studio. Both are incredible time savers that I use daily. The first is one that most developers will be aware of, but the second seems to be one that many do not seem to know about. read more...

3 comments |category: |Views: 810

tags: another

Writing a Simple Role Playing Game with C# .NET and the State Pattern(primaryobjects.com)

submitted by johndoe2008johndoe2008(190) 4 years ago

Learn how to use the State design pattern in C# .NET by writing a basic role playing game, with a main character who explores a forest, finds magical items, slays monsters, and gains experience points. read more...

add a comment |category: |Views: 103

tags: another

Operator~ and BinarySearch(dev102.com)

submitted by shaharyrshaharyr(4325) 4 years ago

Usually, we use Array.BinarySearch to find a value in a sorted array, we all know that this method returns the index of the searched value in the array, if value is found. But most of us don't really know the whole truth about the returned value and how it can be used. read more...

add a comment |category: |Views: 22

tags: another