NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

NumberFormatInfo.GetInstance

Gets the specified NumberFormatInfo object.

[Visual Basic]
Public Shared Function GetInstance( _
   ByVal sop As IServiceObjectProvider _
) As NumberFormatInfo
[C#]
public static NumberFormatInfo GetInstance(
   IServiceObjectProvider sop
);
[C++]
public: static NumberFormatInfo* GetInstance(
   IServiceObjectProvider* sop
);
[JScript]
public static function GetInstance(
   sop : IServiceObjectProvider
) : NumberFormatInfo;

Parameters

sop
The IServiceObjectProvider used to get the NumberFormatInfo object.

Return Value

Returns the specified NumberFormatInfo object.

Remarks

The GetServiceObject method on sop is passed a NumberFormatInfo Type object and its return value is cast as a NumberFormatInfo before being returned by this method. Note that if sop is null or if the return value of GetServiceObject is null, then this method simply invokes GetCurrent.

See Also

NumberFormatInfo Class | NumberFormatInfo Members | System.Globalization Namespace