System.Xaml.NameScope.GetNameForObject C# (CSharp) Method

GetNameForObject() public method

public GetNameForObject ( object obj ) : string
obj object
return string
		public string GetNameForObject (object obj)
		{
			var p = table.FirstOrDefault (kvp => kvp.Value == obj);
			return p.Key;
		}