CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: IDisposable

Threaded View

  1. #1
    Join Date
    Jul 2010
    Posts
    7

    Question Array Proccess

    hey guys,

    Does anybody know how to use a array proccess on the new managed syntax?
    I think it´s something like this:
    Code:
    array<Process^>^Processes = Process::GetProcesses();
    	for (Int32 i = 0 ; i < Processes->Length ; i++)
    	{
    		p = dynamic_cast<Process^>(Processes->IndexOf);
    		.
    		.
                    .
    	}
    Thanks!
    Last edited by cilu; July 26th, 2010 at 01:43 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured