ReactiveWpfApp.Note.AddTag C# (CSharp) Method

AddTag() public method

public AddTag ( string tag ) : void
tag string
return void
        public void AddTag(string tag)
        {
            if (!Tags.Contains(tag))
            {
                Tags.Add(tag);
            }
        }