Recommend hex editor class for C#? [closed] - c#

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am looking for a free hex editor class/control for C#. Could you recommend a good one?
PS: The only requirement is the control/class should support view/edit file as hex and should be as simple as possible if could.
To be more specific, there should be a interface support loadFile/createFile/saveFile.
I have a small file(less than 0.5k) that need to show in a text-box like control in hex.

Is HexBox the kind of thing you're looking for?

Related

searching for expletives in visual studio projects [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am still in the stage of trying to not write expletive comments to myself, so on project completion I do a search for the main "abused" words.
Are the Microsoft devs filthy mouthed or is it coincedence?
(* = removed letter)
D:\Projects......resx(3996): 8g7fqR/cfvvt386D/zGF1TYJfIB5weKlYcESxrKwcKlUcU*tpdF5VrGvpYZHiS1VfD12tuzm9Zs3SyVn
D:\Projects\.....resx(3706): L6QEuEi5sMzyh24/noC5wqUC*NTXlQPWqr62XJCX8nrbw8D3TWUEJYkisCnDNDu0KYPqAL/UEIC/yZqA
D:\Projects\....resx(7349): aKtRVgW2niEevp/n4XhGaMqS941TpuzAEbXSbIVlIgJ8mPZDf3Cp2qvY9WrTpd8vPAtOF*cK34BGgRYg
D:\Projects\....resx(1963): GYDa2oFR45PBMFZ9tcDfU*KmjQLw0eMn7PX4mny9seuYwA3QDeQyi96k5ltz625fhxcDXFGb6O2tyijO
D:\Projects\....resx(2247): 8kotbWCBQzzDPVRz9b1691MLa4uWM8oB5NXcMbFWc*CkpL48XtyQo1JL0vJgrjupuYPRT9/vDvvcOBPE
The answer is one of:
Yes
No
We'll give them the benefit of the doubt and say most likely no, these are just random.

c# and finereader lib's [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I hear, there is fine-reader lib's for c#, so that i can read text on my image, but i did't find this in web, are there any tutorials? code? Also what also can i use to read in my windows-form app text on my image?
Simple: in code i load image, and then send it to method, which read this text on my image... But image is noisy.
There is a good OCR library called tesseract, but it's C++ native library, which you can use through the console mode. I could not find better alternatives.

what is the best facedetection .net other than luxand [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
i would like to know the best
face detection software
i tried luxand facesdk but its very too much. 4000usd per process per year.
so what is the alternative for .NET , ASP.NET or MVC
You can try with OpenCV library
Link : http://www.codeproject.com/Articles/23191/Face-and-Eyes-Detection-Using-OpenCV

What Web-Engines do I've aviable when developing a C# Application in Windows? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I want to know what are the most popular Web-Engines to use in a Desktop Aplication using C# and WinForms.
Can you suggest some ?
edit: I've edited the question, I think it's OK now.
I would go with WebKit.NET (GitHub Download)
I would use Awesomium.
It has a good .NET/WPF support.

how to convert string to code in c# [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I saw there is such question in c++
I am a very begginer and I need a very simple example how to do it .
the user writes code in the text box and what I need o do is to execute it
how???
You can use the classes in the System.CodeDom namespace to compile C# into in-memory assemblies, and run them on the fly. Here is a mini-tutorial.
Alternatively, you can use Reflection.Emit to construct code on the fly.
Check the approach used in this example.

Categories