Slashdot Mirror


User: pdrayton

pdrayton's activity in the archive.

Stories
0
Comments
5
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 5

  1. Re:Can someone translate into English? on Liberty Alliance Releases Specifications · · Score: 1

    re: "Does it work for protocols other than HTTP", even though it uses SOAP in places the thing is hardwired to HTTP and WAP. Other protocols (Jabber, SMTP, etc.) need not apply :-(.

    There's plenty of other things to complain about in the current set of specs, I wrote up some of them on my weblog.

    Digital Identity also has some initial comments here, and Doug Kaye is promising comments soon, too.

    --Peter
    http://www.razorsoft.net/weblog

  2. Re:All languages are *not* the same on The Problem Of Developing · · Score: 1
  3. ArsTechnica article inaccuracies on What is .NET? · · Score: 1

    Normally I like the ArsTechnica stuff, and this one was good in that it separated out managed code and managed data (mosts people shmoosh them together), but this one had tons of annoying technical innaccuracies. They bugged me so much I posted a rebuttal here.

  4. Re:C# vs C vs Java vs Stone Cold Steve Austin et a on C# Under The Microscope · · Score: 1
    Does C# have an "assembler subset"?

    Effectively, yes. The Sytem.Reflection.Emit.ILGenerator class can emit IL opcodes into the instruction stream.

  5. Re:Why? on Anders Hejlsberg Interviewed On C# · · Score: 1

    Actually, no, C# is _not_ a version of C++ bastardized to work with COM. C# & the .Net runtime (CLR) is a type-safe programming language & runtime designed for building component-based apps, NOT COM-based apps. There is a BIG difference. There is technology to allow C# components call into DLLs and COM objects, but this is referred to as 'interop', and the DLLs and COM objects are considered 'legacy'. Microsoft has done many questionable things in the past, but in my opinion they're doing this one 100% right.