Un poco de C#,JScript,VB, y CRM, Drupal, SQL , MSDCRM y MSDSL VBTools, developer, project lider, Social Media Activist, BlackBerry developer, telerik tools. (MCITP)
Mostrando entradas con la etiqueta txt file.. Mostrar todas las entradas
Mostrando entradas con la etiqueta txt file.. Mostrar todas las entradas
domingo, 29 de enero de 2012
Read txt file with c#
public ArrayList ReadtxtFile(string txtPath)
{
StreamReader objReader = new StreamReader(txtPath);
string sLine = "";
ArrayList arrText = new ArrayList();
while (sLine != null)
{
sLine = objReader.ReadLine();
if (sLine != null)
{
if (sLine != "")
arrText.Add(sLine);
}
}
objReader.Close();
return arrText;
}
Suscribirse a:
Entradas (Atom)