C# 클래스 ConstructorIO.Util

파일 보기 프로젝트 열기: Constructor-io/constructorio-csharp

공개 메소드들

메소드 설명
LoadCSV ( string filename ) : IEnumerable

Load a CSV file, read all entries and return ListItem objects

Merge ( object>.Dictionary from, object>.Dictionary into ) : void

Merge two Hash tables (Dictionary)

SerializeParams ( object>.IDictionary paramDict ) : string

Serializes url params in a rudimentary way, and you must write other helper methods to serialize other things.

비공개 메소드들

메소드 설명
isString ( string value ) : bool

Check if a value is string or not

메소드 상세

LoadCSV() 공개 정적인 메소드

Load a CSV file, read all entries and return ListItem objects
public static LoadCSV ( string filename ) : IEnumerable
filename string CSV file
리턴 IEnumerable

Merge() 공개 정적인 메소드

Merge two Hash tables (Dictionary)
public static Merge ( object>.Dictionary from, object>.Dictionary into ) : void
from object>.Dictionary
into object>.Dictionary
리턴 void

SerializeParams() 공개 정적인 메소드

Serializes url params in a rudimentary way, and you must write other helper methods to serialize other things.
public static SerializeParams ( object>.IDictionary paramDict ) : string
paramDict object>.IDictionary params HashMap of the parameters to encode.
리턴 string