abbaye / WpfHexEditorControl

Wpf Hexeditor is a powerful and fully customisable user control for editing file or stream as hexadecimal, decimal and binary. Can be used in Wpf or WinForm application
https://www.nuget.org/packages/WPFHexaEditor/
Apache License 2.0
815 stars 136 forks source link

Inquiry to request additional features #122

Open songminkyu opened 2 years ago

songminkyu commented 2 years ago

Thank you for your kind reply.

I'm sorry, but I'd like to make an additional request. Allocate a size of 2gb or more to the unmanaged memory below, as shown below.

IntPtr unmanagedarray = Marshal.AllocCoTaskMem(filesize);

Marshal.Copy(byte, unmanagedarray,0,filesize):

It would be appreciated if you could add a function so that unmanagedarray memory can be passed to Wpfhexeditorcontrol and output to hexview.

MemoryStream 2gb limit is too difficult T_T.

abbaye commented 2 years ago

Hi mister

Unfortunately I have not the time to do this actually. 😕😔

Possibility after this summer.

But you can make it by yourself with my code 😁

Droppers commented 2 years ago

Just out of curiosity, why would you want this?

How do you obtain data in such amounts, if not from a file?