Tests.TestExtensions.ToGitObjectStream C# (CSharp) Method

ToGitObjectStream() public static method

public static ToGitObjectStream ( this content ) : GitObjectStream
content this
return GitSharp.GitObjectStream
        public static GitObjectStream ToGitObjectStream(this string content)
        {
            return new GitObjectStream(content.ToByteArray());
        }
TestExtensions