示例#1
0
        public HintScope(string hint)
        {
            if (String.IsNullOrWhiteSpace(hint))
            {
                throw new ArgumentOutOfRangeException("hint");
            }

            QueryHint = hint;

            CurrentHintScope = this;
        }
示例#2
0
 public void Dispose()
 {
     CurrentHintScope = null;
 }