Axiom.Graphics.CompositorScriptLoader.SplitByWhitespace C# (CSharp) 메소드

SplitByWhitespace() 정적인 개인적인 메소드

static private SplitByWhitespace ( string line, int count ) : string[]
line string
count int
리턴 string[]
		static string[] SplitByWhitespace( string line, int count )
		{
			return StringConverter.Split( line, new char[] { ' ', '\t' }, count );
		}