BigML.Client.CreateLibrary C# (CSharp) Method

CreateLibrary() public method

Create a dataset.
public CreateLibrary ( string name = null, Library arguments = null ) : Task
name string The optional name you want to give to the new dataset.
arguments Library
return Task
        public Task<Library> CreateLibrary(string name = null, Library.Arguments arguments = null)
        {
            arguments = arguments ?? new Library.Arguments();
            if (!string.IsNullOrWhiteSpace(name)) arguments.Name = name;
            return Create<Library>(arguments);
        }

Same methods

Client::CreateLibrary ( Library arguments ) : Task