Just read Ray Ozzie’s post of “Really Simple Sharing” and many comments, mark it here.
“Microsoft XML News” - Tim Bray
“Sharing at so many levels!” - Dave Winer
“Microsoft proposal: Simple Sharing Extensions for RSS and OPML” - Alex Barnett
“RSS + OPML/ SSE = Really Simple Synchronization”
And here’s the SSE spec
Simple Sharing Extensions for RSS and OPML
Archive for November, 2005
I ever write an article about the event handling of Java and C#, just want to add some of C#’s delegate.
Delegate has no semantics carried, so does interface, it only provide method signatures.
Let’s look at the following example:
class Person
{
public interface Runnable
{
void run();
}
public […]
