CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: tpcampb

Search: Search took 0.03 seconds.

  1. Replies
    27
    Views
    5,030

    Re: List -> string -> List

    List<byte> lstBytes;
    ...
    ...

    lstBytes.ToArray(); // will give you a byte array

    The class below should help.. You can call the ToArray method of your list or you can modify the class below to...
  2. Replies
    8
    Views
    1,552

    Re: Calling one Constructor from another

    Just take whatever code you have in the second constructor and create a new function with it. This function can be called from anywhere and won't be subject to the rules constructors have to follow....
  3. help with design of message passing infrastructure. MSMQ?

    Requirements:

    Approximately 200 client machines will generate request messages at a rate of 1 message per minute.

    Each message should be relatively small… 3-4 k max.

    These messages will be...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured