G
Guest
I am looking to see if there is an example or pseudo code for how to have a
C# application read a text file and perform an action that is parsed from the
text file. For example
TestDoc.txt
================================
This is a list of values:
<# for (int i = 0; i < mylist.count; i++)
{
writeout( "parm[" + i + "] = " + myList + "\n" )
}
#>
Input
================================
mylist[0] = "Hello World";
mylist[1] = "Goodbye World";
TestDoc_output.txt
================================
This is a list of values:
parm[0] = Hello World
parm[1] = Goodbye World
C# application read a text file and perform an action that is parsed from the
text file. For example
TestDoc.txt
================================
This is a list of values:
<# for (int i = 0; i < mylist.count; i++)
{
writeout( "parm[" + i + "] = " + myList + "\n" )
}
#>
Input
================================
mylist[0] = "Hello World";
mylist[1] = "Goodbye World";
TestDoc_output.txt
================================
This is a list of values:
parm[0] = Hello World
parm[1] = Goodbye World