我试图创建一个代码片段,它会检查变量是否为null并为其创建一个私有变量。
目前我有:
<Code Language="csharp">
<![CDATA[if ($arg$ == null) throw new ArgumentNullException("$arg$");
_$arg$ = $arg$;$end$]]>
</Code>
如果我在名为value
的变量上使用它,它将创建
_value = value;
但我想创建_value
。有没有办法做到这一点?
答案 0 :(得分:0)
简短回答(对我的知识):不。
很长的回答:也许你可以创建一个定义变量的片段和使用这个null-check的函数stub,它将顺序放入片段中;)