Closed prashanthsp6498 closed 15 hours ago
Supports for all assignment statements.
Lambda Method
public static string Method() => $"return result";
class/struct/record fields
const int CONST_FIELD = 10; public static Node head; public static Node tempHead = new Node();
local variables declarations
int count = 10; int[] arr = new int[] {1, 2, 3, 4, 5, 6}; head = new Node{data = arr[0]}; count = 100;
Above local fields also support in field scope
Can anyone help me on this Why above test failing?
Supports for all assignment statements.
Lambda Method
class/struct/record fields
local variables declarations
Above local fields also support in field scope