當前位置: 首頁>>代碼示例>>C#>>正文


C# ConstructorArgumentValues.GetIndexedArgumentValue方法代碼示例

本文整理匯總了C#中Spring.Objects.Factory.Config.ConstructorArgumentValues.GetIndexedArgumentValue方法的典型用法代碼示例。如果您正苦於以下問題:C# ConstructorArgumentValues.GetIndexedArgumentValue方法的具體用法?C# ConstructorArgumentValues.GetIndexedArgumentValue怎麽用?C# ConstructorArgumentValues.GetIndexedArgumentValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Spring.Objects.Factory.Config.ConstructorArgumentValues的用法示例。


在下文中一共展示了ConstructorArgumentValues.GetIndexedArgumentValue方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: GetIndexedArgumentValue

		public void GetIndexedArgumentValue()
		{
			ConstructorArgumentValues values = new ConstructorArgumentValues();
			Assert.IsNull(values.GetIndexedArgumentValue(0, typeof (object)), "Mmm... managed to get a non null instance back from an empty instance.");
			values.AddIndexedArgumentValue(16, DBNull.Value, typeof (DBNull).FullName);
			Assert.IsNull(values.GetIndexedArgumentValue(0, typeof (object)), "Mmm... managed to get a non null instance back from an instance that should have now't at the specified index.");
			ConstructorArgumentValues.ValueHolder value =
				values.GetIndexedArgumentValue(16, typeof (DBNull));
			Assert.IsNotNull(value, "Stored a value at a specified index, but got null when retrieving it.");
			Assert.AreSame(DBNull.Value, value.Value, "The value stored at the specified index was not the exact same instance as was added.");
			ConstructorArgumentValues.ValueHolder wrongValue =
				values.GetIndexedArgumentValue(16, typeof (string));
			Assert.IsNull(wrongValue, "Stored a value at a specified index, and got it (or rather something) back when retrieving it with the wrong Type specified.");
		}
開發者ID:spring-projects,項目名稱:spring-net,代碼行數:14,代碼來源:ConstructorArgumentValuesTests.cs


注:本文中的Spring.Objects.Factory.Config.ConstructorArgumentValues.GetIndexedArgumentValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。