1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
cs2j/CSharpTranslator/tests/Tester/PartialUserTwo.cs
2011-06-10 14:05:32 +02:00

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);
}
}
}