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 …
0
votes
Structure of projects in version control - .NET specific
For bigger projects we usually use this format here:
/Project
/trunk
/lib/ # Binary imports here (not in svn)
/src # Solution file here …
1
vote
Different team members on Visual Studio 2005 and 2008
For C#: Projects initialy created in Visual Studio 2008 can't be opened in 2005 until you change a few lines at the bottom of the project file.
Visual C++ projects are incompatible, but it …
7
votes
In managed C++, how do I declare and call a function with an ‘out’ parameter?
You can do this for reference types as:
void ReturnString([Out] String^% value)
{
value = "Returned via out parameter";
}
// Called as
String^ result;
ReturnString(result);
…
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();
}
…
1
vote
Any tips for using Subversion with .net project files?
Are you sure your project file is not marked as binary? If your .vbproj file has a svn:mime-type property with a value that doesn't start with 'text/' Subversions automatic merging will be disabled …
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
What is the best algorithm for an overridden System.Object.GetHashCode?
In most cases where Equals() compares multiple fields it doesn't really matter if your GetHash() hashes on one field or on many. You just have to make sure that calculating the hash is really cheap …
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 …
0
votes
HttpContext.Current.User not populated with Windows Authentication enabled
Where do you check for this user? In the request cycle there are some events fired before the authorization takes place.
If you are testing on Vista, Windows 7 or Windows Server 2008 there …
0
votes
Using the current HTTP request identity as the default credentials for SharpSVN
CredentialCache.DefaultCredentials contains a token of the current credentials. It doesn't provide the actual username and/or password.
You would need the exact username and pa …
1
vote
What are the hurdles and dangers when migrating from Visual SourceSafe to SVN?
There are several tools that can migrate history for you. We used VSS2SVN a few years ago to make this same step.
You c …
