"Fossies" - the Fresh Open Source Software Archive
Member "FTPRush/scripts/ClassTest.cs" (5 Mar 2021, 140 Bytes) of package /windows/misc/FTPRush.zip:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C# source code syntax highlighting (style: standard) with prefixed line numbers and code folding option.
Alternatively you can here view or download the uninterpreted source code file.
1 //This script demonstrates how to define a class. 2 class Test 3 { 4 public voidOutput(string text) 5 { 6 Println(text); 7 Log.Status(text); 8 } 9 }