クライアントとしてGUIを使用してWCFサービスを行っていますが、現在のアイテムの印刷リストに問題があります。私は再びリストを、それを表示したいがあれば、私は最初の試みで追加されたレコードを表示しようとしているときしかし、それは動作しますが、 public bool Add_Data(Data sample)
{
container.Add(sample);
Co
<?php
interface iFoo {
public function print(): iFoo;
}
class Foo implements iFoo {
public function print(): iFoo {
return $this;
}
public function chain(): iFoo {