C# Class Recurity.Swf.AVM1Modifier.BuildingBlocks.BeginsWith

Checks if top of the stack (string) begins with a certain string. Leaves boolean result on top of stack (true=matches, false otherwise)
Inheritance: AbstractBuildingBlock
Mostrar archivo Open project: rtezli/Blitzableiter

Protected Properties

Property Type Description
_CaseSensitive bool
_Match string

Public Methods

Method Description
BeginsWith ( string match, bool caseSensitive ) : System

Execute ( AVM1 code, int instructionIndex, CheckMachine mStack ) : bool

Private Methods

Method Description
MakeCode ( ) : void

Method Details

BeginsWith() public method

public BeginsWith ( string match, bool caseSensitive ) : System
match string
caseSensitive bool
return System

Execute() public method

public Execute ( AVM1 code, int instructionIndex, CheckMachine mStack ) : bool
code AVM1
instructionIndex int
mStack CheckMachine
return bool

Property Details

_CaseSensitive protected_oe property

protected bool _CaseSensitive
return bool

_Match protected_oe property

protected string _Match
return string