• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Specialized.BitVector32类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中System.Collections.Specialized.BitVector32的典型用法代码示例。如果您正苦于以下问题:C# BitVector32类的具体用法?C# BitVector32怎么用?C# BitVector32使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



BitVector32类属于System.Collections.Specialized命名空间,在下文中一共展示了BitVector32类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: FrameworkPropertyMetadata

 public FrameworkPropertyMetadata(object defaultValue, FrameworkPropertyMetadataOptions options,
                                  PropertyInvalidatedCallback propertyInvalidatedCallback,
                                  GetValueOverride getValueOverride, SetValueOverride setValueOverride)
   : base(defaultValue, propertyInvalidatedCallback, getValueOverride, setValueOverride)
 {
   _options = new BitVector32((int)options);
 }
开发者ID:npcomplete111,项目名称:MediaPortal-1,代码行数:7,代码来源:FrameworkPropertyMetadata.cs


示例2: Mask

        /// <summary>
        /// Initializes a new instance of the <see cref="Mask"/> class.
        /// </summary>
        /// <param name="reader">The reader to use to initialize the instance.</param>
        /// <param name="layer">The layer this mask belongs to.</param>
        internal Mask(BinaryReverseReader reader, Layer layer)
        {
            Layer = layer;
            uint num1 = reader.ReadUInt32();
            if (num1 <= 0U)
            {
                return;
            }

            long position = reader.BaseStream.Position;
            rect = new Rect();
            rect.y = reader.ReadInt32();
            rect.x = reader.ReadInt32();
            rect.height = reader.ReadInt32() - rect.y;
            rect.width = reader.ReadInt32() - rect.x;
            DefaultColor = reader.ReadByte();
            flags = new BitVector32(reader.ReadByte());
            if ((int)num1 == 36)
            {
                reader.ReadByte();  // bit vector
                reader.ReadByte();  // ???
                reader.ReadInt32(); // rect Y
                reader.ReadInt32(); // rect X
                reader.ReadInt32(); // rect total height (actual height = this - Y)
                reader.ReadInt32(); // rect total width (actual width = this - Y)
            }

            reader.BaseStream.Position = position + num1;
        }
开发者ID:gekidoslair,项目名称:UnityPSDLayoutTool,代码行数:34,代码来源:Mask.cs


示例3: AsBitArray

        public static BitArray AsBitArray(this OBFingerprint fp)
        {
            BitArray b = new BitArray(3);
            BitVector32 v = new BitVector32(3);

            return null;
        }
开发者ID:baoilleach,项目名称:obstereo-2-2-x,代码行数:7,代码来源:Tools.cs


示例4: Indexers

		public void Indexers ()
		{
			BitVector32 b = new BitVector32 (7);
			Assertion.Assert ("#1", b [0]);
			Assertion.Assert ("#2", b [1]);
			Assertion.Assert ("#3", b [2]);
			Assertion.Assert ("#4", b [4]);
			Assertion.Assert ("#5", !b [8]);
			Assertion.Assert ("#6", !b [16]);
			b [8] = true;
			Assertion.Assert ("#7", b [4]);
			Assertion.Assert ("#8", b [8]);
			Assertion.Assert ("#9", !b [16]);
			b [8] = false;
			Assertion.Assert ("#10", b [4]);
			Assertion.Assert ("#11", !b [8]);
			Assertion.Assert ("#12", !b [16]);

			BitVector32.Section s = BitVector32.CreateSection (31);
			s = BitVector32.CreateSection (64, s);
			// Print (s);
			
			// b = new BitVector32 (0x777777);
			BitVector32 b1 = new BitVector32 (0xffff77);
			BitVector32 b2 = new BitVector32 (b1 [s]);
			//Console.WriteLine (b1.ToString ());
			//Console.WriteLine (b2.ToString ());
			Assertion.AssertEquals ("#14", 123, b1 [s]);
			
			// b1 [s] = 15;
			//Console.WriteLine (b1.ToString ());
		}
开发者ID:jjenki11,项目名称:blaze-chem-rendering,代码行数:32,代码来源:BitVector32Test.cs


示例5: Test01

        public void Test01()
        {
            BitVector32 bv32;
            BitVector32 bv32Temp;       // extra BitVector32 - for comparison

            // [] BitVector is constructed as expected
            //-----------------------------------------------------------------

            bv32 = new BitVector32();
            if (bv32.Data != 0)
            {
                Assert.False(true, string.Format("Error, Data = {0} after default ctor", bv32.Data));
            }

            string result = bv32.ToString();
            if (result.IndexOf("BitVector32") == -1)
            {  // "BitVector32" is not a part of ToString()
                Assert.False(true, "Error: ToString() doesn't contain \"BitVector32\"");
            }

            bool item = bv32[1];
            if (item)
            {
                Assert.False(true, string.Format("Error: Item(0) returned {0} instead of {1}", item, false));
            }

            bv32Temp = new BitVector32();
            if (!bv32.Equals(bv32Temp))
            {
                Assert.False(true, string.Format("Error: two default vectors are not equal"));
            }
        }
开发者ID:noahfalk,项目名称:corefx,代码行数:32,代码来源:CtorTests.cs


示例6: DesignerHost

 public DesignerHost(DesignSurface surface)
 {
     this._surface = surface;
     this._state = new BitVector32();
     this._designers = new Hashtable();
     this._events = new EventHandlerList();
     DesignSurfaceServiceContainer service = this.GetService(typeof(DesignSurfaceServiceContainer)) as DesignSurfaceServiceContainer;
     if (service != null)
     {
         foreach (Type type in DefaultServices)
         {
             service.AddFixedService(type, this);
         }
     }
     else
     {
         IServiceContainer container2 = this.GetService(typeof(IServiceContainer)) as IServiceContainer;
         if (container2 != null)
         {
             foreach (Type type2 in DefaultServices)
             {
                 container2.AddService(type2, this);
             }
         }
     }
 }
开发者ID:Reegenerator,项目名称:Sample-CustomizeDatasetCS,代码行数:26,代码来源:DesignerHost.cs


示例7: Serialize

		public static void Serialize(SerializationWriter writer, Color color)
		{
			BitVector32 flags = new BitVector32();

			if (color.IsKnownColor)
				flags[ColorIsKnown] = true;
			else if (color.IsNamedColor)
				flags[ColorHasName] = true;
			else if (!color.IsEmpty)
			{
				flags[ColorHasValue] = true;
				flags[ColorHasRed] = color.R != 0;
				flags[ColorHasGreen] = color.G != 0;
				flags[ColorHasBlue] = color.B != 0;
				flags[ColorHasAlpha] = color.A != 0;
			}
			writer.WriteOptimized(flags);

			if (color.IsKnownColor)
				writer.WriteOptimized((int) color.ToKnownColor());
			else if (color.IsNamedColor)
				writer.WriteOptimized(color.Name);
			else if (!color.IsEmpty)
			{
				byte component;
				if ( (component = color.R) != 0) writer.Write(component);	
				if ( (component = color.G) != 0) writer.Write(component);	
				if ( (component = color.B) != 0) writer.Write(component);	
				if ( (component = color.A) != 0) writer.Write(component);	
			}
		}
开发者ID:elementar,项目名称:Suprifattus.Util,代码行数:31,代码来源:DrawingFastSerializationHelper.cs


示例8: Main

        static void Main(string[] args)
        {
            /*
            BitVector32 answers = new BitVector32(-1);
            */
            // Creates and initializes a BitVector32 with all bit flags set to FALSE.
            BitVector32 myBV = new BitVector32(0);

            // Creates masks to isolate each of the first five bit flags.
            int myBit1 = BitVector32.CreateMask();
            int myBit2 = BitVector32.CreateMask(myBit1);
            int myBit3 = BitVector32.CreateMask(myBit2);
            int myBit4 = BitVector32.CreateMask(myBit3);
            int myBit5 = BitVector32.CreateMask(myBit4);

            // Sets the alternating bits to TRUE.
            Console.WriteLine("Setting alternating bits to TRUE:");
            Console.WriteLine("   Initial:         {0}", myBV.ToString());
            myBV[myBit1] = true;
            Console.WriteLine("   myBit1 = TRUE:   {0}", myBV.ToString());
            myBV[myBit3] = true;
            Console.WriteLine("   myBit3 = TRUE:   {0}", myBV.ToString());
            myBV[myBit5] = true;
            Console.WriteLine("   myBit5 = TRUE:   {0}", myBV.ToString());

            Console.ReadKey();
        }
开发者ID:eandbsoftware,项目名称:MCTS_70_536_AllQuestions,代码行数:27,代码来源:Program.cs


示例9: Mask

 public Mask(Layer layer, Rectangle rect, byte color, BitVector32 flags)
 {
     Layer = layer;
     Rect = rect;
     BackgroundColor = color;
     this.flags = flags;
 }
开发者ID:hgrandry,项目名称:Mgx,代码行数:7,代码来源:Mask.cs


示例10: GetAverages

        public Tuple<ushort, double>[] GetAverages(ushort[] data)
        {
            Dictionary<ushort, SensorData> sensors = new Dictionary<ushort, SensorData>();

            foreach (var d in data)
            {
                BitVector32 item = new BitVector32(d);
                BitVector32.Section checksum = BitVector32.CreateSection(1);
                BitVector32.Section sensorData = BitVector32.CreateSection(2067, checksum);
                BitVector32.Section sensorCode = BitVector32.CreateSection(7, sensorData);

                if (ChecksumOK(item[checksum], d >> 1))
                {
                    ushort code = (ushort)item[sensorCode];

                    if(!sensors.ContainsKey(code))
                    {
                        sensors.Add(code, new SensorData {Sum = 0, Count = 0});
                    }
                    sensors[code].Sum += item[sensorData];
                    sensors[code].Count++;
                }
            }
            Tuple<ushort, double>[] result = new Tuple<ushort, double>[sensors.Count];
            int index = 0;
            foreach (var sensor in sensors)
            {
                result[index++] = new Tuple<ushort,double>(sensor.Key, (double)sensor.Value.Sum / sensor.Value.Count);
            }
            return result;
        }
开发者ID:qlynn,项目名称:GuidedExercisesCSharpDesktop,代码行数:31,代码来源:SensorAverage.cs


示例11: Indexers

		public void Indexers ()
		{
			BitVector32 b = new BitVector32 (7);
			Assert.IsTrue (b [0], "#1");
			Assert.IsTrue (b [1], "#2");
			Assert.IsTrue (b [2], "#3");
			Assert.IsTrue (b [4], "#4");
			Assert.IsTrue (!b [8], "#5");
			Assert.IsTrue (!b [16], "#6");
			b [8] = true;
			Assert.IsTrue (b [4], "#7");
			Assert.IsTrue (b [8], "#8");
			Assert.IsTrue (!b [16], "#9");
			b [8] = false;
			Assert.IsTrue (b [4], "#10");
			Assert.IsTrue (!b [8], "#11");
			Assert.IsTrue (!b [16], "#12");

			BitVector32.Section s = BitVector32.CreateSection (31);
			s = BitVector32.CreateSection (64, s);
			// Print (s);
			
			// b = new BitVector32 (0x777777);
			BitVector32 b1 = new BitVector32 (0xffff77);
			BitVector32 b2 = new BitVector32 (b1 [s]);
			//Console.WriteLine (b1.ToString ());
			//Console.WriteLine (b2.ToString ());
			Assert.AreEqual (123, b1 [s], "#14");
			
			// b1 [s] = 15;
			//Console.WriteLine (b1.ToString ());
		}
开发者ID:LevNNN,项目名称:mono,代码行数:32,代码来源:BitVector32Test.cs


示例12: VectorByte

 public VectorByte(params bool[] flags)
 {
     bitVector = new BitVector32();
     for (byte i = 0; i < Math.Min(flags.Length, 8); i++)
     {
         bitVector[i] = flags[i];
     }
 }
开发者ID:Case-o-Matic,项目名称:CaseoMatic-Networking,代码行数:8,代码来源:VectorByte.cs


示例13: DCB

 public DCB()
 {
     this.DCBlength = (uint) Marshal.SizeOf(this);
     this.Control = new BitVector32(0);
     this.sect1 = BitVector32.CreateSection(15);
     this.DTRsect = BitVector32.CreateSection(3, this.sect1);
     this.sect2 = BitVector32.CreateSection(0x3f, this.DTRsect);
     this.RTSsect = BitVector32.CreateSection(3, this.sect2);
 }
开发者ID:facchinm,项目名称:SiRFLive,代码行数:9,代码来源:DCB.cs


示例14: ProjectItem

 public ProjectItem(string caption)
 {
     if ((caption == null) || (caption.Length == 0))
     {
         throw new ArgumentNullException("caption");
     }
     this._caption = caption;
     this._state = new BitVector32(0);
 }
开发者ID:ikvm,项目名称:webmatrix,代码行数:9,代码来源:ProjectItem.cs


示例15: BitVector32Test

 //BitVector32Test
 public static void BitVector32Test()
 {
     var bits = new BitVector32();
     int bit1 = BitVector32.CreateMask();
     int bit2 = BitVector32.CreateMask(bit1);
     int bit3 = BitVector32.CreateMask(bit2);
     bits[3] = true;
     Console.WriteLine(bits);
 }
开发者ID:vjzr-Phonex,项目名称:C_Sharp,代码行数:10,代码来源:Program.cs


示例16: FilteredStatusAppender

 public FilteredStatusAppender(IStatusAppender baseAppender, bool appendErrors, bool appendWarnings, bool appendInfos)
     : base(baseAppender)
 {
     flags = new BitVector32();
     flags[APPEND_WARNINGS] = appendWarnings;
     flags[APPEND_ERRORS] = appendErrors;
     flags[APPEND_INFOS] = appendInfos;
     this.baseAppender = baseAppender;
 }
开发者ID:Carbonfrost,项目名称:ff-foundations-runtime,代码行数:9,代码来源:FilteredStatusAppender.cs


示例17: CommCapabilities

 internal CommCapabilities()
 {
     this.wPacketLength = (ushort) Marshal.SizeOf(this);
     this.dwProvSpec1 = CPS.COMMPROP_INITIALIZED;
     this.dwProvCapabilities = new BitVector32(0);
     this.dwSettableParams = new BitVector32(0);
     this.dwSettableBaud = new BitVector32(0);
     this.dwSettableStopParityData = new BitVector32(0);
 }
开发者ID:facchinm,项目名称:SiRFLive,代码行数:9,代码来源:CommCapabilities.cs


示例18: CalculateState

        public int CalculateState(short price, short sellPoint)
        {
            if (price < 0)
                throw new ArgumentOutOfRangeException("price");

            var bitVector = new BitVector32(0);
            bitVector[_priceSection] = price;
            bitVector[_sellPointSection] = sellPoint;
            return bitVector.Data;
        }
开发者ID:BishoyDemian,项目名称:StockMarket-StopLossKata,代码行数:10,代码来源:StateProvider.cs


示例19: OneBits

 private void OneBits()
 {
     for (int row = 0; row < 9; row++)
     {
         for (int col = 0; col < 9; col++)
         {
             bGrid[row][col] = new BitVector32(0x1ff);
         }
     }
 }
开发者ID:jwodnicki,项目名称:Sudoker,代码行数:10,代码来源:Explorer.cs


示例20: UpdatePercentage

        void UpdatePercentage(ProgressInfo rpProgress, BitVector32 rpBits)
        {
            var rPercent = 0.0;
            rPercent += Math.Min(rpBits[r_Sections[0]] / (double)36, 1.0);
            rPercent += Math.Min(rpBits[r_Sections[1]] / (double)6, 1.0);
            rPercent += Math.Min(rpBits[r_Sections[2]] / (double)24, 1.0);
            rPercent += Math.Min(rpBits[r_Sections[3]] / (double)12, 1.0);

            rpProgress.Percentage = rPercent;
        }
开发者ID:amatukaze,项目名称:IntelligentNavalGun-Fx4,代码行数:10,代码来源:OperationA.cs



注:本文中的System.Collections.Specialized.BitVector32类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Specialized.HybridDictionary类代码示例发布时间:2022-05-26
下一篇:
C# ObjectModel.ObservableCollection类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap