strange

  • Thread starter Thread starter Analizer1
  • Start date Start date
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
 
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.
 
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...
 
Back
Top