Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 27, 2013 14:05
Show Gist options
  • Save Fhernd/5876694 to your computer and use it in GitHub Desktop.
Save Fhernd/5876694 to your computer and use it in GitHub Desktop.
Demostración del uso de palabras reservadas contextuales en C#.
using System;
using System.Linq;
class DemoPalabrasReservadasContextuales
{
static void Main()
{
int var = 1;
int select = 10;
var resultado = from value in Enumerable(5, 5) select value;
Console.WriteLine(var);
Console.WriteLine(select);
Console.WriteLine(resultado.Count());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment