admin
  • admin
  • 100% (Exalted)
  • Administration Topic Starter
a year ago
public string readText(string path)
    {
        string line = "";

        try
        {
            StreamReader sr = new StreamReader(path);
            line = sr.ReadLine();
            sr.Close();
        }

        catch (Exception e)
        {
        }
        finally
        {
        }

        return line;
    }