Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
52 views

Generating a constructor that takes an argument and just calls base(argument) using TypeBuilder

I am trying to dynamically create an empty constructor that takes an argument and simply calls base(argument) using TypeBuilder. My code is something like: (...) // Create a class derived from ...
2
votes
1answer
48 views

Reflection.Emit and Parallel.ForEach

I'm trying to write dynamic method that calls Parallel.ForEach. I have checked a IL of a sample class and I noticed that there's a nested type generated that's named <>c__DisplayClass# I did ...
1
vote
1answer
65 views

Using emit function in node.js

I can't figure out why I can't make my server to run emit function. Here's my code: myServer.prototype = new events.EventEmitter; function myServer(map, port, server) { ... this.start = ...
1
vote
2answers
26 views

GTK+ Application: Receive input from a worker thread

I have a GTK+ application with a GtkTextBuffer. It uses several worker threads which perform some lengthy operations. Those threads can report their progress in a textual format. I want to show ...
1
vote
1answer
26 views

How to emit a string with quotes using yaml-cpp?

I want to emit a string with quotes using yaml-cpp so it looks like time_stamp: "August 10, 2011 01:37:52" in the output yaml file. How do I do it? Thanks.
1
vote
1answer
113 views

IL Emit TypeBuilder and resolving references

I am emitting several classes, some of which need to construct their peers in their own constructors. There are no infinite recursive dependencies (so if A constructs B, B won't construct A; this ...
0
votes
2answers
35 views

Usage of Assembly.LoadModule

How to use this method? Assembly.LoadModule I am creating an assembly in runtime using Thread.GetDomain().DefineDynamicAssembly... I want to know how can I load this assembly created in runtime in ...
0
votes
1answer
33 views

why application crashed ,if there are too many events in the eventlist?

The following codes will crash ,and even hang the linux, any ideas about it ? #include <QCoreApplication> #include <QString> #include <QMap> #include <QList> #include ...
0
votes
0answers
90 views

socket.io client 'emit' shows a weird error in chrome console (SOLVED)

I am developing a simple application using the current latest versions of nodejs + socket.io on Windows. I have encountered a problem when the socket get created on the client side, but socket.emit ...
0
votes
1answer
31 views

Adding custom attribute to a system class

I want to add classes from System.Activites.Presentation my custom attribute. I tried to do it with emit (TypeBuilder, ModuleBuilder, AssemblyBuilder). Is it possible to change an existing type by ...
-1
votes
1answer
46 views

strange behavior of qt emit using qthread

struct C : public QObject { Q_OBJECT public: C() { qDebug()<<"C()"; //connect(this,SIGNAL(cs()),this,SLOT(cl2()),Qt::QueuedConnection); } ...