I have a number of classes in a Classes file, and I want them all to be able to access the same, global method to save duplicating code. Problem is, I can't seem to access a method from another class in my file - any ideas?
So my class1.cs layout is similar to this:
public class Job1 { public Job1() { } } public class Methods { public static void Method1() { //Want to access method here from Job1 } }
Methods.Method1()?