BugzillaInterface.BugReport.ResetComments C# (CSharp) Method

ResetComments() public method

public ResetComments ( ) : void
return void
        public void ResetComments()
        {
            if(Comments == null)
            {
                Comments = new List<Comment>();
            }
        }