Let us presume that we have a function defined this way:
public class MyClass {
    public static void RunFirstTime() {
        //...
    }
}
The very first time I install the app, I want to run RunFirstTime() but then any other time I run the app, that function should not run.
Is there a built-in way to do this?
 
     
    