I am a very good java script developer, but new to flash. I started to learn the action of the script. I read code snippets in many places. I found variable names starting with m_Variable_Name or _Variable_name. What does this mean when it starts with m_ or _? Can anyone talk about the coding standard?
Code example:
public class Person implements IPerson { private var m_name:String; public function get name():String { return m_name; } public function set name(value:String):void { m_name = value; } }
source share