0
votes
Sample code for JSON-RPC client in C#
2 Samples here
There are two different implementations. Read the whole thread + check the attachments
…
0
votes
Non-fatal XAML exceptions
I suggest using a DispatchUnhandledExceptionEventHandler for the entire application to catch errors in your application
There is a tutorial here: …
1
vote
GetHashCode() problem using xor
Read Overriding GetHashCode for mutable objects? C# and think about implementing IEquatabl …
5
votes
Concatenate integers in C#
If you want to concatenate many ints to a String
StringBuilder sb = new StringBuilder(1039);
sb.Append(7056);
sb.Append(1234);
sb.Append(1235);
....
sb.Append(9999);
sb.ToString();
…
1
vote
Using F1 Help (CHM format) With WPF
How about using the Help class instead of opening the file externally
…
1
vote
Get text between symbols, regex?
This regex always gives you the last URI segment in the first capturing group as long as the URI is terminated with a slash
.+/(.+)/
if the slash sometimes misses …
1
vote
how to update the same column in more than one table
What you want can be specified on the foreign key constraint. Check here e.g. the MySQL syntax …
0
votes
C# get digits from float variable
float x = 3.14
int fractionalPortionAsInt = (int) (100 * (x - Math.Floor(x)));
…
0
votes
C# get digits from float variable
Actually all solutions until now are wrong as they don't consider that using Math.Floor() will do the wrong thing if the value is negative (e.g. Math.Floor(-2.8) -> -3)
…
0
votes
How to pass large quantity of data to web service
Check this question&answer
Compressing web service request
…
3
votes
How to pull the server name from a UNC
This should do the trick.
^//([^/]+).*
The server name is in the first capturing group
…
2
votes
How to manage a multiple-level class hierarchy in nhibernate with table per class hierarchy strategy?
I'm not that familiar with c# and NHibernate but are you sure Activity should be set as abstract="true" in the mapping? It looks like the Activity class isn't abstract. …
0
votes
Is it possible to cast a graph of objects?
Casting the more generic object to a more specific one doesn't won't work directly.
You can't cast Client to MyClient but you could cast My …
2
votes
