コード例 #1
0
 public CSharpValueNodeProviderFactory(LanguageValueNodeFactory valueNodeFactory) : base(valueNodeFactory, isCaseSensitive: true)
 {
 }
コード例 #2
0
 public override string GetDereferenceExpression(string instanceExpression)
 {
     instanceExpression = LanguageValueNodeFactory.RemoveFormatSpecifiers(instanceExpression);
     return("*" + instanceExpression);
 }
コード例 #3
0
 public VisualBasicValueNodeProviderFactory(LanguageValueNodeFactory valueNodeFactory) : base(valueNodeFactory, isCaseSensitive: false)
 {
 }
コード例 #4
0
 public override string GetCallExpression(DmdMethodBase method, string instanceExpression)
 {
     instanceExpression = LanguageValueNodeFactory.RemoveFormatSpecifiers(instanceExpression);
     return(instanceExpression + "." + method.Name + "()");
 }