【C#】指定された文字列に含まれるタブをスペースに変換する関数

ソースコード using System.Text; public static class TabToSpaceConvertor { private static int GetNearestTabStop( int currentPosition, int tabLength ) { if ( currentPosition % tabLength == 1 ) { currentPosition += tabLength; } else { for ( int i = 0; i < tabLength; i++, currentPosition++ ) { if ( ( c…