*csharp

0verMind 22.06.2012 09:00

Объясните петушку, почему этот код не срабатывает
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
var f = from ff in new string[] {"1", "2", "3", "4", "5"}
select new Test {F1 = ff, F2 = ff + ff};
foreach (var test in f)
{
test.F3 = test.F1 == "4";
}
}
}

class Test
... more →

*csharp is used by:

0verMind