ExcelFormulaParser.Engine.Excel.Functions.Text.Replace.GetFirstPart C# (CSharp) 메소드

GetFirstPart() 개인적인 메소드

private GetFirstPart ( string text, int startPos ) : string
text string
startPos int
리턴 string
        private string GetFirstPart(string text, int startPos)
        {
            return text.Substring(0, startPos - 1);
        }