享受代码,享受人生

SOA is an integration solution. SOA is message oriented first.
The Key character of SOA is loosely coupled. SOA is enriched
by creating composite apps.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Windbey Supports Unix?

Posted on 2005-04-25 21:53  idior  阅读(1395)  评论(2编辑  收藏  举报
What's this mean?

System.PlatformId in 1.1

namespace System 

public enum PlatformID 

// Fields 
Win32NT = 2
Win32S 
= 0
Win32Windows 
= 1,
WinCE 
= 3 
}
 
}
 

System.PlatformId in 2.0

namespace System 

public enum PlatformID 

// Fields 
Unix = 4
Win32NT 
= 2
Win32S 
= 0
Win32Windows 
= 1
WinCE 
= 3 
}
 
}