UnityEditor.TagManagerInspector.CheckForRemovedTags C# (CSharp) 메소드

CheckForRemovedTags() 개인적인 메소드

private CheckForRemovedTags ( ) : void
리턴 void
        private void CheckForRemovedTags()
        {
            for (int i = 0; i < this.m_Tags.arraySize; i++)
            {
                if (string.IsNullOrEmpty(this.m_Tags.GetArrayElementAtIndex(i).stringValue))
                {
                    this.m_HaveRemovedTag = true;
                }
            }
        }