UtilTextFilesReverse(String, String, Encoding) Method
Reverses the lines of the source textfile,
then writes the result in the target textfile.
Namespace: DevCase.Core.DataProcessing.TextFilesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void Reverse(
string sourceFilepath,
string targetFilepath,
Encoding enc = null
)
Public Shared Sub Reverse (
sourceFilepath As String,
targetFilepath As String,
Optional enc As Encoding = Nothing
)
Dim sourceFilepath As String
Dim targetFilepath As String
Dim enc As Encoding
UtilTextFiles.Reverse(sourceFilepath, targetFilepath,
enc)
public:
static void Reverse(
String^ sourceFilepath,
String^ targetFilepath,
Encoding^ enc = nullptr
)
static member Reverse :
sourceFilepath : string *
targetFilepath : string *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- sourceFilepath String
-
The source textfile path.
- targetFilepath String
-
The target textfile path.
- enc Encoding (Optional)
-
The file encoding used to read/write the textfile.
This is a code example.
No code example is currently available or this language may not be supported.
Reverse("C:\old file.txt", "C:\new file.txt", Encoding.Default)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.