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


C# IParameter.GetType方法代码示例

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


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

示例1: ProcessParameter

 private void ProcessParameter(IParameter parameter, int index, StringBuilder preMemberCodeBulider)
 {
     // Dispatch to the typed parameter handler method.
     Type key = parameter.GetType().GetInterfaces().First(t => t.Namespace == typeof(IParameter).Namespace && t.Name.StartsWith("I") && t.Name.EndsWith("Parameter"));
     Action<IParameter, int, StringBuilder> method = _parameterCodeGeneratorMethodMap[key];
     method(parameter, index, preMemberCodeBulider);
 }
开发者ID:wade,项目名称:Speedioc,代码行数:7,代码来源:ParameterInjectionCodeGenerator.cs

示例2: Equals

 /// <summary>
 /// Indicates whether the current object is equal to another object of the same type.
 /// </summary>
 /// <param name="other">An object to compare with this object.</param>
 /// <returns><c>True</c> if the objects are equal; otherwise <c>false</c></returns>
 public bool Equals(IParameter other)
 {
     return other.GetType() == GetType() && other.Name.Equals(Name);
 }
开发者ID:ArthurYiL,项目名称:JustMockLite,代码行数:9,代码来源:Parameter.cs

示例3: Equals

 /// <summary>
 /// Indicates whether the current object is equal to another object of the same type.
 /// </summary>
 /// <param name="other">An object to compare with this object.</param>
 /// <returns><c>True</c> if the objects are equal; otherwise <c>false</c></returns>
 public bool Equals(IParameter other)
 {
     var argument = other as TypeMatchingConstructorArgument;
     return argument != null && other.GetType() == this.type;
 }
开发者ID:kisflying,项目名称:ninject,代码行数:10,代码来源:TypeMatchingConstructorArgument.cs


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