Question MD file

Far

New member
Joined
May 27, 2018
Messages
2
Programming Experience
3-5
Hi, I need example for writing and reading MD file in C# . Thanks
 
Please always provide a FULL and CLEAR explanation of the problem. Assume that too many words are better than not enough. For a start (and it is just a start, not a FULL and CLEAR explanation) what is an MD file for and what have you already done to determine how to read and write one?
 
Then it would be a text file, so you would read and write it like any other text file. As you read each line, you'd parse it based on the rules of markdown. You could create dedicated classes for reading and writing files but, inside those, you'd still be treating it like any other test file.
 
Back
Top Bottom