本文整理匯總了C#中Binder.GenerateConversionForAssignment方法的典型用法代碼示例。如果您正苦於以下問題:C# Binder.GenerateConversionForAssignment方法的具體用法?C# Binder.GenerateConversionForAssignment怎麽用?C# Binder.GenerateConversionForAssignment使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Binder
的用法示例。
在下文中一共展示了Binder.GenerateConversionForAssignment方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: MakeDefaultExpression
// If binder is null, then get it from the compilation. Otherwise use the provided binder.
// Don't always get it from the compilation because we might be in a speculative context (local function parameter),
// in which case the declaring compilation is the wrong one.
protected ConstantValue MakeDefaultExpression(DiagnosticBag diagnostics, Binder binder)
{
var parameterSyntax = this.CSharpSyntaxNode;
if (parameterSyntax == null)
{
return ConstantValue.NotAvailable;
}
var defaultSyntax = parameterSyntax.Default;
if (defaultSyntax == null)
{
return ConstantValue.NotAvailable;
}
if (binder == null)
{
var syntaxTree = _syntaxRef.SyntaxTree;
var compilation = this.DeclaringCompilation;
var binderFactory = compilation.GetBinderFactory(syntaxTree);
binder = binderFactory.GetBinder(defaultSyntax);
}
BoundExpression valueBeforeConversion;
var convertedExpression = binder.CreateBinderForParameterDefaultValue(this, defaultSyntax).BindParameterDefaultValue(defaultSyntax, parameterType, diagnostics, out valueBeforeConversion);
bool hasErrors = ParameterHelpers.ReportDefaultParameterErrors(binder, ContainingSymbol, parameterSyntax, this, valueBeforeConversion, diagnostics);
if (hasErrors)
{
return ConstantValue.Bad;
}
// If we have something like M(double? x = 1) then the expression we'll get is (double?)1, which
// does not have a constant value. The constant value we want is (double)1.
if (convertedExpression.ConstantValue == null && convertedExpression.Kind == BoundKind.Conversion)
{
if (parameterType.IsNullableType())
{
convertedExpression = binder.GenerateConversionForAssignment(parameterType.GetNullableUnderlyingType(),
valueBeforeConversion, diagnostics, isDefaultParameter: true);
}
}
// represent default(struct) by a Null constant:
var value = convertedExpression.ConstantValue ?? ConstantValue.Null;
VerifyParamDefaultValueMatchesAttributeIfAny(value, defaultSyntax.Value, diagnostics);
return value;
}