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


C# Class.getName方法代码示例

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


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

示例1: Match

 /// <summary>
 /// This method attempts to perform a resolution of the transform
 /// based on its package prefix. This allows this matcher to create
 /// a logical group of transforms within a single method based on
 /// the types package prefix. If no transform can be found then
 /// this will throw an exception.
 /// </summary>
 /// <param name="type">
 /// this is the type to resolve a transform for
 /// </param>
 /// <returns>
 /// the transform that is used to transform that type
 /// </returns>
 public Transform Match(Class type) {
    String name = type.getName();
    if(name.startsWith("java.lang")) {
       return MatchLanguage(type);
    }
    if(name.startsWith("java.util")) {
       return MatchUtility(type);
    }
    if(name.startsWith("java.net")) {
       return MatchURL(type);
    }
    if(name.startsWith("java.io")) {
       return MatchFile(type);
    }
    if(name.startsWith("java.sql")) {
       return MatchSQL(type);
    }
    if(name.startsWith("java.math")) {
       return MatchMath(type);
    }
    return MatchEnum(type);
 }
开发者ID:ngallagher,项目名称:simplexml,代码行数:35,代码来源:PackageMatcher.cs

示例2: Parse

 public String Parse(Class type) {
    return new Convert(type.getName()).FastParse();
 }
开发者ID:ngallagher,项目名称:simplexml,代码行数:3,代码来源:PackageParser.cs


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