📦Main.cs - Basic

В этом классе содержатся следующие методы:

triangle-exclamation
int rnd(int startInt, int endInt);
void terminate(int errorCode);
string getCurrentFolder();
void writeMachine(string text, int countDown = 40, bool writeLine = true);

Код класса:

Main.cs
public static class Basic
{
   public static int rnd(int startInt, int endInt) {...}

   public static void terminate(int errorCode) {...}

   public static string getCurrentFolder() {...}

   public static void writeMachine(string text, int countDown = 40, bool writeLine = true) {...}
}

Last updated

Was this helpful?