34 lines
316 B
C#
34 lines
316 B
C#
|
using System;
|
||
|
using External;
|
||
|
|
||
|
interface I
|
||
|
{
|
||
|
}
|
||
|
|
||
|
namespace Outer.Inner
|
||
|
{
|
||
|
class Test {
|
||
|
static void M (I list)
|
||
|
{
|
||
|
list.AddRange();
|
||
|
}
|
||
|
|
||
|
public static void Main()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
namespace Outer
|
||
|
{
|
||
|
}
|
||
|
|
||
|
namespace External
|
||
|
{
|
||
|
static class ExtensionMethods {
|
||
|
public static void AddRange (this I list)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|