mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
No EOL
198 B
C#
15 lines
No EOL
198 B
C#
using System;
|
|
|
|
public static class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
TheMethod(2);
|
|
}
|
|
|
|
public static void TheMethod(int aParam)
|
|
{
|
|
int xTheValue;
|
|
xTheValue = aParam;
|
|
}
|
|
} |