strange

A

Analizer1

c#2.0 , MsSql Server 2005

Hi...i have a multi threaded application that is working real nice....as a
service......
i built a console application that uses the business logic
and run 15 threads all works gr8, except
in the console i get the following
Code ACA150
..
above line replicated.....
Code CA9085
...
above Replicated
Code OCKKIT

is this a dump of some kind, ive looked through all the code, and Cannot
find any console comands at all

does any of the above look familiar

thanks
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,


Are you using any third party code?
get the generated assembly (or all the assemblies in the debug folder) and
look for those strings. If nothing is found reverse engineer the code and
see if the code source you have any Console.Write command.
 
M

Marc Gravell

Are you using any external libraries (other than core MS libraries)?
Perhaps they might be doing the Console.WriteLine? Or a
Trace.WriteLine with suitable trace listeners?

I suspect that the codes relate to your own data; perhaps search for
"Code "? i.e.
SomeHowWriteLine("Code {0}", item.Key);
or whatever...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top