Mono.CSharp.DeclSpace.GetDefinition C# (CSharp) Method

GetDefinition() public method

Returns the MemberCore associated with a given name in the declaration space. It doesn't return method based symbols !!
public GetDefinition ( string name ) : MemberCore
name string
return MemberCore
		public MemberCore GetDefinition (string name)
		{
			MemberCore mc = null;
			defined_names.TryGetValue (name, out mc);
			return mc;
		}