00001 /// \file PropInLine.cs test 00002 00003 /// \namespace c3 test 00004 00005 namespace c3 00006 { 00007 public class PropInLine 00008 { 00009 /// Internal. 00010 int mBla; 00011 00012 /// Property. 00013 public int Bla 00014 { 00015 /// inline doc does NOT show up. 00016 get 00017 { 00018 /// inline doc does NOT show up too. 00019 return mBla; 00020 } 00021 } 00022 00023 /// Function. 00024 void Func() 00025 { 00026 /// inline doc DOES show up. 00027 } 00028 } 00029 00030 }