GitSharp.Core.MutableObjectId.FromRaw C# (CSharp) Method

FromRaw() public method

public FromRaw ( byte bs ) : void
bs byte
return void
        public void FromRaw(byte[] bs)
        {
            FromRaw(bs, 0);
        }

Same methods

MutableObjectId::FromRaw ( byte bs, int p ) : void
MutableObjectId::FromRaw ( int ints ) : void
MutableObjectId::FromRaw ( int ints, int p ) : void

Usage Example

Example #1
0
 protected override MutableObjectId IdBufferBuilder(MutableObjectId idBuffer)
 {
     idBuffer.FromRaw(_index._idxdata[_levelOne], _levelTwo - AnyObjectId.ObjectIdLength);
     return(idBuffer);
 }
All Usage Examples Of GitSharp.Core.MutableObjectId::FromRaw