setComment() public method

public setComment ( String c ) : void
c String
return void
Exemplo n.º 1
0
        public void CommentFill(String comment)
        {
#if DEBUG
            Console.Write("CommentFill S=");
            for (int _debug_i = 0; _debug_i < comment.Length; _debug_i++)
            {
                int  _debug_d = comment[_debug_i];
                char _debug_c = (char)(_debug_d + 96);
                if (_debug_d < 32)
                {
                    Console.Write("^" + _debug_c);
                }
                else
                {
                    Console.Write(comment[_debug_i]);
                }
                Console.Write("[");
                Console.Write(_debug_d);
                Console.Write("],");
            }
            Console.WriteLine(";");
#endif
            if (LastComment != null)
            {
                LastComment.setComment(comment);
            }
        }