How can I access, using C#, a public instance method declared in App.xaml.cs?
((App)Application.Current).YourMethod ....
Have you considered to create a separate class to hold your application wide methods (eg. AppState.cs)?