Microsoft.Scripting.ScopeStorage.GetMemberNames C# (CSharp) 메소드

GetMemberNames() 공개 메소드

Returns all of the member names which currently have values in the scope. The list contains all available casings.
public GetMemberNames ( ) : IList
리턴 IList
        public IList<string> GetMemberNames() {
            List<string> res = new List<string>();
            lock (_storage) {
                foreach (var storage in _storage.Values) {
                    storage.AddNames(res);
                }
            }
            return res;
        }