repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
gtest-linq-22.cs
blob
d6d3a0de443803644ac7d4d0be246548be4d5696
1
using
System
;
2
using
System
.
Linq
;
3
4
namespace
Test
5
{
6
class
MainClass
7
{
8
public static void
Main
()
9
{
10
DateTime junk
=
DateTime
.
Today
;
11
var
results
=
from
item
in
"abcd"
12
let
parsed
=
DateTime
.
TryParse
(
"today"
,
out
junk
)
13
select
parsed
?
junk
:
DateTime
.
Now
;
14
}
15
}
16
}