PFSExtensionsAddInt Method (IPFSBuilder, IEnumerableInt32) | 
 
            Add a number of four-byte integer.
            
            Restrictions: The function is only valid within the scope of a keyword 
            
 
    Namespace: 
   DHI.PFS
    Assembly:
   DHI.PFS (in DHI.PFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic static void AddInt(
	this IPFSBuilder builder,
	IEnumerable<int> values
)
<ExtensionAttribute>
Public Shared Sub AddInt ( 
	builder As IPFSBuilder,
	values As IEnumerable(Of Integer)
)
public:
[ExtensionAttribute]
static void AddInt(
	IPFSBuilder^ builder, 
	IEnumerable<int>^ values
)
[<ExtensionAttribute>]
static member AddInt : 
        builder : IPFSBuilder * 
        values : IEnumerable<int> -> unit 
Parameters
- builder
 - Type: DHI.PFSIPFSBuilder
 - values
 - Type: System.Collections.GenericIEnumerableInt32
 
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
IPFSBuilder. 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