I am trying to run IronPython code with c#. I created a simple console application (.net 4) and added IronPython.dll , IronPython.Modules.dll and Microsoft.Scripting and wrote the next code -
Closed. This question does not meet Stack Overflow guidelines. It is 开发者_开发技巧not currently accepting answers.
I am hoping some genious out there can help me out with this... I am using sox to merge and resample a group of WAV files, and pipe the output directly to the input of NeroAACEnc for encoding to AAC
I\'m trying to get a CodeExpression from a string of python.It seems possible since some of the DLR docs mention CodeDom classes but I haven\'t been able to find any examples or better docs.Any insigh
EDIT: is from __future__ import absolute_import available in IronPython? I just realized, though everything I\'m using is only python, the project as a whole is in IronPython.
This question already has answers here: Closed 11 years ago. Possible Duplicate: How to match two arrays
I have two arrays A = [a, b, c, d] and B = [a1, a2, b1, b2, b3, c1, c2, c3, d1, d2, d3, d4] I want to match between the two arrays.
I\'m observing this behavior, when I run the same code for the second time with different parameters in webforms with IronPython,
This emerged from my related question. I currently have the following binding: myBinding = Binding(\"[foo]\")
I am using the DLR within a small part of a larger C# project, IronPython being the language in question.