コード例 #1
0
        public virtual StackFrameVersionOne VisitStackFrameVersionOne(StackFrameVersionOne node)
        {
            if (node != null)
            {
            }

            return(node);
        }
コード例 #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="StackFrameVersionOne" /> class from the specified instance.
        /// </summary>
        /// <param name="other">
        /// The instance from which the new instance is to be initialized.
        /// </param>
        /// <exception cref="ArgumentNullException">
        /// Thrown if <paramref name="other" /> is null.
        /// </exception>
        public StackFrameVersionOne(StackFrameVersionOne other)
        {
            if (other == null)
            {
                throw new ArgumentNullException(nameof(other));
            }

            Init(other.Message, other.Uri, other.UriBaseId, other.Line, other.Column, other.Module, other.ThreadId, other.FullyQualifiedLogicalName, other.LogicalLocationKey, other.Address, other.Offset, other.Parameters, other.Properties);
        }
コード例 #3
0
 public bool ValueEquals(StackFrameVersionOne other) => ValueComparer.Equals(this, other);