mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
31 lines
417 B
C#
31 lines
417 B
C#
#define INFILE
|
|
|
|
using System;
|
|
namespace Tester
|
|
{
|
|
public partial class PartialUser
|
|
{
|
|
public PartialUser ()
|
|
{
|
|
}
|
|
|
|
partial void doPart(String[] args)
|
|
{
|
|
Console.WriteLine("Hello from doPart()" + msg);
|
|
}
|
|
|
|
partial void doNothingPart(String[] args)
|
|
;
|
|
|
|
public partial class PartInner {
|
|
}
|
|
|
|
#if MONO && (LINUX || INFILE)
|
|
public String ToString() {
|
|
return "PartialUser";
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
|