コード例 #1
0
 private static short GetShortValue(TypedPropertyBag instance, string name)
 {
     return(instance._shortValues[name]);
 }
コード例 #2
0
 private static int GetIntValue(TypedPropertyBag instance, string name)
 {
     return(instance._intValues[name]);
 }
コード例 #3
0
 private static bool GetBoolValue(TypedPropertyBag instance, string name)
 {
     return(instance._boolValues[name]);
 }
コード例 #4
0
 private static void SetLongValue(TypedPropertyBag instance, string name, long value)
 {
     instance._longValues[name] = value;
 }
コード例 #5
0
 private static void SetShortValue(TypedPropertyBag instance, string name, short value)
 {
     instance._shortValues[name] = value;
 }
コード例 #6
0
 private static void SetBoolValue(TypedPropertyBag instance, string name, bool value)
 {
     instance._boolValues[name] = value;
 }
コード例 #7
0
 private static void SetIntValue(TypedPropertyBag instance, string name, int value)
 {
     instance._intValues[name] = value;
 }
コード例 #8
0
 private static long GetLongValue(TypedPropertyBag instance, string name)
 {
     return(instance._longValues[name]);
 }