1

An extension of my previous thread here.

I'm launching embedded resource applications via Reflection and I'm unsure whether I can use AutoIt (.au3) files or not. People say it needs to be "Managed Code". I'm not completely sure what that means nor do I know if AutoIt has that characteristic.

Community
  • 1
  • 1
Gio Borje
  • 20,314
  • 7
  • 36
  • 50

4 Answers4

5

Managed code is that which runs under the .NET CLR. AutoIt is not managed code.

Nate
  • 18,752
  • 8
  • 48
  • 54
0

AutoIt is an interpreted language, so even if you embed a script inside another, it will be visible to anyone if you don't "obfuscate" the code somehow (like xor encryption for instance)

Simone Margaritelli
  • 4,584
  • 10
  • 45
  • 70
0

See this definition of managed code.

I doubt that AutoIt is managed code. I was under the impression that it was simply run through an interpreter.

bta
  • 43,959
  • 6
  • 69
  • 99
0

You're asking whether AutoIT scripts are .Net assemblies.

I'm pretty sure they aren't.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964