5a7483ca 15a7 75b9 2d97 d91af5c0a58b - akesseler/Plexdata.CsvParser GitHub Wiki
This method converts provided string value into its real string content representation.
Namespace: Plexdata.CsvParser.Internals
Assembly: Plexdata.CsvParser.NET (in Plexdata.CsvParser.NET.dll) Version: 1.1.3+d5bef99aa35461ce4bafadf0bf2c2aeca18044ea
C#
private static string ToContent(
this string value
)
- value
- Type: System.String
The value to be converted.
Type: String
The converted and content-ready value.
In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
The conversion is made by removing any leading and trailing whitespaces as well as by replacing escaped double-quotes with unescaped double-quotes.