コード例 #1
0
 /// <summary>
 /// Creates a <see cref="String"/> representation of the node.
 /// </summary>
 /// <returns>A <see cref="String"/> representation of the node.</returns>
 public override string ToString()
 {
     return(ExpressionStringBuilder.ElementInitBindingToString(this));
 }
コード例 #2
0
 public override string ToString()
 {
     return(ExpressionStringBuilder.CatchBlockToString(this));
 }
コード例 #3
0
ファイル: Expression.cs プロジェクト: ThE-TiGeR/DotnetRuntime
 /// <summary>
 /// Creates a <see cref="string"/> representation of the Expression.
 /// </summary>
 /// <returns>A <see cref="string"/> representation of the Expression.</returns>
 public override string ToString()
 {
     return(ExpressionStringBuilder.ExpressionToString(this));
 }
コード例 #4
0
 /// <summary>
 /// Returns a <see cref="String"/> that represents the current <see cref="Object"/>.
 /// </summary>
 /// <returns>A <see cref="String"/> that represents the current <see cref="Object"/>. </returns>
 public override string ToString()
 {
     return(ExpressionStringBuilder.SwitchCaseToString(this));
 }
コード例 #5
0
ファイル: MemberBinding.cs プロジェクト: karthikrajkumar/demo
 /// <summary>
 /// Returns a <see cref="String"/> that represents the current <see cref="Object"/>.
 /// </summary>
 /// <returns>A <see cref="String"/> that represents the current <see cref="Object"/>. </returns>
 public override string ToString()
 {
     return(ExpressionStringBuilder.MemberBindingToString(this));
 }