Takes a code churn property value in binary form and parses it to return the code churn details.
Namespace:  Microsoft.TeamFoundation.VersionControl.Common
Assembly:  Microsoft.TeamFoundation.VersionControl.Common (in Microsoft.TeamFoundation.VersionControl.Common.dll)
Syntax
'Declaration
Public Shared Sub ConvertToInt ( _
    byteValue As Byte(), _
    <OutAttribute> ByRef linesCount As Integer, _
    <OutAttribute> ByRef linesAdded As Integer, _
    <OutAttribute> ByRef linesDeleted As Integer, _
    <OutAttribute> ByRef linesModified As Integer _
)
public static void ConvertToInt(
    byte[] byteValue,
    out int linesCount,
    out int linesAdded,
    out int linesDeleted,
    out int linesModified
)
public:
static void ConvertToInt(
    array<unsigned char>^ byteValue, 
    [OutAttribute] int% linesCount, 
    [OutAttribute] int% linesAdded, 
    [OutAttribute] int% linesDeleted, 
    [OutAttribute] int% linesModified
)
static member ConvertToInt : 
        byteValue:byte[] * 
        linesCount:int byref * 
        linesAdded:int byref * 
        linesDeleted:int byref * 
        linesModified:int byref -> unit
public static function ConvertToInt(
    byteValue : byte[], 
    linesCount : int, 
    linesAdded : int, 
    linesDeleted : int, 
    linesModified : int
)
Parameters
- byteValue
 Type: array<System.Byte[]
- linesCount
 Type: System.Int32%
- linesAdded
 Type: System.Int32%
- linesDeleted
 Type: System.Int32%
- linesModified
 Type: System.Int32%
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.