This content is part of a third party extension that is not supported by the Cake project.
                        For more information about this extension see 
Cake.CsvHelper.
                            
 
	
		Summary
	
            Reads a CSV file into a C# object.
            
		
	Syntax
	public static IEnumerable<T> ReadCsv<T>(this ICakeContext context, FilePath csvFile, CsvHelperSettings settings)
	Examples
	
            var people = ReadCsv<Person>("./people.csv");
             
	Attributes
	
		
			
				
					
						| Type | 
						Description | 
					
				
					
						| CakeMethodAliasAttribute | 
						 | 
					
					
						| CakeAliasCategoryAttribute | 
						 | 
					
			
		 
	 	
	Type Parameters
	
		
			
				
					
						| Name | 
						Description | 
					
				
					
						| T | 
						The type. | 
					
			
		 
	 	
	Parameters
	
		
			
				
					
						| Name | 
						Type | 
						Description | 
					
				
					
						| context | 
						ICakeContext | 
						The context. | 
					
					
						| csvFile | 
						FilePath | 
						The CSV to read. | 
					
					
						| settings | 
						CsvHelperSettings | 
						The settings. | 
					
			
		 
	 	
	Return Value
	
		
			
				
					
						| Type | 
						Description | 
					
				
				
					| IEnumerable<T> | 
					List objects as defined by type. |