FragmentState.Inequality(FragmentState, FragmentState) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines if two instances of FragmentState describes the different TextFragment state.
public:
static bool operator !=(System::Speech::Synthesis::TtsEngine::FragmentState state1, System::Speech::Synthesis::TtsEngine::FragmentState state2);
public static bool operator != (System.Speech.Synthesis.TtsEngine.FragmentState state1, System.Speech.Synthesis.TtsEngine.FragmentState state2);
static member op_Inequality : System.Speech.Synthesis.TtsEngine.FragmentState * System.Speech.Synthesis.TtsEngine.FragmentState -> bool
Public Shared Operator != (state1 As FragmentState, state2 As FragmentState) As Boolean
Parameters
- state1
- FragmentState
An instance of TextFragment whose described state is compared against the instance of TextFragment provided by the state2
argument.
- state2
- FragmentState
An instance of TextFragment whose described state is compared against the instance of TextFragment provided by the state1
argument.
Returns
Returns true
if both instances of FragmentState, state1
and state2
, do not describe the same TextFragment state, otherwise false
is returned.
Remarks
The equivalent method for this operator is FragmentState.Equals(FragmentState).