The steps explained were quite adequateReply
Originally posted by: Cindy
This was just the information I needed to complete the connection of the Serial Class I had put together to the Form I had created.
Thank you!!
Reply
Originally posted by: Andrew
Why must everyone who puts sample code out there use confuzing names for functions? It seems all the decent examples are riddled with this type of thinking.
'MyClass1/2/3'? They might as well be name 1, 2, and 3. Examples like this will generally turn out to be clearer if they are written more like a normal app (like the bottom sample!).
'MyDelegate1' doesn't tell me something (and is a name no human would normally use), but 'PrintSometing()' and 'WriteToConsole()' and least give some hint to their intention.
It is easier to follow the code if you can follow the intention. Naming everything the same as the feature you are tyring to explain just confuzes the issue.
Reply
Originally posted by: David Lo
Thank you. Useful article. Hope you can create such an article on different topic again in the future. If you are not busy please mail me if you do so. Thanks.
ReplyOriginally posted by: YDejun
Could anybody help me?
How to sink a event from C++.NET in C#? For example, for following CSource, how to sink EventTest in C#?
#pragma once
#include <windows.h>
using namespace System;
namespace CSource
{
[event_source(managed)]
public __gc class CSourceClass
{
// TODO: Add your methods for this class here.
public:
CSourceClass(void){}
~CSourceClass(void){}
void FireEvent()
{
__raise EventTest();
}
__event void EventTest();
};
}
Thank you very much,
Ydejun
Reply
Originally posted by: Igor Widlinski
http://www.onjava.com/lpt/a/3772
this site plus guru's should do it if ye still are confused about delegates
cheers
Originally posted by: Mina
You might want to check out this article on how delegates work internally.
Cheers
Hi,
You can find it at http://blog.monstuff.com/archives/000037.html
Mina
Originally posted by: Peter
Job well done and much better than all the books that I have read.
Reply
Originally posted by: me
shit
Reply
Originally posted by: SamB
Wow!Crispy,compact and convincing