Browse By Tags

  • Blog Post: String.IsNullOrWhiteSpace() method in .NET 4.0

    Until .NET 3.5, most of the developers that are familiar with String class methods have already used String.IsNullOrEmpty() method. For example, I do often use this method when I want to check in same time if the String is Empty ("") or Null. Ex: if (! String .IsNullOrEmpty...
  • Blog Post: The new SortedSet<T> Collection in .NET 4.0

    With the newest release of .NET Framework, version 4.0 - the class library provides new collection set from System.Collections.Generic classes called SortedSet<T>. The two main features of SortedSet<T> are: Duplicate elements are not allowed Maintains a sorted order as elements are inserted...
  • Blog Post: JavaScriptSerializer – Користење на Serialize и Deserialize методи за конвертирање на Dictionary во JSON и обратно

    Пред некоја недела доста работев со .NET JavaScriptSerializer-от којшто содржи извонредни методи за сериајлизација и десеријализација на објекти. На пример ако сакаме да испратиме некој комплексен објект од клиент до веб сервис, би можеле да го сериализираме во JSON стринг, а потоа на страната на веб...
  • Blog Post: Preparing MCTS 70-515 – Web Applications Development with Microsoft .NET Framework 4

    One month ago I passed the TS: Web Applications Development with Microsoft .NET Framework 4. In this blog, I want to help all those who want to prepare or are already preparing themselves toward taking this certification exam, by giving some useful learning tips that may help you prepare better. Here...