Greetings,
I've been writing a framework for the Common Language Infrastructure (aka .NET) for about six to eight months. Its end goal is to greatly reduce the amount of work necessary to write a compiler. It will do so by handling the heavy lifting, such as transforming high-level concepts into somewhat lower-level concepts for use by the CLI.
Above is an image which gives a basic structure outline...
Search Result
Collapse
2 results in 0.0014 seconds.
Keywords
Members
Tags
-
Compiler Framework on top of the .NET CLI
-
Synchronous events? (c++/cli)
Hello!
I have a class instance that fires events and they are handled in a form.
I believe this kind of event is called trivial:
...Code:public: delegate void CpuStepEventHandler(Object^ sender, CpuStepEventArgs^ e); public: event CpuStepEventHandler^ CpuStepEvent; protected: virtual void OnCpuStepEvent(CpuStepEventArgs^ e) { //if(CpuStepEvent != nullptr) CpuStepEvent(this,