Advertisement
Guest User

Untitled

a guest
May 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. private static void DodajTekst(FileStream fs,string value)
  2. {
  3. byte[] info = new UTF8Encoding(true).GetBytes(value);
  4. fs.Write(info, 0, info.Length);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement