Program.cs 367 B

12345678910111213141516171819202122232425
  1. using System.Text.RegularExpressions;
  2. namespace ConsoleApp4
  3. {
  4. public class Program
  5. {
  6. public static void Main(string[] args)
  7. {
  8. }
  9. public static bool istrue(string a)
  10. {
  11. if (a == "lox")
  12. {
  13. return true;
  14. }
  15. else return false;
  16. }
  17. }
  18. }