Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
B

Bram Fokke

@Bram Fokke
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Zero-choice alternative
    B Bram Fokke

    Wouldn't float.IsNaN(x) be a more readable way to achieve that?

    The Weird and The Wonderful csharp

  • Thinking about the "WHY's" for using .NET 3.5
    B Bram Fokke

    Some people in this thread seem to believe that the cool language features in C# 3.0 are only available when using .NET 3.5. This is not true. You can build a .NET 2.0 application in Visual Studio 2008 and use most of the features new to C# 3.0: - Lambda expressions - Automatic type inferral using the 'var' keyword - Object and collection initializers - Extension methods (although this requires a hack[^]. - Anonymous types However, if you want to use Linq, you're gonna have to move to .NET 3.5. There is another MAJOR drawback to moving to 3.5 which hasn't been mentioned yet. .NET 3.5 does not support Windows 2000. I can see whiy it's harder to support WPF on Windows 2000, but I can't imagine why it would be impossible to host LINQ on a Windows 2000 machine. This no doubt has to do with Microsoft pushing adoption of its newer OSes.

    The Lounge csharp wpf question php linq

  • What is the equivalent C# syntax of void SomeFunction( array<object^>^ &updatelist)
    B Bram Fokke

    I believe this is what you are looking for:

    void SomeFunction(ref object[] updateList) {
    if(updateList == null) {
    updateList = new object[10];
    }
    }

    C# csharp c++ data-structures help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups