C
C#β€’17mo ago
maria 🌟

❔ How to make changes to files using low space

id like to know some way to for example modify a file by like a list of changes without need to download a whole file again
9 Replies
maria 🌟
maria πŸŒŸβ€’17mo ago
no help :c?
TheBoxyBear
TheBoxyBearβ€’17mo ago
$details
MODiX
MODiXβ€’17mo ago
When you ask a question, make sure you include as much detail as possible. Such as code, the issue you are facing, and what you expect the result to be. Upload code here https://paste.mod.gg/ (see $code for more information on how to paste your code)
Pobiega
Pobiegaβ€’17mo ago
What file format? The fastest way for sure is binary patching, but its extremely error prone and you need to know byte by byte exactly what the original file will look like.
maria 🌟
maria πŸŒŸβ€’17mo ago
raw byte array i want to make like an updator yea im doing thath exacly
maria 🌟
maria πŸŒŸβ€’17mo ago
maria 🌟
maria πŸŒŸβ€’17mo ago
then i will create a file with the modification founded and save it to a format thath i will create
maria 🌟
maria πŸŒŸβ€’17mo ago
i think this would work
Accord
Accordβ€’17mo ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.
Want results from more Discord servers?
Add your server
More Posts
βœ… Record for ensuring parametersHello. I'm currently learning Function C#, and the guy I'm currently making a demo for gave me a tipβœ… Await seemingly ignored inside Dispatcher.BeginInvokeI'm writing an app in WPF. Currently testing something out, here's the code I'm testing: ```await D❔ dotnet start, and profilesWhen I run `dotnet run`, which profile from `launchSettings.json` is chosen? There are so many ways ❔ integrate an UI test with playwright on a Blazor ServerCan someone help me? I try to use this code to integrate an UI test with playwright on a blazor serv❔ LINQ distinct from 2 lists preserving order as soon as they are seenI have 2 lists like this 1: {1, 2, 3} 2: {1, 3, 4} what's the LINQ distinct method for them that pro❔ Process.Start() Retroarch Emulator C#Hello, I need some help with a code, I'm trying to run the retroarch emulator with the Process.Start❔ binding Command in user control button problemThe problem is that nothing is happening but when i'm making normal button in my main window with Co❔ Date Formatting in C#I have an incoming date of string as 202302220811 and would like to convert this to 02/22/23 08:11 ❔ System.Reflection.ReflectionTypeLoadException: β€žUnable to load one or more of the requested types.``` System.Reflection.ReflectionTypeLoadException: β€žUnable to load one or more of the requested type❔ use of args in methodcan someone explain the specific context in which we declare args in the methods? e.g. for this met