Shaolinq.ComputedTextMemberAttribute.GetPropertyReferences C# (CSharp) Method

GetPropertyReferences() public method

public GetPropertyReferences ( ) : IEnumerable
return IEnumerable
		public IEnumerable<string> GetPropertyReferences()
		{
			var matches = FormatRegex.Matches(this.Format);

			return from Match match in matches select match.Groups[1].Value;
		}
	}