39,968 reputation
53875
bio website byterot.blogspot.com
location United Kingdom
age 44
visits member for 2 years, 8 months
seen 2 hours ago
stats profile views 2,961

"For when I am weak then I am strong"


Solution Architect, computer vision enthusiast (published a few papers, demo here) and ex-medical doctor. Working mainly as a middleware specialist with interests from CLR level details and protocols up to UI level (WPF and HTML+jquery).

Love to be able to help...

My one liner: "My washing machine will talk REST+JSON in 5 years..." [I said this back in 2010] and recently added " using server side JavaScript - perhaps node.js"


Follow me on twitter: @aliostad


Sep
8
answered c# Get object property from ArrayList
Sep
8
revised Isolate int from string
added 455 characters in body
Sep
8
answered Isolate int from string
Sep
8
comment C# Object Pooling With Interlocked.Increment
Well, are you using Interlock on a pointer stored as a member variable or everytime you update it? To be honest, I do not understand the problem you are trying to solve so I do not seem to be able help so I am afraid I am out (Dragon's Den way!).
Sep
8
comment C# Object Pooling With Interlocked.Increment
I AM CONFUSED NOW!!! Allocate 10k using what? Are you using C# at all or not? If you are using Marshall.GlobalAlloc to allocate the memory then we are not talking C# here. But if you create the objects in C#, you can never gurantee their object pointer never changes even if they are in generation 0; GC still could be moving them.
Sep
8
comment How to execute two command.ExecuteNonQuery() methods using single connection?
Are you creating the command in a using statement? I suspect that could be the reason.
Sep
8
revised Total no of possible special characters can be used in C#?
added 6 characters in body; added 2 characters in body
Sep
8
answered Total no of possible special characters can be used in C#?
Sep
8
revised I am getting XMLSerialisation exception when i try to use Assembly.Load and the second dll uses serialization
added 97 characters in body
Sep
8
answered I am getting XMLSerialisation exception when i try to use Assembly.Load and the second dll uses serialization
Sep
8
comment .Net Get Property Values of Object by Key, to any depth
The code is the same. You just have to parse the expression and then move down the object hierarchy which is not that difficult - definitely doable. I can give you code for "CaseNoteList[0].NoteText" or "Person.Name" if you want.
Sep
8
comment C# Object Pooling With Interlocked.Increment
Interlocked is not unsafe, using pointers are. Pinning memory is required when you need to use unsafe code, i.e. work with the pointers. Again nothing to do with Interlocked. Please read my answer again.
Sep
7
answered Select specific xml node from xmlDocument then change xml node's attribute
Sep
7
comment C# Object Pooling With Interlocked.Increment
Where did you read it? My reference is Jeffrey Richter's CLR via C#. I can give you a snippet if you want.
Sep
7
awarded  Commentator
Sep
7
comment Design: Queue Management question (C#)
If you need it to be fail-safe, I would store it in a SQL Server if I can afford to have since it is easier to work with and can be backed up. If not, I will use MSMQ which comes free with the Windows. For workflow, I would use just simple state machine in code.
Sep
7
comment Design: Queue Management question (C#)
I agree with Fredrik. If you create 4 queues and assign a thread to each (or similar number of threads), it is possible that a slow queue (a queue which is responsible for a long-running process) would slow down your whole process since that queue is busy but the threads in the other queues are sitting and doing nothing. In any case, fine tuning these thread numbers could be difficult.
Sep
7
answered C# Object Pooling With Interlocked.Increment
Sep
7
answered Design: Queue Management question (C#)
Sep
7
comment How To Store Mixed Array Data?
How much performance is important? If it is, I could have tried writing a custom class storing them separately but exposing them as one.