当前位置: 首页>>代码示例>>C#>>正文


C# Cell.ToString方法代码示例

本文整理汇总了C#中Cell.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# Cell.ToString方法的具体用法?C# Cell.ToString怎么用?C# Cell.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Cell的用法示例。


在下文中一共展示了Cell.ToString方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CheckIfFieldConstructorSetsProperFieldPositionsValue

        public void CheckIfFieldConstructorSetsProperFieldPositionsValue()
        {
            var testFieldSize = 4;
            var testFieldPositions = new Cell[testFieldSize, testFieldSize];
            var field = new Field(testFieldSize);

            Assert.AreEqual(field.FieldPositions.ToString(), testFieldPositions.ToString());
        }
开发者ID:BattleFieldTwo,项目名称:Teamwork,代码行数:8,代码来源:FieldTests.cs

示例2: Main

        static void Main(string[] args)
        {
            Console.ReadLine();
            Cell s1 = new Cell("name", "content", "value");
            Console.WriteLine(s1.ToString());

            Cell s2 = new Cell("name", null, null);
            Console.WriteLine(s2.ToString());

            s2.Value = "value";
            Console.WriteLine(s2.ToString());

            s2.Content = "content";
            Console.WriteLine(s2.ToString());

            Console.ReadLine();
        }
开发者ID:drewmacmac,项目名称:old_class,代码行数:17,代码来源:Tester.cs

示例3: GetCell

		public virtual UITableViewCell GetCell(Cell item, UITableViewCell reusableCell, UITableView tv)
		{
			var tvc = reusableCell as CellTableViewCell ?? new CellTableViewCell(UITableViewCellStyle.Default, item.GetType().FullName);

			tvc.Cell = item;

			WireUpForceUpdateSizeRequested(item, tvc, tv);

			tvc.TextLabel.Text = item.ToString();

			UpdateBackground(tvc, item);
			return tvc;
		}
开发者ID:cosullivan,项目名称:Xamarin.Forms,代码行数:13,代码来源:CellRenderer.cs

示例4: GetCellCore

		protected virtual AView GetCellCore(Cell item, AView convertView, ViewGroup parent, Context context)
		{
			Performance.Start();

			LayoutInflater inflater = LayoutInflater.FromContext(context);
			const int type = global::Android.Resource.Layout.SimpleListItem1;
			AView view = inflater.Inflate(type, null);

			var textView = view.FindViewById<TextView>(global::Android.Resource.Id.Text1);
			textView.Text = item.ToString();
			textView.SetBackgroundColor(global::Android.Graphics.Color.Transparent);
			view.SetBackgroundColor(global::Android.Graphics.Color.Black);

			Performance.Stop();

			return view;
		}
开发者ID:Costo,项目名称:Xamarin.Forms,代码行数:17,代码来源:CellRenderer.cs

示例5: to_string_returns_value_as_string

 public void to_string_returns_value_as_string()
 {
     var newCell = new Cell("hello");
     Assert.AreEqual("hello", newCell.ToString());
 }
开发者ID:CodeFork,项目名称:LinqToExcel,代码行数:5,代码来源:CellTest.cs


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