Recurity.Swf.AVM1Modifier.Modification.RemoveComments C# (CSharp) Method

RemoveComments() private method

TODO : Documentation
private RemoveComments ( ) : void
return void
        private void RemoveComments()
        {
            List<string> n = new List<string>();

            for ( int i = 0; i < _SourceCode.Count; i++ )
            {
                if (
                    ( ! ( _SourceCode[ i ].StartsWith( "#" ) ) )
                    &&
                    ( ! ( _SourceCode[i].Length < 2 ) )
                    )
                {
                    n.Add( _SourceCode[ i ].Trim() );
                }
            }
            _SourceCode = n;
        }