7d05485754
Former-commit-id: df344e34b07851d296efb3e6604c8db42b6f7aa3
33 lines
479 B
C#
33 lines
479 B
C#
using System.Collections.Generic;
|
|
|
|
class Expr
|
|
{
|
|
public int Field;
|
|
}
|
|
|
|
static class X
|
|
{
|
|
public static IEnumerable<int> Test (Expr expr)
|
|
{
|
|
object exprCur = expr;
|
|
if (exprCur is Expr list) {
|
|
yield return list.Field;
|
|
}
|
|
}
|
|
|
|
public static IEnumerable<string> Test2 (int? expr)
|
|
{
|
|
int? exprCur = expr;
|
|
while (exprCur != null) {
|
|
if (exprCur is int list) {
|
|
yield return list.ToString ();
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
Test (null);
|
|
Test2 (3);
|
|
}
|
|
} |