Lucene.Net.Search.SampleComparable.SampleComparable C# (CSharp) Method

SampleComparable() public method

public SampleComparable ( System s ) : System
s System
return System
		public SampleComparable(System.String s)
		{
			int i = s.IndexOf("-");
			string_part = s.Substring(0, (i) - (0));
			int_part = System.Int32.Parse(s.Substring(i + 1));
		}