Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Last active January 17, 2024 14:53
Show Gist options
  • Save TheShubhamVsnv/d44eac11671d6dd829a1c937a0b46434 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/d44eac11671d6dd829a1c937a0b46434 to your computer and use it in GitHub Desktop.
/*
Public access modifier makes a variable, method, or class accessible from
any other class or trigger in the same namespace or different namespace.
*/
public class MyClass {
public Integer myPublicVariable;
public void myPublicMethod() {
// Open to the public!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment