コード例 #1
0
ファイル: CodeConverter.cs プロジェクト: stuksgens/UAlive
 public static string AsString(this StructModifier modifier)
 {
     if (modifier == StructModifier.None)
     {
         return(string.Empty);
     }
     return(EnumToLower(modifier));
 }
コード例 #2
0
        public static StructGenerator Struct(AccessModifier nestedScope, StructModifier modifier, string name)
        {
            var @struct = new StructGenerator();

            @struct.nestedScope = nestedScope;
            @struct.modifier    = modifier;
            @struct.name        = name;
            @struct.isNested    = true;
            return(@struct);
        }
コード例 #3
0
        public static StructGenerator Struct(RootAccessModifier scope, StructModifier modifier, string name)
        {
            var @struct = new StructGenerator();

            @struct.scope    = scope;
            @struct.modifier = modifier;
            @struct.name     = name;
            @struct.isNested = false;
            return(@struct);
        }