Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
142 views

So, for small numbers my code does work, but it doesn't work for big numbers, for instance 100^10. So someone could help me finding my mistakes, or point out some clues for me to fix my code. #include ...
123krikit krukut's user avatar
1 vote
0 answers
36 views

I am trying to make my dynamic class behave as System.Int32 in arithmetic expressions. However, I seem to be unable to handle situation when a dynamic instance is being added to an integer: dynamic i =...
LOST's user avatar
  • 3,384
1 vote
1 answer
108 views

#include <stdio.h> #include <string.h> char username[64], password[64], hostname[64]; int main(int argc, char **argv) { char result[256]; if (argc != 4 || ...
user avatar
-4 votes
1 answer
198 views

151A codeforces link Here is my code written in C language. It has some problem #include<stdio.h> #include<conio.h> int main () { int n,k,l,c,d,p,nl,np,mm,per,tl,to,sum; ...
Rafikul Bin Masud's user avatar
2 votes
1 answer
434 views

I want to get a python app to pass a generic list to my C# code. I've created a demo app that duplicates the problem I'm seeing. I have this python code (Python 2.7), MainApp.py, that calls a C# DLL (....
Joe Mayo's user avatar
  • 7,513
4 votes
1 answer
1k views

I have an Expression<Func<IQueryable<TIn>,TOut>>, and I'd like to transform it into Expression<Func<IEnumerable<TIn>,TOut>>. Actually, my end goal is to compile the ...
relatively_random's user avatar
2 votes
1 answer
141 views

IronRuby and IronPython have custom built-ins, standard modules and you can write code straight out of hand(Directly using statements and declarations in the code), instead of using namespaces and ...
Mr.DeleteMyMessages's user avatar
1 vote
0 answers
98 views

I am working on arbitrary object tree conversion to some specific format, using dynamic dispatch (to simplify handling generics). The object tree is generated by interop code, wraps some values into ...
LOST's user avatar
  • 3,384
0 votes
1 answer
81 views

Below code work perfectly fine unless I change GetCount parameter type from ICollection to dynamic - it throws RuntimrBinderException Why at runtime Count property is not available ? static void Main(...
rahulaga-msft's user avatar
0 votes
1 answer
2k views

I know question looks to be broad and subjective, but am stuck with this definition of IronPython everywhere - "IronPython is an implementation of the Python programming language" Please feel free to ...
rahulaga-msft's user avatar
2 votes
0 answers
247 views

Unity 2017 introduced an experimental .NET 4.6 Mono backend. Given that Mono seems to support the dynamic language runtime, I'm wondering whether we can finally use dynamic in Unity games (even if it'...
Patrick Klug's user avatar
  • 14.4k
1 vote
1 answer
1k views

I have the following class for binding to dynamically generated columns on a WPF DataGrid. The column binding has to be a property name, and I can add appropriately named properties to a DynamicObject:...
ProfK's user avatar
  • 51.5k
1 vote
1 answer
178 views

DLR or Dynamic Language Runtime hasn't seen any activity after mid 2010, still around its v1.0 release since then. I need DLR and IronPython to run my Python code using Numpy and at the same time ...
vijiboy's user avatar
  • 624
0 votes
0 answers
287 views

When I click the button On winform, this get executed: using (var outStream = new ScriptOutputStream(win.txtOutput)) { ExecuteScript(outStream); } This is the function to run the script. ...
Hrishikesh Mulabagula's user avatar
2 votes
0 answers
565 views

I'm parameterizing some linq queries, and ended up using dynamic linq. Initially I had some trouble extracting the data from the dynamic objects it created but I managed to extract it using FSharp. ...
s952163's user avatar
  • 6,322

15 30 50 per page
1
2 3 4 5
19