MailKit.Net.Imap.ImapCommand.IsAtom C# (CSharp) 메소드

IsAtom() 정적인 개인적인 메소드

static private IsAtom ( char c ) : bool
c char
리턴 bool
		static bool IsAtom (char c)
		{
			return c < 128 && !char.IsControl (c) && "(){ \t%*\\\"]".IndexOf (c) == -1;
		}