any sample web server (with source codes) hosts web services ? I'd like to
have some web services but not relie on IIS....
more >>
I'm using code (roughly like):
using System;
using System.Management;
public class Foo {
public static void Main() {
foreach ( ManagementObject port
in new ManagementClass("Win32_SerialPort").GetInstances() )
Console.WriteLine("{0}: {1}", port["deviceid"], port["na...
more >>
hi, all.
I have a java project.
now I want to change it to C#
there is one code, I am confused.
How to convert it into C#?
Thanks
// We can use in C#
private static char[] map1 = new char[]
{
'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','...
more >>
Hi;
How can I check if two objects in C# are the same object? (ie the C++
equivilent of comparing pointer values.)
o1 == o2 won't do it if the equals method compares values.
--
thanks - dave...
more >>
Hi;
What's the difference?
--
thanks - dave...
more >>
Hi Guys,
How does one add Serial Number Validation dll to an Application in VS2003 ??
Thanks in advance,
Paul Mathebuka...
more >>
hi, all
How to set Application Icon
Thanks
...
more >>
I know this must be easier than I am making it but...
The EnumWindows api call requires that a pointer to the function that will
handle the values returned be passed as the second paramater. The AddressOf
operator won't produce the required "long" datatype. How do I get the
correct pointe...
more >>
I got a Server Class in an executable and I would like to change this in a
windows service. The code from the main function of the executable is the
following:
LoadReportingServer server = new LoadReportingServer ();
server->Start ();
Console::WriteLine (S"Press ENTER to stop the server.....
more >>