Recent content by winstongel

  1. W

    What are some good interview questions for Java developers?

    Check this one.....Java Interview Questions Winston
  2. W

    Best compression algorithm for very small data

    Lzma2 is faster when using 4 or more cores and it gives better compression. Site link and irrelevant solution to three year-old question removed -- Programming Moderator Ken g6 Winston
  3. W

    C# - error loading excel file into datatable

    Site link and irrelevant solution to four year-old question removed. Markbnj
  4. W

    Help me out with these HTML questions please.

    Try here more about roll over image......http://www.corelangs.com/css/box/hover.html winston --- Hi, Welcome to AnandTech Forums. I locked the thread because the previous reply was over ten years ago. Our members refer to such posts as "necro" posts, and some of them tend to post replies...
  5. W

    In C#, how do you output the contents of a Dictionary class?

    Use for..each loop foreach (KeyValuePair pair in dict){ MessageBox.Show(pair.Key.ToString ()+ " - " + pair.Value.ToString () );} More about C# Dictionary ...http://csharp.net-informations.com/collection/dictionary.htm Winston Welcome to the AT Forums. But for future reference...