a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
29 lines
290 B
C#
29 lines
290 B
C#
using System;
|
|
|
|
class Foo { }
|
|
|
|
static partial class Extensions
|
|
{
|
|
public static bool IsFoo (this Foo self)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
class Bar { }
|
|
|
|
partial class Extensions
|
|
{
|
|
public static bool IsBar (this Bar self)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
class Program
|
|
{
|
|
public static void Main ()
|
|
{
|
|
}
|
|
}
|