Message 1 of 3
Reference another CS file

Not applicable
02-06-2020
08:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Can someone tell me how to reference a function in another separate CS file, within the same project? I made CreateForm() function public, but I am clearly missing something in the way I am trying to reference it.
namespace createViewsAndSheets { public class createForm { public void CreateForm() { .......
I am trying to use this to reference the function within the separate createForm.CS file. What am I doing wrong?
// Create form createViewsAndSheets.createForm.CreateForm();