.NET
csharpperl.txt
Associated article: C# & Perl
Tags: .NET C/C++ Web Development
Published source code accompanying the article by Talbott Crowell in which he presents common Perl scripts that you can implement in C#.
C# & Perl
by Talbott Crowell
Listing One
(a)
# Perl
@fruit = ("apples", "pears", "bananas", "oranges");
# turn the array into one scalar string
$line = join("t", @fruit);
print $line, "n&...


