Content deleted Content added
→C# example: Using the chain capability of SetNext. |
|||
Line 160:
public Logger SetNext(Logger nextlogger)
{
return nextlogger;▼
while(lastLogger.next != null)
{
lastLogger = lastLogger.next;
}
lastLogger.next = nextlogger;
}
|