1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

26 lines
418 B
C#
Raw Permalink Normal View History

using System;
namespace Tester.Misc
{
public class RenameTest
{
public RenameTest ()
{
}
public string AMethod(object x) {
return "AMethod has arg " + x.ToString();
}
public string aMethod(string s) {
return "aMethod has string arg \"" + s + "\"";
}
public static void RNMain(string arg) {
RenameTest rnObj = new RenameTest();
Console.Out.WriteLine(rnObj.AMethod(arg));
}
}
}