예제 #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;
 }