1
vote
3answers
299 views
SVN to ZIP on the fly
I've installed VisualSVN on my Windows 2003 server, and have configured it to provide anonymous read-access. From my understanding VisualSVN just uses apache and the official SVN Repository server …
0
votes
2answers
97 views
Calling an Oracle store procedure with nHibernate
I've got a stored procedure in Oracle:
procedure Test(results OUT gencursor, id in number) is
v_cursor gencursor;
begin
OPEN v_cursor FOR
select id, name, age from tblcu …
3
votes
Compling a c# application : an error : Identifier expected
You don't have to use unsafe code in your example. A class is always marshalled by reference to unmanaged code. Try this:
namespace defintions
{
public class name
{ …
2
votes
Windows Service error: “Attempted to read or write protected memory. This is often an indication that other memory is corrupt.”
If you want to take full management of starting the ServiceBase outside ServiceBase.Run(), then you should also do the same trick with stopping it:
MethodInfo stopMetho …
0
votes
Enable Visual Styles for a Class Library
You'll have to use the OpenThemeData Win32 api in your control:
MSDN: Using Windows XP Visual Sty …
0
votes
Debugging outofmemoryexception
I hope you mean runtime error, and not compile-time error.
Typically this would happen if you have a list growing, which is saved in a static field or a system-wide ASP.NET container.
…
0
votes
C# Threading and Queues
question 1: If you're using a synchronized queue, then: no, you're safe! But you'll need to use the synchronized instance on both sides, the supplier and the feeder.
question 2: Terminating …
2
votes
Nested use of C# Object Initializers
You can't do that with Object Initializers. However, you can do the trick using propery code:
class A
{
B b;
public B B
{
set
{
b = value;
…
1
vote
How To: Auto Instantiate Singleton in C#
You're basically asking the .NET framework to call some function whenever it loads an assembly. That function would be the PClass instances registrar.
There is no DllMain in C# …
3
votes
Should I make this a read only property or a function.
I'd go for:
Cheap "get" (+"set") calls: properties
Expensive "get" calls or only "set": methods
You see this thinking also ba …
1
vote
How to invoke with action?
Calling a UI component from a non-UI thread
Assuming you only have one message loop (99% that's the case), then:
public static class SynchronizedInvoker
{
public stati …
2
votes
I’ve read that assemblies manually placed inside Bin are also automatically referenced by…
Q1: "add reference" in a web site project means more than just copying the dll to the bin directly. It also means to place a dependency in app.config and to place a hint file which helps Visual Stu …
0
votes
How to pass control to a method
Try this:
public void ChangeProperties(string category, object value)
{
var categoryConcat = category.Split('.');
var control = this.Controls.Cast<C …
0
votes
Slickest way to put objects into separate lists based on a property value.
If you don't want to go thru the list twice, then:
var collectionOfThings = new[]
{
new Thing { Id = 1, Type = "typeX" },
new Thing { Id = 2, Ty …
0
votes
Why is .ForEach() on IList<T> and not on IEnumerable<T>?
LINQ follows the pull-model and all its (extension) methods should return IEnumerable<T>, except for ToList(). The ToList() is there to end the pull-cha …
