0
votes
How do I Yield to the UI thread to update the UI while doing batch processing in a WinForm app?
If you are running in a background/worker thread, you can call Control.Invoke on one of your UI controls to run a delegate in the UI thread.
Control.Invoke is synchronous (Waits until the d …
14
votes
SVN Libraries for .NET?
SharpSvn was desiged for .Net 2.0 and Subversion 1.5 and later. It integrates all subversion dependencies in a single set of dll that is directly usable from .Net (XCopy deployable). One of the oth …
1
vote
What is the C# Using block and why should I use it?
using (B a = B())
{
DoSomethingWith(a);
}
is equivalent to
B a = new A();
try
{
DoSomethingWith(a);
}
finally
{
((IDisposable)a).Dispose();
}
…
2
votes
SharpSvn question
If you just want to browse SharpSvn you can use http://docs.sharpsvn.net/. The documentation there is far from complete as the focus i …
7
votes
Is there a Subversion API that can be used to program against in .NET
SharpSvn is a new Subversion wrapper library for .Net/C# that hides all interopand memory management for you and includes a staticly compiled Subve …
2
votes
Not all required revisions are specified sharpsvn
As noted on the SharpSvn user list the following example would have resolved the
missing revisions:
using (SvnClient client = new SvnClient())
{
client.DiffMerge(
"CHANGES", …
1
vote
Diffmerge example with SharpSVN
Duplicate: Already answered in Not all required revisions are specified
…
-1
votes
Why does C# designer-generated code (like Form1.designer.cs) play havoc with Subversion?
If you convert files from VSS to Subversion (with migrating history) you should make sure that your sourcefiles are not marked as binary.
Visual Sourcesafe was invented before UTF-8, and it …
0
votes
Is there a c# library for wrapping multiple SCM provider’s APIs?
I would recommend not to use MSSCCI as abstraction layer, as that old style SCC api is fully modeled after the checkout-checkin principal promoted by VSS.
Most newer Source Control systems …
1
vote
How to diff changed form file - ( .Designer InitializeComponent )
Windiff was designed for comparing files. It uses a 2 way diff merge algorithm, that only allows you to see changes between two versions of a file, so you just have to guess which changes should be …
0
votes
Lance Hunt’s C# Coding Standards - enum confusion
If you want to extend your enum with new values in future versions of your library shouldn't use the construct
if (Enum.IsDefined(typeof(BookCategory), cat))
As this only tests whet …
5
votes
How to programmatically get SVN revision description and author in c#?
Using SharpSvn:
using(SvnClient client = new SvnClient())
{
Collection<SvnLogEventArgs> list;
// When not using cach …
4
votes
How to get latest revision number from SharpSVN?
The least expensive way to retrieve the head revision from a repository
is the Info command.
using(SvnClient client = new SvnClient())
{
SvnInfoEventArgs info;
Uri repos = new …
4
votes
How to set author of SVN commit using SharpSVN library in c#
This all depends on how you connect to your repository, as the repository is responsible for adding a username to the revision. (It usually copies the credentials for the connections but it doesn't …
8
votes
Whats the most widely used documentation tool for C#?
The default documentation format is the /// xml documentation you see in most sample code. It is parsed by the C# compiler, which creates a .xml file containing the exact location and the custom Xm …
