Has anyone wrapped the rsync algorithm in C#-callable package?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John

    Has anyone wrapped the rsync algorithm in C#-callable package?

    Hi,

    I'd like to use the rsync algorithm in an application I'm building.
    Has anyone done any work to port from C to C# or to package up the
    algorithm so it can be used in a .NET application?

    Thanks,
    John
  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: Has anyone wrapped the rsync algorithm in C#-callable package?

    John,

    Is there an implementation using functions or COM objects? If so, then
    you can use these through the P/Invoke layer, or through COM interop. If
    these are not available, then you will have to code it yourself. If the C
    code is available, then you should be able to compile it yourself into a
    DLL, and then access that through the P/Invoke layer.

    Hope this helps.


    --
    - Nicholas Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    "John" <johnfofawn@hot mail.com> wrote in message
    news:d89364bd.0 312151155.17232 5c7@posting.goo gle.com...[color=blue]
    > Hi,
    >
    > I'd like to use the rsync algorithm in an application I'm building.
    > Has anyone done any work to port from C to C# or to package up the
    > algorithm so it can be used in a .NET application?
    >
    > Thanks,
    > John[/color]


    Comment

    • kolosy
      New Member
      • Jul 2006
      • 1

      #3
      i don't know if anyone is still tracking this, but i've made a port of rsync to c# available on my site. http://www.kolosy.com/wordpress

      Comment

      Working...