Format(String,IDictionary<String,Int32>,Object[]) Method
See Also 
SourceCode Namespace > FriendlyStringFormat Class : Format(String,IDictionary<String,Int32>,Object[]) Method



format
indexLookup
args

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Shared Function Format( _
   ByVal format As String, _
   ByVal indexLookup As IDictionary(Of String,Integer), _
   ByVal ParamArray args() As Object _
) As String
Visual Basic (Usage) Copy Code
Dim format As String
Dim indexLookup As IDictionary(Of String,Integer)
Dim args() As Object
Dim value As String
 
value = FriendlyStringFormat.Format(format, indexLookup, args)
C#  
public static string Format( 
   string format,
   IDictionary<string,int> indexLookup,
   params object[] args
)
C++/CLI  
public:
static String^ Format( 
   String^ format,
   IDictionary<String^,int>^ indexLookup,
   ... array<Object^>^ args
) 

Parameters

format
indexLookup
args

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also