Pascal to C# Translator Converter

This program is a basic Pascal-to-C# translator. It accepts a Pascal source file and converts it into an equivalent C# program. The program reads a Pascal file provided by the user (either via command line or interactively), processes the content, and outputs a C# source file with the appropriate syntax changes. Specifically, the program will:

- Replace Pascal-specific keywords like WriteLn, readLn, begin, and end with their C# equivalents.
- Translate the program structure, variable declarations, and loops to make it compatible with C#.
- Create a fully compilable C# source code from a Pascal source file.



Group

File Handling in C#

Objective

1. The user will input the name of the Pascal file to be translated.
2. The program will read the Pascal file and output its contents into a new file with the .cs extension.
3. The program will replace Pascal-specific keywords with their C# equivalents, such as:

- WriteLn -> Console.WriteLine
- := -> =
- begin -> {
- end -> }
- program x; -> class x { followed by Main method.
- readLn(x) -> x = Convert.ToInt32(Console.ReadLine()).

4. It will eliminate the var keyword and replace type declarations like integer with int.
5. The resulting C# file should be properly formatted and compilable.

Create a basic Pascal to C# translator.

Example C# Exercise

 Copy C# Code
using System;
using System.IO;

class PascalToCSharpTranslator
{
    // Method to translate the Pascal code to C#
    public void Translate(string inputFileName)
    {
        // Output file name by changing ".pas" to ".cs"
        string outputFileName = Path.ChangeExtension(inputFileName, ".cs");

        // Read the entire content of the Pascal file
        string[] pascalCode = File.ReadAllLines(inputFileName);
        using (StreamWriter writer = new StreamWriter(outputFileName))
        {
            bool isFirstLine = true;

            // Process each line of the Pascal code
            foreach (string line in pascalCode)
            {
                string translatedLine = line;

                // Replace Pascal specific keywords with C# equivalents
                translatedLine = translatedLine.Replace("WriteLn", "Console.WriteLine");
                translatedLine = translatedLine.Replace(":=", "=");
                translatedLine = translatedLine.Replace("'", "\"");
                translatedLine = translatedLine.Replace("begin", "{");
                translatedLine = translatedLine.Replace("end;", "}");
                translatedLine = translatedLine.Replace("end.", "}");

                // Replace program declaration with C# class
                if (translatedLine.StartsWith("program"))
                {
                    translatedLine = translatedLine.Replace("program", "class") + " {";
                    writer.WriteLine("using System;");
                    writer.WriteLine("\nclass Program\n{");
                    writer.WriteLine("    static void Main(string[] args)\n    {");
                }

                // Replace readLn with C# equivalent
                if (translatedLine.Contains("readLn"))
                {
                    int startIdx = translatedLine.IndexOf("readLn") + 7; // skip "readLn"
                    string varName = translatedLine.Substring(startIdx).Trim('(', ')');
                    translatedLine = $"{varName} = Convert.ToInt32(Console.ReadLine());";
                }

                // Remove the "var" declaration and replace types with C#
                if (translatedLine.Contains(": integer"))
                {
                    translatedLine = translatedLine.Replace(": integer", "int");
                }

                // Properly format the "for" loop
                if (translatedLine.Contains("for"))
                {
                    translatedLine = translatedLine.Replace("for", "for") + " {";
                }

                // If it's the first line, don't add a newline yet
                if (!isFirstLine)
                    writer.WriteLine(translatedLine);
                else
                    isFirstLine = false;
            }

            // Close the C# class structure
            writer.WriteLine("    }\n}");
        }

        Console.WriteLine("Translation completed! The output file is: " + outputFileName);
    }
}

class Program
{
    static void Main(string[] args)
    {
        // Ask the user for the Pascal file name
        Console.WriteLine("Enter the Pascal file name (with .pas extension): ");
        string inputFileName = Console.ReadLine();

        // Create an instance of the translator
        PascalToCSharpTranslator translator = new PascalToCSharpTranslator();

        // Translate the Pascal code to C#
        translator.Translate(inputFileName);
    }
}

 Output

// Assume the Pascal code example.pas contains:
program example;

var
i: integer;
max: integer;

begin
writeLn("How many times?");
readLn(max);
for i := 1 to max do
writeLn("Hola");
end.

//After running the program, the output in the example.cs file will be:
using System;

class Program
{
    static void Main(string[] args)
    {
        int i;
        int max;

        Console.WriteLine("How many times?");
        max = Convert.ToInt32(Console.ReadLine());

        for (i = 1; i <= max; i++)
        {
            Console.WriteLine("Hola");
        }
    }
}

Share this C# Exercise

More C# Practice Exercises of File Handling in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Text File Uppercase Converter in C#

    This program reads the content of a text file and converts all lowercase letters to uppercase. After processing the text, the program writes the modified content to another text fi...

  • Convert Text to Uppercase and Save to New File in C#

    This program is designed to read a given text file, convert all lowercase letters to uppercase, and then save the modified content to a new file. The program will take an input fil...

  • Invert File Content and Save in Reverse Order in C#

    This program is designed to read a binary file and create a new file with the same name but with a ".inv" extension. The new file will contain the same bytes as the original file, ...

  • Text File Encryption Program in C#

    This program is designed to encrypt a text file and save the encrypted content into another text file. The encryption method used here is a simple character shifting technique, whe...

  • Word Count Program for Text File in C#

    This program is designed to read a text file and count the number of words it contains. A word is considered any sequence of characters separated by spaces, newlines, or punctuatio...

  • Display BMP File Width and Height using BinaryReader in C#

    This program is designed to read a BMP (Bitmap) image file and display its width and height. The BMP file format has a specific header structure, which contains important informati...