Bamboo.Prevalence.Implementation.NumberedFileBase.NextFileInfo C# (CSharp) 메소드

NextFileInfo() 보호된 메소드

Formats a FileInfo with the current value of _nextNumber and increments it.
protected NextFileInfo ( string format ) : FileInfo
format string
리턴 System.IO.FileInfo
		protected FileInfo NextFileInfo(string format)
		{
			return FormatFileInfo(format, _nextNumber++);
		}
	}