mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
31 lines
387 B
C#
31 lines
387 B
C#
#define INFILE
|
|
|
|
using System;
|
|
namespace Tester
|
|
{
|
|
public partial class PartialUser
|
|
{
|
|
|
|
string msg = "hello";
|
|
|
|
public bool doIt(String[] args) {
|
|
doNothingPart(args);
|
|
doPart(args);
|
|
return true;
|
|
}
|
|
|
|
partial void doPart(String[] args)
|
|
;
|
|
|
|
public static void PartialMain(String[] args) {
|
|
PartialUser part = new PartialUser();
|
|
part.doIt(args);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|