In C# console applications windows applications we know that the code starts executing from the main function.
In WP7 silverlight there’s no main function. If anybody can please tell me where the code starts executing from.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
App.xaml.cs
You’ll find constructor App() which is like the main().
There is also severall methods that refers to specific application evenements (launching, activated, deactivated, closing …)
this link is a good started kit.