TextFileStreamSave(String, Encoding) Method
Save the lines of the current textfile, 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 virtual void Save(
string filepath,
Encoding enc = null
)
Public Overridable Sub Save (
filepath As String,
Optional enc As Encoding = Nothing
)
Dim instance As TextFileStream
Dim filepath As String
Dim enc As Encoding
instance.Save(filepath, enc)
public:
virtual void Save(
String^ filepath,
Encoding^ enc = nullptr
)
abstract Save :
filepath : string *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> unit
override Save :
filepath : string *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- filepath String
-
The target filepath where to save the text.
- enc Encoding (Optional)
-
The file encoding used to write the textfile.