| ConfigurationExtensionsWithStartSize Method |
Sets the StartSize property of a
Configuration object.
Namespace: FsCheckUtilsAssembly: FsCheckUtils (in FsCheckUtils.dll) Version: 1.0.1.0 (1.0.1.0)
Syntaxpublic static Configuration WithStartSize(
this Configuration configuration,
int startSize
)
<ExtensionAttribute>
Public Shared Function WithStartSize (
configuration As Configuration,
startSize As Integer
) As Configuration
public:
[ExtensionAttribute]
static Configuration^ WithStartSize(
Configuration^ configuration,
int startSize
)
[<ExtensionAttribute>]
static member WithStartSize :
configuration : Configuration *
startSize : int -> Configuration
Parameters
- configuration
- Type: Configuration
The Configuration object on which
to set the StartSize property. - startSize
- Type: SystemInt32
The value to use for the StartSize property.
Return Value
Type:
ConfigurationThe
configuration object to allow chaining.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Configuration. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also