예제 #1
0
 private UserDefinedConversionAnalysis(
     UserDefinedConversionAnalysisKind kind,
     MethodSymbol op,
     Conversion sourceConversion,
     Conversion targetConversion,
     TypeSymbol fromType,
     TypeSymbol toType)
 {
     this.Kind             = kind;
     this.Operator         = op;
     this.SourceConversion = sourceConversion;
     this.TargetConversion = targetConversion;
     this.FromType         = fromType;
     this.ToType           = toType;
 }
 private UserDefinedConversionAnalysis(
     UserDefinedConversionAnalysisKind kind,
     MethodSymbol op,
     Conversion sourceConversion,
     Conversion targetConversion,
     TypeSymbol fromType,
     TypeSymbol toType)
 {
     this.Kind = kind;
     this.Operator = op;
     this.SourceConversion = sourceConversion;
     this.TargetConversion = targetConversion;
     this.FromType = fromType;
     this.ToType = toType;
 }