Web Log di Adrian Florea

"You know you've achieved perfection in design, not when you have nothing more to add, but when you have nothing more to take away." Antoine de Saint-Exupery
posts - 440, comments - 2715, trackbacks - 3944

My Links

Archives

Post Categories

Image Galleries

.RO Blogs

.RO People

.RO Sites

Blogs

Furls

Links

vinCitori

Void & System.Void

Possono anche sembrarvi uguali i seguenti due snippet:

// Snippet 1
using System;
class Foo
{
  static void Main()
  {
    Console.WriteLine(Void.Equals(null, null));
    Console.Read();
  }
}

// Snippet 2
class Foo
{
  static void Main()
  {
    System.Console.WriteLine(System.Void.Equals(null, null));
    System.Console.Read();
  }
}

ma non lo sono per niente! :-) Mentre il primo dà l'errore che tutti si aspettano:

System.Void cannot be used from C# -- use typeof(void) to get the void type object.

il secondo scrive senza problemi un bel True a console! :-) Dovrei pensare un po' al perché...

Print | posted on lunedì 21 giugno 2004 02:30 | Filed Under [ Carillon .NET Bugs? ]

Powered by:
Powered By Subtext Powered By ASP.NET