APIDocumentationCreator.HTMLGenerator.FriendlynizeType C# (CSharp) 메소드

FriendlynizeType() 공개 메소드

public FriendlynizeType ( string unfriendly ) : string
unfriendly string
리턴 string
        public string FriendlynizeType(string unfriendly)
        {
            unfriendly = unfriendly.Replace("BSTR", "string");
            unfriendly = unfriendly.Replace("VARIANT_BOOL", "bool");
            unfriendly = unfriendly.Replace("LONG", "long");

            return unfriendly;
        }