示例#1
0
文件: inst.cs 项目: zjmit/go2cs
        public static @string String(this RegExtshiftAmount rea)
        {
            var buf = rea.reg.String();
            if (rea.extShift != ExtShift(0L))
            {
                buf += ", " + rea.extShift.String();
                if (rea.amount != 0L)
                {
                    buf += fmt.Sprintf(" #%d", rea.amount);
                }
                else
                {
                    if (rea.show_zero == true)
                    {
                        buf += fmt.Sprintf(" #%d", rea.amount);
                    }

                }

            }

            return buf;

        }
示例#2
0
文件: inst.cs 项目: zjmit/go2cs
 public static void isArg(this RegExtshiftAmount _p0)
 {
 }