Local Function
- Local Function
//C # 7.0
public void Print(string format){
PrintInPostOrder(Tree tree){
if(tree == null) return;
//do something
}
}
//C # 7.0
public void Print(string format){
PrintInPostOrder(Tree tree){
if(tree == null) return;
//do something
}
}