Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does anyone know of a good C# API for Subversion? [closed]

I'm looking to make calls out to a subversion repository, but I would like to write it in C#. Does anyone know of any good libraries?

like image 220
mr mo Avatar asked Jan 26 '09 20:01

mr mo


People also ask

Is C very important?

C is very fast in terms of execution time. Programs written and compiled in C execute much faster than compared to any other programming language. C programming language is very fast in terms of execution as it does not have any additional processing overheads such as garbage collection or preventing memory leaks etc.

What makes C so special?

The C programming language doesn't seem to have an expiration date. It's closeness to the hardware, great portability and deterministic usage of resources makes it ideal for low level development for such things as operating system kernels and embedded software.

What is so good about C?

The programs that you write in C compile and execute much faster than those written in other languages. This is because it does not have garbage collection and other such additional processing overheads. Hence, the language is faster as compared to most other programming languages.

Does it make sense to learn C?

Learning C is worth it. It is hard to avoid C because it is used to write OS kernels, databases, compilers, and many other applications. Knowledge of C will be required to debug or improve them.


1 Answers

Have a look at SharpSVN. This is an open-source binding of the Subversion Client API for .Net 2.0 applications.

For example, this library is used by the AnkhSVN Visual Studio Add-In.

like image 160
M4N Avatar answered Oct 14 '22 17:10

M4N