Helix W.
Helix W.
CC#
Created by SlimeShulker on 1/4/2025 in #help
Please can somebody help me with this .txt file?
Try writing it like this
var bytes = File.ReadAllBytes(@"dna.txt");
var bytes = File.ReadAllBytes(@"dna.txt");
var text = Encoding.UTF8.GetString(bytes);
var text = Encoding.UTF8.GetString(bytes);
Console.WriteLine(text);
Console.WriteLine(text);
The @ is important cause you're dealing with file location
14 replies