Exemple #1
0
        static void Main(string[] args)
        {
            var string1 = "qwertyuiopsdfghjklzxcvbnm";
            var string2 = "mnbvcxlkjhgfdpoiuytre";

            Console.WriteLine("Result string: " + ConcatString.GetConcatString(string1, string2));
        }
Exemple #2
0
 public static bool op_GreaterThan(ConcatString x, string y)
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 public static bool op_Equality(ConcatString x, double y)
 {
     throw new NotImplementedException();
 }
Exemple #4
0
 public static double op_BitwiseOr(ConcatString x, double y)
 {
     throw new NotImplementedException();
 }
Exemple #5
0
 public static ConcatString op_Addition(UnDefined x, ConcatString y)
 {
     throw new NotImplementedException();
 }
Exemple #6
0
 public static double op_BitwiseAnd(ConcatString x, bool y)
 {
     throw new NotImplementedException();
 }
Exemple #7
0
 public static double op_RightShift(ConcatString x, double y)
 {
     throw new NotImplementedException();
 }
Exemple #8
0
 public static ConcatString op_Addition(ConcatString x, NumberObject y)
 {
     throw new NotImplementedException();
 }
		public static bool op_GreaterThanOrEqual(ConcatString x, double y)
		{
			throw new NotImplementedException ();
		}
		public static bool op_GreaterThan(ConcatString x, string y)
		{
			throw new NotImplementedException ();
		}
		public static double op_ExclusiveOr(ConcatString x, string y)
		{
			throw new NotImplementedException ();
		}
		public static bool op_Equality(ConcatString x, double y)
		{
			throw new NotImplementedException ();
		}
		public static double op_Division(ConcatString x, bool y)
		{
			throw new NotImplementedException ();
		}
		public static double op_BitwiseOr(ConcatString x, double y)
		{
			throw new NotImplementedException ();
		}
Exemple #15
0
 public static bool op_Inequality(ConcatString x, string y)
 {
     throw new NotImplementedException();
 }
Exemple #16
0
 public static double op_LeftShift(ConcatString x, bool y)
 {
     throw new NotImplementedException();
 }
		public static ConcatString op_Addition (ConcatString x, BooleanObject y)
		{
			return new ConcatString(x, Convert.ToString(y));
		}
Exemple #18
0
 public static double op_Modulus(ConcatString x, double y)
 {
     throw new NotImplementedException();
 }
		public static bool op_Inequality(ConcatString x, string y)
		{
			throw new NotImplementedException ();
		}
Exemple #20
0
 public static double op_UnsignedRightShift(ConcatString x, string y)
 {
     throw new NotImplementedException();
 }
		public static double op_LeftShift(ConcatString x, bool y)
		{
			throw new NotImplementedException ();
		}
Exemple #22
0
		public static ConcatString op_Addition(decimal x, ConcatString y)
		{
			throw new NotImplementedException ();
		}
		public static ConcatString op_Addition(ConcatString x, NumberObject y)
		{
			throw new NotImplementedException ();
		}
Exemple #24
0
		public static ConcatString op_Addition (UnDefined x, ConcatString y)
		{
			throw new NotImplementedException ();
		}
		public static bool op_LessThan(ConcatString x, double y)
		{
			throw new NotImplementedException ();
		}
Exemple #26
0
 public static double op_Division(ConcatString x, bool y)
 {
     throw new NotImplementedException();
 }
		public static bool op_LessThanOrEqual(ConcatString x, string y)
		{
			throw new NotImplementedException ();
		}
Exemple #28
0
 public static double op_ExclusiveOr(ConcatString x, string y)
 {
     throw new NotImplementedException();
 }
		public static double op_Modulus(ConcatString x, double y)
		{
			throw new NotImplementedException ();
		}
Exemple #30
0
 public static bool op_GreaterThanOrEqual(ConcatString x, double y)
 {
     throw new NotImplementedException();
 }
		public static double op_Multiply(ConcatString x, string y)
		{
			throw new NotImplementedException ();
		}
Exemple #32
0
 public static ConcatString op_Addition(ConcatString x, BooleanObject y)
 {
     return(new ConcatString(x, Convert.ToString(y)));
 }
		public static double op_RightShift(ConcatString x, double y)
		{
			throw new NotImplementedException ();
		}
Exemple #34
0
 public static bool op_LessThan(ConcatString x, double y)
 {
     throw new NotImplementedException();
 }
		public static ConcatString op_Addition(ConcatString x, double y)
		{
			throw new NotImplementedException ();
		}
Exemple #36
0
 public static bool op_LessThanOrEqual(ConcatString x, string y)
 {
     throw new NotImplementedException();
 }
		public static double op_Subtraction(ConcatString x, string y)
		{
			throw new NotImplementedException ();
		}
Exemple #38
0
 public static double op_Multiply(ConcatString x, string y)
 {
     throw new NotImplementedException();
 }
		public static double op_UnsignedRightShift(ConcatString x, string y)
		{
			throw new NotImplementedException ();
		}
Exemple #40
0
 public static double op_Subtraction(ConcatString x, string y)
 {
     throw new NotImplementedException();
 }
		public static double op_BitwiseAnd(ConcatString x, JSObject y)
		{
			throw new NotImplementedException ();
		}
Exemple #42
0
 public static ConcatString op_Addition(ConcatString x, string y)
 {
     throw new NotImplementedException();
 }
		public static double op_BitwiseAnd(ConcatString x, UnDefined y)
		{
			throw new NotImplementedException ();
		}
Exemple #44
0
		public static ConcatString op_Addition ([NotNull] string x, ConcatString y)
		{
			throw new NotImplementedException ();
		}
Exemple #45
0
 /// <summary>
 /// 与其他对象进行合并
 /// </summary>
 /// <param name="other"></param>
 public void Merge(ConcatString other)
 {
     // 在此处放置代码
     result.Append(other.result);
 }
Exemple #46
0
 public static ConcatString op_Addition(JSObject x, [NotNull] ConcatString y)
 {
     throw new NotImplementedException();
 }
Exemple #47
0
 public static ConcatString op_Addition(decimal x, ConcatString y)
 {
     throw new NotImplementedException();
 }