}
}
- protected override void OnCountDicreased()
+ protected override void OnCountDecreased()
{
if (Count == 0)
{
}
}
- protected override void OnCountDicreased()
+ protected override void OnCountDecreased()
{
if (Count == 0)
{
public static int AliveCount => aliveCount;
/// <summary>
- /// Voice interaction name for voice touch.
+ /// Voice interaction name for Voice Touch.
/// </summary>
/// <since_tizen> 12 </since_tizen>
public string VoiceInteractionName
if (lastIndex >= 0)
{
handlers.RemoveAt(lastIndex);
- OnCountDicreased();
+ OnCountDecreased();
}
}
/// with <see cref="Remove()"/> or after detecting that it is no longer valid.
/// </remarks>
/// <since_tizen> 12 </since_tizen>
- protected virtual void OnCountDicreased()
+ protected virtual void OnCountDecreased()
{
}
cleanUpAddCount = 0;
int count = handlers.Count;
handlers.RemoveAll(item => !item.IsAlive);
- if (count > handlers.Count) OnCountDicreased();
+ if (count > handlers.Count) OnCountDecreased();
}
internal class WeakHandler<U> where U : Delegate