Censored.Censor.Censor C# (CSharp) 메소드

Censor() 공개 메소드

Initializes a new instance of the Censored.Censor class.
public Censor ( IEnumerable censoredWords = null ) : System
censoredWords IEnumerable Censored words, if null uses default list
리턴 System
        public Censor(IEnumerable<string> censoredWords = null)
        {
            CensoredWords = censoredWords == null ? new List<string>() : new List<string>(censoredWords);
        }