3

How to code a translator:

public string Translate(string input, string lang)
{
if (lang is string)
return input;
else throw new NotFoundException();
}

Comments
Add Comment