how to convert string to code in 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 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.

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.

distributed/Parallel computing [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 9 years ago.
I need to write application in .NET which will be make some calculations on few comuters (eg.3 computers). How write this application, wchich library i need to use. Do you now any good materials about that?
Try looking into the Task Parallel Library
Or if you really want to use multiple computers, then check out:
Using Task Parallel Library with Multiple Computers

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.

Recommend hex editor class for 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 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?

EXE packer/EXE Compresser for application in C#/VB.net [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.
Is there any EXE packer/EXE Compresser available for application developed in C#/VB.net?
Try this one: http://madebits.com/netz/index.php
If you simply want to merge multiple assemblies into a single file you can try ILMerge, it's available from Microsoft.
If I understood you correctly use BoxedApp Packer for C #. With it you can pack all the exe quickly and efficiently. More information can find it here: http://boxedapp.com/boxedapppacker/

Categories