From f5f62518ab9258c00e5bba5d1f764e06fd0dfeb7 Mon Sep 17 00:00:00 2001 From: Martin Polanka Date: Sat, 5 Oct 2019 14:16:09 +0200 Subject: [PATCH] csharp reader filename --- Runtime-Environments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime-Environments.md b/Runtime-Environments.md index fa3e156..ebab53b 100644 --- a/Runtime-Environments.md +++ b/Runtime-Environments.md @@ -19,7 +19,7 @@ By default, we use a script that looks for a class with a `main` method and exec The C# solutions are executed with the help of [wrapper code](https://github.com/ReCodEx/utils/blob/master/runners/cs/Wrapper.cs). This code searches for `main` method in submitted source codes. There has to be only one class containing `main` method, otherwise error will be thrown. The name of the file containing wrapper code is `ReCodEx_Csharp_Wrapper.cs` and it contains namespace `CodEx` with class `Wrapper`, so be aware of filename and class collisions. -In C# language there are none of the handy functions to operate with textual inputs like `scanf` in C. Therefore for every C# build in ReCodEx there is [Reader.cs](https://github.com/ReCodEx/utils/blob/master/runners/cs/Reader.cs) library included to make life of C# programmers easier. Please note that library is suppose to work only with ASCII files and some difficulties can be observed with modern Unicode (UTF-8) encodings. The `Reader` library contains namespace `CodEx` with class `Reader`, so again, be aware of filename and class collisions. +In C# language there are none of the handy functions to operate with textual inputs like `scanf` in C. Therefore for every C# build in ReCodEx there is [Reader](https://github.com/ReCodEx/utils/blob/master/runners/cs/Reader.cs) library included to make life of C# programmers easier. Please note that library is suppose to work only with ASCII files and some difficulties can be observed with modern Unicode (UTF-8) encodings. The `Reader` library is located in `ReCodEx_Csharp_Reader.cs` library contains namespace `CodEx` with class `Reader`, so again, be aware of filename and class collisions. ## Go