System.Xml.XmlReaderBinarySupport.SkipIgnorableBase64Chars C# (CSharp) 메소드

SkipIgnorableBase64Chars() 개인적인 메소드

private SkipIgnorableBase64Chars ( char chars, int charsLength, int i ) : int
chars char
charsLength int
i int
리턴 int
		private int SkipIgnorableBase64Chars (char [] chars, int charsLength, int i)
		{
			while (chars [i] == '=' || XmlChar.IsWhitespace (chars [i]))
				if (charsLength == ++i)
					break;
			return i;
		}