AForge.Genetic.GEPChromosome.ToStringNative C# (CSharp) 메소드

ToStringNative() 공개 메소드

Get string representation of the chromosome.

The method is used for debugging mostly.

public ToStringNative ( ) : string
리턴 string
		public string ToStringNative( )
		{
			StringBuilder sb = new StringBuilder( );

			foreach ( IGPGene gene in genes )
			{
				sb.Append( gene.ToString( ) );
				sb.Append( " " );
			}
			return sb.ToString( );
		}