예제 #1
0
파일: Extensions.cs 프로젝트: Skizot/WCell
		public static bool HasAnyFlag(this SocketColor flags, SocketColor otherFlags)
		{
			return (flags & otherFlags) != 0;
		}
예제 #2
0
 public static bool HasAnyFlag(this SocketColor flags, SocketColor otherFlags)
 {
     return((flags & otherFlags) != SocketColor.None);
 }
예제 #3
0
 public Socket(SocketColor color)
 {
     Color = color;
 }
예제 #4
0
 /// <inheritdoc />
 public SocketEntry(SocketColor color, uint socketContent)
 {
     Color         = color;
     SocketContent = socketContent;
 }