Is there no Thread.join method ?(Smart Device project)

  • Thread starter Thread starter Sreedharan
  • Start date Start date
S

Sreedharan

Hi,
I am using C#.
Is there no Join method (in thread class)for Smart device application?
And Also i noticed that Name property isn't there(got compiler error
when trying to use them)

Is this a limitation for smart device application?
Is there any forum/group available for Smart device application
developer?

And also is there a way to filter MSDN help for Smart device
application?
(I just wanted to see only the available methods for smart device
application in MSDN. Embedded VC++ has it's own help , so i easily
found the available methods & api for embedded vc++ from the help)

Thank you

Regards,
Sreedharan
 
Hi Sreedharan,
Is there no Join method (in thread class)for Smart device application?
The .NET Compact Framework does not support Thread.Join, see:
http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemThreadingThreadMembersTopic.asp
Supported methods are marked accordingly.

Check out the Class Library Comparison Tool for more on classes, members and
types supported by the .NET Compact Framework:
http://msdn.microsoft.com/library/d..._spchk/html/conClassLibraryComparisonTool.asp
And Also i noticed that Name property isn't there(got compiler error
when trying to use them)
The Name property is not supported on controls; you can however use
reflection, see:
http://groups.google.com/[email protected]&rnum=1
Is there any forum/group available for Smart device application
developer?
You found it, this is it. There are also several very useful community sites
out there that you may wish to check out:
http://msdn.microsoft.com/mobility/Community/related/default.aspx
And also is there a way to filter MSDN help for Smart device
application?
You can set the filter in the Visual Studio .NET "Contents Window" to .NET
Compact Framework:
http://msdn.microsoft.com/library/d...y/en-us/vsintro7/html/vxurfcontentswindow.asp
You may also find the Class Library Comparision Tool, mentioned above,
useful.

cheers jonathan
--
Jonathan Wells
Product Manager
..NET Compact Framework
Check out the .NET Compact Framework FAQ at:
http://msdn.microsoft.com/mobility/prodtechinfo/devtools/netcf/FAQ/default.aspx

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top