37 lines
355 B
C#
37 lines
355 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using N2;
|
||
|
|
||
|
namespace N
|
||
|
{
|
||
|
static class S
|
||
|
{
|
||
|
internal static void Map<T>(this int i, Func<T, string> f)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
namespace N2
|
||
|
{
|
||
|
static class S2
|
||
|
{
|
||
|
internal static void Map(this int i, int k)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
namespace M
|
||
|
{
|
||
|
using N;
|
||
|
|
||
|
class C
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
1.Map(2);
|
||
|
}
|
||
|
}
|
||
|
}
|