ByChance.Core.Context.Context C# (CSharp) Method

Context() protected method

Constructs a new context of the specified category.
is null.
protected Context ( string tag ) : System
tag string Category of the new context.
return System
        protected Context(string tag)
        {
            if (tag == null)
            {
                throw new ArgumentNullException("tag");
            }

            this.Tag = tag;
        }