>>16
public Task<bool> Hoge() {
return new Task(
 () =>
 {
  return true;
 }
);
}