|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Internal.LowLevelLinq;
namespace Internal.Metadata.NativeFormat.Writer
{
public partial class ConstantBooleanValue
{
public override string ToString()
{
//return String.Format("ConstantBooleanValue : {0}", this.Value);
return string.Format("(Boolean){0}", this.Value);
}
}
public partial class ConstantBooleanArray
{
public override string ToString()
{
//return "ConstantBooleanArray : {" + String.Join(", ", this.Value) + "}";
return "(Boolean[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantCharValue
{
public override string ToString()
{
//return String.Format("ConstantCharValue : {0}", this.Value);
return string.Format("'{0}'", this.Value);
}
}
public partial class ConstantCharArray
{
public override string ToString()
{
//return "ConstantCharArray : {" + String.Join(", ", this.Value) + "}";
return "(Char[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantStringValue
{
public override string ToString()
{
//return String.Format("ConstantStringValue : {0}", this.Value);
if (this.Value == null) return "null";
else return string.Format("\"{0}\"", this.Value);
}
}
public partial class ConstantStringArray
{
public override string ToString()
{
//return "ConstantStringArray : {" + String.Join(", ", this.Value) + "}";
return "(String[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantByteValue
{
public override string ToString()
{
//return String.Format("ConstantByteValue : {0}", this.Value);
return string.Format("(Byte){0}", this.Value);
}
}
public partial class ConstantByteArray
{
public override string ToString()
{
//return "ConstantByteArray : {" + String.Join(", ", this.Value) + "}";
return "(Byte[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantSByteValue
{
public override string ToString()
{
//return String.Format("ConstantSByteValue : {0}", this.Value);
return string.Format("(SByte){0}", this.Value);
}
}
public partial class ConstantSByteArray
{
public override string ToString()
{
//return "ConstantSByteArray : {" + String.Join(", ", this.Value) + "}";
return "(SByte[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantInt16Value
{
public override string ToString()
{
//return String.Format("ConstantInt16Value : {0}", this.Value);
return string.Format("(Int16){0}", this.Value);
}
}
public partial class ConstantInt16Array
{
public override string ToString()
{
//return "ConstantInt16Array : {" + String.Join(", ", this.Value) + "}";
return "(Int16[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantUInt16Value
{
public override string ToString()
{
//return String.Format("ConstantUInt16Value : {0}", this.Value);
return string.Format("(UInt16){0}", this.Value);
}
}
public partial class ConstantUInt16Array
{
public override string ToString()
{
//return "ConstantUInt16Array : {" + String.Join(", ", this.Value) + "}";
return "(UInt16[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantInt32Value
{
public override string ToString()
{
//return String.Format("ConstantInt32Value : {0}", this.Value);
return string.Format("(Int32){0}", this.Value);
}
}
public partial class ConstantInt32Array
{
public override string ToString()
{
//return "ConstantInt32Array : {" + String.Join(", ", this.Value) + "}";
return "(Int32[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantUInt32Value
{
public override string ToString()
{
//return String.Format("ConstantUInt32Value : {0}", this.Value);
return string.Format("(UInt32){0}", this.Value);
}
}
public partial class ConstantUInt32Array
{
public override string ToString()
{
//return "ConstantUInt32Array : {" + String.Join(", ", this.Value) + "}";
return "(UInt32[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantInt64Value
{
public override string ToString()
{
//return String.Format("ConstantInt64Value : {0}", this.Value);
return string.Format("(Int64){0}", this.Value);
}
}
public partial class ConstantInt64Array
{
public override string ToString()
{
//return "ConstantInt64Array : {" + String.Join(", ", this.Value) + "}";
return "(Int64[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantUInt64Value
{
public override string ToString()
{
//return String.Format("ConstantUInt64Value : {0}", this.Value);
return string.Format("(UInt64){0}", this.Value);
}
}
public partial class ConstantUInt64Array
{
public override string ToString()
{
//return "ConstantUInt64Array : {" + String.Join(", ", this.Value) + "}";
return "(UInt64[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantSingleValue
{
public override string ToString()
{
//return String.Format("ConstantSingleValue : {0}", this.Value);
return string.Format("(Single){0}", this.Value);
}
}
public partial class ConstantSingleArray
{
public override string ToString()
{
//return "ConstantSingleArray : {" + String.Join(", ", this.Value) + "}";
return "(Single[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantDoubleValue
{
public override string ToString()
{
//return String.Format("ConstantDoubleValue : {0}", this.Value);
return string.Format("(Double){0}", this.Value);
}
}
public partial class ConstantDoubleArray
{
public override string ToString()
{
//return "ConstantDoubleArray : {" + String.Join(", ", this.Value) + "}";
return "(Double[]) {" + string.Join(", ", this.Value) + "}";
}
}
public partial class ConstantReferenceValue
{
public override string ToString()
{
return "null";
}
}
}
|