System.Drawing.Drawing2D.ExtendedGeneralPath.Reset C# (CSharp) 메소드

Reset() 개인적인 메소드

private Reset ( int initialTypes, int initialCoords ) : void
initialTypes int
initialCoords int
리턴 void
		private void Reset (int initialTypes, int initialCoords)
		{
			ClearCache ();
			_types = new sbyte [initialTypes];
			_coords = new float [initialCoords * 2];
			_typesCount = 0;
			_coordsCount = 0;
		}